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 up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
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.CronJob": {
4136      "description": "CronJob represents the configuration of a single cron 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.CronJobSpec",
4152          "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"
4153        },
4154        "status": {
4155          "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobStatus",
4156          "description": "Current status of a cron 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": "CronJob",
4164          "version": "v1"
4165        }
4166      ]
4167    },
4168    "io.k8s.api.batch.v1.CronJobList": {
4169      "description": "CronJobList is a collection of cron jobs.",
4170      "properties": {
4171        "apiVersion": {
4172          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4173          "type": "string"
4174        },
4175        "items": {
4176          "description": "items is the list of CronJobs.",
4177          "items": {
4178            "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
4179          },
4180          "type": "array"
4181        },
4182        "kind": {
4183          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4184          "type": "string"
4185        },
4186        "metadata": {
4187          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4188          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4189        }
4190      },
4191      "required": [
4192        "items"
4193      ],
4194      "type": "object",
4195      "x-kubernetes-group-version-kind": [
4196        {
4197          "group": "batch",
4198          "kind": "CronJobList",
4199          "version": "v1"
4200        }
4201      ]
4202    },
4203    "io.k8s.api.batch.v1.CronJobSpec": {
4204      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
4205      "properties": {
4206        "concurrencyPolicy": {
4207          "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",
4208          "type": "string"
4209        },
4210        "failedJobsHistoryLimit": {
4211          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
4212          "format": "int32",
4213          "type": "integer"
4214        },
4215        "jobTemplate": {
4216          "$ref": "#/definitions/io.k8s.api.batch.v1.JobTemplateSpec",
4217          "description": "Specifies the job that will be created when executing a CronJob."
4218        },
4219        "schedule": {
4220          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
4221          "type": "string"
4222        },
4223        "startingDeadlineSeconds": {
4224          "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.",
4225          "format": "int64",
4226          "type": "integer"
4227        },
4228        "successfulJobsHistoryLimit": {
4229          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.",
4230          "format": "int32",
4231          "type": "integer"
4232        },
4233        "suspend": {
4234          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
4235          "type": "boolean"
4236        }
4237      },
4238      "required": [
4239        "schedule",
4240        "jobTemplate"
4241      ],
4242      "type": "object"
4243    },
4244    "io.k8s.api.batch.v1.CronJobStatus": {
4245      "description": "CronJobStatus represents the current state of a cron job.",
4246      "properties": {
4247        "active": {
4248          "description": "A list of pointers to currently running jobs.",
4249          "items": {
4250            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
4251          },
4252          "type": "array",
4253          "x-kubernetes-list-type": "atomic"
4254        },
4255        "lastScheduleTime": {
4256          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4257          "description": "Information when was the last time the job was successfully scheduled."
4258        },
4259        "lastSuccessfulTime": {
4260          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4261          "description": "Information when was the last time the job successfully completed."
4262        }
4263      },
4264      "type": "object"
4265    },
4266    "io.k8s.api.batch.v1.Job": {
4267      "description": "Job represents the configuration of a single job.",
4268      "properties": {
4269        "apiVersion": {
4270          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4271          "type": "string"
4272        },
4273        "kind": {
4274          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4275          "type": "string"
4276        },
4277        "metadata": {
4278          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4279          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4280        },
4281        "spec": {
4282          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4283          "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"
4284        },
4285        "status": {
4286          "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus",
4287          "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4288        }
4289      },
4290      "type": "object",
4291      "x-kubernetes-group-version-kind": [
4292        {
4293          "group": "batch",
4294          "kind": "Job",
4295          "version": "v1"
4296        }
4297      ]
4298    },
4299    "io.k8s.api.batch.v1.JobCondition": {
4300      "description": "JobCondition describes current state of a job.",
4301      "properties": {
4302        "lastProbeTime": {
4303          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4304          "description": "Last time the condition was checked."
4305        },
4306        "lastTransitionTime": {
4307          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4308          "description": "Last time the condition transit from one status to another."
4309        },
4310        "message": {
4311          "description": "Human readable message indicating details about last transition.",
4312          "type": "string"
4313        },
4314        "reason": {
4315          "description": "(brief) reason for the condition's last transition.",
4316          "type": "string"
4317        },
4318        "status": {
4319          "description": "Status of the condition, one of True, False, Unknown.",
4320          "type": "string"
4321        },
4322        "type": {
4323          "description": "Type of job condition, Complete or Failed.",
4324          "type": "string"
4325        }
4326      },
4327      "required": [
4328        "type",
4329        "status"
4330      ],
4331      "type": "object"
4332    },
4333    "io.k8s.api.batch.v1.JobList": {
4334      "description": "JobList is a collection of jobs.",
4335      "properties": {
4336        "apiVersion": {
4337          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4338          "type": "string"
4339        },
4340        "items": {
4341          "description": "items is the list of Jobs.",
4342          "items": {
4343            "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
4344          },
4345          "type": "array"
4346        },
4347        "kind": {
4348          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4349          "type": "string"
4350        },
4351        "metadata": {
4352          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4353          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4354        }
4355      },
4356      "required": [
4357        "items"
4358      ],
4359      "type": "object",
4360      "x-kubernetes-group-version-kind": [
4361        {
4362          "group": "batch",
4363          "kind": "JobList",
4364          "version": "v1"
4365        }
4366      ]
4367    },
4368    "io.k8s.api.batch.v1.JobSpec": {
4369      "description": "JobSpec describes how the job execution will look like.",
4370      "properties": {
4371        "activeDeadlineSeconds": {
4372          "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",
4373          "format": "int64",
4374          "type": "integer"
4375        },
4376        "backoffLimit": {
4377          "description": "Specifies the number of retries before marking this job failed. Defaults to 6",
4378          "format": "int32",
4379          "type": "integer"
4380        },
4381        "completions": {
4382          "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/",
4383          "format": "int32",
4384          "type": "integer"
4385        },
4386        "manualSelector": {
4387          "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",
4388          "type": "boolean"
4389        },
4390        "parallelism": {
4391          "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/",
4392          "format": "int32",
4393          "type": "integer"
4394        },
4395        "selector": {
4396          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
4397          "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"
4398        },
4399        "template": {
4400          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
4401          "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/"
4402        },
4403        "ttlSecondsAfterFinished": {
4404          "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.",
4405          "format": "int32",
4406          "type": "integer"
4407        }
4408      },
4409      "required": [
4410        "template"
4411      ],
4412      "type": "object"
4413    },
4414    "io.k8s.api.batch.v1.JobStatus": {
4415      "description": "JobStatus represents the current state of a Job.",
4416      "properties": {
4417        "active": {
4418          "description": "The number of actively running pods.",
4419          "format": "int32",
4420          "type": "integer"
4421        },
4422        "completionTime": {
4423          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4424          "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."
4425        },
4426        "conditions": {
4427          "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/",
4428          "items": {
4429            "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition"
4430          },
4431          "type": "array",
4432          "x-kubernetes-list-type": "atomic",
4433          "x-kubernetes-patch-merge-key": "type",
4434          "x-kubernetes-patch-strategy": "merge"
4435        },
4436        "failed": {
4437          "description": "The number of pods which reached phase Failed.",
4438          "format": "int32",
4439          "type": "integer"
4440        },
4441        "startTime": {
4442          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4443          "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."
4444        },
4445        "succeeded": {
4446          "description": "The number of pods which reached phase Succeeded.",
4447          "format": "int32",
4448          "type": "integer"
4449        }
4450      },
4451      "type": "object"
4452    },
4453    "io.k8s.api.batch.v1.JobTemplateSpec": {
4454      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
4455      "properties": {
4456        "metadata": {
4457          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4458          "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"
4459        },
4460        "spec": {
4461          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4462          "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"
4463        }
4464      },
4465      "type": "object"
4466    },
4467    "io.k8s.api.batch.v1beta1.CronJob": {
4468      "description": "CronJob represents the configuration of a single cron job.",
4469      "properties": {
4470        "apiVersion": {
4471          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4472          "type": "string"
4473        },
4474        "kind": {
4475          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4476          "type": "string"
4477        },
4478        "metadata": {
4479          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4480          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4481        },
4482        "spec": {
4483          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec",
4484          "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"
4485        },
4486        "status": {
4487          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus",
4488          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4489        }
4490      },
4491      "type": "object",
4492      "x-kubernetes-group-version-kind": [
4493        {
4494          "group": "batch",
4495          "kind": "CronJob",
4496          "version": "v1beta1"
4497        }
4498      ]
4499    },
4500    "io.k8s.api.batch.v1beta1.CronJobList": {
4501      "description": "CronJobList is a collection of cron jobs.",
4502      "properties": {
4503        "apiVersion": {
4504          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4505          "type": "string"
4506        },
4507        "items": {
4508          "description": "items is the list of CronJobs.",
4509          "items": {
4510            "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
4511          },
4512          "type": "array"
4513        },
4514        "kind": {
4515          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4516          "type": "string"
4517        },
4518        "metadata": {
4519          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4520          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4521        }
4522      },
4523      "required": [
4524        "items"
4525      ],
4526      "type": "object",
4527      "x-kubernetes-group-version-kind": [
4528        {
4529          "group": "batch",
4530          "kind": "CronJobList",
4531          "version": "v1beta1"
4532        }
4533      ]
4534    },
4535    "io.k8s.api.batch.v1beta1.CronJobSpec": {
4536      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
4537      "properties": {
4538        "concurrencyPolicy": {
4539          "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",
4540          "type": "string"
4541        },
4542        "failedJobsHistoryLimit": {
4543          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
4544          "format": "int32",
4545          "type": "integer"
4546        },
4547        "jobTemplate": {
4548          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec",
4549          "description": "Specifies the job that will be created when executing a CronJob."
4550        },
4551        "schedule": {
4552          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
4553          "type": "string"
4554        },
4555        "startingDeadlineSeconds": {
4556          "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.",
4557          "format": "int64",
4558          "type": "integer"
4559        },
4560        "successfulJobsHistoryLimit": {
4561          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.",
4562          "format": "int32",
4563          "type": "integer"
4564        },
4565        "suspend": {
4566          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
4567          "type": "boolean"
4568        }
4569      },
4570      "required": [
4571        "schedule",
4572        "jobTemplate"
4573      ],
4574      "type": "object"
4575    },
4576    "io.k8s.api.batch.v1beta1.CronJobStatus": {
4577      "description": "CronJobStatus represents the current state of a cron job.",
4578      "properties": {
4579        "active": {
4580          "description": "A list of pointers to currently running jobs.",
4581          "items": {
4582            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
4583          },
4584          "type": "array",
4585          "x-kubernetes-list-type": "atomic"
4586        },
4587        "lastScheduleTime": {
4588          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4589          "description": "Information when was the last time the job was successfully scheduled."
4590        },
4591        "lastSuccessfulTime": {
4592          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4593          "description": "Information when was the last time the job successfully completed."
4594        }
4595      },
4596      "type": "object"
4597    },
4598    "io.k8s.api.batch.v1beta1.JobTemplateSpec": {
4599      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
4600      "properties": {
4601        "metadata": {
4602          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4603          "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"
4604        },
4605        "spec": {
4606          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
4607          "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"
4608        }
4609      },
4610      "type": "object"
4611    },
4612    "io.k8s.api.certificates.v1.CertificateSigningRequest": {
4613      "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.",
4614      "properties": {
4615        "apiVersion": {
4616          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4617          "type": "string"
4618        },
4619        "kind": {
4620          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4621          "type": "string"
4622        },
4623        "metadata": {
4624          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4625        },
4626        "spec": {
4627          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestSpec",
4628          "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."
4629        },
4630        "status": {
4631          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestStatus",
4632          "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."
4633        }
4634      },
4635      "required": [
4636        "spec"
4637      ],
4638      "type": "object",
4639      "x-kubernetes-group-version-kind": [
4640        {
4641          "group": "certificates.k8s.io",
4642          "kind": "CertificateSigningRequest",
4643          "version": "v1"
4644        }
4645      ]
4646    },
4647    "io.k8s.api.certificates.v1.CertificateSigningRequestCondition": {
4648      "description": "CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object",
4649      "properties": {
4650        "lastTransitionTime": {
4651          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4652          "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."
4653        },
4654        "lastUpdateTime": {
4655          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4656          "description": "lastUpdateTime is the time of the last update to this condition"
4657        },
4658        "message": {
4659          "description": "message contains a human readable message with details about the request state",
4660          "type": "string"
4661        },
4662        "reason": {
4663          "description": "reason indicates a brief reason for the request state",
4664          "type": "string"
4665        },
4666        "status": {
4667          "description": "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
4668          "type": "string"
4669        },
4670        "type": {
4671          "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.",
4672          "type": "string"
4673        }
4674      },
4675      "required": [
4676        "type",
4677        "status"
4678      ],
4679      "type": "object"
4680    },
4681    "io.k8s.api.certificates.v1.CertificateSigningRequestList": {
4682      "description": "CertificateSigningRequestList is a collection of CertificateSigningRequest objects",
4683      "properties": {
4684        "apiVersion": {
4685          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4686          "type": "string"
4687        },
4688        "items": {
4689          "description": "items is a collection of CertificateSigningRequest objects",
4690          "items": {
4691            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
4692          },
4693          "type": "array"
4694        },
4695        "kind": {
4696          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4697          "type": "string"
4698        },
4699        "metadata": {
4700          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4701        }
4702      },
4703      "required": [
4704        "items"
4705      ],
4706      "type": "object",
4707      "x-kubernetes-group-version-kind": [
4708        {
4709          "group": "certificates.k8s.io",
4710          "kind": "CertificateSigningRequestList",
4711          "version": "v1"
4712        }
4713      ]
4714    },
4715    "io.k8s.api.certificates.v1.CertificateSigningRequestSpec": {
4716      "description": "CertificateSigningRequestSpec contains the certificate request.",
4717      "properties": {
4718        "extra": {
4719          "additionalProperties": {
4720            "items": {
4721              "type": "string"
4722            },
4723            "type": "array"
4724          },
4725          "description": "extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4726          "type": "object"
4727        },
4728        "groups": {
4729          "description": "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4730          "items": {
4731            "type": "string"
4732          },
4733          "type": "array",
4734          "x-kubernetes-list-type": "atomic"
4735        },
4736        "request": {
4737          "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.",
4738          "format": "byte",
4739          "type": "string",
4740          "x-kubernetes-list-type": "atomic"
4741        },
4742        "signerName": {
4743          "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.",
4744          "type": "string"
4745        },
4746        "uid": {
4747          "description": "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4748          "type": "string"
4749        },
4750        "usages": {
4751          "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\"",
4752          "items": {
4753            "type": "string"
4754          },
4755          "type": "array",
4756          "x-kubernetes-list-type": "atomic"
4757        },
4758        "username": {
4759          "description": "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4760          "type": "string"
4761        }
4762      },
4763      "required": [
4764        "request",
4765        "signerName"
4766      ],
4767      "type": "object"
4768    },
4769    "io.k8s.api.certificates.v1.CertificateSigningRequestStatus": {
4770      "description": "CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.",
4771      "properties": {
4772        "certificate": {
4773          "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    )",
4774          "format": "byte",
4775          "type": "string",
4776          "x-kubernetes-list-type": "atomic"
4777        },
4778        "conditions": {
4779          "description": "conditions applied to the request. Known conditions are \"Approved\", \"Denied\", and \"Failed\".",
4780          "items": {
4781            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestCondition"
4782          },
4783          "type": "array",
4784          "x-kubernetes-list-map-keys": [
4785            "type"
4786          ],
4787          "x-kubernetes-list-type": "map"
4788        }
4789      },
4790      "type": "object"
4791    },
4792    "io.k8s.api.certificates.v1beta1.CertificateSigningRequest": {
4793      "description": "Describes a certificate signing request",
4794      "properties": {
4795        "apiVersion": {
4796          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4797          "type": "string"
4798        },
4799        "kind": {
4800          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4801          "type": "string"
4802        },
4803        "metadata": {
4804          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4805        },
4806        "spec": {
4807          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec",
4808          "description": "The certificate request itself and any additional information."
4809        },
4810        "status": {
4811          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus",
4812          "description": "Derived information about the request."
4813        }
4814      },
4815      "type": "object",
4816      "x-kubernetes-group-version-kind": [
4817        {
4818          "group": "certificates.k8s.io",
4819          "kind": "CertificateSigningRequest",
4820          "version": "v1beta1"
4821        }
4822      ]
4823    },
4824    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition": {
4825      "properties": {
4826        "lastTransitionTime": {
4827          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4828          "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."
4829        },
4830        "lastUpdateTime": {
4831          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4832          "description": "timestamp for the last update to this condition"
4833        },
4834        "message": {
4835          "description": "human readable message with details about the request state",
4836          "type": "string"
4837        },
4838        "reason": {
4839          "description": "brief reason for the request state",
4840          "type": "string"
4841        },
4842        "status": {
4843          "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\".",
4844          "type": "string"
4845        },
4846        "type": {
4847          "description": "type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\".",
4848          "type": "string"
4849        }
4850      },
4851      "required": [
4852        "type"
4853      ],
4854      "type": "object"
4855    },
4856    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList": {
4857      "properties": {
4858        "apiVersion": {
4859          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4860          "type": "string"
4861        },
4862        "items": {
4863          "items": {
4864            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
4865          },
4866          "type": "array"
4867        },
4868        "kind": {
4869          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4870          "type": "string"
4871        },
4872        "metadata": {
4873          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4874        }
4875      },
4876      "required": [
4877        "items"
4878      ],
4879      "type": "object",
4880      "x-kubernetes-group-version-kind": [
4881        {
4882          "group": "certificates.k8s.io",
4883          "kind": "CertificateSigningRequestList",
4884          "version": "v1beta1"
4885        }
4886      ]
4887    },
4888    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec": {
4889      "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.",
4890      "properties": {
4891        "extra": {
4892          "additionalProperties": {
4893            "items": {
4894              "type": "string"
4895            },
4896            "type": "array"
4897          },
4898          "description": "Extra information about the requesting user. See user.Info interface for details.",
4899          "type": "object"
4900        },
4901        "groups": {
4902          "description": "Group information about the requesting user. See user.Info interface for details.",
4903          "items": {
4904            "type": "string"
4905          },
4906          "type": "array",
4907          "x-kubernetes-list-type": "atomic"
4908        },
4909        "request": {
4910          "description": "Base64-encoded PKCS#10 CSR data",
4911          "format": "byte",
4912          "type": "string",
4913          "x-kubernetes-list-type": "atomic"
4914        },
4915        "signerName": {
4916          "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`.",
4917          "type": "string"
4918        },
4919        "uid": {
4920          "description": "UID information about the requesting user. See user.Info interface for details.",
4921          "type": "string"
4922        },
4923        "usages": {
4924          "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\"",
4925          "items": {
4926            "type": "string"
4927          },
4928          "type": "array",
4929          "x-kubernetes-list-type": "atomic"
4930        },
4931        "username": {
4932          "description": "Information about the requesting user. See user.Info interface for details.",
4933          "type": "string"
4934        }
4935      },
4936      "required": [
4937        "request"
4938      ],
4939      "type": "object"
4940    },
4941    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus": {
4942      "properties": {
4943        "certificate": {
4944          "description": "If request was approved, the controller will place the issued certificate here.",
4945          "format": "byte",
4946          "type": "string",
4947          "x-kubernetes-list-type": "atomic"
4948        },
4949        "conditions": {
4950          "description": "Conditions applied to the request, such as approval or denial.",
4951          "items": {
4952            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition"
4953          },
4954          "type": "array",
4955          "x-kubernetes-list-map-keys": [
4956            "type"
4957          ],
4958          "x-kubernetes-list-type": "map"
4959        }
4960      },
4961      "type": "object"
4962    },
4963    "io.k8s.api.coordination.v1.Lease": {
4964      "description": "Lease defines a lease concept.",
4965      "properties": {
4966        "apiVersion": {
4967          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4968          "type": "string"
4969        },
4970        "kind": {
4971          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4972          "type": "string"
4973        },
4974        "metadata": {
4975          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4976          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4977        },
4978        "spec": {
4979          "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec",
4980          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4981        }
4982      },
4983      "type": "object",
4984      "x-kubernetes-group-version-kind": [
4985        {
4986          "group": "coordination.k8s.io",
4987          "kind": "Lease",
4988          "version": "v1"
4989        }
4990      ]
4991    },
4992    "io.k8s.api.coordination.v1.LeaseList": {
4993      "description": "LeaseList is a list of Lease objects.",
4994      "properties": {
4995        "apiVersion": {
4996          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4997          "type": "string"
4998        },
4999        "items": {
5000          "description": "Items is a list of schema objects.",
5001          "items": {
5002            "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
5003          },
5004          "type": "array"
5005        },
5006        "kind": {
5007          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5008          "type": "string"
5009        },
5010        "metadata": {
5011          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5012          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5013        }
5014      },
5015      "required": [
5016        "items"
5017      ],
5018      "type": "object",
5019      "x-kubernetes-group-version-kind": [
5020        {
5021          "group": "coordination.k8s.io",
5022          "kind": "LeaseList",
5023          "version": "v1"
5024        }
5025      ]
5026    },
5027    "io.k8s.api.coordination.v1.LeaseSpec": {
5028      "description": "LeaseSpec is a specification of a Lease.",
5029      "properties": {
5030        "acquireTime": {
5031          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5032          "description": "acquireTime is a time when the current lease was acquired."
5033        },
5034        "holderIdentity": {
5035          "description": "holderIdentity contains the identity of the holder of a current lease.",
5036          "type": "string"
5037        },
5038        "leaseDurationSeconds": {
5039          "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.",
5040          "format": "int32",
5041          "type": "integer"
5042        },
5043        "leaseTransitions": {
5044          "description": "leaseTransitions is the number of transitions of a lease between holders.",
5045          "format": "int32",
5046          "type": "integer"
5047        },
5048        "renewTime": {
5049          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5050          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
5051        }
5052      },
5053      "type": "object"
5054    },
5055    "io.k8s.api.coordination.v1beta1.Lease": {
5056      "description": "Lease defines a lease concept.",
5057      "properties": {
5058        "apiVersion": {
5059          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5060          "type": "string"
5061        },
5062        "kind": {
5063          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5064          "type": "string"
5065        },
5066        "metadata": {
5067          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5068          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5069        },
5070        "spec": {
5071          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseSpec",
5072          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
5073        }
5074      },
5075      "type": "object",
5076      "x-kubernetes-group-version-kind": [
5077        {
5078          "group": "coordination.k8s.io",
5079          "kind": "Lease",
5080          "version": "v1beta1"
5081        }
5082      ]
5083    },
5084    "io.k8s.api.coordination.v1beta1.LeaseList": {
5085      "description": "LeaseList is a list of Lease objects.",
5086      "properties": {
5087        "apiVersion": {
5088          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5089          "type": "string"
5090        },
5091        "items": {
5092          "description": "Items is a list of schema objects.",
5093          "items": {
5094            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
5095          },
5096          "type": "array"
5097        },
5098        "kind": {
5099          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5100          "type": "string"
5101        },
5102        "metadata": {
5103          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5104          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5105        }
5106      },
5107      "required": [
5108        "items"
5109      ],
5110      "type": "object",
5111      "x-kubernetes-group-version-kind": [
5112        {
5113          "group": "coordination.k8s.io",
5114          "kind": "LeaseList",
5115          "version": "v1beta1"
5116        }
5117      ]
5118    },
5119    "io.k8s.api.coordination.v1beta1.LeaseSpec": {
5120      "description": "LeaseSpec is a specification of a Lease.",
5121      "properties": {
5122        "acquireTime": {
5123          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5124          "description": "acquireTime is a time when the current lease was acquired."
5125        },
5126        "holderIdentity": {
5127          "description": "holderIdentity contains the identity of the holder of a current lease.",
5128          "type": "string"
5129        },
5130        "leaseDurationSeconds": {
5131          "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.",
5132          "format": "int32",
5133          "type": "integer"
5134        },
5135        "leaseTransitions": {
5136          "description": "leaseTransitions is the number of transitions of a lease between holders.",
5137          "format": "int32",
5138          "type": "integer"
5139        },
5140        "renewTime": {
5141          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5142          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
5143        }
5144      },
5145      "type": "object"
5146    },
5147    "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
5148      "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.",
5149      "properties": {
5150        "fsType": {
5151          "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",
5152          "type": "string"
5153        },
5154        "partition": {
5155          "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).",
5156          "format": "int32",
5157          "type": "integer"
5158        },
5159        "readOnly": {
5160          "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",
5161          "type": "boolean"
5162        },
5163        "volumeID": {
5164          "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
5165          "type": "string"
5166        }
5167      },
5168      "required": [
5169        "volumeID"
5170      ],
5171      "type": "object"
5172    },
5173    "io.k8s.api.core.v1.Affinity": {
5174      "description": "Affinity is a group of affinity scheduling rules.",
5175      "properties": {
5176        "nodeAffinity": {
5177          "$ref": "#/definitions/io.k8s.api.core.v1.NodeAffinity",
5178          "description": "Describes node affinity scheduling rules for the pod."
5179        },
5180        "podAffinity": {
5181          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinity",
5182          "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
5183        },
5184        "podAntiAffinity": {
5185          "$ref": "#/definitions/io.k8s.api.core.v1.PodAntiAffinity",
5186          "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
5187        }
5188      },
5189      "type": "object"
5190    },
5191    "io.k8s.api.core.v1.AttachedVolume": {
5192      "description": "AttachedVolume describes a volume attached to a node",
5193      "properties": {
5194        "devicePath": {
5195          "description": "DevicePath represents the device path where the volume should be available",
5196          "type": "string"
5197        },
5198        "name": {
5199          "description": "Name of the attached volume",
5200          "type": "string"
5201        }
5202      },
5203      "required": [
5204        "name",
5205        "devicePath"
5206      ],
5207      "type": "object"
5208    },
5209    "io.k8s.api.core.v1.AzureDiskVolumeSource": {
5210      "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
5211      "properties": {
5212        "cachingMode": {
5213          "description": "Host Caching mode: None, Read Only, Read Write.",
5214          "type": "string"
5215        },
5216        "diskName": {
5217          "description": "The Name of the data disk in the blob storage",
5218          "type": "string"
5219        },
5220        "diskURI": {
5221          "description": "The URI the data disk in the blob storage",
5222          "type": "string"
5223        },
5224        "fsType": {
5225          "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.",
5226          "type": "string"
5227        },
5228        "kind": {
5229          "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",
5230          "type": "string"
5231        },
5232        "readOnly": {
5233          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5234          "type": "boolean"
5235        }
5236      },
5237      "required": [
5238        "diskName",
5239        "diskURI"
5240      ],
5241      "type": "object"
5242    },
5243    "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": {
5244      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
5245      "properties": {
5246        "readOnly": {
5247          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5248          "type": "boolean"
5249        },
5250        "secretName": {
5251          "description": "the name of secret that contains Azure Storage Account Name and Key",
5252          "type": "string"
5253        },
5254        "secretNamespace": {
5255          "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
5256          "type": "string"
5257        },
5258        "shareName": {
5259          "description": "Share Name",
5260          "type": "string"
5261        }
5262      },
5263      "required": [
5264        "secretName",
5265        "shareName"
5266      ],
5267      "type": "object"
5268    },
5269    "io.k8s.api.core.v1.AzureFileVolumeSource": {
5270      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
5271      "properties": {
5272        "readOnly": {
5273          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5274          "type": "boolean"
5275        },
5276        "secretName": {
5277          "description": "the name of secret that contains Azure Storage Account Name and Key",
5278          "type": "string"
5279        },
5280        "shareName": {
5281          "description": "Share Name",
5282          "type": "string"
5283        }
5284      },
5285      "required": [
5286        "secretName",
5287        "shareName"
5288      ],
5289      "type": "object"
5290    },
5291    "io.k8s.api.core.v1.Binding": {
5292      "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.",
5293      "properties": {
5294        "apiVersion": {
5295          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5296          "type": "string"
5297        },
5298        "kind": {
5299          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5300          "type": "string"
5301        },
5302        "metadata": {
5303          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5304          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5305        },
5306        "target": {
5307          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
5308          "description": "The target object that you want to bind to the standard object."
5309        }
5310      },
5311      "required": [
5312        "target"
5313      ],
5314      "type": "object",
5315      "x-kubernetes-group-version-kind": [
5316        {
5317          "group": "",
5318          "kind": "Binding",
5319          "version": "v1"
5320        }
5321      ]
5322    },
5323    "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
5324      "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
5325      "properties": {
5326        "controllerExpandSecretRef": {
5327          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5328          "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."
5329        },
5330        "controllerPublishSecretRef": {
5331          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5332          "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."
5333        },
5334        "driver": {
5335          "description": "Driver is the name of the driver to use for this volume. Required.",
5336          "type": "string"
5337        },
5338        "fsType": {
5339          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
5340          "type": "string"
5341        },
5342        "nodePublishSecretRef": {
5343          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5344          "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."
5345        },
5346        "nodeStageSecretRef": {
5347          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5348          "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."
5349        },
5350        "readOnly": {
5351          "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
5352          "type": "boolean"
5353        },
5354        "volumeAttributes": {
5355          "additionalProperties": {
5356            "type": "string"
5357          },
5358          "description": "Attributes of the volume to publish.",
5359          "type": "object"
5360        },
5361        "volumeHandle": {
5362          "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.",
5363          "type": "string"
5364        }
5365      },
5366      "required": [
5367        "driver",
5368        "volumeHandle"
5369      ],
5370      "type": "object"
5371    },
5372    "io.k8s.api.core.v1.CSIVolumeSource": {
5373      "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
5374      "properties": {
5375        "driver": {
5376          "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.",
5377          "type": "string"
5378        },
5379        "fsType": {
5380          "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.",
5381          "type": "string"
5382        },
5383        "nodePublishSecretRef": {
5384          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5385          "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."
5386        },
5387        "readOnly": {
5388          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
5389          "type": "boolean"
5390        },
5391        "volumeAttributes": {
5392          "additionalProperties": {
5393            "type": "string"
5394          },
5395          "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
5396          "type": "object"
5397        }
5398      },
5399      "required": [
5400        "driver"
5401      ],
5402      "type": "object"
5403    },
5404    "io.k8s.api.core.v1.Capabilities": {
5405      "description": "Adds and removes POSIX capabilities from running containers.",
5406      "properties": {
5407        "add": {
5408          "description": "Added capabilities",
5409          "items": {
5410            "type": "string"
5411          },
5412          "type": "array"
5413        },
5414        "drop": {
5415          "description": "Removed capabilities",
5416          "items": {
5417            "type": "string"
5418          },
5419          "type": "array"
5420        }
5421      },
5422      "type": "object"
5423    },
5424    "io.k8s.api.core.v1.CephFSPersistentVolumeSource": {
5425      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
5426      "properties": {
5427        "monitors": {
5428          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5429          "items": {
5430            "type": "string"
5431          },
5432          "type": "array"
5433        },
5434        "path": {
5435          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
5436          "type": "string"
5437        },
5438        "readOnly": {
5439          "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",
5440          "type": "boolean"
5441        },
5442        "secretFile": {
5443          "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",
5444          "type": "string"
5445        },
5446        "secretRef": {
5447          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5448          "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"
5449        },
5450        "user": {
5451          "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",
5452          "type": "string"
5453        }
5454      },
5455      "required": [
5456        "monitors"
5457      ],
5458      "type": "object"
5459    },
5460    "io.k8s.api.core.v1.CephFSVolumeSource": {
5461      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
5462      "properties": {
5463        "monitors": {
5464          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
5465          "items": {
5466            "type": "string"
5467          },
5468          "type": "array"
5469        },
5470        "path": {
5471          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
5472          "type": "string"
5473        },
5474        "readOnly": {
5475          "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",
5476          "type": "boolean"
5477        },
5478        "secretFile": {
5479          "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",
5480          "type": "string"
5481        },
5482        "secretRef": {
5483          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5484          "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"
5485        },
5486        "user": {
5487          "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",
5488          "type": "string"
5489        }
5490      },
5491      "required": [
5492        "monitors"
5493      ],
5494      "type": "object"
5495    },
5496    "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
5497      "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.",
5498      "properties": {
5499        "fsType": {
5500          "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",
5501          "type": "string"
5502        },
5503        "readOnly": {
5504          "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",
5505          "type": "boolean"
5506        },
5507        "secretRef": {
5508          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5509          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
5510        },
5511        "volumeID": {
5512          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5513          "type": "string"
5514        }
5515      },
5516      "required": [
5517        "volumeID"
5518      ],
5519      "type": "object"
5520    },
5521    "io.k8s.api.core.v1.CinderVolumeSource": {
5522      "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.",
5523      "properties": {
5524        "fsType": {
5525          "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",
5526          "type": "string"
5527        },
5528        "readOnly": {
5529          "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",
5530          "type": "boolean"
5531        },
5532        "secretRef": {
5533          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5534          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
5535        },
5536        "volumeID": {
5537          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
5538          "type": "string"
5539        }
5540      },
5541      "required": [
5542        "volumeID"
5543      ],
5544      "type": "object"
5545    },
5546    "io.k8s.api.core.v1.ClientIPConfig": {
5547      "description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
5548      "properties": {
5549        "timeoutSeconds": {
5550          "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).",
5551          "format": "int32",
5552          "type": "integer"
5553        }
5554      },
5555      "type": "object"
5556    },
5557    "io.k8s.api.core.v1.ComponentCondition": {
5558      "description": "Information about the condition of a component.",
5559      "properties": {
5560        "error": {
5561          "description": "Condition error code for a component. For example, a health check error code.",
5562          "type": "string"
5563        },
5564        "message": {
5565          "description": "Message about the condition for a component. For example, information about a health check.",
5566          "type": "string"
5567        },
5568        "status": {
5569          "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
5570          "type": "string"
5571        },
5572        "type": {
5573          "description": "Type of condition for a component. Valid value: \"Healthy\"",
5574          "type": "string"
5575        }
5576      },
5577      "required": [
5578        "type",
5579        "status"
5580      ],
5581      "type": "object"
5582    },
5583    "io.k8s.api.core.v1.ComponentStatus": {
5584      "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+",
5585      "properties": {
5586        "apiVersion": {
5587          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5588          "type": "string"
5589        },
5590        "conditions": {
5591          "description": "List of component conditions observed",
5592          "items": {
5593            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentCondition"
5594          },
5595          "type": "array",
5596          "x-kubernetes-patch-merge-key": "type",
5597          "x-kubernetes-patch-strategy": "merge"
5598        },
5599        "kind": {
5600          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5601          "type": "string"
5602        },
5603        "metadata": {
5604          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5605          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5606        }
5607      },
5608      "type": "object",
5609      "x-kubernetes-group-version-kind": [
5610        {
5611          "group": "",
5612          "kind": "ComponentStatus",
5613          "version": "v1"
5614        }
5615      ]
5616    },
5617    "io.k8s.api.core.v1.ComponentStatusList": {
5618      "description": "Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+",
5619      "properties": {
5620        "apiVersion": {
5621          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5622          "type": "string"
5623        },
5624        "items": {
5625          "description": "List of ComponentStatus objects.",
5626          "items": {
5627            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
5628          },
5629          "type": "array"
5630        },
5631        "kind": {
5632          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5633          "type": "string"
5634        },
5635        "metadata": {
5636          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5637          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5638        }
5639      },
5640      "required": [
5641        "items"
5642      ],
5643      "type": "object",
5644      "x-kubernetes-group-version-kind": [
5645        {
5646          "group": "",
5647          "kind": "ComponentStatusList",
5648          "version": "v1"
5649        }
5650      ]
5651    },
5652    "io.k8s.api.core.v1.ConfigMap": {
5653      "description": "ConfigMap holds configuration data for pods to consume.",
5654      "properties": {
5655        "apiVersion": {
5656          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5657          "type": "string"
5658        },
5659        "binaryData": {
5660          "additionalProperties": {
5661            "format": "byte",
5662            "type": "string"
5663          },
5664          "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.",
5665          "type": "object"
5666        },
5667        "data": {
5668          "additionalProperties": {
5669            "type": "string"
5670          },
5671          "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.",
5672          "type": "object"
5673        },
5674        "immutable": {
5675          "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.",
5676          "type": "boolean"
5677        },
5678        "kind": {
5679          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5680          "type": "string"
5681        },
5682        "metadata": {
5683          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5684          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5685        }
5686      },
5687      "type": "object",
5688      "x-kubernetes-group-version-kind": [
5689        {
5690          "group": "",
5691          "kind": "ConfigMap",
5692          "version": "v1"
5693        }
5694      ]
5695    },
5696    "io.k8s.api.core.v1.ConfigMapEnvSource": {
5697      "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.",
5698      "properties": {
5699        "name": {
5700          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5701          "type": "string"
5702        },
5703        "optional": {
5704          "description": "Specify whether the ConfigMap must be defined",
5705          "type": "boolean"
5706        }
5707      },
5708      "type": "object"
5709    },
5710    "io.k8s.api.core.v1.ConfigMapKeySelector": {
5711      "description": "Selects a key from a ConfigMap.",
5712      "properties": {
5713        "key": {
5714          "description": "The key to select.",
5715          "type": "string"
5716        },
5717        "name": {
5718          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5719          "type": "string"
5720        },
5721        "optional": {
5722          "description": "Specify whether the ConfigMap or its key must be defined",
5723          "type": "boolean"
5724        }
5725      },
5726      "required": [
5727        "key"
5728      ],
5729      "type": "object"
5730    },
5731    "io.k8s.api.core.v1.ConfigMapList": {
5732      "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
5733      "properties": {
5734        "apiVersion": {
5735          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5736          "type": "string"
5737        },
5738        "items": {
5739          "description": "Items is the list of ConfigMaps.",
5740          "items": {
5741            "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
5742          },
5743          "type": "array"
5744        },
5745        "kind": {
5746          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5747          "type": "string"
5748        },
5749        "metadata": {
5750          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5751          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5752        }
5753      },
5754      "required": [
5755        "items"
5756      ],
5757      "type": "object",
5758      "x-kubernetes-group-version-kind": [
5759        {
5760          "group": "",
5761          "kind": "ConfigMapList",
5762          "version": "v1"
5763        }
5764      ]
5765    },
5766    "io.k8s.api.core.v1.ConfigMapNodeConfigSource": {
5767      "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.",
5768      "properties": {
5769        "kubeletConfigKey": {
5770          "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.",
5771          "type": "string"
5772        },
5773        "name": {
5774          "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
5775          "type": "string"
5776        },
5777        "namespace": {
5778          "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
5779          "type": "string"
5780        },
5781        "resourceVersion": {
5782          "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
5783          "type": "string"
5784        },
5785        "uid": {
5786          "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
5787          "type": "string"
5788        }
5789      },
5790      "required": [
5791        "namespace",
5792        "name",
5793        "kubeletConfigKey"
5794      ],
5795      "type": "object"
5796    },
5797    "io.k8s.api.core.v1.ConfigMapProjection": {
5798      "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.",
5799      "properties": {
5800        "items": {
5801          "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 '..'.",
5802          "items": {
5803            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
5804          },
5805          "type": "array"
5806        },
5807        "name": {
5808          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5809          "type": "string"
5810        },
5811        "optional": {
5812          "description": "Specify whether the ConfigMap or its keys must be defined",
5813          "type": "boolean"
5814        }
5815      },
5816      "type": "object"
5817    },
5818    "io.k8s.api.core.v1.ConfigMapVolumeSource": {
5819      "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.",
5820      "properties": {
5821        "defaultMode": {
5822          "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.",
5823          "format": "int32",
5824          "type": "integer"
5825        },
5826        "items": {
5827          "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 '..'.",
5828          "items": {
5829            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
5830          },
5831          "type": "array"
5832        },
5833        "name": {
5834          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
5835          "type": "string"
5836        },
5837        "optional": {
5838          "description": "Specify whether the ConfigMap or its keys must be defined",
5839          "type": "boolean"
5840        }
5841      },
5842      "type": "object"
5843    },
5844    "io.k8s.api.core.v1.Container": {
5845      "description": "A single application container that you want to run within a pod.",
5846      "properties": {
5847        "args": {
5848          "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",
5849          "items": {
5850            "type": "string"
5851          },
5852          "type": "array"
5853        },
5854        "command": {
5855          "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",
5856          "items": {
5857            "type": "string"
5858          },
5859          "type": "array"
5860        },
5861        "env": {
5862          "description": "List of environment variables to set in the container. Cannot be updated.",
5863          "items": {
5864            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
5865          },
5866          "type": "array",
5867          "x-kubernetes-patch-merge-key": "name",
5868          "x-kubernetes-patch-strategy": "merge"
5869        },
5870        "envFrom": {
5871          "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.",
5872          "items": {
5873            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
5874          },
5875          "type": "array"
5876        },
5877        "image": {
5878          "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.",
5879          "type": "string"
5880        },
5881        "imagePullPolicy": {
5882          "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",
5883          "type": "string"
5884        },
5885        "lifecycle": {
5886          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
5887          "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
5888        },
5889        "livenessProbe": {
5890          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5891          "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"
5892        },
5893        "name": {
5894          "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.",
5895          "type": "string"
5896        },
5897        "ports": {
5898          "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.",
5899          "items": {
5900            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
5901          },
5902          "type": "array",
5903          "x-kubernetes-list-map-keys": [
5904            "containerPort",
5905            "protocol"
5906          ],
5907          "x-kubernetes-list-type": "map",
5908          "x-kubernetes-patch-merge-key": "containerPort",
5909          "x-kubernetes-patch-strategy": "merge"
5910        },
5911        "readinessProbe": {
5912          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5913          "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"
5914        },
5915        "resources": {
5916          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
5917          "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
5918        },
5919        "securityContext": {
5920          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
5921          "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/"
5922        },
5923        "startupProbe": {
5924          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5925          "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"
5926        },
5927        "stdin": {
5928          "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.",
5929          "type": "boolean"
5930        },
5931        "stdinOnce": {
5932          "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",
5933          "type": "boolean"
5934        },
5935        "terminationMessagePath": {
5936          "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.",
5937          "type": "string"
5938        },
5939        "terminationMessagePolicy": {
5940          "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.",
5941          "type": "string"
5942        },
5943        "tty": {
5944          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
5945          "type": "boolean"
5946        },
5947        "volumeDevices": {
5948          "description": "volumeDevices is the list of block devices to be used by the container.",
5949          "items": {
5950            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
5951          },
5952          "type": "array",
5953          "x-kubernetes-patch-merge-key": "devicePath",
5954          "x-kubernetes-patch-strategy": "merge"
5955        },
5956        "volumeMounts": {
5957          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
5958          "items": {
5959            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
5960          },
5961          "type": "array",
5962          "x-kubernetes-patch-merge-key": "mountPath",
5963          "x-kubernetes-patch-strategy": "merge"
5964        },
5965        "workingDir": {
5966          "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.",
5967          "type": "string"
5968        }
5969      },
5970      "required": [
5971        "name"
5972      ],
5973      "type": "object"
5974    },
5975    "io.k8s.api.core.v1.ContainerImage": {
5976      "description": "Describe a container image",
5977      "properties": {
5978        "names": {
5979          "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\"]",
5980          "items": {
5981            "type": "string"
5982          },
5983          "type": "array"
5984        },
5985        "sizeBytes": {
5986          "description": "The size of the image in bytes.",
5987          "format": "int64",
5988          "type": "integer"
5989        }
5990      },
5991      "required": [
5992        "names"
5993      ],
5994      "type": "object"
5995    },
5996    "io.k8s.api.core.v1.ContainerPort": {
5997      "description": "ContainerPort represents a network port in a single container.",
5998      "properties": {
5999        "containerPort": {
6000          "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
6001          "format": "int32",
6002          "type": "integer"
6003        },
6004        "hostIP": {
6005          "description": "What host IP to bind the external port to.",
6006          "type": "string"
6007        },
6008        "hostPort": {
6009          "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.",
6010          "format": "int32",
6011          "type": "integer"
6012        },
6013        "name": {
6014          "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.",
6015          "type": "string"
6016        },
6017        "protocol": {
6018          "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
6019          "type": "string"
6020        }
6021      },
6022      "required": [
6023        "containerPort"
6024      ],
6025      "type": "object"
6026    },
6027    "io.k8s.api.core.v1.ContainerState": {
6028      "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.",
6029      "properties": {
6030        "running": {
6031          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateRunning",
6032          "description": "Details about a running container"
6033        },
6034        "terminated": {
6035          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated",
6036          "description": "Details about a terminated container"
6037        },
6038        "waiting": {
6039          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting",
6040          "description": "Details about a waiting container"
6041        }
6042      },
6043      "type": "object"
6044    },
6045    "io.k8s.api.core.v1.ContainerStateRunning": {
6046      "description": "ContainerStateRunning is a running state of a container.",
6047      "properties": {
6048        "startedAt": {
6049          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6050          "description": "Time at which the container was last (re-)started"
6051        }
6052      },
6053      "type": "object"
6054    },
6055    "io.k8s.api.core.v1.ContainerStateTerminated": {
6056      "description": "ContainerStateTerminated is a terminated state of a container.",
6057      "properties": {
6058        "containerID": {
6059          "description": "Container's ID in the format 'docker://<container_id>'",
6060          "type": "string"
6061        },
6062        "exitCode": {
6063          "description": "Exit status from the last termination of the container",
6064          "format": "int32",
6065          "type": "integer"
6066        },
6067        "finishedAt": {
6068          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6069          "description": "Time at which the container last terminated"
6070        },
6071        "message": {
6072          "description": "Message regarding the last termination of the container",
6073          "type": "string"
6074        },
6075        "reason": {
6076          "description": "(brief) reason from the last termination of the container",
6077          "type": "string"
6078        },
6079        "signal": {
6080          "description": "Signal from the last termination of the container",
6081          "format": "int32",
6082          "type": "integer"
6083        },
6084        "startedAt": {
6085          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6086          "description": "Time at which previous execution of the container started"
6087        }
6088      },
6089      "required": [
6090        "exitCode"
6091      ],
6092      "type": "object"
6093    },
6094    "io.k8s.api.core.v1.ContainerStateWaiting": {
6095      "description": "ContainerStateWaiting is a waiting state of a container.",
6096      "properties": {
6097        "message": {
6098          "description": "Message regarding why the container is not yet running.",
6099          "type": "string"
6100        },
6101        "reason": {
6102          "description": "(brief) reason the container is not yet running.",
6103          "type": "string"
6104        }
6105      },
6106      "type": "object"
6107    },
6108    "io.k8s.api.core.v1.ContainerStatus": {
6109      "description": "ContainerStatus contains details for the current status of this container.",
6110      "properties": {
6111        "containerID": {
6112          "description": "Container's ID in the format 'docker://<container_id>'.",
6113          "type": "string"
6114        },
6115        "image": {
6116          "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
6117          "type": "string"
6118        },
6119        "imageID": {
6120          "description": "ImageID of the container's image.",
6121          "type": "string"
6122        },
6123        "lastState": {
6124          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
6125          "description": "Details about the container's last termination condition."
6126        },
6127        "name": {
6128          "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.",
6129          "type": "string"
6130        },
6131        "ready": {
6132          "description": "Specifies whether the container has passed its readiness probe.",
6133          "type": "boolean"
6134        },
6135        "restartCount": {
6136          "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.",
6137          "format": "int32",
6138          "type": "integer"
6139        },
6140        "started": {
6141          "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.",
6142          "type": "boolean"
6143        },
6144        "state": {
6145          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
6146          "description": "Details about the container's current condition."
6147        }
6148      },
6149      "required": [
6150        "name",
6151        "ready",
6152        "restartCount",
6153        "image",
6154        "imageID"
6155      ],
6156      "type": "object"
6157    },
6158    "io.k8s.api.core.v1.DaemonEndpoint": {
6159      "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
6160      "properties": {
6161        "Port": {
6162          "description": "Port number of the given endpoint.",
6163          "format": "int32",
6164          "type": "integer"
6165        }
6166      },
6167      "required": [
6168        "Port"
6169      ],
6170      "type": "object"
6171    },
6172    "io.k8s.api.core.v1.DownwardAPIProjection": {
6173      "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.",
6174      "properties": {
6175        "items": {
6176          "description": "Items is a list of DownwardAPIVolume file",
6177          "items": {
6178            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
6179          },
6180          "type": "array"
6181        }
6182      },
6183      "type": "object"
6184    },
6185    "io.k8s.api.core.v1.DownwardAPIVolumeFile": {
6186      "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
6187      "properties": {
6188        "fieldRef": {
6189          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
6190          "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
6191        },
6192        "mode": {
6193          "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.",
6194          "format": "int32",
6195          "type": "integer"
6196        },
6197        "path": {
6198          "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 '..'",
6199          "type": "string"
6200        },
6201        "resourceFieldRef": {
6202          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
6203          "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
6204        }
6205      },
6206      "required": [
6207        "path"
6208      ],
6209      "type": "object"
6210    },
6211    "io.k8s.api.core.v1.DownwardAPIVolumeSource": {
6212      "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
6213      "properties": {
6214        "defaultMode": {
6215          "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.",
6216          "format": "int32",
6217          "type": "integer"
6218        },
6219        "items": {
6220          "description": "Items is a list of downward API volume file",
6221          "items": {
6222            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
6223          },
6224          "type": "array"
6225        }
6226      },
6227      "type": "object"
6228    },
6229    "io.k8s.api.core.v1.EmptyDirVolumeSource": {
6230      "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
6231      "properties": {
6232        "medium": {
6233          "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",
6234          "type": "string"
6235        },
6236        "sizeLimit": {
6237          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
6238          "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"
6239        }
6240      },
6241      "type": "object"
6242    },
6243    "io.k8s.api.core.v1.EndpointAddress": {
6244      "description": "EndpointAddress is a tuple that describes single IP address.",
6245      "properties": {
6246        "hostname": {
6247          "description": "The Hostname of this endpoint",
6248          "type": "string"
6249        },
6250        "ip": {
6251          "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.",
6252          "type": "string"
6253        },
6254        "nodeName": {
6255          "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
6256          "type": "string"
6257        },
6258        "targetRef": {
6259          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6260          "description": "Reference to object providing the endpoint."
6261        }
6262      },
6263      "required": [
6264        "ip"
6265      ],
6266      "type": "object"
6267    },
6268    "io.k8s.api.core.v1.EndpointPort": {
6269      "description": "EndpointPort is a tuple that describes a single port.",
6270      "properties": {
6271        "appProtocol": {
6272          "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.",
6273          "type": "string"
6274        },
6275        "name": {
6276          "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.",
6277          "type": "string"
6278        },
6279        "port": {
6280          "description": "The port number of the endpoint.",
6281          "format": "int32",
6282          "type": "integer"
6283        },
6284        "protocol": {
6285          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
6286          "type": "string"
6287        }
6288      },
6289      "required": [
6290        "port"
6291      ],
6292      "type": "object"
6293    },
6294    "io.k8s.api.core.v1.EndpointSubset": {
6295      "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 ]",
6296      "properties": {
6297        "addresses": {
6298          "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.",
6299          "items": {
6300            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
6301          },
6302          "type": "array"
6303        },
6304        "notReadyAddresses": {
6305          "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.",
6306          "items": {
6307            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
6308          },
6309          "type": "array"
6310        },
6311        "ports": {
6312          "description": "Port numbers available on the related IP addresses.",
6313          "items": {
6314            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointPort"
6315          },
6316          "type": "array"
6317        }
6318      },
6319      "type": "object"
6320    },
6321    "io.k8s.api.core.v1.Endpoints": {
6322      "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 ]",
6323      "properties": {
6324        "apiVersion": {
6325          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6326          "type": "string"
6327        },
6328        "kind": {
6329          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6330          "type": "string"
6331        },
6332        "metadata": {
6333          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6334          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6335        },
6336        "subsets": {
6337          "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.",
6338          "items": {
6339            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointSubset"
6340          },
6341          "type": "array"
6342        }
6343      },
6344      "type": "object",
6345      "x-kubernetes-group-version-kind": [
6346        {
6347          "group": "",
6348          "kind": "Endpoints",
6349          "version": "v1"
6350        }
6351      ]
6352    },
6353    "io.k8s.api.core.v1.EndpointsList": {
6354      "description": "EndpointsList is a list of endpoints.",
6355      "properties": {
6356        "apiVersion": {
6357          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6358          "type": "string"
6359        },
6360        "items": {
6361          "description": "List of endpoints.",
6362          "items": {
6363            "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
6364          },
6365          "type": "array"
6366        },
6367        "kind": {
6368          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6369          "type": "string"
6370        },
6371        "metadata": {
6372          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6373          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6374        }
6375      },
6376      "required": [
6377        "items"
6378      ],
6379      "type": "object",
6380      "x-kubernetes-group-version-kind": [
6381        {
6382          "group": "",
6383          "kind": "EndpointsList",
6384          "version": "v1"
6385        }
6386      ]
6387    },
6388    "io.k8s.api.core.v1.EnvFromSource": {
6389      "description": "EnvFromSource represents the source of a set of ConfigMaps",
6390      "properties": {
6391        "configMapRef": {
6392          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
6393          "description": "The ConfigMap to select from"
6394        },
6395        "prefix": {
6396          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
6397          "type": "string"
6398        },
6399        "secretRef": {
6400          "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
6401          "description": "The Secret to select from"
6402        }
6403      },
6404      "type": "object"
6405    },
6406    "io.k8s.api.core.v1.EnvVar": {
6407      "description": "EnvVar represents an environment variable present in a Container.",
6408      "properties": {
6409        "name": {
6410          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
6411          "type": "string"
6412        },
6413        "value": {
6414          "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 \"\".",
6415          "type": "string"
6416        },
6417        "valueFrom": {
6418          "$ref": "#/definitions/io.k8s.api.core.v1.EnvVarSource",
6419          "description": "Source for the environment variable's value. Cannot be used if value is not empty."
6420        }
6421      },
6422      "required": [
6423        "name"
6424      ],
6425      "type": "object"
6426    },
6427    "io.k8s.api.core.v1.EnvVarSource": {
6428      "description": "EnvVarSource represents a source for the value of an EnvVar.",
6429      "properties": {
6430        "configMapKeyRef": {
6431          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector",
6432          "description": "Selects a key of a ConfigMap."
6433        },
6434        "fieldRef": {
6435          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
6436          "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."
6437        },
6438        "resourceFieldRef": {
6439          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
6440          "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."
6441        },
6442        "secretKeyRef": {
6443          "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
6444          "description": "Selects a key of a secret in the pod's namespace"
6445        }
6446      },
6447      "type": "object"
6448    },
6449    "io.k8s.api.core.v1.EphemeralContainer": {
6450      "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.",
6451      "properties": {
6452        "args": {
6453          "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",
6454          "items": {
6455            "type": "string"
6456          },
6457          "type": "array"
6458        },
6459        "command": {
6460          "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",
6461          "items": {
6462            "type": "string"
6463          },
6464          "type": "array"
6465        },
6466        "env": {
6467          "description": "List of environment variables to set in the container. Cannot be updated.",
6468          "items": {
6469            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
6470          },
6471          "type": "array",
6472          "x-kubernetes-patch-merge-key": "name",
6473          "x-kubernetes-patch-strategy": "merge"
6474        },
6475        "envFrom": {
6476          "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.",
6477          "items": {
6478            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
6479          },
6480          "type": "array"
6481        },
6482        "image": {
6483          "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
6484          "type": "string"
6485        },
6486        "imagePullPolicy": {
6487          "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",
6488          "type": "string"
6489        },
6490        "lifecycle": {
6491          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
6492          "description": "Lifecycle is not allowed for ephemeral containers."
6493        },
6494        "livenessProbe": {
6495          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6496          "description": "Probes are not allowed for ephemeral containers."
6497        },
6498        "name": {
6499          "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
6500          "type": "string"
6501        },
6502        "ports": {
6503          "description": "Ports are not allowed for ephemeral containers.",
6504          "items": {
6505            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
6506          },
6507          "type": "array"
6508        },
6509        "readinessProbe": {
6510          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6511          "description": "Probes are not allowed for ephemeral containers."
6512        },
6513        "resources": {
6514          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
6515          "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
6516        },
6517        "securityContext": {
6518          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
6519          "description": "SecurityContext is not allowed for ephemeral containers."
6520        },
6521        "startupProbe": {
6522          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
6523          "description": "Probes are not allowed for ephemeral containers."
6524        },
6525        "stdin": {
6526          "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.",
6527          "type": "boolean"
6528        },
6529        "stdinOnce": {
6530          "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",
6531          "type": "boolean"
6532        },
6533        "targetContainerName": {
6534          "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.",
6535          "type": "string"
6536        },
6537        "terminationMessagePath": {
6538          "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.",
6539          "type": "string"
6540        },
6541        "terminationMessagePolicy": {
6542          "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.",
6543          "type": "string"
6544        },
6545        "tty": {
6546          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
6547          "type": "boolean"
6548        },
6549        "volumeDevices": {
6550          "description": "volumeDevices is the list of block devices to be used by the container.",
6551          "items": {
6552            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
6553          },
6554          "type": "array",
6555          "x-kubernetes-patch-merge-key": "devicePath",
6556          "x-kubernetes-patch-strategy": "merge"
6557        },
6558        "volumeMounts": {
6559          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
6560          "items": {
6561            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
6562          },
6563          "type": "array",
6564          "x-kubernetes-patch-merge-key": "mountPath",
6565          "x-kubernetes-patch-strategy": "merge"
6566        },
6567        "workingDir": {
6568          "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.",
6569          "type": "string"
6570        }
6571      },
6572      "required": [
6573        "name"
6574      ],
6575      "type": "object"
6576    },
6577    "io.k8s.api.core.v1.EphemeralContainers": {
6578      "description": "A list of ephemeral containers used with the Pod ephemeralcontainers subresource.",
6579      "properties": {
6580        "apiVersion": {
6581          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6582          "type": "string"
6583        },
6584        "ephemeralContainers": {
6585          "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.",
6586          "items": {
6587            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
6588          },
6589          "type": "array",
6590          "x-kubernetes-patch-merge-key": "name",
6591          "x-kubernetes-patch-strategy": "merge"
6592        },
6593        "kind": {
6594          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6595          "type": "string"
6596        },
6597        "metadata": {
6598          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6599        }
6600      },
6601      "required": [
6602        "ephemeralContainers"
6603      ],
6604      "type": "object",
6605      "x-kubernetes-group-version-kind": [
6606        {
6607          "group": "",
6608          "kind": "EphemeralContainers",
6609          "version": "v1"
6610        }
6611      ]
6612    },
6613    "io.k8s.api.core.v1.EphemeralVolumeSource": {
6614      "description": "Represents an ephemeral volume that is handled by a normal storage driver.",
6615      "properties": {
6616        "readOnly": {
6617          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
6618          "type": "boolean"
6619        },
6620        "volumeClaimTemplate": {
6621          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate",
6622          "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."
6623        }
6624      },
6625      "type": "object"
6626    },
6627    "io.k8s.api.core.v1.Event": {
6628      "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.",
6629      "properties": {
6630        "action": {
6631          "description": "What action was taken/failed regarding to the Regarding object.",
6632          "type": "string"
6633        },
6634        "apiVersion": {
6635          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6636          "type": "string"
6637        },
6638        "count": {
6639          "description": "The number of times this event has occurred.",
6640          "format": "int32",
6641          "type": "integer"
6642        },
6643        "eventTime": {
6644          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6645          "description": "Time when this Event was first observed."
6646        },
6647        "firstTimestamp": {
6648          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6649          "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)"
6650        },
6651        "involvedObject": {
6652          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6653          "description": "The object that this event is about."
6654        },
6655        "kind": {
6656          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6657          "type": "string"
6658        },
6659        "lastTimestamp": {
6660          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6661          "description": "The time at which the most recent occurrence of this event was recorded."
6662        },
6663        "message": {
6664          "description": "A human-readable description of the status of this operation.",
6665          "type": "string"
6666        },
6667        "metadata": {
6668          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6669          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6670        },
6671        "reason": {
6672          "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
6673          "type": "string"
6674        },
6675        "related": {
6676          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6677          "description": "Optional secondary object for more complex actions."
6678        },
6679        "reportingComponent": {
6680          "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
6681          "type": "string"
6682        },
6683        "reportingInstance": {
6684          "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
6685          "type": "string"
6686        },
6687        "series": {
6688          "$ref": "#/definitions/io.k8s.api.core.v1.EventSeries",
6689          "description": "Data about the Event series this event represents or nil if it's a singleton Event."
6690        },
6691        "source": {
6692          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
6693          "description": "The component reporting this event. Should be a short machine understandable string."
6694        },
6695        "type": {
6696          "description": "Type of this event (Normal, Warning), new types could be added in the future",
6697          "type": "string"
6698        }
6699      },
6700      "required": [
6701        "metadata",
6702        "involvedObject"
6703      ],
6704      "type": "object",
6705      "x-kubernetes-group-version-kind": [
6706        {
6707          "group": "",
6708          "kind": "Event",
6709          "version": "v1"
6710        }
6711      ]
6712    },
6713    "io.k8s.api.core.v1.EventList": {
6714      "description": "EventList is a list of events.",
6715      "properties": {
6716        "apiVersion": {
6717          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6718          "type": "string"
6719        },
6720        "items": {
6721          "description": "List of events",
6722          "items": {
6723            "$ref": "#/definitions/io.k8s.api.core.v1.Event"
6724          },
6725          "type": "array"
6726        },
6727        "kind": {
6728          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6729          "type": "string"
6730        },
6731        "metadata": {
6732          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6733          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6734        }
6735      },
6736      "required": [
6737        "items"
6738      ],
6739      "type": "object",
6740      "x-kubernetes-group-version-kind": [
6741        {
6742          "group": "",
6743          "kind": "EventList",
6744          "version": "v1"
6745        }
6746      ]
6747    },
6748    "io.k8s.api.core.v1.EventSeries": {
6749      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
6750      "properties": {
6751        "count": {
6752          "description": "Number of occurrences in this series up to the last heartbeat time",
6753          "format": "int32",
6754          "type": "integer"
6755        },
6756        "lastObservedTime": {
6757          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6758          "description": "Time of the last occurrence observed"
6759        }
6760      },
6761      "type": "object"
6762    },
6763    "io.k8s.api.core.v1.EventSource": {
6764      "description": "EventSource contains information for an event.",
6765      "properties": {
6766        "component": {
6767          "description": "Component from which the event is generated.",
6768          "type": "string"
6769        },
6770        "host": {
6771          "description": "Node name on which the event is generated.",
6772          "type": "string"
6773        }
6774      },
6775      "type": "object"
6776    },
6777    "io.k8s.api.core.v1.ExecAction": {
6778      "description": "ExecAction describes a \"run in container\" action.",
6779      "properties": {
6780        "command": {
6781          "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.",
6782          "items": {
6783            "type": "string"
6784          },
6785          "type": "array"
6786        }
6787      },
6788      "type": "object"
6789    },
6790    "io.k8s.api.core.v1.FCVolumeSource": {
6791      "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.",
6792      "properties": {
6793        "fsType": {
6794          "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.",
6795          "type": "string"
6796        },
6797        "lun": {
6798          "description": "Optional: FC target lun number",
6799          "format": "int32",
6800          "type": "integer"
6801        },
6802        "readOnly": {
6803          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6804          "type": "boolean"
6805        },
6806        "targetWWNs": {
6807          "description": "Optional: FC target worldwide names (WWNs)",
6808          "items": {
6809            "type": "string"
6810          },
6811          "type": "array"
6812        },
6813        "wwids": {
6814          "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
6815          "items": {
6816            "type": "string"
6817          },
6818          "type": "array"
6819        }
6820      },
6821      "type": "object"
6822    },
6823    "io.k8s.api.core.v1.FlexPersistentVolumeSource": {
6824      "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
6825      "properties": {
6826        "driver": {
6827          "description": "Driver is the name of the driver to use for this volume.",
6828          "type": "string"
6829        },
6830        "fsType": {
6831          "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.",
6832          "type": "string"
6833        },
6834        "options": {
6835          "additionalProperties": {
6836            "type": "string"
6837          },
6838          "description": "Optional: Extra command options if any.",
6839          "type": "object"
6840        },
6841        "readOnly": {
6842          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6843          "type": "boolean"
6844        },
6845        "secretRef": {
6846          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6847          "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."
6848        }
6849      },
6850      "required": [
6851        "driver"
6852      ],
6853      "type": "object"
6854    },
6855    "io.k8s.api.core.v1.FlexVolumeSource": {
6856      "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
6857      "properties": {
6858        "driver": {
6859          "description": "Driver is the name of the driver to use for this volume.",
6860          "type": "string"
6861        },
6862        "fsType": {
6863          "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.",
6864          "type": "string"
6865        },
6866        "options": {
6867          "additionalProperties": {
6868            "type": "string"
6869          },
6870          "description": "Optional: Extra command options if any.",
6871          "type": "object"
6872        },
6873        "readOnly": {
6874          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6875          "type": "boolean"
6876        },
6877        "secretRef": {
6878          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6879          "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."
6880        }
6881      },
6882      "required": [
6883        "driver"
6884      ],
6885      "type": "object"
6886    },
6887    "io.k8s.api.core.v1.FlockerVolumeSource": {
6888      "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.",
6889      "properties": {
6890        "datasetName": {
6891          "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
6892          "type": "string"
6893        },
6894        "datasetUUID": {
6895          "description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
6896          "type": "string"
6897        }
6898      },
6899      "type": "object"
6900    },
6901    "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": {
6902      "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.",
6903      "properties": {
6904        "fsType": {
6905          "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",
6906          "type": "string"
6907        },
6908        "partition": {
6909          "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",
6910          "format": "int32",
6911          "type": "integer"
6912        },
6913        "pdName": {
6914          "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",
6915          "type": "string"
6916        },
6917        "readOnly": {
6918          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
6919          "type": "boolean"
6920        }
6921      },
6922      "required": [
6923        "pdName"
6924      ],
6925      "type": "object"
6926    },
6927    "io.k8s.api.core.v1.GitRepoVolumeSource": {
6928      "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.",
6929      "properties": {
6930        "directory": {
6931          "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.",
6932          "type": "string"
6933        },
6934        "repository": {
6935          "description": "Repository URL",
6936          "type": "string"
6937        },
6938        "revision": {
6939          "description": "Commit hash for the specified revision.",
6940          "type": "string"
6941        }
6942      },
6943      "required": [
6944        "repository"
6945      ],
6946      "type": "object"
6947    },
6948    "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": {
6949      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
6950      "properties": {
6951        "endpoints": {
6952          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6953          "type": "string"
6954        },
6955        "endpointsNamespace": {
6956          "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",
6957          "type": "string"
6958        },
6959        "path": {
6960          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6961          "type": "string"
6962        },
6963        "readOnly": {
6964          "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",
6965          "type": "boolean"
6966        }
6967      },
6968      "required": [
6969        "endpoints",
6970        "path"
6971      ],
6972      "type": "object"
6973    },
6974    "io.k8s.api.core.v1.GlusterfsVolumeSource": {
6975      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
6976      "properties": {
6977        "endpoints": {
6978          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6979          "type": "string"
6980        },
6981        "path": {
6982          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
6983          "type": "string"
6984        },
6985        "readOnly": {
6986          "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",
6987          "type": "boolean"
6988        }
6989      },
6990      "required": [
6991        "endpoints",
6992        "path"
6993      ],
6994      "type": "object"
6995    },
6996    "io.k8s.api.core.v1.HTTPGetAction": {
6997      "description": "HTTPGetAction describes an action based on HTTP Get requests.",
6998      "properties": {
6999        "host": {
7000          "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
7001          "type": "string"
7002        },
7003        "httpHeaders": {
7004          "description": "Custom headers to set in the request. HTTP allows repeated headers.",
7005          "items": {
7006            "$ref": "#/definitions/io.k8s.api.core.v1.HTTPHeader"
7007          },
7008          "type": "array"
7009        },
7010        "path": {
7011          "description": "Path to access on the HTTP server.",
7012          "type": "string"
7013        },
7014        "port": {
7015          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
7016          "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."
7017        },
7018        "scheme": {
7019          "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
7020          "type": "string"
7021        }
7022      },
7023      "required": [
7024        "port"
7025      ],
7026      "type": "object"
7027    },
7028    "io.k8s.api.core.v1.HTTPHeader": {
7029      "description": "HTTPHeader describes a custom header to be used in HTTP probes",
7030      "properties": {
7031        "name": {
7032          "description": "The header field name",
7033          "type": "string"
7034        },
7035        "value": {
7036          "description": "The header field value",
7037          "type": "string"
7038        }
7039      },
7040      "required": [
7041        "name",
7042        "value"
7043      ],
7044      "type": "object"
7045    },
7046    "io.k8s.api.core.v1.Handler": {
7047      "description": "Handler defines a specific action that should be taken",
7048      "properties": {
7049        "exec": {
7050          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
7051          "description": "One and only one of the following should be specified. Exec specifies the action to take."
7052        },
7053        "httpGet": {
7054          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
7055          "description": "HTTPGet specifies the http request to perform."
7056        },
7057        "tcpSocket": {
7058          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
7059          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
7060        }
7061      },
7062      "type": "object"
7063    },
7064    "io.k8s.api.core.v1.HostAlias": {
7065      "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
7066      "properties": {
7067        "hostnames": {
7068          "description": "Hostnames for the above IP address.",
7069          "items": {
7070            "type": "string"
7071          },
7072          "type": "array"
7073        },
7074        "ip": {
7075          "description": "IP address of the host file entry.",
7076          "type": "string"
7077        }
7078      },
7079      "type": "object"
7080    },
7081    "io.k8s.api.core.v1.HostPathVolumeSource": {
7082      "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
7083      "properties": {
7084        "path": {
7085          "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",
7086          "type": "string"
7087        },
7088        "type": {
7089          "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
7090          "type": "string"
7091        }
7092      },
7093      "required": [
7094        "path"
7095      ],
7096      "type": "object"
7097    },
7098    "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": {
7099      "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
7100      "properties": {
7101        "chapAuthDiscovery": {
7102          "description": "whether support iSCSI Discovery CHAP authentication",
7103          "type": "boolean"
7104        },
7105        "chapAuthSession": {
7106          "description": "whether support iSCSI Session CHAP authentication",
7107          "type": "boolean"
7108        },
7109        "fsType": {
7110          "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",
7111          "type": "string"
7112        },
7113        "initiatorName": {
7114          "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.",
7115          "type": "string"
7116        },
7117        "iqn": {
7118          "description": "Target iSCSI Qualified Name.",
7119          "type": "string"
7120        },
7121        "iscsiInterface": {
7122          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
7123          "type": "string"
7124        },
7125        "lun": {
7126          "description": "iSCSI Target Lun number.",
7127          "format": "int32",
7128          "type": "integer"
7129        },
7130        "portals": {
7131          "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).",
7132          "items": {
7133            "type": "string"
7134          },
7135          "type": "array"
7136        },
7137        "readOnly": {
7138          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
7139          "type": "boolean"
7140        },
7141        "secretRef": {
7142          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
7143          "description": "CHAP Secret for iSCSI target and initiator authentication"
7144        },
7145        "targetPortal": {
7146          "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).",
7147          "type": "string"
7148        }
7149      },
7150      "required": [
7151        "targetPortal",
7152        "iqn",
7153        "lun"
7154      ],
7155      "type": "object"
7156    },
7157    "io.k8s.api.core.v1.ISCSIVolumeSource": {
7158      "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
7159      "properties": {
7160        "chapAuthDiscovery": {
7161          "description": "whether support iSCSI Discovery CHAP authentication",
7162          "type": "boolean"
7163        },
7164        "chapAuthSession": {
7165          "description": "whether support iSCSI Session CHAP authentication",
7166          "type": "boolean"
7167        },
7168        "fsType": {
7169          "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",
7170          "type": "string"
7171        },
7172        "initiatorName": {
7173          "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.",
7174          "type": "string"
7175        },
7176        "iqn": {
7177          "description": "Target iSCSI Qualified Name.",
7178          "type": "string"
7179        },
7180        "iscsiInterface": {
7181          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
7182          "type": "string"
7183        },
7184        "lun": {
7185          "description": "iSCSI Target Lun number.",
7186          "format": "int32",
7187          "type": "integer"
7188        },
7189        "portals": {
7190          "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).",
7191          "items": {
7192            "type": "string"
7193          },
7194          "type": "array"
7195        },
7196        "readOnly": {
7197          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
7198          "type": "boolean"
7199        },
7200        "secretRef": {
7201          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
7202          "description": "CHAP Secret for iSCSI target and initiator authentication"
7203        },
7204        "targetPortal": {
7205          "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).",
7206          "type": "string"
7207        }
7208      },
7209      "required": [
7210        "targetPortal",
7211        "iqn",
7212        "lun"
7213      ],
7214      "type": "object"
7215    },
7216    "io.k8s.api.core.v1.KeyToPath": {
7217      "description": "Maps a string key to a path within a volume.",
7218      "properties": {
7219        "key": {
7220          "description": "The key to project.",
7221          "type": "string"
7222        },
7223        "mode": {
7224          "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.",
7225          "format": "int32",
7226          "type": "integer"
7227        },
7228        "path": {
7229          "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 '..'.",
7230          "type": "string"
7231        }
7232      },
7233      "required": [
7234        "key",
7235        "path"
7236      ],
7237      "type": "object"
7238    },
7239    "io.k8s.api.core.v1.Lifecycle": {
7240      "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.",
7241      "properties": {
7242        "postStart": {
7243          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
7244          "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"
7245        },
7246        "preStop": {
7247          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
7248          "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"
7249        }
7250      },
7251      "type": "object"
7252    },
7253    "io.k8s.api.core.v1.LimitRange": {
7254      "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
7255      "properties": {
7256        "apiVersion": {
7257          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7258          "type": "string"
7259        },
7260        "kind": {
7261          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7262          "type": "string"
7263        },
7264        "metadata": {
7265          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7266          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7267        },
7268        "spec": {
7269          "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeSpec",
7270          "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7271        }
7272      },
7273      "type": "object",
7274      "x-kubernetes-group-version-kind": [
7275        {
7276          "group": "",
7277          "kind": "LimitRange",
7278          "version": "v1"
7279        }
7280      ]
7281    },
7282    "io.k8s.api.core.v1.LimitRangeItem": {
7283      "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
7284      "properties": {
7285        "default": {
7286          "additionalProperties": {
7287            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7288          },
7289          "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
7290          "type": "object"
7291        },
7292        "defaultRequest": {
7293          "additionalProperties": {
7294            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7295          },
7296          "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
7297          "type": "object"
7298        },
7299        "max": {
7300          "additionalProperties": {
7301            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7302          },
7303          "description": "Max usage constraints on this kind by resource name.",
7304          "type": "object"
7305        },
7306        "maxLimitRequestRatio": {
7307          "additionalProperties": {
7308            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7309          },
7310          "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.",
7311          "type": "object"
7312        },
7313        "min": {
7314          "additionalProperties": {
7315            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7316          },
7317          "description": "Min usage constraints on this kind by resource name.",
7318          "type": "object"
7319        },
7320        "type": {
7321          "description": "Type of resource that this limit applies to.",
7322          "type": "string"
7323        }
7324      },
7325      "required": [
7326        "type"
7327      ],
7328      "type": "object"
7329    },
7330    "io.k8s.api.core.v1.LimitRangeList": {
7331      "description": "LimitRangeList is a list of LimitRange items.",
7332      "properties": {
7333        "apiVersion": {
7334          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7335          "type": "string"
7336        },
7337        "items": {
7338          "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
7339          "items": {
7340            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
7341          },
7342          "type": "array"
7343        },
7344        "kind": {
7345          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7346          "type": "string"
7347        },
7348        "metadata": {
7349          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7350          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7351        }
7352      },
7353      "required": [
7354        "items"
7355      ],
7356      "type": "object",
7357      "x-kubernetes-group-version-kind": [
7358        {
7359          "group": "",
7360          "kind": "LimitRangeList",
7361          "version": "v1"
7362        }
7363      ]
7364    },
7365    "io.k8s.api.core.v1.LimitRangeSpec": {
7366      "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
7367      "properties": {
7368        "limits": {
7369          "description": "Limits is the list of LimitRangeItem objects that are enforced.",
7370          "items": {
7371            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeItem"
7372          },
7373          "type": "array"
7374        }
7375      },
7376      "required": [
7377        "limits"
7378      ],
7379      "type": "object"
7380    },
7381    "io.k8s.api.core.v1.LoadBalancerIngress": {
7382      "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
7383      "properties": {
7384        "hostname": {
7385          "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
7386          "type": "string"
7387        },
7388        "ip": {
7389          "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
7390          "type": "string"
7391        },
7392        "ports": {
7393          "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it",
7394          "items": {
7395            "$ref": "#/definitions/io.k8s.api.core.v1.PortStatus"
7396          },
7397          "type": "array",
7398          "x-kubernetes-list-type": "atomic"
7399        }
7400      },
7401      "type": "object"
7402    },
7403    "io.k8s.api.core.v1.LoadBalancerStatus": {
7404      "description": "LoadBalancerStatus represents the status of a load-balancer.",
7405      "properties": {
7406        "ingress": {
7407          "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
7408          "items": {
7409            "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress"
7410          },
7411          "type": "array"
7412        }
7413      },
7414      "type": "object"
7415    },
7416    "io.k8s.api.core.v1.LocalObjectReference": {
7417      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
7418      "properties": {
7419        "name": {
7420          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
7421          "type": "string"
7422        }
7423      },
7424      "type": "object"
7425    },
7426    "io.k8s.api.core.v1.LocalVolumeSource": {
7427      "description": "Local represents directly-attached storage with node affinity (Beta feature)",
7428      "properties": {
7429        "fsType": {
7430          "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.",
7431          "type": "string"
7432        },
7433        "path": {
7434          "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
7435          "type": "string"
7436        }
7437      },
7438      "required": [
7439        "path"
7440      ],
7441      "type": "object"
7442    },
7443    "io.k8s.api.core.v1.NFSVolumeSource": {
7444      "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
7445      "properties": {
7446        "path": {
7447          "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
7448          "type": "string"
7449        },
7450        "readOnly": {
7451          "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",
7452          "type": "boolean"
7453        },
7454        "server": {
7455          "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
7456          "type": "string"
7457        }
7458      },
7459      "required": [
7460        "server",
7461        "path"
7462      ],
7463      "type": "object"
7464    },
7465    "io.k8s.api.core.v1.Namespace": {
7466      "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
7467      "properties": {
7468        "apiVersion": {
7469          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7470          "type": "string"
7471        },
7472        "kind": {
7473          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7474          "type": "string"
7475        },
7476        "metadata": {
7477          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7478          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7479        },
7480        "spec": {
7481          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceSpec",
7482          "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"
7483        },
7484        "status": {
7485          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceStatus",
7486          "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"
7487        }
7488      },
7489      "type": "object",
7490      "x-kubernetes-group-version-kind": [
7491        {
7492          "group": "",
7493          "kind": "Namespace",
7494          "version": "v1"
7495        }
7496      ]
7497    },
7498    "io.k8s.api.core.v1.NamespaceCondition": {
7499      "description": "NamespaceCondition contains details about state of namespace.",
7500      "properties": {
7501        "lastTransitionTime": {
7502          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
7503        },
7504        "message": {
7505          "type": "string"
7506        },
7507        "reason": {
7508          "type": "string"
7509        },
7510        "status": {
7511          "description": "Status of the condition, one of True, False, Unknown.",
7512          "type": "string"
7513        },
7514        "type": {
7515          "description": "Type of namespace controller condition.",
7516          "type": "string"
7517        }
7518      },
7519      "required": [
7520        "type",
7521        "status"
7522      ],
7523      "type": "object"
7524    },
7525    "io.k8s.api.core.v1.NamespaceList": {
7526      "description": "NamespaceList is a list of Namespaces.",
7527      "properties": {
7528        "apiVersion": {
7529          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7530          "type": "string"
7531        },
7532        "items": {
7533          "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
7534          "items": {
7535            "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
7536          },
7537          "type": "array"
7538        },
7539        "kind": {
7540          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7541          "type": "string"
7542        },
7543        "metadata": {
7544          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7545          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7546        }
7547      },
7548      "required": [
7549        "items"
7550      ],
7551      "type": "object",
7552      "x-kubernetes-group-version-kind": [
7553        {
7554          "group": "",
7555          "kind": "NamespaceList",
7556          "version": "v1"
7557        }
7558      ]
7559    },
7560    "io.k8s.api.core.v1.NamespaceSpec": {
7561      "description": "NamespaceSpec describes the attributes on a Namespace.",
7562      "properties": {
7563        "finalizers": {
7564          "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/",
7565          "items": {
7566            "type": "string"
7567          },
7568          "type": "array"
7569        }
7570      },
7571      "type": "object"
7572    },
7573    "io.k8s.api.core.v1.NamespaceStatus": {
7574      "description": "NamespaceStatus is information about the current status of a Namespace.",
7575      "properties": {
7576        "conditions": {
7577          "description": "Represents the latest available observations of a namespace's current state.",
7578          "items": {
7579            "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceCondition"
7580          },
7581          "type": "array",
7582          "x-kubernetes-patch-merge-key": "type",
7583          "x-kubernetes-patch-strategy": "merge"
7584        },
7585        "phase": {
7586          "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
7587          "type": "string"
7588        }
7589      },
7590      "type": "object"
7591    },
7592    "io.k8s.api.core.v1.Node": {
7593      "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
7594      "properties": {
7595        "apiVersion": {
7596          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7597          "type": "string"
7598        },
7599        "kind": {
7600          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7601          "type": "string"
7602        },
7603        "metadata": {
7604          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7605          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7606        },
7607        "spec": {
7608          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSpec",
7609          "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7610        },
7611        "status": {
7612          "$ref": "#/definitions/io.k8s.api.core.v1.NodeStatus",
7613          "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"
7614        }
7615      },
7616      "type": "object",
7617      "x-kubernetes-group-version-kind": [
7618        {
7619          "group": "",
7620          "kind": "Node",
7621          "version": "v1"
7622        }
7623      ]
7624    },
7625    "io.k8s.api.core.v1.NodeAddress": {
7626      "description": "NodeAddress contains information for the node's address.",
7627      "properties": {
7628        "address": {
7629          "description": "The node address.",
7630          "type": "string"
7631        },
7632        "type": {
7633          "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
7634          "type": "string"
7635        }
7636      },
7637      "required": [
7638        "type",
7639        "address"
7640      ],
7641      "type": "object"
7642    },
7643    "io.k8s.api.core.v1.NodeAffinity": {
7644      "description": "Node affinity is a group of node affinity scheduling rules.",
7645      "properties": {
7646        "preferredDuringSchedulingIgnoredDuringExecution": {
7647          "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.",
7648          "items": {
7649            "$ref": "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm"
7650          },
7651          "type": "array"
7652        },
7653        "requiredDuringSchedulingIgnoredDuringExecution": {
7654          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
7655          "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."
7656        }
7657      },
7658      "type": "object"
7659    },
7660    "io.k8s.api.core.v1.NodeCondition": {
7661      "description": "NodeCondition contains condition information for a node.",
7662      "properties": {
7663        "lastHeartbeatTime": {
7664          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7665          "description": "Last time we got an update on a given condition."
7666        },
7667        "lastTransitionTime": {
7668          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7669          "description": "Last time the condition transit from one status to another."
7670        },
7671        "message": {
7672          "description": "Human readable message indicating details about last transition.",
7673          "type": "string"
7674        },
7675        "reason": {
7676          "description": "(brief) reason for the condition's last transition.",
7677          "type": "string"
7678        },
7679        "status": {
7680          "description": "Status of the condition, one of True, False, Unknown.",
7681          "type": "string"
7682        },
7683        "type": {
7684          "description": "Type of node condition.",
7685          "type": "string"
7686        }
7687      },
7688      "required": [
7689        "type",
7690        "status"
7691      ],
7692      "type": "object"
7693    },
7694    "io.k8s.api.core.v1.NodeConfigSource": {
7695      "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.",
7696      "properties": {
7697        "configMap": {
7698          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapNodeConfigSource",
7699          "description": "ConfigMap is a reference to a Node's ConfigMap"
7700        }
7701      },
7702      "type": "object"
7703    },
7704    "io.k8s.api.core.v1.NodeConfigStatus": {
7705      "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
7706      "properties": {
7707        "active": {
7708          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7709          "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."
7710        },
7711        "assigned": {
7712          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7713          "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."
7714        },
7715        "error": {
7716          "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.",
7717          "type": "string"
7718        },
7719        "lastKnownGood": {
7720          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7721          "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."
7722        }
7723      },
7724      "type": "object"
7725    },
7726    "io.k8s.api.core.v1.NodeDaemonEndpoints": {
7727      "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
7728      "properties": {
7729        "kubeletEndpoint": {
7730          "$ref": "#/definitions/io.k8s.api.core.v1.DaemonEndpoint",
7731          "description": "Endpoint on which Kubelet is listening."
7732        }
7733      },
7734      "type": "object"
7735    },
7736    "io.k8s.api.core.v1.NodeList": {
7737      "description": "NodeList is the whole list of all Nodes which have been registered with master.",
7738      "properties": {
7739        "apiVersion": {
7740          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7741          "type": "string"
7742        },
7743        "items": {
7744          "description": "List of nodes",
7745          "items": {
7746            "$ref": "#/definitions/io.k8s.api.core.v1.Node"
7747          },
7748          "type": "array"
7749        },
7750        "kind": {
7751          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7752          "type": "string"
7753        },
7754        "metadata": {
7755          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7756          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7757        }
7758      },
7759      "required": [
7760        "items"
7761      ],
7762      "type": "object",
7763      "x-kubernetes-group-version-kind": [
7764        {
7765          "group": "",
7766          "kind": "NodeList",
7767          "version": "v1"
7768        }
7769      ]
7770    },
7771    "io.k8s.api.core.v1.NodeSelector": {
7772      "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.",
7773      "properties": {
7774        "nodeSelectorTerms": {
7775          "description": "Required. A list of node selector terms. The terms are ORed.",
7776          "items": {
7777            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm"
7778          },
7779          "type": "array"
7780        }
7781      },
7782      "required": [
7783        "nodeSelectorTerms"
7784      ],
7785      "type": "object"
7786    },
7787    "io.k8s.api.core.v1.NodeSelectorRequirement": {
7788      "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
7789      "properties": {
7790        "key": {
7791          "description": "The label key that the selector applies to.",
7792          "type": "string"
7793        },
7794        "operator": {
7795          "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
7796          "type": "string"
7797        },
7798        "values": {
7799          "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.",
7800          "items": {
7801            "type": "string"
7802          },
7803          "type": "array"
7804        }
7805      },
7806      "required": [
7807        "key",
7808        "operator"
7809      ],
7810      "type": "object"
7811    },
7812    "io.k8s.api.core.v1.NodeSelectorTerm": {
7813      "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.",
7814      "properties": {
7815        "matchExpressions": {
7816          "description": "A list of node selector requirements by node's labels.",
7817          "items": {
7818            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
7819          },
7820          "type": "array"
7821        },
7822        "matchFields": {
7823          "description": "A list of node selector requirements by node's fields.",
7824          "items": {
7825            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
7826          },
7827          "type": "array"
7828        }
7829      },
7830      "type": "object"
7831    },
7832    "io.k8s.api.core.v1.NodeSpec": {
7833      "description": "NodeSpec describes the attributes that a node is created with.",
7834      "properties": {
7835        "configSource": {
7836          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
7837          "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field"
7838        },
7839        "externalID": {
7840          "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966",
7841          "type": "string"
7842        },
7843        "podCIDR": {
7844          "description": "PodCIDR represents the pod IP range assigned to the node.",
7845          "type": "string"
7846        },
7847        "podCIDRs": {
7848          "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.",
7849          "items": {
7850            "type": "string"
7851          },
7852          "type": "array",
7853          "x-kubernetes-patch-strategy": "merge"
7854        },
7855        "providerID": {
7856          "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
7857          "type": "string"
7858        },
7859        "taints": {
7860          "description": "If specified, the node's taints.",
7861          "items": {
7862            "$ref": "#/definitions/io.k8s.api.core.v1.Taint"
7863          },
7864          "type": "array"
7865        },
7866        "unschedulable": {
7867          "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",
7868          "type": "boolean"
7869        }
7870      },
7871      "type": "object"
7872    },
7873    "io.k8s.api.core.v1.NodeStatus": {
7874      "description": "NodeStatus is information about the current status of a node.",
7875      "properties": {
7876        "addresses": {
7877          "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.",
7878          "items": {
7879            "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
7880          },
7881          "type": "array",
7882          "x-kubernetes-patch-merge-key": "type",
7883          "x-kubernetes-patch-strategy": "merge"
7884        },
7885        "allocatable": {
7886          "additionalProperties": {
7887            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7888          },
7889          "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
7890          "type": "object"
7891        },
7892        "capacity": {
7893          "additionalProperties": {
7894            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7895          },
7896          "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
7897          "type": "object"
7898        },
7899        "conditions": {
7900          "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
7901          "items": {
7902            "$ref": "#/definitions/io.k8s.api.core.v1.NodeCondition"
7903          },
7904          "type": "array",
7905          "x-kubernetes-patch-merge-key": "type",
7906          "x-kubernetes-patch-strategy": "merge"
7907        },
7908        "config": {
7909          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigStatus",
7910          "description": "Status of the config assigned to the node via the dynamic Kubelet config feature."
7911        },
7912        "daemonEndpoints": {
7913          "$ref": "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints",
7914          "description": "Endpoints of daemons running on the Node."
7915        },
7916        "images": {
7917          "description": "List of container images on this node",
7918          "items": {
7919            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerImage"
7920          },
7921          "type": "array"
7922        },
7923        "nodeInfo": {
7924          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSystemInfo",
7925          "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
7926        },
7927        "phase": {
7928          "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.",
7929          "type": "string"
7930        },
7931        "volumesAttached": {
7932          "description": "List of volumes that are attached to the node.",
7933          "items": {
7934            "$ref": "#/definitions/io.k8s.api.core.v1.AttachedVolume"
7935          },
7936          "type": "array"
7937        },
7938        "volumesInUse": {
7939          "description": "List of attachable volumes in use (mounted) by the node.",
7940          "items": {
7941            "type": "string"
7942          },
7943          "type": "array"
7944        }
7945      },
7946      "type": "object"
7947    },
7948    "io.k8s.api.core.v1.NodeSystemInfo": {
7949      "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
7950      "properties": {
7951        "architecture": {
7952          "description": "The Architecture reported by the node",
7953          "type": "string"
7954        },
7955        "bootID": {
7956          "description": "Boot ID reported by the node.",
7957          "type": "string"
7958        },
7959        "containerRuntimeVersion": {
7960          "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).",
7961          "type": "string"
7962        },
7963        "kernelVersion": {
7964          "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
7965          "type": "string"
7966        },
7967        "kubeProxyVersion": {
7968          "description": "KubeProxy Version reported by the node.",
7969          "type": "string"
7970        },
7971        "kubeletVersion": {
7972          "description": "Kubelet Version reported by the node.",
7973          "type": "string"
7974        },
7975        "machineID": {
7976          "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",
7977          "type": "string"
7978        },
7979        "operatingSystem": {
7980          "description": "The Operating System reported by the node",
7981          "type": "string"
7982        },
7983        "osImage": {
7984          "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
7985          "type": "string"
7986        },
7987        "systemUUID": {
7988          "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",
7989          "type": "string"
7990        }
7991      },
7992      "required": [
7993        "machineID",
7994        "systemUUID",
7995        "bootID",
7996        "kernelVersion",
7997        "osImage",
7998        "containerRuntimeVersion",
7999        "kubeletVersion",
8000        "kubeProxyVersion",
8001        "operatingSystem",
8002        "architecture"
8003      ],
8004      "type": "object"
8005    },
8006    "io.k8s.api.core.v1.ObjectFieldSelector": {
8007      "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
8008      "properties": {
8009        "apiVersion": {
8010          "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
8011          "type": "string"
8012        },
8013        "fieldPath": {
8014          "description": "Path of the field to select in the specified API version.",
8015          "type": "string"
8016        }
8017      },
8018      "required": [
8019        "fieldPath"
8020      ],
8021      "type": "object"
8022    },
8023    "io.k8s.api.core.v1.ObjectReference": {
8024      "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
8025      "properties": {
8026        "apiVersion": {
8027          "description": "API version of the referent.",
8028          "type": "string"
8029        },
8030        "fieldPath": {
8031          "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.",
8032          "type": "string"
8033        },
8034        "kind": {
8035          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8036          "type": "string"
8037        },
8038        "name": {
8039          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8040          "type": "string"
8041        },
8042        "namespace": {
8043          "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
8044          "type": "string"
8045        },
8046        "resourceVersion": {
8047          "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",
8048          "type": "string"
8049        },
8050        "uid": {
8051          "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
8052          "type": "string"
8053        }
8054      },
8055      "type": "object"
8056    },
8057    "io.k8s.api.core.v1.PersistentVolume": {
8058      "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",
8059      "properties": {
8060        "apiVersion": {
8061          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8062          "type": "string"
8063        },
8064        "kind": {
8065          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8066          "type": "string"
8067        },
8068        "metadata": {
8069          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8070          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8071        },
8072        "spec": {
8073          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
8074          "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"
8075        },
8076        "status": {
8077          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus",
8078          "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"
8079        }
8080      },
8081      "type": "object",
8082      "x-kubernetes-group-version-kind": [
8083        {
8084          "group": "",
8085          "kind": "PersistentVolume",
8086          "version": "v1"
8087        }
8088      ]
8089    },
8090    "io.k8s.api.core.v1.PersistentVolumeClaim": {
8091      "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
8092      "properties": {
8093        "apiVersion": {
8094          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8095          "type": "string"
8096        },
8097        "kind": {
8098          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8099          "type": "string"
8100        },
8101        "metadata": {
8102          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8103          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8104        },
8105        "spec": {
8106          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
8107          "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"
8108        },
8109        "status": {
8110          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus",
8111          "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"
8112        }
8113      },
8114      "type": "object",
8115      "x-kubernetes-group-version-kind": [
8116        {
8117          "group": "",
8118          "kind": "PersistentVolumeClaim",
8119          "version": "v1"
8120        }
8121      ]
8122    },
8123    "io.k8s.api.core.v1.PersistentVolumeClaimCondition": {
8124      "description": "PersistentVolumeClaimCondition contails details about state of pvc",
8125      "properties": {
8126        "lastProbeTime": {
8127          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8128          "description": "Last time we probed the condition."
8129        },
8130        "lastTransitionTime": {
8131          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8132          "description": "Last time the condition transitioned from one status to another."
8133        },
8134        "message": {
8135          "description": "Human-readable message indicating details about last transition.",
8136          "type": "string"
8137        },
8138        "reason": {
8139          "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.",
8140          "type": "string"
8141        },
8142        "status": {
8143          "type": "string"
8144        },
8145        "type": {
8146          "type": "string"
8147        }
8148      },
8149      "required": [
8150        "type",
8151        "status"
8152      ],
8153      "type": "object"
8154    },
8155    "io.k8s.api.core.v1.PersistentVolumeClaimList": {
8156      "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
8157      "properties": {
8158        "apiVersion": {
8159          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8160          "type": "string"
8161        },
8162        "items": {
8163          "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
8164          "items": {
8165            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
8166          },
8167          "type": "array"
8168        },
8169        "kind": {
8170          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8171          "type": "string"
8172        },
8173        "metadata": {
8174          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8175          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8176        }
8177      },
8178      "required": [
8179        "items"
8180      ],
8181      "type": "object",
8182      "x-kubernetes-group-version-kind": [
8183        {
8184          "group": "",
8185          "kind": "PersistentVolumeClaimList",
8186          "version": "v1"
8187        }
8188      ]
8189    },
8190    "io.k8s.api.core.v1.PersistentVolumeClaimSpec": {
8191      "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
8192      "properties": {
8193        "accessModes": {
8194          "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
8195          "items": {
8196            "type": "string"
8197          },
8198          "type": "array"
8199        },
8200        "dataSource": {
8201          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
8202          "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."
8203        },
8204        "resources": {
8205          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
8206          "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
8207        },
8208        "selector": {
8209          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
8210          "description": "A label query over volumes to consider for binding."
8211        },
8212        "storageClassName": {
8213          "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
8214          "type": "string"
8215        },
8216        "volumeMode": {
8217          "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.",
8218          "type": "string"
8219        },
8220        "volumeName": {
8221          "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.",
8222          "type": "string"
8223        }
8224      },
8225      "type": "object"
8226    },
8227    "io.k8s.api.core.v1.PersistentVolumeClaimStatus": {
8228      "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
8229      "properties": {
8230        "accessModes": {
8231          "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",
8232          "items": {
8233            "type": "string"
8234          },
8235          "type": "array"
8236        },
8237        "capacity": {
8238          "additionalProperties": {
8239            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8240          },
8241          "description": "Represents the actual resources of the underlying volume.",
8242          "type": "object"
8243        },
8244        "conditions": {
8245          "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
8246          "items": {
8247            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
8248          },
8249          "type": "array",
8250          "x-kubernetes-patch-merge-key": "type",
8251          "x-kubernetes-patch-strategy": "merge"
8252        },
8253        "phase": {
8254          "description": "Phase represents the current phase of PersistentVolumeClaim.",
8255          "type": "string"
8256        }
8257      },
8258      "type": "object"
8259    },
8260    "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": {
8261      "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.",
8262      "properties": {
8263        "metadata": {
8264          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8265          "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."
8266        },
8267        "spec": {
8268          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
8269          "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."
8270        }
8271      },
8272      "required": [
8273        "spec"
8274      ],
8275      "type": "object"
8276    },
8277    "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": {
8278      "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).",
8279      "properties": {
8280        "claimName": {
8281          "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",
8282          "type": "string"
8283        },
8284        "readOnly": {
8285          "description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
8286          "type": "boolean"
8287        }
8288      },
8289      "required": [
8290        "claimName"
8291      ],
8292      "type": "object"
8293    },
8294    "io.k8s.api.core.v1.PersistentVolumeList": {
8295      "description": "PersistentVolumeList is a list of PersistentVolume items.",
8296      "properties": {
8297        "apiVersion": {
8298          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8299          "type": "string"
8300        },
8301        "items": {
8302          "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
8303          "items": {
8304            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
8305          },
8306          "type": "array"
8307        },
8308        "kind": {
8309          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8310          "type": "string"
8311        },
8312        "metadata": {
8313          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8314          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8315        }
8316      },
8317      "required": [
8318        "items"
8319      ],
8320      "type": "object",
8321      "x-kubernetes-group-version-kind": [
8322        {
8323          "group": "",
8324          "kind": "PersistentVolumeList",
8325          "version": "v1"
8326        }
8327      ]
8328    },
8329    "io.k8s.api.core.v1.PersistentVolumeSpec": {
8330      "description": "PersistentVolumeSpec is the specification of a persistent volume.",
8331      "properties": {
8332        "accessModes": {
8333          "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
8334          "items": {
8335            "type": "string"
8336          },
8337          "type": "array"
8338        },
8339        "awsElasticBlockStore": {
8340          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
8341          "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"
8342        },
8343        "azureDisk": {
8344          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
8345          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
8346        },
8347        "azureFile": {
8348          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
8349          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
8350        },
8351        "capacity": {
8352          "additionalProperties": {
8353            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8354          },
8355          "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
8356          "type": "object"
8357        },
8358        "cephfs": {
8359          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
8360          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
8361        },
8362        "cinder": {
8363          "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
8364          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
8365        },
8366        "claimRef": {
8367          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
8368          "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"
8369        },
8370        "csi": {
8371          "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource",
8372          "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
8373        },
8374        "fc": {
8375          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
8376          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
8377        },
8378        "flexVolume": {
8379          "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource",
8380          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
8381        },
8382        "flocker": {
8383          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
8384          "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"
8385        },
8386        "gcePersistentDisk": {
8387          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
8388          "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"
8389        },
8390        "glusterfs": {
8391          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
8392          "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"
8393        },
8394        "hostPath": {
8395          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
8396          "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"
8397        },
8398        "iscsi": {
8399          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
8400          "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."
8401        },
8402        "local": {
8403          "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource",
8404          "description": "Local represents directly-attached storage with node affinity"
8405        },
8406        "mountOptions": {
8407          "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",
8408          "items": {
8409            "type": "string"
8410          },
8411          "type": "array"
8412        },
8413        "nfs": {
8414          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
8415          "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
8416        },
8417        "nodeAffinity": {
8418          "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity",
8419          "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."
8420        },
8421        "persistentVolumeReclaimPolicy": {
8422          "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",
8423          "type": "string"
8424        },
8425        "photonPersistentDisk": {
8426          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
8427          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
8428        },
8429        "portworxVolume": {
8430          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
8431          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
8432        },
8433        "quobyte": {
8434          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
8435          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
8436        },
8437        "rbd": {
8438          "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource",
8439          "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"
8440        },
8441        "scaleIO": {
8442          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
8443          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
8444        },
8445        "storageClassName": {
8446          "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
8447          "type": "string"
8448        },
8449        "storageos": {
8450          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
8451          "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"
8452        },
8453        "volumeMode": {
8454          "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.",
8455          "type": "string"
8456        },
8457        "vsphereVolume": {
8458          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
8459          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
8460        }
8461      },
8462      "type": "object"
8463    },
8464    "io.k8s.api.core.v1.PersistentVolumeStatus": {
8465      "description": "PersistentVolumeStatus is the current status of a persistent volume.",
8466      "properties": {
8467        "message": {
8468          "description": "A human-readable message indicating details about why the volume is in this state.",
8469          "type": "string"
8470        },
8471        "phase": {
8472          "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",
8473          "type": "string"
8474        },
8475        "reason": {
8476          "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
8477          "type": "string"
8478        }
8479      },
8480      "type": "object"
8481    },
8482    "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": {
8483      "description": "Represents a Photon Controller persistent disk resource.",
8484      "properties": {
8485        "fsType": {
8486          "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.",
8487          "type": "string"
8488        },
8489        "pdID": {
8490          "description": "ID that identifies Photon Controller persistent disk",
8491          "type": "string"
8492        }
8493      },
8494      "required": [
8495        "pdID"
8496      ],
8497      "type": "object"
8498    },
8499    "io.k8s.api.core.v1.Pod": {
8500      "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
8501      "properties": {
8502        "apiVersion": {
8503          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8504          "type": "string"
8505        },
8506        "kind": {
8507          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8508          "type": "string"
8509        },
8510        "metadata": {
8511          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8512          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8513        },
8514        "spec": {
8515          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
8516          "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"
8517        },
8518        "status": {
8519          "$ref": "#/definitions/io.k8s.api.core.v1.PodStatus",
8520          "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"
8521        }
8522      },
8523      "type": "object",
8524      "x-kubernetes-group-version-kind": [
8525        {
8526          "group": "",
8527          "kind": "Pod",
8528          "version": "v1"
8529        }
8530      ]
8531    },
8532    "io.k8s.api.core.v1.PodAffinity": {
8533      "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
8534      "properties": {
8535        "preferredDuringSchedulingIgnoredDuringExecution": {
8536          "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.",
8537          "items": {
8538            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
8539          },
8540          "type": "array"
8541        },
8542        "requiredDuringSchedulingIgnoredDuringExecution": {
8543          "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.",
8544          "items": {
8545            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
8546          },
8547          "type": "array"
8548        }
8549      },
8550      "type": "object"
8551    },
8552    "io.k8s.api.core.v1.PodAffinityTerm": {
8553      "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",
8554      "properties": {
8555        "labelSelector": {
8556          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
8557          "description": "A label query over a set of resources, in this case pods."
8558        },
8559        "namespaces": {
8560          "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
8561          "items": {
8562            "type": "string"
8563          },
8564          "type": "array"
8565        },
8566        "topologyKey": {
8567          "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.",
8568          "type": "string"
8569        }
8570      },
8571      "required": [
8572        "topologyKey"
8573      ],
8574      "type": "object"
8575    },
8576    "io.k8s.api.core.v1.PodAntiAffinity": {
8577      "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
8578      "properties": {
8579        "preferredDuringSchedulingIgnoredDuringExecution": {
8580          "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.",
8581          "items": {
8582            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
8583          },
8584          "type": "array"
8585        },
8586        "requiredDuringSchedulingIgnoredDuringExecution": {
8587          "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.",
8588          "items": {
8589            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
8590          },
8591          "type": "array"
8592        }
8593      },
8594      "type": "object"
8595    },
8596    "io.k8s.api.core.v1.PodCondition": {
8597      "description": "PodCondition contains details for the current condition of this pod.",
8598      "properties": {
8599        "lastProbeTime": {
8600          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8601          "description": "Last time we probed the condition."
8602        },
8603        "lastTransitionTime": {
8604          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8605          "description": "Last time the condition transitioned from one status to another."
8606        },
8607        "message": {
8608          "description": "Human-readable message indicating details about last transition.",
8609          "type": "string"
8610        },
8611        "reason": {
8612          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
8613          "type": "string"
8614        },
8615        "status": {
8616          "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",
8617          "type": "string"
8618        },
8619        "type": {
8620          "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
8621          "type": "string"
8622        }
8623      },
8624      "required": [
8625        "type",
8626        "status"
8627      ],
8628      "type": "object"
8629    },
8630    "io.k8s.api.core.v1.PodDNSConfig": {
8631      "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
8632      "properties": {
8633        "nameservers": {
8634          "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.",
8635          "items": {
8636            "type": "string"
8637          },
8638          "type": "array"
8639        },
8640        "options": {
8641          "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.",
8642          "items": {
8643            "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption"
8644          },
8645          "type": "array"
8646        },
8647        "searches": {
8648          "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.",
8649          "items": {
8650            "type": "string"
8651          },
8652          "type": "array"
8653        }
8654      },
8655      "type": "object"
8656    },
8657    "io.k8s.api.core.v1.PodDNSConfigOption": {
8658      "description": "PodDNSConfigOption defines DNS resolver options of a pod.",
8659      "properties": {
8660        "name": {
8661          "description": "Required.",
8662          "type": "string"
8663        },
8664        "value": {
8665          "type": "string"
8666        }
8667      },
8668      "type": "object"
8669    },
8670    "io.k8s.api.core.v1.PodIP": {
8671      "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.",
8672      "properties": {
8673        "ip": {
8674          "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
8675          "type": "string"
8676        }
8677      },
8678      "type": "object"
8679    },
8680    "io.k8s.api.core.v1.PodList": {
8681      "description": "PodList is a list of Pods.",
8682      "properties": {
8683        "apiVersion": {
8684          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8685          "type": "string"
8686        },
8687        "items": {
8688          "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
8689          "items": {
8690            "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
8691          },
8692          "type": "array"
8693        },
8694        "kind": {
8695          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8696          "type": "string"
8697        },
8698        "metadata": {
8699          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8700          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8701        }
8702      },
8703      "required": [
8704        "items"
8705      ],
8706      "type": "object",
8707      "x-kubernetes-group-version-kind": [
8708        {
8709          "group": "",
8710          "kind": "PodList",
8711          "version": "v1"
8712        }
8713      ]
8714    },
8715    "io.k8s.api.core.v1.PodReadinessGate": {
8716      "description": "PodReadinessGate contains the reference to a pod condition",
8717      "properties": {
8718        "conditionType": {
8719          "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
8720          "type": "string"
8721        }
8722      },
8723      "required": [
8724        "conditionType"
8725      ],
8726      "type": "object"
8727    },
8728    "io.k8s.api.core.v1.PodSecurityContext": {
8729      "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.",
8730      "properties": {
8731        "fsGroup": {
8732          "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.",
8733          "format": "int64",
8734          "type": "integer"
8735        },
8736        "fsGroupChangePolicy": {
8737          "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.",
8738          "type": "string"
8739        },
8740        "runAsGroup": {
8741          "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.",
8742          "format": "int64",
8743          "type": "integer"
8744        },
8745        "runAsNonRoot": {
8746          "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.",
8747          "type": "boolean"
8748        },
8749        "runAsUser": {
8750          "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.",
8751          "format": "int64",
8752          "type": "integer"
8753        },
8754        "seLinuxOptions": {
8755          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
8756          "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."
8757        },
8758        "seccompProfile": {
8759          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
8760          "description": "The seccomp options to use by the containers in this pod."
8761        },
8762        "supplementalGroups": {
8763          "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.",
8764          "items": {
8765            "format": "int64",
8766            "type": "integer"
8767          },
8768          "type": "array"
8769        },
8770        "sysctls": {
8771          "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
8772          "items": {
8773            "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl"
8774          },
8775          "type": "array"
8776        },
8777        "windowsOptions": {
8778          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
8779          "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."
8780        }
8781      },
8782      "type": "object"
8783    },
8784    "io.k8s.api.core.v1.PodSpec": {
8785      "description": "PodSpec is a description of a pod.",
8786      "properties": {
8787        "activeDeadlineSeconds": {
8788          "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.",
8789          "format": "int64",
8790          "type": "integer"
8791        },
8792        "affinity": {
8793          "$ref": "#/definitions/io.k8s.api.core.v1.Affinity",
8794          "description": "If specified, the pod's scheduling constraints"
8795        },
8796        "automountServiceAccountToken": {
8797          "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
8798          "type": "boolean"
8799        },
8800        "containers": {
8801          "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.",
8802          "items": {
8803            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
8804          },
8805          "type": "array",
8806          "x-kubernetes-patch-merge-key": "name",
8807          "x-kubernetes-patch-strategy": "merge"
8808        },
8809        "dnsConfig": {
8810          "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfig",
8811          "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
8812        },
8813        "dnsPolicy": {
8814          "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'.",
8815          "type": "string"
8816        },
8817        "enableServiceLinks": {
8818          "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.",
8819          "type": "boolean"
8820        },
8821        "ephemeralContainers": {
8822          "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.",
8823          "items": {
8824            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
8825          },
8826          "type": "array",
8827          "x-kubernetes-patch-merge-key": "name",
8828          "x-kubernetes-patch-strategy": "merge"
8829        },
8830        "hostAliases": {
8831          "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.",
8832          "items": {
8833            "$ref": "#/definitions/io.k8s.api.core.v1.HostAlias"
8834          },
8835          "type": "array",
8836          "x-kubernetes-patch-merge-key": "ip",
8837          "x-kubernetes-patch-strategy": "merge"
8838        },
8839        "hostIPC": {
8840          "description": "Use the host's ipc namespace. Optional: Default to false.",
8841          "type": "boolean"
8842        },
8843        "hostNetwork": {
8844          "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.",
8845          "type": "boolean"
8846        },
8847        "hostPID": {
8848          "description": "Use the host's pid namespace. Optional: Default to false.",
8849          "type": "boolean"
8850        },
8851        "hostname": {
8852          "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
8853          "type": "string"
8854        },
8855        "imagePullSecrets": {
8856          "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",
8857          "items": {
8858            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
8859          },
8860          "type": "array",
8861          "x-kubernetes-patch-merge-key": "name",
8862          "x-kubernetes-patch-strategy": "merge"
8863        },
8864        "initContainers": {
8865          "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/",
8866          "items": {
8867            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
8868          },
8869          "type": "array",
8870          "x-kubernetes-patch-merge-key": "name",
8871          "x-kubernetes-patch-strategy": "merge"
8872        },
8873        "nodeName": {
8874          "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.",
8875          "type": "string"
8876        },
8877        "nodeSelector": {
8878          "additionalProperties": {
8879            "type": "string"
8880          },
8881          "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/",
8882          "type": "object"
8883        },
8884        "overhead": {
8885          "additionalProperties": {
8886            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8887          },
8888          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
8889          "type": "object"
8890        },
8891        "preemptionPolicy": {
8892          "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.",
8893          "type": "string"
8894        },
8895        "priority": {
8896          "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.",
8897          "format": "int32",
8898          "type": "integer"
8899        },
8900        "priorityClassName": {
8901          "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.",
8902          "type": "string"
8903        },
8904        "readinessGates": {
8905          "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates",
8906          "items": {
8907            "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate"
8908          },
8909          "type": "array"
8910        },
8911        "restartPolicy": {
8912          "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",
8913          "type": "string"
8914        },
8915        "runtimeClassName": {
8916          "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class This is a beta feature as of Kubernetes v1.14.",
8917          "type": "string"
8918        },
8919        "schedulerName": {
8920          "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
8921          "type": "string"
8922        },
8923        "securityContext": {
8924          "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext",
8925          "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field."
8926        },
8927        "serviceAccount": {
8928          "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
8929          "type": "string"
8930        },
8931        "serviceAccountName": {
8932          "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/",
8933          "type": "string"
8934        },
8935        "setHostnameAsFQDN": {
8936          "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.",
8937          "type": "boolean"
8938        },
8939        "shareProcessNamespace": {
8940          "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.",
8941          "type": "boolean"
8942        },
8943        "subdomain": {
8944          "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.",
8945          "type": "string"
8946        },
8947        "terminationGracePeriodSeconds": {
8948          "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.",
8949          "format": "int64",
8950          "type": "integer"
8951        },
8952        "tolerations": {
8953          "description": "If specified, the pod's tolerations.",
8954          "items": {
8955            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
8956          },
8957          "type": "array"
8958        },
8959        "topologySpreadConstraints": {
8960          "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.",
8961          "items": {
8962            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
8963          },
8964          "type": "array",
8965          "x-kubernetes-list-map-keys": [
8966            "topologyKey",
8967            "whenUnsatisfiable"
8968          ],
8969          "x-kubernetes-list-type": "map",
8970          "x-kubernetes-patch-merge-key": "topologyKey",
8971          "x-kubernetes-patch-strategy": "merge"
8972        },
8973        "volumes": {
8974          "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
8975          "items": {
8976            "$ref": "#/definitions/io.k8s.api.core.v1.Volume"
8977          },
8978          "type": "array",
8979          "x-kubernetes-patch-merge-key": "name",
8980          "x-kubernetes-patch-strategy": "merge,retainKeys"
8981        }
8982      },
8983      "required": [
8984        "containers"
8985      ],
8986      "type": "object"
8987    },
8988    "io.k8s.api.core.v1.PodStatus": {
8989      "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.",
8990      "properties": {
8991        "conditions": {
8992          "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
8993          "items": {
8994            "$ref": "#/definitions/io.k8s.api.core.v1.PodCondition"
8995          },
8996          "type": "array",
8997          "x-kubernetes-patch-merge-key": "type",
8998          "x-kubernetes-patch-strategy": "merge"
8999        },
9000        "containerStatuses": {
9001          "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",
9002          "items": {
9003            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
9004          },
9005          "type": "array"
9006        },
9007        "ephemeralContainerStatuses": {
9008          "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.",
9009          "items": {
9010            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
9011          },
9012          "type": "array"
9013        },
9014        "hostIP": {
9015          "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.",
9016          "type": "string"
9017        },
9018        "initContainerStatuses": {
9019          "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",
9020          "items": {
9021            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
9022          },
9023          "type": "array"
9024        },
9025        "message": {
9026          "description": "A human readable message indicating details about why the pod is in this condition.",
9027          "type": "string"
9028        },
9029        "nominatedNodeName": {
9030          "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.",
9031          "type": "string"
9032        },
9033        "phase": {
9034          "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",
9035          "type": "string"
9036        },
9037        "podIP": {
9038          "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
9039          "type": "string"
9040        },
9041        "podIPs": {
9042          "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.",
9043          "items": {
9044            "$ref": "#/definitions/io.k8s.api.core.v1.PodIP"
9045          },
9046          "type": "array",
9047          "x-kubernetes-patch-merge-key": "ip",
9048          "x-kubernetes-patch-strategy": "merge"
9049        },
9050        "qosClass": {
9051          "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",
9052          "type": "string"
9053        },
9054        "reason": {
9055          "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'",
9056          "type": "string"
9057        },
9058        "startTime": {
9059          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9060          "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."
9061        }
9062      },
9063      "type": "object"
9064    },
9065    "io.k8s.api.core.v1.PodTemplate": {
9066      "description": "PodTemplate describes a template for creating copies of a predefined pod.",
9067      "properties": {
9068        "apiVersion": {
9069          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9070          "type": "string"
9071        },
9072        "kind": {
9073          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9074          "type": "string"
9075        },
9076        "metadata": {
9077          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9078          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9079        },
9080        "template": {
9081          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
9082          "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"
9083        }
9084      },
9085      "type": "object",
9086      "x-kubernetes-group-version-kind": [
9087        {
9088          "group": "",
9089          "kind": "PodTemplate",
9090          "version": "v1"
9091        }
9092      ]
9093    },
9094    "io.k8s.api.core.v1.PodTemplateList": {
9095      "description": "PodTemplateList is a list of PodTemplates.",
9096      "properties": {
9097        "apiVersion": {
9098          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9099          "type": "string"
9100        },
9101        "items": {
9102          "description": "List of pod templates",
9103          "items": {
9104            "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
9105          },
9106          "type": "array"
9107        },
9108        "kind": {
9109          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9110          "type": "string"
9111        },
9112        "metadata": {
9113          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9114          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9115        }
9116      },
9117      "required": [
9118        "items"
9119      ],
9120      "type": "object",
9121      "x-kubernetes-group-version-kind": [
9122        {
9123          "group": "",
9124          "kind": "PodTemplateList",
9125          "version": "v1"
9126        }
9127      ]
9128    },
9129    "io.k8s.api.core.v1.PodTemplateSpec": {
9130      "description": "PodTemplateSpec describes the data a pod should have when created from a template",
9131      "properties": {
9132        "metadata": {
9133          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9134          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9135        },
9136        "spec": {
9137          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
9138          "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"
9139        }
9140      },
9141      "type": "object"
9142    },
9143    "io.k8s.api.core.v1.PortStatus": {
9144      "properties": {
9145        "error": {
9146          "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.",
9147          "type": "string"
9148        },
9149        "port": {
9150          "description": "Port is the port number of the service port of which status is recorded here",
9151          "format": "int32",
9152          "type": "integer"
9153        },
9154        "protocol": {
9155          "description": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
9156          "type": "string"
9157        }
9158      },
9159      "required": [
9160        "port",
9161        "protocol"
9162      ],
9163      "type": "object"
9164    },
9165    "io.k8s.api.core.v1.PortworxVolumeSource": {
9166      "description": "PortworxVolumeSource represents a Portworx volume resource.",
9167      "properties": {
9168        "fsType": {
9169          "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.",
9170          "type": "string"
9171        },
9172        "readOnly": {
9173          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9174          "type": "boolean"
9175        },
9176        "volumeID": {
9177          "description": "VolumeID uniquely identifies a Portworx volume",
9178          "type": "string"
9179        }
9180      },
9181      "required": [
9182        "volumeID"
9183      ],
9184      "type": "object"
9185    },
9186    "io.k8s.api.core.v1.PreferredSchedulingTerm": {
9187      "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).",
9188      "properties": {
9189        "preference": {
9190          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
9191          "description": "A node selector term, associated with the corresponding weight."
9192        },
9193        "weight": {
9194          "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
9195          "format": "int32",
9196          "type": "integer"
9197        }
9198      },
9199      "required": [
9200        "weight",
9201        "preference"
9202      ],
9203      "type": "object"
9204    },
9205    "io.k8s.api.core.v1.Probe": {
9206      "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
9207      "properties": {
9208        "exec": {
9209          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
9210          "description": "One and only one of the following should be specified. Exec specifies the action to take."
9211        },
9212        "failureThreshold": {
9213          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
9214          "format": "int32",
9215          "type": "integer"
9216        },
9217        "httpGet": {
9218          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
9219          "description": "HTTPGet specifies the http request to perform."
9220        },
9221        "initialDelaySeconds": {
9222          "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",
9223          "format": "int32",
9224          "type": "integer"
9225        },
9226        "periodSeconds": {
9227          "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
9228          "format": "int32",
9229          "type": "integer"
9230        },
9231        "successThreshold": {
9232          "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.",
9233          "format": "int32",
9234          "type": "integer"
9235        },
9236        "tcpSocket": {
9237          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
9238          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
9239        },
9240        "timeoutSeconds": {
9241          "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",
9242          "format": "int32",
9243          "type": "integer"
9244        }
9245      },
9246      "type": "object"
9247    },
9248    "io.k8s.api.core.v1.ProjectedVolumeSource": {
9249      "description": "Represents a projected volume source",
9250      "properties": {
9251        "defaultMode": {
9252          "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.",
9253          "format": "int32",
9254          "type": "integer"
9255        },
9256        "sources": {
9257          "description": "list of volume projections",
9258          "items": {
9259            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection"
9260          },
9261          "type": "array"
9262        }
9263      },
9264      "type": "object"
9265    },
9266    "io.k8s.api.core.v1.QuobyteVolumeSource": {
9267      "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
9268      "properties": {
9269        "group": {
9270          "description": "Group to map volume access to Default is no group",
9271          "type": "string"
9272        },
9273        "readOnly": {
9274          "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
9275          "type": "boolean"
9276        },
9277        "registry": {
9278          "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",
9279          "type": "string"
9280        },
9281        "tenant": {
9282          "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
9283          "type": "string"
9284        },
9285        "user": {
9286          "description": "User to map volume access to Defaults to serivceaccount user",
9287          "type": "string"
9288        },
9289        "volume": {
9290          "description": "Volume is a string that references an already created Quobyte volume by name.",
9291          "type": "string"
9292        }
9293      },
9294      "required": [
9295        "registry",
9296        "volume"
9297      ],
9298      "type": "object"
9299    },
9300    "io.k8s.api.core.v1.RBDPersistentVolumeSource": {
9301      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
9302      "properties": {
9303        "fsType": {
9304          "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",
9305          "type": "string"
9306        },
9307        "image": {
9308          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9309          "type": "string"
9310        },
9311        "keyring": {
9312          "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",
9313          "type": "string"
9314        },
9315        "monitors": {
9316          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9317          "items": {
9318            "type": "string"
9319          },
9320          "type": "array"
9321        },
9322        "pool": {
9323          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9324          "type": "string"
9325        },
9326        "readOnly": {
9327          "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",
9328          "type": "boolean"
9329        },
9330        "secretRef": {
9331          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
9332          "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"
9333        },
9334        "user": {
9335          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9336          "type": "string"
9337        }
9338      },
9339      "required": [
9340        "monitors",
9341        "image"
9342      ],
9343      "type": "object"
9344    },
9345    "io.k8s.api.core.v1.RBDVolumeSource": {
9346      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
9347      "properties": {
9348        "fsType": {
9349          "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",
9350          "type": "string"
9351        },
9352        "image": {
9353          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9354          "type": "string"
9355        },
9356        "keyring": {
9357          "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",
9358          "type": "string"
9359        },
9360        "monitors": {
9361          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9362          "items": {
9363            "type": "string"
9364          },
9365          "type": "array"
9366        },
9367        "pool": {
9368          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9369          "type": "string"
9370        },
9371        "readOnly": {
9372          "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",
9373          "type": "boolean"
9374        },
9375        "secretRef": {
9376          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
9377          "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"
9378        },
9379        "user": {
9380          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
9381          "type": "string"
9382        }
9383      },
9384      "required": [
9385        "monitors",
9386        "image"
9387      ],
9388      "type": "object"
9389    },
9390    "io.k8s.api.core.v1.ReplicationController": {
9391      "description": "ReplicationController represents the configuration of a replication controller.",
9392      "properties": {
9393        "apiVersion": {
9394          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9395          "type": "string"
9396        },
9397        "kind": {
9398          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9399          "type": "string"
9400        },
9401        "metadata": {
9402          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9403          "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"
9404        },
9405        "spec": {
9406          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec",
9407          "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"
9408        },
9409        "status": {
9410          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus",
9411          "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"
9412        }
9413      },
9414      "type": "object",
9415      "x-kubernetes-group-version-kind": [
9416        {
9417          "group": "",
9418          "kind": "ReplicationController",
9419          "version": "v1"
9420        }
9421      ]
9422    },
9423    "io.k8s.api.core.v1.ReplicationControllerCondition": {
9424      "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
9425      "properties": {
9426        "lastTransitionTime": {
9427          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9428          "description": "The last time the condition transitioned from one status to another."
9429        },
9430        "message": {
9431          "description": "A human readable message indicating details about the transition.",
9432          "type": "string"
9433        },
9434        "reason": {
9435          "description": "The reason for the condition's last transition.",
9436          "type": "string"
9437        },
9438        "status": {
9439          "description": "Status of the condition, one of True, False, Unknown.",
9440          "type": "string"
9441        },
9442        "type": {
9443          "description": "Type of replication controller condition.",
9444          "type": "string"
9445        }
9446      },
9447      "required": [
9448        "type",
9449        "status"
9450      ],
9451      "type": "object"
9452    },
9453    "io.k8s.api.core.v1.ReplicationControllerList": {
9454      "description": "ReplicationControllerList is a collection of replication controllers.",
9455      "properties": {
9456        "apiVersion": {
9457          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9458          "type": "string"
9459        },
9460        "items": {
9461          "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
9462          "items": {
9463            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
9464          },
9465          "type": "array"
9466        },
9467        "kind": {
9468          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9469          "type": "string"
9470        },
9471        "metadata": {
9472          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9473          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9474        }
9475      },
9476      "required": [
9477        "items"
9478      ],
9479      "type": "object",
9480      "x-kubernetes-group-version-kind": [
9481        {
9482          "group": "",
9483          "kind": "ReplicationControllerList",
9484          "version": "v1"
9485        }
9486      ]
9487    },
9488    "io.k8s.api.core.v1.ReplicationControllerSpec": {
9489      "description": "ReplicationControllerSpec is the specification of a replication controller.",
9490      "properties": {
9491        "minReadySeconds": {
9492          "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)",
9493          "format": "int32",
9494          "type": "integer"
9495        },
9496        "replicas": {
9497          "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",
9498          "format": "int32",
9499          "type": "integer"
9500        },
9501        "selector": {
9502          "additionalProperties": {
9503            "type": "string"
9504          },
9505          "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",
9506          "type": "object"
9507        },
9508        "template": {
9509          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
9510          "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"
9511        }
9512      },
9513      "type": "object"
9514    },
9515    "io.k8s.api.core.v1.ReplicationControllerStatus": {
9516      "description": "ReplicationControllerStatus represents the current status of a replication controller.",
9517      "properties": {
9518        "availableReplicas": {
9519          "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
9520          "format": "int32",
9521          "type": "integer"
9522        },
9523        "conditions": {
9524          "description": "Represents the latest available observations of a replication controller's current state.",
9525          "items": {
9526            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition"
9527          },
9528          "type": "array",
9529          "x-kubernetes-patch-merge-key": "type",
9530          "x-kubernetes-patch-strategy": "merge"
9531        },
9532        "fullyLabeledReplicas": {
9533          "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
9534          "format": "int32",
9535          "type": "integer"
9536        },
9537        "observedGeneration": {
9538          "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
9539          "format": "int64",
9540          "type": "integer"
9541        },
9542        "readyReplicas": {
9543          "description": "The number of ready replicas for this replication controller.",
9544          "format": "int32",
9545          "type": "integer"
9546        },
9547        "replicas": {
9548          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
9549          "format": "int32",
9550          "type": "integer"
9551        }
9552      },
9553      "required": [
9554        "replicas"
9555      ],
9556      "type": "object"
9557    },
9558    "io.k8s.api.core.v1.ResourceFieldSelector": {
9559      "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
9560      "properties": {
9561        "containerName": {
9562          "description": "Container name: required for volumes, optional for env vars",
9563          "type": "string"
9564        },
9565        "divisor": {
9566          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
9567          "description": "Specifies the output format of the exposed resources, defaults to \"1\""
9568        },
9569        "resource": {
9570          "description": "Required: resource to select",
9571          "type": "string"
9572        }
9573      },
9574      "required": [
9575        "resource"
9576      ],
9577      "type": "object"
9578    },
9579    "io.k8s.api.core.v1.ResourceQuota": {
9580      "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
9581      "properties": {
9582        "apiVersion": {
9583          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9584          "type": "string"
9585        },
9586        "kind": {
9587          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9588          "type": "string"
9589        },
9590        "metadata": {
9591          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9592          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9593        },
9594        "spec": {
9595          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec",
9596          "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9597        },
9598        "status": {
9599          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus",
9600          "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"
9601        }
9602      },
9603      "type": "object",
9604      "x-kubernetes-group-version-kind": [
9605        {
9606          "group": "",
9607          "kind": "ResourceQuota",
9608          "version": "v1"
9609        }
9610      ]
9611    },
9612    "io.k8s.api.core.v1.ResourceQuotaList": {
9613      "description": "ResourceQuotaList is a list of ResourceQuota items.",
9614      "properties": {
9615        "apiVersion": {
9616          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9617          "type": "string"
9618        },
9619        "items": {
9620          "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9621          "items": {
9622            "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
9623          },
9624          "type": "array"
9625        },
9626        "kind": {
9627          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9628          "type": "string"
9629        },
9630        "metadata": {
9631          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9632          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9633        }
9634      },
9635      "required": [
9636        "items"
9637      ],
9638      "type": "object",
9639      "x-kubernetes-group-version-kind": [
9640        {
9641          "group": "",
9642          "kind": "ResourceQuotaList",
9643          "version": "v1"
9644        }
9645      ]
9646    },
9647    "io.k8s.api.core.v1.ResourceQuotaSpec": {
9648      "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
9649      "properties": {
9650        "hard": {
9651          "additionalProperties": {
9652            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9653          },
9654          "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9655          "type": "object"
9656        },
9657        "scopeSelector": {
9658          "$ref": "#/definitions/io.k8s.api.core.v1.ScopeSelector",
9659          "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."
9660        },
9661        "scopes": {
9662          "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
9663          "items": {
9664            "type": "string"
9665          },
9666          "type": "array"
9667        }
9668      },
9669      "type": "object"
9670    },
9671    "io.k8s.api.core.v1.ResourceQuotaStatus": {
9672      "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
9673      "properties": {
9674        "hard": {
9675          "additionalProperties": {
9676            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9677          },
9678          "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
9679          "type": "object"
9680        },
9681        "used": {
9682          "additionalProperties": {
9683            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9684          },
9685          "description": "Used is the current observed total usage of the resource in the namespace.",
9686          "type": "object"
9687        }
9688      },
9689      "type": "object"
9690    },
9691    "io.k8s.api.core.v1.ResourceRequirements": {
9692      "description": "ResourceRequirements describes the compute resource requirements.",
9693      "properties": {
9694        "limits": {
9695          "additionalProperties": {
9696            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9697          },
9698          "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
9699          "type": "object"
9700        },
9701        "requests": {
9702          "additionalProperties": {
9703            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9704          },
9705          "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/",
9706          "type": "object"
9707        }
9708      },
9709      "type": "object"
9710    },
9711    "io.k8s.api.core.v1.SELinuxOptions": {
9712      "description": "SELinuxOptions are the labels to be applied to the container",
9713      "properties": {
9714        "level": {
9715          "description": "Level is SELinux level label that applies to the container.",
9716          "type": "string"
9717        },
9718        "role": {
9719          "description": "Role is a SELinux role label that applies to the container.",
9720          "type": "string"
9721        },
9722        "type": {
9723          "description": "Type is a SELinux type label that applies to the container.",
9724          "type": "string"
9725        },
9726        "user": {
9727          "description": "User is a SELinux user label that applies to the container.",
9728          "type": "string"
9729        }
9730      },
9731      "type": "object"
9732    },
9733    "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": {
9734      "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
9735      "properties": {
9736        "fsType": {
9737          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
9738          "type": "string"
9739        },
9740        "gateway": {
9741          "description": "The host address of the ScaleIO API Gateway.",
9742          "type": "string"
9743        },
9744        "protectionDomain": {
9745          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
9746          "type": "string"
9747        },
9748        "readOnly": {
9749          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9750          "type": "boolean"
9751        },
9752        "secretRef": {
9753          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
9754          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
9755        },
9756        "sslEnabled": {
9757          "description": "Flag to enable/disable SSL communication with Gateway, default false",
9758          "type": "boolean"
9759        },
9760        "storageMode": {
9761          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
9762          "type": "string"
9763        },
9764        "storagePool": {
9765          "description": "The ScaleIO Storage Pool associated with the protection domain.",
9766          "type": "string"
9767        },
9768        "system": {
9769          "description": "The name of the storage system as configured in ScaleIO.",
9770          "type": "string"
9771        },
9772        "volumeName": {
9773          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
9774          "type": "string"
9775        }
9776      },
9777      "required": [
9778        "gateway",
9779        "system",
9780        "secretRef"
9781      ],
9782      "type": "object"
9783    },
9784    "io.k8s.api.core.v1.ScaleIOVolumeSource": {
9785      "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
9786      "properties": {
9787        "fsType": {
9788          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
9789          "type": "string"
9790        },
9791        "gateway": {
9792          "description": "The host address of the ScaleIO API Gateway.",
9793          "type": "string"
9794        },
9795        "protectionDomain": {
9796          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
9797          "type": "string"
9798        },
9799        "readOnly": {
9800          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9801          "type": "boolean"
9802        },
9803        "secretRef": {
9804          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
9805          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
9806        },
9807        "sslEnabled": {
9808          "description": "Flag to enable/disable SSL communication with Gateway, default false",
9809          "type": "boolean"
9810        },
9811        "storageMode": {
9812          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
9813          "type": "string"
9814        },
9815        "storagePool": {
9816          "description": "The ScaleIO Storage Pool associated with the protection domain.",
9817          "type": "string"
9818        },
9819        "system": {
9820          "description": "The name of the storage system as configured in ScaleIO.",
9821          "type": "string"
9822        },
9823        "volumeName": {
9824          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
9825          "type": "string"
9826        }
9827      },
9828      "required": [
9829        "gateway",
9830        "system",
9831        "secretRef"
9832      ],
9833      "type": "object"
9834    },
9835    "io.k8s.api.core.v1.ScopeSelector": {
9836      "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
9837      "properties": {
9838        "matchExpressions": {
9839          "description": "A list of scope selector requirements by scope of the resources.",
9840          "items": {
9841            "$ref": "#/definitions/io.k8s.api.core.v1.ScopedResourceSelectorRequirement"
9842          },
9843          "type": "array"
9844        }
9845      },
9846      "type": "object"
9847    },
9848    "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": {
9849      "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.",
9850      "properties": {
9851        "operator": {
9852          "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
9853          "type": "string"
9854        },
9855        "scopeName": {
9856          "description": "The name of the scope that the selector applies to.",
9857          "type": "string"
9858        },
9859        "values": {
9860          "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.",
9861          "items": {
9862            "type": "string"
9863          },
9864          "type": "array"
9865        }
9866      },
9867      "required": [
9868        "scopeName",
9869        "operator"
9870      ],
9871      "type": "object"
9872    },
9873    "io.k8s.api.core.v1.SeccompProfile": {
9874      "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.",
9875      "properties": {
9876        "localhostProfile": {
9877          "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\".",
9878          "type": "string"
9879        },
9880        "type": {
9881          "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.",
9882          "type": "string"
9883        }
9884      },
9885      "required": [
9886        "type"
9887      ],
9888      "type": "object",
9889      "x-kubernetes-unions": [
9890        {
9891          "discriminator": "type",
9892          "fields-to-discriminateBy": {
9893            "localhostProfile": "LocalhostProfile"
9894          }
9895        }
9896      ]
9897    },
9898    "io.k8s.api.core.v1.Secret": {
9899      "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.",
9900      "properties": {
9901        "apiVersion": {
9902          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9903          "type": "string"
9904        },
9905        "data": {
9906          "additionalProperties": {
9907            "format": "byte",
9908            "type": "string"
9909          },
9910          "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",
9911          "type": "object"
9912        },
9913        "immutable": {
9914          "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.",
9915          "type": "boolean"
9916        },
9917        "kind": {
9918          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9919          "type": "string"
9920        },
9921        "metadata": {
9922          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9923          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9924        },
9925        "stringData": {
9926          "additionalProperties": {
9927            "type": "string"
9928          },
9929          "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.",
9930          "type": "object"
9931        },
9932        "type": {
9933          "description": "Used to facilitate programmatic handling of secret data.",
9934          "type": "string"
9935        }
9936      },
9937      "type": "object",
9938      "x-kubernetes-group-version-kind": [
9939        {
9940          "group": "",
9941          "kind": "Secret",
9942          "version": "v1"
9943        }
9944      ]
9945    },
9946    "io.k8s.api.core.v1.SecretEnvSource": {
9947      "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.",
9948      "properties": {
9949        "name": {
9950          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9951          "type": "string"
9952        },
9953        "optional": {
9954          "description": "Specify whether the Secret must be defined",
9955          "type": "boolean"
9956        }
9957      },
9958      "type": "object"
9959    },
9960    "io.k8s.api.core.v1.SecretKeySelector": {
9961      "description": "SecretKeySelector selects a key of a Secret.",
9962      "properties": {
9963        "key": {
9964          "description": "The key of the secret to select from.  Must be a valid secret key.",
9965          "type": "string"
9966        },
9967        "name": {
9968          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9969          "type": "string"
9970        },
9971        "optional": {
9972          "description": "Specify whether the Secret or its key must be defined",
9973          "type": "boolean"
9974        }
9975      },
9976      "required": [
9977        "key"
9978      ],
9979      "type": "object"
9980    },
9981    "io.k8s.api.core.v1.SecretList": {
9982      "description": "SecretList is a list of Secret.",
9983      "properties": {
9984        "apiVersion": {
9985          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9986          "type": "string"
9987        },
9988        "items": {
9989          "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret",
9990          "items": {
9991            "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
9992          },
9993          "type": "array"
9994        },
9995        "kind": {
9996          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9997          "type": "string"
9998        },
9999        "metadata": {
10000          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10001          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
10002        }
10003      },
10004      "required": [
10005        "items"
10006      ],
10007      "type": "object",
10008      "x-kubernetes-group-version-kind": [
10009        {
10010          "group": "",
10011          "kind": "SecretList",
10012          "version": "v1"
10013        }
10014      ]
10015    },
10016    "io.k8s.api.core.v1.SecretProjection": {
10017      "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.",
10018      "properties": {
10019        "items": {
10020          "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 '..'.",
10021          "items": {
10022            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
10023          },
10024          "type": "array"
10025        },
10026        "name": {
10027          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
10028          "type": "string"
10029        },
10030        "optional": {
10031          "description": "Specify whether the Secret or its key must be defined",
10032          "type": "boolean"
10033        }
10034      },
10035      "type": "object"
10036    },
10037    "io.k8s.api.core.v1.SecretReference": {
10038      "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
10039      "properties": {
10040        "name": {
10041          "description": "Name is unique within a namespace to reference a secret resource.",
10042          "type": "string"
10043        },
10044        "namespace": {
10045          "description": "Namespace defines the space within which the secret name must be unique.",
10046          "type": "string"
10047        }
10048      },
10049      "type": "object"
10050    },
10051    "io.k8s.api.core.v1.SecretVolumeSource": {
10052      "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.",
10053      "properties": {
10054        "defaultMode": {
10055          "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.",
10056          "format": "int32",
10057          "type": "integer"
10058        },
10059        "items": {
10060          "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 '..'.",
10061          "items": {
10062            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
10063          },
10064          "type": "array"
10065        },
10066        "optional": {
10067          "description": "Specify whether the Secret or its keys must be defined",
10068          "type": "boolean"
10069        },
10070        "secretName": {
10071          "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
10072          "type": "string"
10073        }
10074      },
10075      "type": "object"
10076    },
10077    "io.k8s.api.core.v1.SecurityContext": {
10078      "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.",
10079      "properties": {
10080        "allowPrivilegeEscalation": {
10081          "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",
10082          "type": "boolean"
10083        },
10084        "capabilities": {
10085          "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities",
10086          "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
10087        },
10088        "privileged": {
10089          "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
10090          "type": "boolean"
10091        },
10092        "procMount": {
10093          "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.",
10094          "type": "string"
10095        },
10096        "readOnlyRootFilesystem": {
10097          "description": "Whether this container has a read-only root filesystem. Default is false.",
10098          "type": "boolean"
10099        },
10100        "runAsGroup": {
10101          "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.",
10102          "format": "int64",
10103          "type": "integer"
10104        },
10105        "runAsNonRoot": {
10106          "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.",
10107          "type": "boolean"
10108        },
10109        "runAsUser": {
10110          "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.",
10111          "format": "int64",
10112          "type": "integer"
10113        },
10114        "seLinuxOptions": {
10115          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
10116          "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."
10117        },
10118        "seccompProfile": {
10119          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
10120          "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."
10121        },
10122        "windowsOptions": {
10123          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
10124          "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."
10125        }
10126      },
10127      "type": "object"
10128    },
10129    "io.k8s.api.core.v1.Service": {
10130      "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.",
10131      "properties": {
10132        "apiVersion": {
10133          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10134          "type": "string"
10135        },
10136        "kind": {
10137          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10138          "type": "string"
10139        },
10140        "metadata": {
10141          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10142          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10143        },
10144        "spec": {
10145          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceSpec",
10146          "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10147        },
10148        "status": {
10149          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceStatus",
10150          "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"
10151        }
10152      },
10153      "type": "object",
10154      "x-kubernetes-group-version-kind": [
10155        {
10156          "group": "",
10157          "kind": "Service",
10158          "version": "v1"
10159        }
10160      ]
10161    },
10162    "io.k8s.api.core.v1.ServiceAccount": {
10163      "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",
10164      "properties": {
10165        "apiVersion": {
10166          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10167          "type": "string"
10168        },
10169        "automountServiceAccountToken": {
10170          "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.",
10171          "type": "boolean"
10172        },
10173        "imagePullSecrets": {
10174          "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",
10175          "items": {
10176            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
10177          },
10178          "type": "array"
10179        },
10180        "kind": {
10181          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10182          "type": "string"
10183        },
10184        "metadata": {
10185          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10186          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10187        },
10188        "secrets": {
10189          "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",
10190          "items": {
10191            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
10192          },
10193          "type": "array",
10194          "x-kubernetes-patch-merge-key": "name",
10195          "x-kubernetes-patch-strategy": "merge"
10196        }
10197      },
10198      "type": "object",
10199      "x-kubernetes-group-version-kind": [
10200        {
10201          "group": "",
10202          "kind": "ServiceAccount",
10203          "version": "v1"
10204        }
10205      ]
10206    },
10207    "io.k8s.api.core.v1.ServiceAccountList": {
10208      "description": "ServiceAccountList is a list of ServiceAccount objects",
10209      "properties": {
10210        "apiVersion": {
10211          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10212          "type": "string"
10213        },
10214        "items": {
10215          "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
10216          "items": {
10217            "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
10218          },
10219          "type": "array"
10220        },
10221        "kind": {
10222          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10223          "type": "string"
10224        },
10225        "metadata": {
10226          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10227          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
10228        }
10229      },
10230      "required": [
10231        "items"
10232      ],
10233      "type": "object",
10234      "x-kubernetes-group-version-kind": [
10235        {
10236          "group": "",
10237          "kind": "ServiceAccountList",
10238          "version": "v1"
10239        }
10240      ]
10241    },
10242    "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
10243      "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).",
10244      "properties": {
10245        "audience": {
10246          "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.",
10247          "type": "string"
10248        },
10249        "expirationSeconds": {
10250          "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.",
10251          "format": "int64",
10252          "type": "integer"
10253        },
10254        "path": {
10255          "description": "Path is the path relative to the mount point of the file to project the token into.",
10256          "type": "string"
10257        }
10258      },
10259      "required": [
10260        "path"
10261      ],
10262      "type": "object"
10263    },
10264    "io.k8s.api.core.v1.ServiceList": {
10265      "description": "ServiceList holds a list of services.",
10266      "properties": {
10267        "apiVersion": {
10268          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10269          "type": "string"
10270        },
10271        "items": {
10272          "description": "List of services",
10273          "items": {
10274            "$ref": "#/definitions/io.k8s.api.core.v1.Service"
10275          },
10276          "type": "array"
10277        },
10278        "kind": {
10279          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10280          "type": "string"
10281        },
10282        "metadata": {
10283          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10284          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
10285        }
10286      },
10287      "required": [
10288        "items"
10289      ],
10290      "type": "object",
10291      "x-kubernetes-group-version-kind": [
10292        {
10293          "group": "",
10294          "kind": "ServiceList",
10295          "version": "v1"
10296        }
10297      ]
10298    },
10299    "io.k8s.api.core.v1.ServicePort": {
10300      "description": "ServicePort contains information on service's port.",
10301      "properties": {
10302        "appProtocol": {
10303          "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.",
10304          "type": "string"
10305        },
10306        "name": {
10307          "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.",
10308          "type": "string"
10309        },
10310        "nodePort": {
10311          "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",
10312          "format": "int32",
10313          "type": "integer"
10314        },
10315        "port": {
10316          "description": "The port that will be exposed by this service.",
10317          "format": "int32",
10318          "type": "integer"
10319        },
10320        "protocol": {
10321          "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
10322          "type": "string"
10323        },
10324        "targetPort": {
10325          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
10326          "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"
10327        }
10328      },
10329      "required": [
10330        "port"
10331      ],
10332      "type": "object"
10333    },
10334    "io.k8s.api.core.v1.ServiceSpec": {
10335      "description": "ServiceSpec describes the attributes that a user creates on a service.",
10336      "properties": {
10337        "allocateLoadBalancerNodePorts": {
10338          "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.",
10339          "type": "boolean"
10340        },
10341        "clusterIP": {
10342          "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",
10343          "type": "string"
10344        },
10345        "clusterIPs": {
10346          "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",
10347          "items": {
10348            "type": "string"
10349          },
10350          "type": "array",
10351          "x-kubernetes-list-type": "atomic"
10352        },
10353        "externalIPs": {
10354          "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.",
10355          "items": {
10356            "type": "string"
10357          },
10358          "type": "array"
10359        },
10360        "externalName": {
10361          "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\".",
10362          "type": "string"
10363        },
10364        "externalTrafficPolicy": {
10365          "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.",
10366          "type": "string"
10367        },
10368        "healthCheckNodePort": {
10369          "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).",
10370          "format": "int32",
10371          "type": "integer"
10372        },
10373        "ipFamilies": {
10374          "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.",
10375          "items": {
10376            "type": "string"
10377          },
10378          "type": "array",
10379          "x-kubernetes-list-type": "atomic"
10380        },
10381        "ipFamilyPolicy": {
10382          "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.",
10383          "type": "string"
10384        },
10385        "loadBalancerIP": {
10386          "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.",
10387          "type": "string"
10388        },
10389        "loadBalancerSourceRanges": {
10390          "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:// https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/",
10391          "items": {
10392            "type": "string"
10393          },
10394          "type": "array"
10395        },
10396        "ports": {
10397          "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",
10398          "items": {
10399            "$ref": "#/definitions/io.k8s.api.core.v1.ServicePort"
10400          },
10401          "type": "array",
10402          "x-kubernetes-list-map-keys": [
10403            "port",
10404            "protocol"
10405          ],
10406          "x-kubernetes-list-type": "map",
10407          "x-kubernetes-patch-merge-key": "port",
10408          "x-kubernetes-patch-strategy": "merge"
10409        },
10410        "publishNotReadyAddresses": {
10411          "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.",
10412          "type": "boolean"
10413        },
10414        "selector": {
10415          "additionalProperties": {
10416            "type": "string"
10417          },
10418          "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/",
10419          "type": "object"
10420        },
10421        "sessionAffinity": {
10422          "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",
10423          "type": "string"
10424        },
10425        "sessionAffinityConfig": {
10426          "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig",
10427          "description": "sessionAffinityConfig contains the configurations of session affinity."
10428        },
10429        "topologyKeys": {
10430          "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.",
10431          "items": {
10432            "type": "string"
10433          },
10434          "type": "array"
10435        },
10436        "type": {
10437          "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",
10438          "type": "string"
10439        }
10440      },
10441      "type": "object"
10442    },
10443    "io.k8s.api.core.v1.ServiceStatus": {
10444      "description": "ServiceStatus represents the current status of a service.",
10445      "properties": {
10446        "conditions": {
10447          "description": "Current service state",
10448          "items": {
10449            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
10450          },
10451          "type": "array",
10452          "x-kubernetes-list-map-keys": [
10453            "type"
10454          ],
10455          "x-kubernetes-list-type": "map",
10456          "x-kubernetes-patch-merge-key": "type",
10457          "x-kubernetes-patch-strategy": "merge"
10458        },
10459        "loadBalancer": {
10460          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
10461          "description": "LoadBalancer contains the current status of the load-balancer, if one is present."
10462        }
10463      },
10464      "type": "object"
10465    },
10466    "io.k8s.api.core.v1.SessionAffinityConfig": {
10467      "description": "SessionAffinityConfig represents the configurations of session affinity.",
10468      "properties": {
10469        "clientIP": {
10470          "$ref": "#/definitions/io.k8s.api.core.v1.ClientIPConfig",
10471          "description": "clientIP contains the configurations of Client IP based session affinity."
10472        }
10473      },
10474      "type": "object"
10475    },
10476    "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
10477      "description": "Represents a StorageOS persistent volume resource.",
10478      "properties": {
10479        "fsType": {
10480          "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.",
10481          "type": "string"
10482        },
10483        "readOnly": {
10484          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10485          "type": "boolean"
10486        },
10487        "secretRef": {
10488          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10489          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
10490        },
10491        "volumeName": {
10492          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
10493          "type": "string"
10494        },
10495        "volumeNamespace": {
10496          "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.",
10497          "type": "string"
10498        }
10499      },
10500      "type": "object"
10501    },
10502    "io.k8s.api.core.v1.StorageOSVolumeSource": {
10503      "description": "Represents a StorageOS persistent volume resource.",
10504      "properties": {
10505        "fsType": {
10506          "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.",
10507          "type": "string"
10508        },
10509        "readOnly": {
10510          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10511          "type": "boolean"
10512        },
10513        "secretRef": {
10514          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
10515          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
10516        },
10517        "volumeName": {
10518          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
10519          "type": "string"
10520        },
10521        "volumeNamespace": {
10522          "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.",
10523          "type": "string"
10524        }
10525      },
10526      "type": "object"
10527    },
10528    "io.k8s.api.core.v1.Sysctl": {
10529      "description": "Sysctl defines a kernel parameter to be set",
10530      "properties": {
10531        "name": {
10532          "description": "Name of a property to set",
10533          "type": "string"
10534        },
10535        "value": {
10536          "description": "Value of a property to set",
10537          "type": "string"
10538        }
10539      },
10540      "required": [
10541        "name",
10542        "value"
10543      ],
10544      "type": "object"
10545    },
10546    "io.k8s.api.core.v1.TCPSocketAction": {
10547      "description": "TCPSocketAction describes an action based on opening a socket",
10548      "properties": {
10549        "host": {
10550          "description": "Optional: Host name to connect to, defaults to the pod IP.",
10551          "type": "string"
10552        },
10553        "port": {
10554          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
10555          "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."
10556        }
10557      },
10558      "required": [
10559        "port"
10560      ],
10561      "type": "object"
10562    },
10563    "io.k8s.api.core.v1.Taint": {
10564      "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
10565      "properties": {
10566        "effect": {
10567          "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
10568          "type": "string"
10569        },
10570        "key": {
10571          "description": "Required. The taint key to be applied to a node.",
10572          "type": "string"
10573        },
10574        "timeAdded": {
10575          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10576          "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
10577        },
10578        "value": {
10579          "description": "The taint value corresponding to the taint key.",
10580          "type": "string"
10581        }
10582      },
10583      "required": [
10584        "key",
10585        "effect"
10586      ],
10587      "type": "object"
10588    },
10589    "io.k8s.api.core.v1.Toleration": {
10590      "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
10591      "properties": {
10592        "effect": {
10593          "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
10594          "type": "string"
10595        },
10596        "key": {
10597          "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.",
10598          "type": "string"
10599        },
10600        "operator": {
10601          "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.",
10602          "type": "string"
10603        },
10604        "tolerationSeconds": {
10605          "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.",
10606          "format": "int64",
10607          "type": "integer"
10608        },
10609        "value": {
10610          "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.",
10611          "type": "string"
10612        }
10613      },
10614      "type": "object"
10615    },
10616    "io.k8s.api.core.v1.TopologySelectorLabelRequirement": {
10617      "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
10618      "properties": {
10619        "key": {
10620          "description": "The label key that the selector applies to.",
10621          "type": "string"
10622        },
10623        "values": {
10624          "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
10625          "items": {
10626            "type": "string"
10627          },
10628          "type": "array"
10629        }
10630      },
10631      "required": [
10632        "key",
10633        "values"
10634      ],
10635      "type": "object"
10636    },
10637    "io.k8s.api.core.v1.TopologySelectorTerm": {
10638      "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.",
10639      "properties": {
10640        "matchLabelExpressions": {
10641          "description": "A list of topology selector requirements by labels.",
10642          "items": {
10643            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorLabelRequirement"
10644          },
10645          "type": "array"
10646        }
10647      },
10648      "type": "object"
10649    },
10650    "io.k8s.api.core.v1.TopologySpreadConstraint": {
10651      "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
10652      "properties": {
10653        "labelSelector": {
10654          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
10655          "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."
10656        },
10657        "maxSkew": {
10658          "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.",
10659          "format": "int32",
10660          "type": "integer"
10661        },
10662        "topologyKey": {
10663          "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.",
10664          "type": "string"
10665        },
10666        "whenUnsatisfiable": {
10667          "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.",
10668          "type": "string"
10669        }
10670      },
10671      "required": [
10672        "maxSkew",
10673        "topologyKey",
10674        "whenUnsatisfiable"
10675      ],
10676      "type": "object"
10677    },
10678    "io.k8s.api.core.v1.TypedLocalObjectReference": {
10679      "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
10680      "properties": {
10681        "apiGroup": {
10682          "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.",
10683          "type": "string"
10684        },
10685        "kind": {
10686          "description": "Kind is the type of resource being referenced",
10687          "type": "string"
10688        },
10689        "name": {
10690          "description": "Name is the name of resource being referenced",
10691          "type": "string"
10692        }
10693      },
10694      "required": [
10695        "kind",
10696        "name"
10697      ],
10698      "type": "object"
10699    },
10700    "io.k8s.api.core.v1.Volume": {
10701      "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
10702      "properties": {
10703        "awsElasticBlockStore": {
10704          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
10705          "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"
10706        },
10707        "azureDisk": {
10708          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
10709          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
10710        },
10711        "azureFile": {
10712          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
10713          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
10714        },
10715        "cephfs": {
10716          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource",
10717          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
10718        },
10719        "cinder": {
10720          "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
10721          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
10722        },
10723        "configMap": {
10724          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
10725          "description": "ConfigMap represents a configMap that should populate this volume"
10726        },
10727        "csi": {
10728          "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource",
10729          "description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
10730        },
10731        "downwardAPI": {
10732          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource",
10733          "description": "DownwardAPI represents downward API about the pod that should populate this volume"
10734        },
10735        "emptyDir": {
10736          "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource",
10737          "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
10738        },
10739        "ephemeral": {
10740          "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource",
10741          "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."
10742        },
10743        "fc": {
10744          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
10745          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
10746        },
10747        "flexVolume": {
10748          "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource",
10749          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
10750        },
10751        "flocker": {
10752          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
10753          "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
10754        },
10755        "gcePersistentDisk": {
10756          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
10757          "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"
10758        },
10759        "gitRepo": {
10760          "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
10761          "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."
10762        },
10763        "glusterfs": {
10764          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource",
10765          "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"
10766        },
10767        "hostPath": {
10768          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
10769          "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"
10770        },
10771        "iscsi": {
10772          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource",
10773          "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"
10774        },
10775        "name": {
10776          "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",
10777          "type": "string"
10778        },
10779        "nfs": {
10780          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
10781          "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"
10782        },
10783        "persistentVolumeClaim": {
10784          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
10785          "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
10786        },
10787        "photonPersistentDisk": {
10788          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
10789          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
10790        },
10791        "portworxVolume": {
10792          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
10793          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
10794        },
10795        "projected": {
10796          "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource",
10797          "description": "Items for all in one resources secrets, configmaps, and downward API"
10798        },
10799        "quobyte": {
10800          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
10801          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
10802        },
10803        "rbd": {
10804          "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource",
10805          "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"
10806        },
10807        "scaleIO": {
10808          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource",
10809          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
10810        },
10811        "secret": {
10812          "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource",
10813          "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
10814        },
10815        "storageos": {
10816          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource",
10817          "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
10818        },
10819        "vsphereVolume": {
10820          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
10821          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
10822        }
10823      },
10824      "required": [
10825        "name"
10826      ],
10827      "type": "object"
10828    },
10829    "io.k8s.api.core.v1.VolumeDevice": {
10830      "description": "volumeDevice describes a mapping of a raw block device within a container.",
10831      "properties": {
10832        "devicePath": {
10833          "description": "devicePath is the path inside of the container that the device will be mapped to.",
10834          "type": "string"
10835        },
10836        "name": {
10837          "description": "name must match the name of a persistentVolumeClaim in the pod",
10838          "type": "string"
10839        }
10840      },
10841      "required": [
10842        "name",
10843        "devicePath"
10844      ],
10845      "type": "object"
10846    },
10847    "io.k8s.api.core.v1.VolumeMount": {
10848      "description": "VolumeMount describes a mounting of a Volume within a container.",
10849      "properties": {
10850        "mountPath": {
10851          "description": "Path within the container at which the volume should be mounted.  Must not contain ':'.",
10852          "type": "string"
10853        },
10854        "mountPropagation": {
10855          "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.",
10856          "type": "string"
10857        },
10858        "name": {
10859          "description": "This must match the Name of a Volume.",
10860          "type": "string"
10861        },
10862        "readOnly": {
10863          "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
10864          "type": "boolean"
10865        },
10866        "subPath": {
10867          "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
10868          "type": "string"
10869        },
10870        "subPathExpr": {
10871          "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.",
10872          "type": "string"
10873        }
10874      },
10875      "required": [
10876        "name",
10877        "mountPath"
10878      ],
10879      "type": "object"
10880    },
10881    "io.k8s.api.core.v1.VolumeNodeAffinity": {
10882      "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
10883      "properties": {
10884        "required": {
10885          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
10886          "description": "Required specifies hard node constraints that must be met."
10887        }
10888      },
10889      "type": "object"
10890    },
10891    "io.k8s.api.core.v1.VolumeProjection": {
10892      "description": "Projection that may be projected along with other supported volume types",
10893      "properties": {
10894        "configMap": {
10895          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection",
10896          "description": "information about the configMap data to project"
10897        },
10898        "downwardAPI": {
10899          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection",
10900          "description": "information about the downwardAPI data to project"
10901        },
10902        "secret": {
10903          "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection",
10904          "description": "information about the secret data to project"
10905        },
10906        "serviceAccountToken": {
10907          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection",
10908          "description": "information about the serviceAccountToken data to project"
10909        }
10910      },
10911      "type": "object"
10912    },
10913    "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
10914      "description": "Represents a vSphere volume resource.",
10915      "properties": {
10916        "fsType": {
10917          "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.",
10918          "type": "string"
10919        },
10920        "storagePolicyID": {
10921          "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
10922          "type": "string"
10923        },
10924        "storagePolicyName": {
10925          "description": "Storage Policy Based Management (SPBM) profile name.",
10926          "type": "string"
10927        },
10928        "volumePath": {
10929          "description": "Path that identifies vSphere volume vmdk",
10930          "type": "string"
10931        }
10932      },
10933      "required": [
10934        "volumePath"
10935      ],
10936      "type": "object"
10937    },
10938    "io.k8s.api.core.v1.WeightedPodAffinityTerm": {
10939      "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
10940      "properties": {
10941        "podAffinityTerm": {
10942          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm",
10943          "description": "Required. A pod affinity term, associated with the corresponding weight."
10944        },
10945        "weight": {
10946          "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
10947          "format": "int32",
10948          "type": "integer"
10949        }
10950      },
10951      "required": [
10952        "weight",
10953        "podAffinityTerm"
10954      ],
10955      "type": "object"
10956    },
10957    "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
10958      "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
10959      "properties": {
10960        "gmsaCredentialSpec": {
10961          "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.",
10962          "type": "string"
10963        },
10964        "gmsaCredentialSpecName": {
10965          "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
10966          "type": "string"
10967        },
10968        "runAsUserName": {
10969          "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.",
10970          "type": "string"
10971        }
10972      },
10973      "type": "object"
10974    },
10975    "io.k8s.api.discovery.v1beta1.Endpoint": {
10976      "description": "Endpoint represents a single logical \"backend\" implementing a service.",
10977      "properties": {
10978        "addresses": {
10979          "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.",
10980          "items": {
10981            "type": "string"
10982          },
10983          "type": "array",
10984          "x-kubernetes-list-type": "set"
10985        },
10986        "conditions": {
10987          "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointConditions",
10988          "description": "conditions contains information about the current status of the endpoint."
10989        },
10990        "hostname": {
10991          "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.",
10992          "type": "string"
10993        },
10994        "nodeName": {
10995          "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.",
10996          "type": "string"
10997        },
10998        "targetRef": {
10999          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11000          "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
11001        },
11002        "topology": {
11003          "additionalProperties": {
11004            "type": "string"
11005          },
11006          "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.",
11007          "type": "object"
11008        }
11009      },
11010      "required": [
11011        "addresses"
11012      ],
11013      "type": "object"
11014    },
11015    "io.k8s.api.discovery.v1beta1.EndpointConditions": {
11016      "description": "EndpointConditions represents the current condition of an endpoint.",
11017      "properties": {
11018        "ready": {
11019          "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.",
11020          "type": "boolean"
11021        },
11022        "serving": {
11023          "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.",
11024          "type": "boolean"
11025        },
11026        "terminating": {
11027          "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.",
11028          "type": "boolean"
11029        }
11030      },
11031      "type": "object"
11032    },
11033    "io.k8s.api.discovery.v1beta1.EndpointPort": {
11034      "description": "EndpointPort represents a Port used by an EndpointSlice",
11035      "properties": {
11036        "appProtocol": {
11037          "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.",
11038          "type": "string"
11039        },
11040        "name": {
11041          "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.",
11042          "type": "string"
11043        },
11044        "port": {
11045          "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.",
11046          "format": "int32",
11047          "type": "integer"
11048        },
11049        "protocol": {
11050          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
11051          "type": "string"
11052        }
11053      },
11054      "type": "object"
11055    },
11056    "io.k8s.api.discovery.v1beta1.EndpointSlice": {
11057      "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.",
11058      "properties": {
11059        "addressType": {
11060          "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.",
11061          "type": "string"
11062        },
11063        "apiVersion": {
11064          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11065          "type": "string"
11066        },
11067        "endpoints": {
11068          "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
11069          "items": {
11070            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.Endpoint"
11071          },
11072          "type": "array",
11073          "x-kubernetes-list-type": "atomic"
11074        },
11075        "kind": {
11076          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11077          "type": "string"
11078        },
11079        "metadata": {
11080          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11081          "description": "Standard object's metadata."
11082        },
11083        "ports": {
11084          "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.",
11085          "items": {
11086            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointPort"
11087          },
11088          "type": "array",
11089          "x-kubernetes-list-type": "atomic"
11090        }
11091      },
11092      "required": [
11093        "addressType",
11094        "endpoints"
11095      ],
11096      "type": "object",
11097      "x-kubernetes-group-version-kind": [
11098        {
11099          "group": "discovery.k8s.io",
11100          "kind": "EndpointSlice",
11101          "version": "v1beta1"
11102        }
11103      ]
11104    },
11105    "io.k8s.api.discovery.v1beta1.EndpointSliceList": {
11106      "description": "EndpointSliceList represents a list of endpoint slices",
11107      "properties": {
11108        "apiVersion": {
11109          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11110          "type": "string"
11111        },
11112        "items": {
11113          "description": "List of endpoint slices",
11114          "items": {
11115            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
11116          },
11117          "type": "array"
11118        },
11119        "kind": {
11120          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11121          "type": "string"
11122        },
11123        "metadata": {
11124          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11125          "description": "Standard list metadata."
11126        }
11127      },
11128      "required": [
11129        "items"
11130      ],
11131      "type": "object",
11132      "x-kubernetes-group-version-kind": [
11133        {
11134          "group": "discovery.k8s.io",
11135          "kind": "EndpointSliceList",
11136          "version": "v1beta1"
11137        }
11138      ]
11139    },
11140    "io.k8s.api.events.v1.Event": {
11141      "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.",
11142      "properties": {
11143        "action": {
11144          "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.",
11145          "type": "string"
11146        },
11147        "apiVersion": {
11148          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11149          "type": "string"
11150        },
11151        "deprecatedCount": {
11152          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
11153          "format": "int32",
11154          "type": "integer"
11155        },
11156        "deprecatedFirstTimestamp": {
11157          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11158          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11159        },
11160        "deprecatedLastTimestamp": {
11161          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11162          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11163        },
11164        "deprecatedSource": {
11165          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
11166          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
11167        },
11168        "eventTime": {
11169          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11170          "description": "eventTime is the time when this Event was first observed. It is required."
11171        },
11172        "kind": {
11173          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11174          "type": "string"
11175        },
11176        "metadata": {
11177          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
11178        },
11179        "note": {
11180          "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.",
11181          "type": "string"
11182        },
11183        "reason": {
11184          "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.",
11185          "type": "string"
11186        },
11187        "regarding": {
11188          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11189          "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."
11190        },
11191        "related": {
11192          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11193          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
11194        },
11195        "reportingController": {
11196          "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.",
11197          "type": "string"
11198        },
11199        "reportingInstance": {
11200          "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.",
11201          "type": "string"
11202        },
11203        "series": {
11204          "$ref": "#/definitions/io.k8s.api.events.v1.EventSeries",
11205          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
11206        },
11207        "type": {
11208          "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.",
11209          "type": "string"
11210        }
11211      },
11212      "required": [
11213        "metadata",
11214        "eventTime"
11215      ],
11216      "type": "object",
11217      "x-kubernetes-group-version-kind": [
11218        {
11219          "group": "events.k8s.io",
11220          "kind": "Event",
11221          "version": "v1"
11222        }
11223      ]
11224    },
11225    "io.k8s.api.events.v1.EventList": {
11226      "description": "EventList is a list of Event objects.",
11227      "properties": {
11228        "apiVersion": {
11229          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11230          "type": "string"
11231        },
11232        "items": {
11233          "description": "items is a list of schema objects.",
11234          "items": {
11235            "$ref": "#/definitions/io.k8s.api.events.v1.Event"
11236          },
11237          "type": "array"
11238        },
11239        "kind": {
11240          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11241          "type": "string"
11242        },
11243        "metadata": {
11244          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11245          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11246        }
11247      },
11248      "required": [
11249        "items"
11250      ],
11251      "type": "object",
11252      "x-kubernetes-group-version-kind": [
11253        {
11254          "group": "events.k8s.io",
11255          "kind": "EventList",
11256          "version": "v1"
11257        }
11258      ]
11259    },
11260    "io.k8s.api.events.v1.EventSeries": {
11261      "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.",
11262      "properties": {
11263        "count": {
11264          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
11265          "format": "int32",
11266          "type": "integer"
11267        },
11268        "lastObservedTime": {
11269          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11270          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
11271        }
11272      },
11273      "required": [
11274        "count",
11275        "lastObservedTime"
11276      ],
11277      "type": "object"
11278    },
11279    "io.k8s.api.events.v1beta1.Event": {
11280      "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.",
11281      "properties": {
11282        "action": {
11283          "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.",
11284          "type": "string"
11285        },
11286        "apiVersion": {
11287          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11288          "type": "string"
11289        },
11290        "deprecatedCount": {
11291          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
11292          "format": "int32",
11293          "type": "integer"
11294        },
11295        "deprecatedFirstTimestamp": {
11296          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11297          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11298        },
11299        "deprecatedLastTimestamp": {
11300          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11301          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
11302        },
11303        "deprecatedSource": {
11304          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
11305          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
11306        },
11307        "eventTime": {
11308          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11309          "description": "eventTime is the time when this Event was first observed. It is required."
11310        },
11311        "kind": {
11312          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11313          "type": "string"
11314        },
11315        "metadata": {
11316          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
11317        },
11318        "note": {
11319          "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.",
11320          "type": "string"
11321        },
11322        "reason": {
11323          "description": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
11324          "type": "string"
11325        },
11326        "regarding": {
11327          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11328          "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."
11329        },
11330        "related": {
11331          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11332          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
11333        },
11334        "reportingController": {
11335          "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.",
11336          "type": "string"
11337        },
11338        "reportingInstance": {
11339          "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.",
11340          "type": "string"
11341        },
11342        "series": {
11343          "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries",
11344          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
11345        },
11346        "type": {
11347          "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.",
11348          "type": "string"
11349        }
11350      },
11351      "required": [
11352        "metadata",
11353        "eventTime"
11354      ],
11355      "type": "object",
11356      "x-kubernetes-group-version-kind": [
11357        {
11358          "group": "events.k8s.io",
11359          "kind": "Event",
11360          "version": "v1beta1"
11361        }
11362      ]
11363    },
11364    "io.k8s.api.events.v1beta1.EventList": {
11365      "description": "EventList is a list of Event objects.",
11366      "properties": {
11367        "apiVersion": {
11368          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11369          "type": "string"
11370        },
11371        "items": {
11372          "description": "items is a list of schema objects.",
11373          "items": {
11374            "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
11375          },
11376          "type": "array"
11377        },
11378        "kind": {
11379          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11380          "type": "string"
11381        },
11382        "metadata": {
11383          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11384          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11385        }
11386      },
11387      "required": [
11388        "items"
11389      ],
11390      "type": "object",
11391      "x-kubernetes-group-version-kind": [
11392        {
11393          "group": "events.k8s.io",
11394          "kind": "EventList",
11395          "version": "v1beta1"
11396        }
11397      ]
11398    },
11399    "io.k8s.api.events.v1beta1.EventSeries": {
11400      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
11401      "properties": {
11402        "count": {
11403          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
11404          "format": "int32",
11405          "type": "integer"
11406        },
11407        "lastObservedTime": {
11408          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
11409          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
11410        }
11411      },
11412      "required": [
11413        "count",
11414        "lastObservedTime"
11415      ],
11416      "type": "object"
11417    },
11418    "io.k8s.api.extensions.v1beta1.HTTPIngressPath": {
11419      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
11420      "properties": {
11421        "backend": {
11422          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
11423          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
11424        },
11425        "path": {
11426          "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.",
11427          "type": "string"
11428        },
11429        "pathType": {
11430          "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.",
11431          "type": "string"
11432        }
11433      },
11434      "required": [
11435        "backend"
11436      ],
11437      "type": "object"
11438    },
11439    "io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue": {
11440      "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 '#'.",
11441      "properties": {
11442        "paths": {
11443          "description": "A collection of paths that map requests to backends.",
11444          "items": {
11445            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath"
11446          },
11447          "type": "array"
11448        }
11449      },
11450      "required": [
11451        "paths"
11452      ],
11453      "type": "object"
11454    },
11455    "io.k8s.api.extensions.v1beta1.Ingress": {
11456      "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.",
11457      "properties": {
11458        "apiVersion": {
11459          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11460          "type": "string"
11461        },
11462        "kind": {
11463          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11464          "type": "string"
11465        },
11466        "metadata": {
11467          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11468          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11469        },
11470        "spec": {
11471          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec",
11472          "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"
11473        },
11474        "status": {
11475          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus",
11476          "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"
11477        }
11478      },
11479      "type": "object",
11480      "x-kubernetes-group-version-kind": [
11481        {
11482          "group": "extensions",
11483          "kind": "Ingress",
11484          "version": "v1beta1"
11485        }
11486      ]
11487    },
11488    "io.k8s.api.extensions.v1beta1.IngressBackend": {
11489      "description": "IngressBackend describes all endpoints for a given service and port.",
11490      "properties": {
11491        "resource": {
11492          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
11493          "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."
11494        },
11495        "serviceName": {
11496          "description": "Specifies the name of the referenced service.",
11497          "type": "string"
11498        },
11499        "servicePort": {
11500          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
11501          "description": "Specifies the port of the referenced service."
11502        }
11503      },
11504      "type": "object"
11505    },
11506    "io.k8s.api.extensions.v1beta1.IngressList": {
11507      "description": "IngressList is a collection of Ingress.",
11508      "properties": {
11509        "apiVersion": {
11510          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11511          "type": "string"
11512        },
11513        "items": {
11514          "description": "Items is the list of Ingress.",
11515          "items": {
11516            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
11517          },
11518          "type": "array"
11519        },
11520        "kind": {
11521          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11522          "type": "string"
11523        },
11524        "metadata": {
11525          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11526          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11527        }
11528      },
11529      "required": [
11530        "items"
11531      ],
11532      "type": "object",
11533      "x-kubernetes-group-version-kind": [
11534        {
11535          "group": "extensions",
11536          "kind": "IngressList",
11537          "version": "v1beta1"
11538        }
11539      ]
11540    },
11541    "io.k8s.api.extensions.v1beta1.IngressRule": {
11542      "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.",
11543      "properties": {
11544        "host": {
11545          "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.",
11546          "type": "string"
11547        },
11548        "http": {
11549          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue"
11550        }
11551      },
11552      "type": "object"
11553    },
11554    "io.k8s.api.extensions.v1beta1.IngressSpec": {
11555      "description": "IngressSpec describes the Ingress the user wishes to exist.",
11556      "properties": {
11557        "backend": {
11558          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
11559          "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."
11560        },
11561        "ingressClassName": {
11562          "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.",
11563          "type": "string"
11564        },
11565        "rules": {
11566          "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.",
11567          "items": {
11568            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule"
11569          },
11570          "type": "array"
11571        },
11572        "tls": {
11573          "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.",
11574          "items": {
11575            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS"
11576          },
11577          "type": "array"
11578        }
11579      },
11580      "type": "object"
11581    },
11582    "io.k8s.api.extensions.v1beta1.IngressStatus": {
11583      "description": "IngressStatus describe the current state of the Ingress.",
11584      "properties": {
11585        "loadBalancer": {
11586          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
11587          "description": "LoadBalancer contains the current status of the load-balancer."
11588        }
11589      },
11590      "type": "object"
11591    },
11592    "io.k8s.api.extensions.v1beta1.IngressTLS": {
11593      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
11594      "properties": {
11595        "hosts": {
11596          "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.",
11597          "items": {
11598            "type": "string"
11599          },
11600          "type": "array"
11601        },
11602        "secretName": {
11603          "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.",
11604          "type": "string"
11605        }
11606      },
11607      "type": "object"
11608    },
11609    "io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod": {
11610      "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
11611      "properties": {
11612        "type": {
11613          "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
11614          "type": "string"
11615        }
11616      },
11617      "required": [
11618        "type"
11619      ],
11620      "type": "object"
11621    },
11622    "io.k8s.api.flowcontrol.v1alpha1.FlowSchema": {
11623      "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\".",
11624      "properties": {
11625        "apiVersion": {
11626          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11627          "type": "string"
11628        },
11629        "kind": {
11630          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11631          "type": "string"
11632        },
11633        "metadata": {
11634          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11635          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11636        },
11637        "spec": {
11638          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec",
11639          "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"
11640        },
11641        "status": {
11642          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus",
11643          "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"
11644        }
11645      },
11646      "type": "object",
11647      "x-kubernetes-group-version-kind": [
11648        {
11649          "group": "flowcontrol.apiserver.k8s.io",
11650          "kind": "FlowSchema",
11651          "version": "v1alpha1"
11652        }
11653      ]
11654    },
11655    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition": {
11656      "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
11657      "properties": {
11658        "lastTransitionTime": {
11659          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11660          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
11661        },
11662        "message": {
11663          "description": "`message` is a human-readable message indicating details about last transition.",
11664          "type": "string"
11665        },
11666        "reason": {
11667          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
11668          "type": "string"
11669        },
11670        "status": {
11671          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
11672          "type": "string"
11673        },
11674        "type": {
11675          "description": "`type` is the type of the condition. Required.",
11676          "type": "string"
11677        }
11678      },
11679      "type": "object"
11680    },
11681    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList": {
11682      "description": "FlowSchemaList is a list of FlowSchema objects.",
11683      "properties": {
11684        "apiVersion": {
11685          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11686          "type": "string"
11687        },
11688        "items": {
11689          "description": "`items` is a list of FlowSchemas.",
11690          "items": {
11691            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
11692          },
11693          "type": "array"
11694        },
11695        "kind": {
11696          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11697          "type": "string"
11698        },
11699        "metadata": {
11700          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11701          "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11702        }
11703      },
11704      "required": [
11705        "items"
11706      ],
11707      "type": "object",
11708      "x-kubernetes-group-version-kind": [
11709        {
11710          "group": "flowcontrol.apiserver.k8s.io",
11711          "kind": "FlowSchemaList",
11712          "version": "v1alpha1"
11713        }
11714      ]
11715    },
11716    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaSpec": {
11717      "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
11718      "properties": {
11719        "distinguisherMethod": {
11720          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowDistinguisherMethod",
11721          "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."
11722        },
11723        "matchingPrecedence": {
11724          "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.",
11725          "format": "int32",
11726          "type": "integer"
11727        },
11728        "priorityLevelConfiguration": {
11729          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference",
11730          "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."
11731        },
11732        "rules": {
11733          "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.",
11734          "items": {
11735            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects"
11736          },
11737          "type": "array",
11738          "x-kubernetes-list-type": "atomic"
11739        }
11740      },
11741      "required": [
11742        "priorityLevelConfiguration"
11743      ],
11744      "type": "object"
11745    },
11746    "io.k8s.api.flowcontrol.v1alpha1.FlowSchemaStatus": {
11747      "description": "FlowSchemaStatus represents the current state of a FlowSchema.",
11748      "properties": {
11749        "conditions": {
11750          "description": "`conditions` is a list of the current states of FlowSchema.",
11751          "items": {
11752            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaCondition"
11753          },
11754          "type": "array",
11755          "x-kubernetes-list-map-keys": [
11756            "type"
11757          ],
11758          "x-kubernetes-list-type": "map"
11759        }
11760      },
11761      "type": "object"
11762    },
11763    "io.k8s.api.flowcontrol.v1alpha1.GroupSubject": {
11764      "description": "GroupSubject holds detailed information for group-kind subject.",
11765      "properties": {
11766        "name": {
11767          "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.",
11768          "type": "string"
11769        }
11770      },
11771      "required": [
11772        "name"
11773      ],
11774      "type": "object"
11775    },
11776    "io.k8s.api.flowcontrol.v1alpha1.LimitResponse": {
11777      "description": "LimitResponse defines how to handle requests that can not be executed right now.",
11778      "properties": {
11779        "queuing": {
11780          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration",
11781          "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
11782        },
11783        "type": {
11784          "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.",
11785          "type": "string"
11786        }
11787      },
11788      "required": [
11789        "type"
11790      ],
11791      "type": "object",
11792      "x-kubernetes-unions": [
11793        {
11794          "discriminator": "type",
11795          "fields-to-discriminateBy": {
11796            "queuing": "Queuing"
11797          }
11798        }
11799      ]
11800    },
11801    "io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration": {
11802      "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?",
11803      "properties": {
11804        "assuredConcurrencyShares": {
11805          "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.",
11806          "format": "int32",
11807          "type": "integer"
11808        },
11809        "limitResponse": {
11810          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitResponse",
11811          "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
11812        }
11813      },
11814      "type": "object"
11815    },
11816    "io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule": {
11817      "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.",
11818      "properties": {
11819        "nonResourceURLs": {
11820          "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.",
11821          "items": {
11822            "type": "string"
11823          },
11824          "type": "array",
11825          "x-kubernetes-list-type": "set"
11826        },
11827        "verbs": {
11828          "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.",
11829          "items": {
11830            "type": "string"
11831          },
11832          "type": "array",
11833          "x-kubernetes-list-type": "set"
11834        }
11835      },
11836      "required": [
11837        "verbs",
11838        "nonResourceURLs"
11839      ],
11840      "type": "object"
11841    },
11842    "io.k8s.api.flowcontrol.v1alpha1.PolicyRulesWithSubjects": {
11843      "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.",
11844      "properties": {
11845        "nonResourceRules": {
11846          "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
11847          "items": {
11848            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.NonResourcePolicyRule"
11849          },
11850          "type": "array",
11851          "x-kubernetes-list-type": "atomic"
11852        },
11853        "resourceRules": {
11854          "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.",
11855          "items": {
11856            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule"
11857          },
11858          "type": "array",
11859          "x-kubernetes-list-type": "atomic"
11860        },
11861        "subjects": {
11862          "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.",
11863          "items": {
11864            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.Subject"
11865          },
11866          "type": "array",
11867          "x-kubernetes-list-type": "atomic"
11868        }
11869      },
11870      "required": [
11871        "subjects"
11872      ],
11873      "type": "object"
11874    },
11875    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration": {
11876      "description": "PriorityLevelConfiguration represents the configuration of a priority level.",
11877      "properties": {
11878        "apiVersion": {
11879          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11880          "type": "string"
11881        },
11882        "kind": {
11883          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11884          "type": "string"
11885        },
11886        "metadata": {
11887          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11888          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11889        },
11890        "spec": {
11891          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec",
11892          "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"
11893        },
11894        "status": {
11895          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus",
11896          "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"
11897        }
11898      },
11899      "type": "object",
11900      "x-kubernetes-group-version-kind": [
11901        {
11902          "group": "flowcontrol.apiserver.k8s.io",
11903          "kind": "PriorityLevelConfiguration",
11904          "version": "v1alpha1"
11905        }
11906      ]
11907    },
11908    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition": {
11909      "description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
11910      "properties": {
11911        "lastTransitionTime": {
11912          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11913          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
11914        },
11915        "message": {
11916          "description": "`message` is a human-readable message indicating details about last transition.",
11917          "type": "string"
11918        },
11919        "reason": {
11920          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
11921          "type": "string"
11922        },
11923        "status": {
11924          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
11925          "type": "string"
11926        },
11927        "type": {
11928          "description": "`type` is the type of the condition. Required.",
11929          "type": "string"
11930        }
11931      },
11932      "type": "object"
11933    },
11934    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList": {
11935      "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.",
11936      "properties": {
11937        "apiVersion": {
11938          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11939          "type": "string"
11940        },
11941        "items": {
11942          "description": "`items` is a list of request-priorities.",
11943          "items": {
11944            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
11945          },
11946          "type": "array"
11947        },
11948        "kind": {
11949          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11950          "type": "string"
11951        },
11952        "metadata": {
11953          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11954          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11955        }
11956      },
11957      "required": [
11958        "items"
11959      ],
11960      "type": "object",
11961      "x-kubernetes-group-version-kind": [
11962        {
11963          "group": "flowcontrol.apiserver.k8s.io",
11964          "kind": "PriorityLevelConfigurationList",
11965          "version": "v1alpha1"
11966        }
11967      ]
11968    },
11969    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationReference": {
11970      "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
11971      "properties": {
11972        "name": {
11973          "description": "`name` is the name of the priority level configuration being referenced Required.",
11974          "type": "string"
11975        }
11976      },
11977      "required": [
11978        "name"
11979      ],
11980      "type": "object"
11981    },
11982    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationSpec": {
11983      "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.",
11984      "properties": {
11985        "limited": {
11986          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.LimitedPriorityLevelConfiguration",
11987          "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\"`."
11988        },
11989        "type": {
11990          "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.",
11991          "type": "string"
11992        }
11993      },
11994      "required": [
11995        "type"
11996      ],
11997      "type": "object",
11998      "x-kubernetes-unions": [
11999        {
12000          "discriminator": "type",
12001          "fields-to-discriminateBy": {
12002            "limited": "Limited"
12003          }
12004        }
12005      ]
12006    },
12007    "io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationStatus": {
12008      "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".",
12009      "properties": {
12010        "conditions": {
12011          "description": "`conditions` is the current state of \"request-priority\".",
12012          "items": {
12013            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationCondition"
12014          },
12015          "type": "array",
12016          "x-kubernetes-list-map-keys": [
12017            "type"
12018          ],
12019          "x-kubernetes-list-type": "map"
12020        }
12021      },
12022      "type": "object"
12023    },
12024    "io.k8s.api.flowcontrol.v1alpha1.QueuingConfiguration": {
12025      "description": "QueuingConfiguration holds the configuration parameters for queuing",
12026      "properties": {
12027        "handSize": {
12028          "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.",
12029          "format": "int32",
12030          "type": "integer"
12031        },
12032        "queueLengthLimit": {
12033          "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.",
12034          "format": "int32",
12035          "type": "integer"
12036        },
12037        "queues": {
12038          "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.",
12039          "format": "int32",
12040          "type": "integer"
12041        }
12042      },
12043      "type": "object"
12044    },
12045    "io.k8s.api.flowcontrol.v1alpha1.ResourcePolicyRule": {
12046      "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.",
12047      "properties": {
12048        "apiGroups": {
12049          "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.",
12050          "items": {
12051            "type": "string"
12052          },
12053          "type": "array",
12054          "x-kubernetes-list-type": "set"
12055        },
12056        "clusterScope": {
12057          "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.",
12058          "type": "boolean"
12059        },
12060        "namespaces": {
12061          "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.",
12062          "items": {
12063            "type": "string"
12064          },
12065          "type": "array",
12066          "x-kubernetes-list-type": "set"
12067        },
12068        "resources": {
12069          "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.",
12070          "items": {
12071            "type": "string"
12072          },
12073          "type": "array",
12074          "x-kubernetes-list-type": "set"
12075        },
12076        "verbs": {
12077          "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.",
12078          "items": {
12079            "type": "string"
12080          },
12081          "type": "array",
12082          "x-kubernetes-list-type": "set"
12083        }
12084      },
12085      "required": [
12086        "verbs",
12087        "apiGroups",
12088        "resources"
12089      ],
12090      "type": "object"
12091    },
12092    "io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject": {
12093      "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
12094      "properties": {
12095        "name": {
12096          "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
12097          "type": "string"
12098        },
12099        "namespace": {
12100          "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
12101          "type": "string"
12102        }
12103      },
12104      "required": [
12105        "namespace",
12106        "name"
12107      ],
12108      "type": "object"
12109    },
12110    "io.k8s.api.flowcontrol.v1alpha1.Subject": {
12111      "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.",
12112      "properties": {
12113        "group": {
12114          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.GroupSubject"
12115        },
12116        "kind": {
12117          "description": "Required",
12118          "type": "string"
12119        },
12120        "serviceAccount": {
12121          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.ServiceAccountSubject"
12122        },
12123        "user": {
12124          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.UserSubject"
12125        }
12126      },
12127      "required": [
12128        "kind"
12129      ],
12130      "type": "object",
12131      "x-kubernetes-unions": [
12132        {
12133          "discriminator": "kind",
12134          "fields-to-discriminateBy": {
12135            "group": "Group",
12136            "serviceAccount": "ServiceAccount",
12137            "user": "User"
12138          }
12139        }
12140      ]
12141    },
12142    "io.k8s.api.flowcontrol.v1alpha1.UserSubject": {
12143      "description": "UserSubject holds detailed information for user-kind subject.",
12144      "properties": {
12145        "name": {
12146          "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
12147          "type": "string"
12148        }
12149      },
12150      "required": [
12151        "name"
12152      ],
12153      "type": "object"
12154    },
12155    "io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod": {
12156      "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
12157      "properties": {
12158        "type": {
12159          "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
12160          "type": "string"
12161        }
12162      },
12163      "required": [
12164        "type"
12165      ],
12166      "type": "object"
12167    },
12168    "io.k8s.api.flowcontrol.v1beta1.FlowSchema": {
12169      "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\".",
12170      "properties": {
12171        "apiVersion": {
12172          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12173          "type": "string"
12174        },
12175        "kind": {
12176          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12177          "type": "string"
12178        },
12179        "metadata": {
12180          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12181          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12182        },
12183        "spec": {
12184          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec",
12185          "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"
12186        },
12187        "status": {
12188          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus",
12189          "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"
12190        }
12191      },
12192      "type": "object",
12193      "x-kubernetes-group-version-kind": [
12194        {
12195          "group": "flowcontrol.apiserver.k8s.io",
12196          "kind": "FlowSchema",
12197          "version": "v1beta1"
12198        }
12199      ]
12200    },
12201    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition": {
12202      "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
12203      "properties": {
12204        "lastTransitionTime": {
12205          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12206          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
12207        },
12208        "message": {
12209          "description": "`message` is a human-readable message indicating details about last transition.",
12210          "type": "string"
12211        },
12212        "reason": {
12213          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
12214          "type": "string"
12215        },
12216        "status": {
12217          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
12218          "type": "string"
12219        },
12220        "type": {
12221          "description": "`type` is the type of the condition. Required.",
12222          "type": "string"
12223        }
12224      },
12225      "type": "object"
12226    },
12227    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaList": {
12228      "description": "FlowSchemaList is a list of FlowSchema objects.",
12229      "properties": {
12230        "apiVersion": {
12231          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12232          "type": "string"
12233        },
12234        "items": {
12235          "description": "`items` is a list of FlowSchemas.",
12236          "items": {
12237            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
12238          },
12239          "type": "array"
12240        },
12241        "kind": {
12242          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12243          "type": "string"
12244        },
12245        "metadata": {
12246          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12247          "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12248        }
12249      },
12250      "required": [
12251        "items"
12252      ],
12253      "type": "object",
12254      "x-kubernetes-group-version-kind": [
12255        {
12256          "group": "flowcontrol.apiserver.k8s.io",
12257          "kind": "FlowSchemaList",
12258          "version": "v1beta1"
12259        }
12260      ]
12261    },
12262    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec": {
12263      "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
12264      "properties": {
12265        "distinguisherMethod": {
12266          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod",
12267          "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."
12268        },
12269        "matchingPrecedence": {
12270          "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.",
12271          "format": "int32",
12272          "type": "integer"
12273        },
12274        "priorityLevelConfiguration": {
12275          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference",
12276          "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."
12277        },
12278        "rules": {
12279          "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.",
12280          "items": {
12281            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects"
12282          },
12283          "type": "array",
12284          "x-kubernetes-list-type": "atomic"
12285        }
12286      },
12287      "required": [
12288        "priorityLevelConfiguration"
12289      ],
12290      "type": "object"
12291    },
12292    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus": {
12293      "description": "FlowSchemaStatus represents the current state of a FlowSchema.",
12294      "properties": {
12295        "conditions": {
12296          "description": "`conditions` is a list of the current states of FlowSchema.",
12297          "items": {
12298            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition"
12299          },
12300          "type": "array",
12301          "x-kubernetes-list-map-keys": [
12302            "type"
12303          ],
12304          "x-kubernetes-list-type": "map"
12305        }
12306      },
12307      "type": "object"
12308    },
12309    "io.k8s.api.flowcontrol.v1beta1.GroupSubject": {
12310      "description": "GroupSubject holds detailed information for group-kind subject.",
12311      "properties": {
12312        "name": {
12313          "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.",
12314          "type": "string"
12315        }
12316      },
12317      "required": [
12318        "name"
12319      ],
12320      "type": "object"
12321    },
12322    "io.k8s.api.flowcontrol.v1beta1.LimitResponse": {
12323      "description": "LimitResponse defines how to handle requests that can not be executed right now.",
12324      "properties": {
12325        "queuing": {
12326          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration",
12327          "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
12328        },
12329        "type": {
12330          "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.",
12331          "type": "string"
12332        }
12333      },
12334      "required": [
12335        "type"
12336      ],
12337      "type": "object",
12338      "x-kubernetes-unions": [
12339        {
12340          "discriminator": "type",
12341          "fields-to-discriminateBy": {
12342            "queuing": "Queuing"
12343          }
12344        }
12345      ]
12346    },
12347    "io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration": {
12348      "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?",
12349      "properties": {
12350        "assuredConcurrencyShares": {
12351          "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.",
12352          "format": "int32",
12353          "type": "integer"
12354        },
12355        "limitResponse": {
12356          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitResponse",
12357          "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
12358        }
12359      },
12360      "type": "object"
12361    },
12362    "io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule": {
12363      "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.",
12364      "properties": {
12365        "nonResourceURLs": {
12366          "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.",
12367          "items": {
12368            "type": "string"
12369          },
12370          "type": "array",
12371          "x-kubernetes-list-type": "set"
12372        },
12373        "verbs": {
12374          "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.",
12375          "items": {
12376            "type": "string"
12377          },
12378          "type": "array",
12379          "x-kubernetes-list-type": "set"
12380        }
12381      },
12382      "required": [
12383        "verbs",
12384        "nonResourceURLs"
12385      ],
12386      "type": "object"
12387    },
12388    "io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects": {
12389      "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.",
12390      "properties": {
12391        "nonResourceRules": {
12392          "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
12393          "items": {
12394            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule"
12395          },
12396          "type": "array",
12397          "x-kubernetes-list-type": "atomic"
12398        },
12399        "resourceRules": {
12400          "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.",
12401          "items": {
12402            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule"
12403          },
12404          "type": "array",
12405          "x-kubernetes-list-type": "atomic"
12406        },
12407        "subjects": {
12408          "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.",
12409          "items": {
12410            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.Subject"
12411          },
12412          "type": "array",
12413          "x-kubernetes-list-type": "atomic"
12414        }
12415      },
12416      "required": [
12417        "subjects"
12418      ],
12419      "type": "object"
12420    },
12421    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration": {
12422      "description": "PriorityLevelConfiguration represents the configuration of a priority level.",
12423      "properties": {
12424        "apiVersion": {
12425          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12426          "type": "string"
12427        },
12428        "kind": {
12429          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12430          "type": "string"
12431        },
12432        "metadata": {
12433          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12434          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12435        },
12436        "spec": {
12437          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec",
12438          "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"
12439        },
12440        "status": {
12441          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus",
12442          "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"
12443        }
12444      },
12445      "type": "object",
12446      "x-kubernetes-group-version-kind": [
12447        {
12448          "group": "flowcontrol.apiserver.k8s.io",
12449          "kind": "PriorityLevelConfiguration",
12450          "version": "v1beta1"
12451        }
12452      ]
12453    },
12454    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition": {
12455      "description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
12456      "properties": {
12457        "lastTransitionTime": {
12458          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12459          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
12460        },
12461        "message": {
12462          "description": "`message` is a human-readable message indicating details about last transition.",
12463          "type": "string"
12464        },
12465        "reason": {
12466          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
12467          "type": "string"
12468        },
12469        "status": {
12470          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
12471          "type": "string"
12472        },
12473        "type": {
12474          "description": "`type` is the type of the condition. Required.",
12475          "type": "string"
12476        }
12477      },
12478      "type": "object"
12479    },
12480    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList": {
12481      "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.",
12482      "properties": {
12483        "apiVersion": {
12484          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12485          "type": "string"
12486        },
12487        "items": {
12488          "description": "`items` is a list of request-priorities.",
12489          "items": {
12490            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
12491          },
12492          "type": "array"
12493        },
12494        "kind": {
12495          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12496          "type": "string"
12497        },
12498        "metadata": {
12499          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12500          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12501        }
12502      },
12503      "required": [
12504        "items"
12505      ],
12506      "type": "object",
12507      "x-kubernetes-group-version-kind": [
12508        {
12509          "group": "flowcontrol.apiserver.k8s.io",
12510          "kind": "PriorityLevelConfigurationList",
12511          "version": "v1beta1"
12512        }
12513      ]
12514    },
12515    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference": {
12516      "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
12517      "properties": {
12518        "name": {
12519          "description": "`name` is the name of the priority level configuration being referenced Required.",
12520          "type": "string"
12521        }
12522      },
12523      "required": [
12524        "name"
12525      ],
12526      "type": "object"
12527    },
12528    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec": {
12529      "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.",
12530      "properties": {
12531        "limited": {
12532          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration",
12533          "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\"`."
12534        },
12535        "type": {
12536          "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.",
12537          "type": "string"
12538        }
12539      },
12540      "required": [
12541        "type"
12542      ],
12543      "type": "object",
12544      "x-kubernetes-unions": [
12545        {
12546          "discriminator": "type",
12547          "fields-to-discriminateBy": {
12548            "limited": "Limited"
12549          }
12550        }
12551      ]
12552    },
12553    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus": {
12554      "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".",
12555      "properties": {
12556        "conditions": {
12557          "description": "`conditions` is the current state of \"request-priority\".",
12558          "items": {
12559            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition"
12560          },
12561          "type": "array",
12562          "x-kubernetes-list-map-keys": [
12563            "type"
12564          ],
12565          "x-kubernetes-list-type": "map"
12566        }
12567      },
12568      "type": "object"
12569    },
12570    "io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration": {
12571      "description": "QueuingConfiguration holds the configuration parameters for queuing",
12572      "properties": {
12573        "handSize": {
12574          "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.",
12575          "format": "int32",
12576          "type": "integer"
12577        },
12578        "queueLengthLimit": {
12579          "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.",
12580          "format": "int32",
12581          "type": "integer"
12582        },
12583        "queues": {
12584          "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.",
12585          "format": "int32",
12586          "type": "integer"
12587        }
12588      },
12589      "type": "object"
12590    },
12591    "io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule": {
12592      "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.",
12593      "properties": {
12594        "apiGroups": {
12595          "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.",
12596          "items": {
12597            "type": "string"
12598          },
12599          "type": "array",
12600          "x-kubernetes-list-type": "set"
12601        },
12602        "clusterScope": {
12603          "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.",
12604          "type": "boolean"
12605        },
12606        "namespaces": {
12607          "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.",
12608          "items": {
12609            "type": "string"
12610          },
12611          "type": "array",
12612          "x-kubernetes-list-type": "set"
12613        },
12614        "resources": {
12615          "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.",
12616          "items": {
12617            "type": "string"
12618          },
12619          "type": "array",
12620          "x-kubernetes-list-type": "set"
12621        },
12622        "verbs": {
12623          "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.",
12624          "items": {
12625            "type": "string"
12626          },
12627          "type": "array",
12628          "x-kubernetes-list-type": "set"
12629        }
12630      },
12631      "required": [
12632        "verbs",
12633        "apiGroups",
12634        "resources"
12635      ],
12636      "type": "object"
12637    },
12638    "io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject": {
12639      "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
12640      "properties": {
12641        "name": {
12642          "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
12643          "type": "string"
12644        },
12645        "namespace": {
12646          "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
12647          "type": "string"
12648        }
12649      },
12650      "required": [
12651        "namespace",
12652        "name"
12653      ],
12654      "type": "object"
12655    },
12656    "io.k8s.api.flowcontrol.v1beta1.Subject": {
12657      "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.",
12658      "properties": {
12659        "group": {
12660          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.GroupSubject"
12661        },
12662        "kind": {
12663          "description": "Required",
12664          "type": "string"
12665        },
12666        "serviceAccount": {
12667          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject"
12668        },
12669        "user": {
12670          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.UserSubject"
12671        }
12672      },
12673      "required": [
12674        "kind"
12675      ],
12676      "type": "object",
12677      "x-kubernetes-unions": [
12678        {
12679          "discriminator": "kind",
12680          "fields-to-discriminateBy": {
12681            "group": "Group",
12682            "serviceAccount": "ServiceAccount",
12683            "user": "User"
12684          }
12685        }
12686      ]
12687    },
12688    "io.k8s.api.flowcontrol.v1beta1.UserSubject": {
12689      "description": "UserSubject holds detailed information for user-kind subject.",
12690      "properties": {
12691        "name": {
12692          "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
12693          "type": "string"
12694        }
12695      },
12696      "required": [
12697        "name"
12698      ],
12699      "type": "object"
12700    },
12701    "io.k8s.api.networking.v1.HTTPIngressPath": {
12702      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
12703      "properties": {
12704        "backend": {
12705          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
12706          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
12707        },
12708        "path": {
12709          "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.",
12710          "type": "string"
12711        },
12712        "pathType": {
12713          "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.",
12714          "type": "string"
12715        }
12716      },
12717      "required": [
12718        "backend"
12719      ],
12720      "type": "object"
12721    },
12722    "io.k8s.api.networking.v1.HTTPIngressRuleValue": {
12723      "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 '#'.",
12724      "properties": {
12725        "paths": {
12726          "description": "A collection of paths that map requests to backends.",
12727          "items": {
12728            "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath"
12729          },
12730          "type": "array",
12731          "x-kubernetes-list-type": "atomic"
12732        }
12733      },
12734      "required": [
12735        "paths"
12736      ],
12737      "type": "object"
12738    },
12739    "io.k8s.api.networking.v1.IPBlock": {
12740      "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.",
12741      "properties": {
12742        "cidr": {
12743          "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"",
12744          "type": "string"
12745        },
12746        "except": {
12747          "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",
12748          "items": {
12749            "type": "string"
12750          },
12751          "type": "array"
12752        }
12753      },
12754      "required": [
12755        "cidr"
12756      ],
12757      "type": "object"
12758    },
12759    "io.k8s.api.networking.v1.Ingress": {
12760      "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.",
12761      "properties": {
12762        "apiVersion": {
12763          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12764          "type": "string"
12765        },
12766        "kind": {
12767          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12768          "type": "string"
12769        },
12770        "metadata": {
12771          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12772          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12773        },
12774        "spec": {
12775          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec",
12776          "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"
12777        },
12778        "status": {
12779          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus",
12780          "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"
12781        }
12782      },
12783      "type": "object",
12784      "x-kubernetes-group-version-kind": [
12785        {
12786          "group": "networking.k8s.io",
12787          "kind": "Ingress",
12788          "version": "v1"
12789        }
12790      ]
12791    },
12792    "io.k8s.api.networking.v1.IngressBackend": {
12793      "description": "IngressBackend describes all endpoints for a given service and port.",
12794      "properties": {
12795        "resource": {
12796          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
12797          "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\"."
12798        },
12799        "service": {
12800          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend",
12801          "description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"."
12802        }
12803      },
12804      "type": "object"
12805    },
12806    "io.k8s.api.networking.v1.IngressClass": {
12807      "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.",
12808      "properties": {
12809        "apiVersion": {
12810          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12811          "type": "string"
12812        },
12813        "kind": {
12814          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12815          "type": "string"
12816        },
12817        "metadata": {
12818          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12819          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12820        },
12821        "spec": {
12822          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec",
12823          "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"
12824        }
12825      },
12826      "type": "object",
12827      "x-kubernetes-group-version-kind": [
12828        {
12829          "group": "networking.k8s.io",
12830          "kind": "IngressClass",
12831          "version": "v1"
12832        }
12833      ]
12834    },
12835    "io.k8s.api.networking.v1.IngressClassList": {
12836      "description": "IngressClassList is a collection of IngressClasses.",
12837      "properties": {
12838        "apiVersion": {
12839          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12840          "type": "string"
12841        },
12842        "items": {
12843          "description": "Items is the list of IngressClasses.",
12844          "items": {
12845            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
12846          },
12847          "type": "array"
12848        },
12849        "kind": {
12850          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12851          "type": "string"
12852        },
12853        "metadata": {
12854          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12855          "description": "Standard list metadata."
12856        }
12857      },
12858      "required": [
12859        "items"
12860      ],
12861      "type": "object",
12862      "x-kubernetes-group-version-kind": [
12863        {
12864          "group": "networking.k8s.io",
12865          "kind": "IngressClassList",
12866          "version": "v1"
12867        }
12868      ]
12869    },
12870    "io.k8s.api.networking.v1.IngressClassSpec": {
12871      "description": "IngressClassSpec provides information about the class of an Ingress.",
12872      "properties": {
12873        "controller": {
12874          "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.",
12875          "type": "string"
12876        },
12877        "parameters": {
12878          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
12879          "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."
12880        }
12881      },
12882      "type": "object"
12883    },
12884    "io.k8s.api.networking.v1.IngressList": {
12885      "description": "IngressList is a collection of Ingress.",
12886      "properties": {
12887        "apiVersion": {
12888          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12889          "type": "string"
12890        },
12891        "items": {
12892          "description": "Items is the list of Ingress.",
12893          "items": {
12894            "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
12895          },
12896          "type": "array"
12897        },
12898        "kind": {
12899          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12900          "type": "string"
12901        },
12902        "metadata": {
12903          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12904          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12905        }
12906      },
12907      "required": [
12908        "items"
12909      ],
12910      "type": "object",
12911      "x-kubernetes-group-version-kind": [
12912        {
12913          "group": "networking.k8s.io",
12914          "kind": "IngressList",
12915          "version": "v1"
12916        }
12917      ]
12918    },
12919    "io.k8s.api.networking.v1.IngressRule": {
12920      "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.",
12921      "properties": {
12922        "host": {
12923          "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.",
12924          "type": "string"
12925        },
12926        "http": {
12927          "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressRuleValue"
12928        }
12929      },
12930      "type": "object"
12931    },
12932    "io.k8s.api.networking.v1.IngressServiceBackend": {
12933      "description": "IngressServiceBackend references a Kubernetes Service as a Backend.",
12934      "properties": {
12935        "name": {
12936          "description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.",
12937          "type": "string"
12938        },
12939        "port": {
12940          "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort",
12941          "description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend."
12942        }
12943      },
12944      "required": [
12945        "name"
12946      ],
12947      "type": "object"
12948    },
12949    "io.k8s.api.networking.v1.IngressSpec": {
12950      "description": "IngressSpec describes the Ingress the user wishes to exist.",
12951      "properties": {
12952        "defaultBackend": {
12953          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
12954          "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."
12955        },
12956        "ingressClassName": {
12957          "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.",
12958          "type": "string"
12959        },
12960        "rules": {
12961          "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.",
12962          "items": {
12963            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule"
12964          },
12965          "type": "array",
12966          "x-kubernetes-list-type": "atomic"
12967        },
12968        "tls": {
12969          "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.",
12970          "items": {
12971            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS"
12972          },
12973          "type": "array",
12974          "x-kubernetes-list-type": "atomic"
12975        }
12976      },
12977      "type": "object"
12978    },
12979    "io.k8s.api.networking.v1.IngressStatus": {
12980      "description": "IngressStatus describe the current state of the Ingress.",
12981      "properties": {
12982        "loadBalancer": {
12983          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
12984          "description": "LoadBalancer contains the current status of the load-balancer."
12985        }
12986      },
12987      "type": "object"
12988    },
12989    "io.k8s.api.networking.v1.IngressTLS": {
12990      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
12991      "properties": {
12992        "hosts": {
12993          "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.",
12994          "items": {
12995            "type": "string"
12996          },
12997          "type": "array",
12998          "x-kubernetes-list-type": "atomic"
12999        },
13000        "secretName": {
13001          "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.",
13002          "type": "string"
13003        }
13004      },
13005      "type": "object"
13006    },
13007    "io.k8s.api.networking.v1.NetworkPolicy": {
13008      "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
13009      "properties": {
13010        "apiVersion": {
13011          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13012          "type": "string"
13013        },
13014        "kind": {
13015          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13016          "type": "string"
13017        },
13018        "metadata": {
13019          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13020          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13021        },
13022        "spec": {
13023          "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec",
13024          "description": "Specification of the desired behavior for this NetworkPolicy."
13025        }
13026      },
13027      "type": "object",
13028      "x-kubernetes-group-version-kind": [
13029        {
13030          "group": "networking.k8s.io",
13031          "kind": "NetworkPolicy",
13032          "version": "v1"
13033        }
13034      ]
13035    },
13036    "io.k8s.api.networking.v1.NetworkPolicyEgressRule": {
13037      "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",
13038      "properties": {
13039        "ports": {
13040          "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.",
13041          "items": {
13042            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13043          },
13044          "type": "array"
13045        },
13046        "to": {
13047          "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.",
13048          "items": {
13049            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13050          },
13051          "type": "array"
13052        }
13053      },
13054      "type": "object"
13055    },
13056    "io.k8s.api.networking.v1.NetworkPolicyIngressRule": {
13057      "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.",
13058      "properties": {
13059        "from": {
13060          "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.",
13061          "items": {
13062            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13063          },
13064          "type": "array"
13065        },
13066        "ports": {
13067          "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.",
13068          "items": {
13069            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13070          },
13071          "type": "array"
13072        }
13073      },
13074      "type": "object"
13075    },
13076    "io.k8s.api.networking.v1.NetworkPolicyList": {
13077      "description": "NetworkPolicyList is a list of NetworkPolicy objects.",
13078      "properties": {
13079        "apiVersion": {
13080          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13081          "type": "string"
13082        },
13083        "items": {
13084          "description": "Items is a list of schema objects.",
13085          "items": {
13086            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
13087          },
13088          "type": "array"
13089        },
13090        "kind": {
13091          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13092          "type": "string"
13093        },
13094        "metadata": {
13095          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13096          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13097        }
13098      },
13099      "required": [
13100        "items"
13101      ],
13102      "type": "object",
13103      "x-kubernetes-group-version-kind": [
13104        {
13105          "group": "networking.k8s.io",
13106          "kind": "NetworkPolicyList",
13107          "version": "v1"
13108        }
13109      ]
13110    },
13111    "io.k8s.api.networking.v1.NetworkPolicyPeer": {
13112      "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
13113      "properties": {
13114        "ipBlock": {
13115          "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
13116          "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
13117        },
13118        "namespaceSelector": {
13119          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13120          "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."
13121        },
13122        "podSelector": {
13123          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13124          "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."
13125        }
13126      },
13127      "type": "object"
13128    },
13129    "io.k8s.api.networking.v1.NetworkPolicyPort": {
13130      "description": "NetworkPolicyPort describes a port to allow traffic on",
13131      "properties": {
13132        "endPort": {
13133          "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\".",
13134          "format": "int32",
13135          "type": "integer"
13136        },
13137        "port": {
13138          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13139          "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."
13140        },
13141        "protocol": {
13142          "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
13143          "type": "string"
13144        }
13145      },
13146      "type": "object"
13147    },
13148    "io.k8s.api.networking.v1.NetworkPolicySpec": {
13149      "description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
13150      "properties": {
13151        "egress": {
13152          "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",
13153          "items": {
13154            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule"
13155          },
13156          "type": "array"
13157        },
13158        "ingress": {
13159          "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)",
13160          "items": {
13161            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule"
13162          },
13163          "type": "array"
13164        },
13165        "podSelector": {
13166          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13167          "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."
13168        },
13169        "policyTypes": {
13170          "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",
13171          "items": {
13172            "type": "string"
13173          },
13174          "type": "array"
13175        }
13176      },
13177      "required": [
13178        "podSelector"
13179      ],
13180      "type": "object"
13181    },
13182    "io.k8s.api.networking.v1.ServiceBackendPort": {
13183      "description": "ServiceBackendPort is the service port being referenced.",
13184      "properties": {
13185        "name": {
13186          "description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
13187          "type": "string"
13188        },
13189        "number": {
13190          "description": "Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".",
13191          "format": "int32",
13192          "type": "integer"
13193        }
13194      },
13195      "type": "object"
13196    },
13197    "io.k8s.api.networking.v1beta1.HTTPIngressPath": {
13198      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
13199      "properties": {
13200        "backend": {
13201          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13202          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
13203        },
13204        "path": {
13205          "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.",
13206          "type": "string"
13207        },
13208        "pathType": {
13209          "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.",
13210          "type": "string"
13211        }
13212      },
13213      "required": [
13214        "backend"
13215      ],
13216      "type": "object"
13217    },
13218    "io.k8s.api.networking.v1beta1.HTTPIngressRuleValue": {
13219      "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 '#'.",
13220      "properties": {
13221        "paths": {
13222          "description": "A collection of paths that map requests to backends.",
13223          "items": {
13224            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressPath"
13225          },
13226          "type": "array"
13227        }
13228      },
13229      "required": [
13230        "paths"
13231      ],
13232      "type": "object"
13233    },
13234    "io.k8s.api.networking.v1beta1.Ingress": {
13235      "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.",
13236      "properties": {
13237        "apiVersion": {
13238          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13239          "type": "string"
13240        },
13241        "kind": {
13242          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13243          "type": "string"
13244        },
13245        "metadata": {
13246          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13247          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13248        },
13249        "spec": {
13250          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressSpec",
13251          "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"
13252        },
13253        "status": {
13254          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressStatus",
13255          "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"
13256        }
13257      },
13258      "type": "object",
13259      "x-kubernetes-group-version-kind": [
13260        {
13261          "group": "networking.k8s.io",
13262          "kind": "Ingress",
13263          "version": "v1beta1"
13264        }
13265      ]
13266    },
13267    "io.k8s.api.networking.v1beta1.IngressBackend": {
13268      "description": "IngressBackend describes all endpoints for a given service and port.",
13269      "properties": {
13270        "resource": {
13271          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
13272          "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."
13273        },
13274        "serviceName": {
13275          "description": "Specifies the name of the referenced service.",
13276          "type": "string"
13277        },
13278        "servicePort": {
13279          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13280          "description": "Specifies the port of the referenced service."
13281        }
13282      },
13283      "type": "object"
13284    },
13285    "io.k8s.api.networking.v1beta1.IngressClass": {
13286      "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.",
13287      "properties": {
13288        "apiVersion": {
13289          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13290          "type": "string"
13291        },
13292        "kind": {
13293          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13294          "type": "string"
13295        },
13296        "metadata": {
13297          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13298          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13299        },
13300        "spec": {
13301          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassSpec",
13302          "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"
13303        }
13304      },
13305      "type": "object",
13306      "x-kubernetes-group-version-kind": [
13307        {
13308          "group": "networking.k8s.io",
13309          "kind": "IngressClass",
13310          "version": "v1beta1"
13311        }
13312      ]
13313    },
13314    "io.k8s.api.networking.v1beta1.IngressClassList": {
13315      "description": "IngressClassList is a collection of IngressClasses.",
13316      "properties": {
13317        "apiVersion": {
13318          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13319          "type": "string"
13320        },
13321        "items": {
13322          "description": "Items is the list of IngressClasses.",
13323          "items": {
13324            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
13325          },
13326          "type": "array"
13327        },
13328        "kind": {
13329          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13330          "type": "string"
13331        },
13332        "metadata": {
13333          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13334          "description": "Standard list metadata."
13335        }
13336      },
13337      "required": [
13338        "items"
13339      ],
13340      "type": "object",
13341      "x-kubernetes-group-version-kind": [
13342        {
13343          "group": "networking.k8s.io",
13344          "kind": "IngressClassList",
13345          "version": "v1beta1"
13346        }
13347      ]
13348    },
13349    "io.k8s.api.networking.v1beta1.IngressClassSpec": {
13350      "description": "IngressClassSpec provides information about the class of an Ingress.",
13351      "properties": {
13352        "controller": {
13353          "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.",
13354          "type": "string"
13355        },
13356        "parameters": {
13357          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
13358          "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."
13359        }
13360      },
13361      "type": "object"
13362    },
13363    "io.k8s.api.networking.v1beta1.IngressList": {
13364      "description": "IngressList is a collection of Ingress.",
13365      "properties": {
13366        "apiVersion": {
13367          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13368          "type": "string"
13369        },
13370        "items": {
13371          "description": "Items is the list of Ingress.",
13372          "items": {
13373            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
13374          },
13375          "type": "array"
13376        },
13377        "kind": {
13378          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13379          "type": "string"
13380        },
13381        "metadata": {
13382          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13383          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13384        }
13385      },
13386      "required": [
13387        "items"
13388      ],
13389      "type": "object",
13390      "x-kubernetes-group-version-kind": [
13391        {
13392          "group": "networking.k8s.io",
13393          "kind": "IngressList",
13394          "version": "v1beta1"
13395        }
13396      ]
13397    },
13398    "io.k8s.api.networking.v1beta1.IngressRule": {
13399      "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.",
13400      "properties": {
13401        "host": {
13402          "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.",
13403          "type": "string"
13404        },
13405        "http": {
13406          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressRuleValue"
13407        }
13408      },
13409      "type": "object"
13410    },
13411    "io.k8s.api.networking.v1beta1.IngressSpec": {
13412      "description": "IngressSpec describes the Ingress the user wishes to exist.",
13413      "properties": {
13414        "backend": {
13415          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13416          "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."
13417        },
13418        "ingressClassName": {
13419          "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.",
13420          "type": "string"
13421        },
13422        "rules": {
13423          "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.",
13424          "items": {
13425            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressRule"
13426          },
13427          "type": "array"
13428        },
13429        "tls": {
13430          "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.",
13431          "items": {
13432            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressTLS"
13433          },
13434          "type": "array"
13435        }
13436      },
13437      "type": "object"
13438    },
13439    "io.k8s.api.networking.v1beta1.IngressStatus": {
13440      "description": "IngressStatus describe the current state of the Ingress.",
13441      "properties": {
13442        "loadBalancer": {
13443          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
13444          "description": "LoadBalancer contains the current status of the load-balancer."
13445        }
13446      },
13447      "type": "object"
13448    },
13449    "io.k8s.api.networking.v1beta1.IngressTLS": {
13450      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
13451      "properties": {
13452        "hosts": {
13453          "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.",
13454          "items": {
13455            "type": "string"
13456          },
13457          "type": "array"
13458        },
13459        "secretName": {
13460          "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.",
13461          "type": "string"
13462        }
13463      },
13464      "type": "object"
13465    },
13466    "io.k8s.api.node.v1.Overhead": {
13467      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13468      "properties": {
13469        "podFixed": {
13470          "additionalProperties": {
13471            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13472          },
13473          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13474          "type": "object"
13475        }
13476      },
13477      "type": "object"
13478    },
13479    "io.k8s.api.node.v1.RuntimeClass": {
13480      "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/",
13481      "properties": {
13482        "apiVersion": {
13483          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13484          "type": "string"
13485        },
13486        "handler": {
13487          "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.",
13488          "type": "string"
13489        },
13490        "kind": {
13491          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13492          "type": "string"
13493        },
13494        "metadata": {
13495          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13496          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13497        },
13498        "overhead": {
13499          "$ref": "#/definitions/io.k8s.api.node.v1.Overhead",
13500          "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."
13501        },
13502        "scheduling": {
13503          "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling",
13504          "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."
13505        }
13506      },
13507      "required": [
13508        "handler"
13509      ],
13510      "type": "object",
13511      "x-kubernetes-group-version-kind": [
13512        {
13513          "group": "node.k8s.io",
13514          "kind": "RuntimeClass",
13515          "version": "v1"
13516        }
13517      ]
13518    },
13519    "io.k8s.api.node.v1.RuntimeClassList": {
13520      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13521      "properties": {
13522        "apiVersion": {
13523          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13524          "type": "string"
13525        },
13526        "items": {
13527          "description": "Items is a list of schema objects.",
13528          "items": {
13529            "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
13530          },
13531          "type": "array"
13532        },
13533        "kind": {
13534          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13535          "type": "string"
13536        },
13537        "metadata": {
13538          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13539          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13540        }
13541      },
13542      "required": [
13543        "items"
13544      ],
13545      "type": "object",
13546      "x-kubernetes-group-version-kind": [
13547        {
13548          "group": "node.k8s.io",
13549          "kind": "RuntimeClassList",
13550          "version": "v1"
13551        }
13552      ]
13553    },
13554    "io.k8s.api.node.v1.Scheduling": {
13555      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13556      "properties": {
13557        "nodeSelector": {
13558          "additionalProperties": {
13559            "type": "string"
13560          },
13561          "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.",
13562          "type": "object"
13563        },
13564        "tolerations": {
13565          "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.",
13566          "items": {
13567            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13568          },
13569          "type": "array",
13570          "x-kubernetes-list-type": "atomic"
13571        }
13572      },
13573      "type": "object"
13574    },
13575    "io.k8s.api.node.v1alpha1.Overhead": {
13576      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13577      "properties": {
13578        "podFixed": {
13579          "additionalProperties": {
13580            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13581          },
13582          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13583          "type": "object"
13584        }
13585      },
13586      "type": "object"
13587    },
13588    "io.k8s.api.node.v1alpha1.RuntimeClass": {
13589      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class",
13590      "properties": {
13591        "apiVersion": {
13592          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13593          "type": "string"
13594        },
13595        "kind": {
13596          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13597          "type": "string"
13598        },
13599        "metadata": {
13600          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13601          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13602        },
13603        "spec": {
13604          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec",
13605          "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
13606        }
13607      },
13608      "required": [
13609        "spec"
13610      ],
13611      "type": "object",
13612      "x-kubernetes-group-version-kind": [
13613        {
13614          "group": "node.k8s.io",
13615          "kind": "RuntimeClass",
13616          "version": "v1alpha1"
13617        }
13618      ]
13619    },
13620    "io.k8s.api.node.v1alpha1.RuntimeClassList": {
13621      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13622      "properties": {
13623        "apiVersion": {
13624          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13625          "type": "string"
13626        },
13627        "items": {
13628          "description": "Items is a list of schema objects.",
13629          "items": {
13630            "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
13631          },
13632          "type": "array"
13633        },
13634        "kind": {
13635          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13636          "type": "string"
13637        },
13638        "metadata": {
13639          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13640          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13641        }
13642      },
13643      "required": [
13644        "items"
13645      ],
13646      "type": "object",
13647      "x-kubernetes-group-version-kind": [
13648        {
13649          "group": "node.k8s.io",
13650          "kind": "RuntimeClassList",
13651          "version": "v1alpha1"
13652        }
13653      ]
13654    },
13655    "io.k8s.api.node.v1alpha1.RuntimeClassSpec": {
13656      "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.",
13657      "properties": {
13658        "overhead": {
13659          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead",
13660          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature."
13661        },
13662        "runtimeHandler": {
13663          "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.",
13664          "type": "string"
13665        },
13666        "scheduling": {
13667          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Scheduling",
13668          "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."
13669        }
13670      },
13671      "required": [
13672        "runtimeHandler"
13673      ],
13674      "type": "object"
13675    },
13676    "io.k8s.api.node.v1alpha1.Scheduling": {
13677      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13678      "properties": {
13679        "nodeSelector": {
13680          "additionalProperties": {
13681            "type": "string"
13682          },
13683          "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.",
13684          "type": "object"
13685        },
13686        "tolerations": {
13687          "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.",
13688          "items": {
13689            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13690          },
13691          "type": "array",
13692          "x-kubernetes-list-type": "atomic"
13693        }
13694      },
13695      "type": "object"
13696    },
13697    "io.k8s.api.node.v1beta1.Overhead": {
13698      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13699      "properties": {
13700        "podFixed": {
13701          "additionalProperties": {
13702            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
13703          },
13704          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
13705          "type": "object"
13706        }
13707      },
13708      "type": "object"
13709    },
13710    "io.k8s.api.node.v1beta1.RuntimeClass": {
13711      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class",
13712      "properties": {
13713        "apiVersion": {
13714          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13715          "type": "string"
13716        },
13717        "handler": {
13718          "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.",
13719          "type": "string"
13720        },
13721        "kind": {
13722          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13723          "type": "string"
13724        },
13725        "metadata": {
13726          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13727          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13728        },
13729        "overhead": {
13730          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead",
13731          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature."
13732        },
13733        "scheduling": {
13734          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Scheduling",
13735          "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."
13736        }
13737      },
13738      "required": [
13739        "handler"
13740      ],
13741      "type": "object",
13742      "x-kubernetes-group-version-kind": [
13743        {
13744          "group": "node.k8s.io",
13745          "kind": "RuntimeClass",
13746          "version": "v1beta1"
13747        }
13748      ]
13749    },
13750    "io.k8s.api.node.v1beta1.RuntimeClassList": {
13751      "description": "RuntimeClassList is a list of RuntimeClass objects.",
13752      "properties": {
13753        "apiVersion": {
13754          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13755          "type": "string"
13756        },
13757        "items": {
13758          "description": "Items is a list of schema objects.",
13759          "items": {
13760            "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
13761          },
13762          "type": "array"
13763        },
13764        "kind": {
13765          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13766          "type": "string"
13767        },
13768        "metadata": {
13769          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13770          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13771        }
13772      },
13773      "required": [
13774        "items"
13775      ],
13776      "type": "object",
13777      "x-kubernetes-group-version-kind": [
13778        {
13779          "group": "node.k8s.io",
13780          "kind": "RuntimeClassList",
13781          "version": "v1beta1"
13782        }
13783      ]
13784    },
13785    "io.k8s.api.node.v1beta1.Scheduling": {
13786      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
13787      "properties": {
13788        "nodeSelector": {
13789          "additionalProperties": {
13790            "type": "string"
13791          },
13792          "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.",
13793          "type": "object"
13794        },
13795        "tolerations": {
13796          "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.",
13797          "items": {
13798            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
13799          },
13800          "type": "array",
13801          "x-kubernetes-list-type": "atomic"
13802        }
13803      },
13804      "type": "object"
13805    },
13806    "io.k8s.api.policy.v1beta1.AllowedCSIDriver": {
13807      "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
13808      "properties": {
13809        "name": {
13810          "description": "Name is the registered name of the CSI driver",
13811          "type": "string"
13812        }
13813      },
13814      "required": [
13815        "name"
13816      ],
13817      "type": "object"
13818    },
13819    "io.k8s.api.policy.v1beta1.AllowedFlexVolume": {
13820      "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
13821      "properties": {
13822        "driver": {
13823          "description": "driver is the name of the Flexvolume driver.",
13824          "type": "string"
13825        }
13826      },
13827      "required": [
13828        "driver"
13829      ],
13830      "type": "object"
13831    },
13832    "io.k8s.api.policy.v1beta1.AllowedHostPath": {
13833      "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.",
13834      "properties": {
13835        "pathPrefix": {
13836          "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`",
13837          "type": "string"
13838        },
13839        "readOnly": {
13840          "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
13841          "type": "boolean"
13842        }
13843      },
13844      "type": "object"
13845    },
13846    "io.k8s.api.policy.v1beta1.Eviction": {
13847      "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.",
13848      "properties": {
13849        "apiVersion": {
13850          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13851          "type": "string"
13852        },
13853        "deleteOptions": {
13854          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions",
13855          "description": "DeleteOptions may be provided"
13856        },
13857        "kind": {
13858          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13859          "type": "string"
13860        },
13861        "metadata": {
13862          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13863          "description": "ObjectMeta describes the pod that is being evicted."
13864        }
13865      },
13866      "type": "object",
13867      "x-kubernetes-group-version-kind": [
13868        {
13869          "group": "policy",
13870          "kind": "Eviction",
13871          "version": "v1beta1"
13872        }
13873      ]
13874    },
13875    "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": {
13876      "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
13877      "properties": {
13878        "ranges": {
13879          "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.",
13880          "items": {
13881            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
13882          },
13883          "type": "array"
13884        },
13885        "rule": {
13886          "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
13887          "type": "string"
13888        }
13889      },
13890      "type": "object"
13891    },
13892    "io.k8s.api.policy.v1beta1.HostPortRange": {
13893      "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.",
13894      "properties": {
13895        "max": {
13896          "description": "max is the end of the range, inclusive.",
13897          "format": "int32",
13898          "type": "integer"
13899        },
13900        "min": {
13901          "description": "min is the start of the range, inclusive.",
13902          "format": "int32",
13903          "type": "integer"
13904        }
13905      },
13906      "required": [
13907        "min",
13908        "max"
13909      ],
13910      "type": "object"
13911    },
13912    "io.k8s.api.policy.v1beta1.IDRange": {
13913      "description": "IDRange provides a min/max of an allowed range of IDs.",
13914      "properties": {
13915        "max": {
13916          "description": "max is the end of the range, inclusive.",
13917          "format": "int64",
13918          "type": "integer"
13919        },
13920        "min": {
13921          "description": "min is the start of the range, inclusive.",
13922          "format": "int64",
13923          "type": "integer"
13924        }
13925      },
13926      "required": [
13927        "min",
13928        "max"
13929      ],
13930      "type": "object"
13931    },
13932    "io.k8s.api.policy.v1beta1.PodDisruptionBudget": {
13933      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
13934      "properties": {
13935        "apiVersion": {
13936          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13937          "type": "string"
13938        },
13939        "kind": {
13940          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13941          "type": "string"
13942        },
13943        "metadata": {
13944          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
13945        },
13946        "spec": {
13947          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec",
13948          "description": "Specification of the desired behavior of the PodDisruptionBudget."
13949        },
13950        "status": {
13951          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus",
13952          "description": "Most recently observed status of the PodDisruptionBudget."
13953        }
13954      },
13955      "type": "object",
13956      "x-kubernetes-group-version-kind": [
13957        {
13958          "group": "policy",
13959          "kind": "PodDisruptionBudget",
13960          "version": "v1beta1"
13961        }
13962      ]
13963    },
13964    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": {
13965      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
13966      "properties": {
13967        "apiVersion": {
13968          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13969          "type": "string"
13970        },
13971        "items": {
13972          "items": {
13973            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
13974          },
13975          "type": "array"
13976        },
13977        "kind": {
13978          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13979          "type": "string"
13980        },
13981        "metadata": {
13982          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
13983        }
13984      },
13985      "required": [
13986        "items"
13987      ],
13988      "type": "object",
13989      "x-kubernetes-group-version-kind": [
13990        {
13991          "group": "policy",
13992          "kind": "PodDisruptionBudgetList",
13993          "version": "v1beta1"
13994        }
13995      ]
13996    },
13997    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": {
13998      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
13999      "properties": {
14000        "maxUnavailable": {
14001          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
14002          "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\"."
14003        },
14004        "minAvailable": {
14005          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
14006          "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%\"."
14007        },
14008        "selector": {
14009          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
14010          "description": "Label query over pods whose evictions are managed by the disruption budget."
14011        }
14012      },
14013      "type": "object"
14014    },
14015    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": {
14016      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
14017      "properties": {
14018        "currentHealthy": {
14019          "description": "current number of healthy pods",
14020          "format": "int32",
14021          "type": "integer"
14022        },
14023        "desiredHealthy": {
14024          "description": "minimum desired number of healthy pods",
14025          "format": "int32",
14026          "type": "integer"
14027        },
14028        "disruptedPods": {
14029          "additionalProperties": {
14030            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
14031          },
14032          "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.",
14033          "type": "object"
14034        },
14035        "disruptionsAllowed": {
14036          "description": "Number of pod disruptions that are currently allowed.",
14037          "format": "int32",
14038          "type": "integer"
14039        },
14040        "expectedPods": {
14041          "description": "total number of pods counted by this disruption budget",
14042          "format": "int32",
14043          "type": "integer"
14044        },
14045        "observedGeneration": {
14046          "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.",
14047          "format": "int64",
14048          "type": "integer"
14049        }
14050      },
14051      "required": [
14052        "disruptionsAllowed",
14053        "currentHealthy",
14054        "desiredHealthy",
14055        "expectedPods"
14056      ],
14057      "type": "object"
14058    },
14059    "io.k8s.api.policy.v1beta1.PodSecurityPolicy": {
14060      "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.",
14061      "properties": {
14062        "apiVersion": {
14063          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14064          "type": "string"
14065        },
14066        "kind": {
14067          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14068          "type": "string"
14069        },
14070        "metadata": {
14071          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14072          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14073        },
14074        "spec": {
14075          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec",
14076          "description": "spec defines the policy enforced."
14077        }
14078      },
14079      "type": "object",
14080      "x-kubernetes-group-version-kind": [
14081        {
14082          "group": "policy",
14083          "kind": "PodSecurityPolicy",
14084          "version": "v1beta1"
14085        }
14086      ]
14087    },
14088    "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": {
14089      "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.",
14090      "properties": {
14091        "apiVersion": {
14092          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14093          "type": "string"
14094        },
14095        "items": {
14096          "description": "items is a list of schema objects.",
14097          "items": {
14098            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
14099          },
14100          "type": "array"
14101        },
14102        "kind": {
14103          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14104          "type": "string"
14105        },
14106        "metadata": {
14107          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14108          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14109        }
14110      },
14111      "required": [
14112        "items"
14113      ],
14114      "type": "object",
14115      "x-kubernetes-group-version-kind": [
14116        {
14117          "group": "policy",
14118          "kind": "PodSecurityPolicyList",
14119          "version": "v1beta1"
14120        }
14121      ]
14122    },
14123    "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": {
14124      "description": "PodSecurityPolicySpec defines the policy enforced.",
14125      "properties": {
14126        "allowPrivilegeEscalation": {
14127          "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
14128          "type": "boolean"
14129        },
14130        "allowedCSIDrivers": {
14131          "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.",
14132          "items": {
14133            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver"
14134          },
14135          "type": "array"
14136        },
14137        "allowedCapabilities": {
14138          "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.",
14139          "items": {
14140            "type": "string"
14141          },
14142          "type": "array"
14143        },
14144        "allowedFlexVolumes": {
14145          "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.",
14146          "items": {
14147            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume"
14148          },
14149          "type": "array"
14150        },
14151        "allowedHostPaths": {
14152          "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.",
14153          "items": {
14154            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath"
14155          },
14156          "type": "array"
14157        },
14158        "allowedProcMountTypes": {
14159          "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.",
14160          "items": {
14161            "type": "string"
14162          },
14163          "type": "array"
14164        },
14165        "allowedUnsafeSysctls": {
14166          "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.",
14167          "items": {
14168            "type": "string"
14169          },
14170          "type": "array"
14171        },
14172        "defaultAddCapabilities": {
14173          "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.",
14174          "items": {
14175            "type": "string"
14176          },
14177          "type": "array"
14178        },
14179        "defaultAllowPrivilegeEscalation": {
14180          "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
14181          "type": "boolean"
14182        },
14183        "forbiddenSysctls": {
14184          "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.",
14185          "items": {
14186            "type": "string"
14187          },
14188          "type": "array"
14189        },
14190        "fsGroup": {
14191          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions",
14192          "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
14193        },
14194        "hostIPC": {
14195          "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
14196          "type": "boolean"
14197        },
14198        "hostNetwork": {
14199          "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
14200          "type": "boolean"
14201        },
14202        "hostPID": {
14203          "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
14204          "type": "boolean"
14205        },
14206        "hostPorts": {
14207          "description": "hostPorts determines which host port ranges are allowed to be exposed.",
14208          "items": {
14209            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange"
14210          },
14211          "type": "array"
14212        },
14213        "privileged": {
14214          "description": "privileged determines if a pod can request to be run as privileged.",
14215          "type": "boolean"
14216        },
14217        "readOnlyRootFilesystem": {
14218          "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.",
14219          "type": "boolean"
14220        },
14221        "requiredDropCapabilities": {
14222          "description": "requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.",
14223          "items": {
14224            "type": "string"
14225          },
14226          "type": "array"
14227        },
14228        "runAsGroup": {
14229          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions",
14230          "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."
14231        },
14232        "runAsUser": {
14233          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions",
14234          "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
14235        },
14236        "runtimeClass": {
14237          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions",
14238          "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."
14239        },
14240        "seLinux": {
14241          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions",
14242          "description": "seLinux is the strategy that will dictate the allowable labels that may be set."
14243        },
14244        "supplementalGroups": {
14245          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions",
14246          "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
14247        },
14248        "volumes": {
14249          "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
14250          "items": {
14251            "type": "string"
14252          },
14253          "type": "array"
14254        }
14255      },
14256      "required": [
14257        "seLinux",
14258        "runAsUser",
14259        "supplementalGroups",
14260        "fsGroup"
14261      ],
14262      "type": "object"
14263    },
14264    "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": {
14265      "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
14266      "properties": {
14267        "ranges": {
14268          "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.",
14269          "items": {
14270            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14271          },
14272          "type": "array"
14273        },
14274        "rule": {
14275          "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
14276          "type": "string"
14277        }
14278      },
14279      "required": [
14280        "rule"
14281      ],
14282      "type": "object"
14283    },
14284    "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": {
14285      "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
14286      "properties": {
14287        "ranges": {
14288          "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.",
14289          "items": {
14290            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14291          },
14292          "type": "array"
14293        },
14294        "rule": {
14295          "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
14296          "type": "string"
14297        }
14298      },
14299      "required": [
14300        "rule"
14301      ],
14302      "type": "object"
14303    },
14304    "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": {
14305      "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
14306      "properties": {
14307        "allowedRuntimeClassNames": {
14308          "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.",
14309          "items": {
14310            "type": "string"
14311          },
14312          "type": "array"
14313        },
14314        "defaultRuntimeClassName": {
14315          "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.",
14316          "type": "string"
14317        }
14318      },
14319      "required": [
14320        "allowedRuntimeClassNames"
14321      ],
14322      "type": "object"
14323    },
14324    "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": {
14325      "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
14326      "properties": {
14327        "rule": {
14328          "description": "rule is the strategy that will dictate the allowable labels that may be set.",
14329          "type": "string"
14330        },
14331        "seLinuxOptions": {
14332          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
14333          "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
14334        }
14335      },
14336      "required": [
14337        "rule"
14338      ],
14339      "type": "object"
14340    },
14341    "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": {
14342      "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
14343      "properties": {
14344        "ranges": {
14345          "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.",
14346          "items": {
14347            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14348          },
14349          "type": "array"
14350        },
14351        "rule": {
14352          "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
14353          "type": "string"
14354        }
14355      },
14356      "type": "object"
14357    },
14358    "io.k8s.api.rbac.v1.AggregationRule": {
14359      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
14360      "properties": {
14361        "clusterRoleSelectors": {
14362          "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",
14363          "items": {
14364            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
14365          },
14366          "type": "array"
14367        }
14368      },
14369      "type": "object"
14370    },
14371    "io.k8s.api.rbac.v1.ClusterRole": {
14372      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
14373      "properties": {
14374        "aggregationRule": {
14375          "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
14376          "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."
14377        },
14378        "apiVersion": {
14379          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14380          "type": "string"
14381        },
14382        "kind": {
14383          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14384          "type": "string"
14385        },
14386        "metadata": {
14387          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14388          "description": "Standard object's metadata."
14389        },
14390        "rules": {
14391          "description": "Rules holds all the PolicyRules for this ClusterRole",
14392          "items": {
14393            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14394          },
14395          "type": "array"
14396        }
14397      },
14398      "type": "object",
14399      "x-kubernetes-group-version-kind": [
14400        {
14401          "group": "rbac.authorization.k8s.io",
14402          "kind": "ClusterRole",
14403          "version": "v1"
14404        }
14405      ]
14406    },
14407    "io.k8s.api.rbac.v1.ClusterRoleBinding": {
14408      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
14409      "properties": {
14410        "apiVersion": {
14411          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14412          "type": "string"
14413        },
14414        "kind": {
14415          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14416          "type": "string"
14417        },
14418        "metadata": {
14419          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14420          "description": "Standard object's metadata."
14421        },
14422        "roleRef": {
14423          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14424          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
14425        },
14426        "subjects": {
14427          "description": "Subjects holds references to the objects the role applies to.",
14428          "items": {
14429            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14430          },
14431          "type": "array"
14432        }
14433      },
14434      "required": [
14435        "roleRef"
14436      ],
14437      "type": "object",
14438      "x-kubernetes-group-version-kind": [
14439        {
14440          "group": "rbac.authorization.k8s.io",
14441          "kind": "ClusterRoleBinding",
14442          "version": "v1"
14443        }
14444      ]
14445    },
14446    "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
14447      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
14448      "properties": {
14449        "apiVersion": {
14450          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14451          "type": "string"
14452        },
14453        "items": {
14454          "description": "Items is a list of ClusterRoleBindings",
14455          "items": {
14456            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
14457          },
14458          "type": "array"
14459        },
14460        "kind": {
14461          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14462          "type": "string"
14463        },
14464        "metadata": {
14465          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14466          "description": "Standard object's metadata."
14467        }
14468      },
14469      "required": [
14470        "items"
14471      ],
14472      "type": "object",
14473      "x-kubernetes-group-version-kind": [
14474        {
14475          "group": "rbac.authorization.k8s.io",
14476          "kind": "ClusterRoleBindingList",
14477          "version": "v1"
14478        }
14479      ]
14480    },
14481    "io.k8s.api.rbac.v1.ClusterRoleList": {
14482      "description": "ClusterRoleList is a collection of ClusterRoles",
14483      "properties": {
14484        "apiVersion": {
14485          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14486          "type": "string"
14487        },
14488        "items": {
14489          "description": "Items is a list of ClusterRoles",
14490          "items": {
14491            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
14492          },
14493          "type": "array"
14494        },
14495        "kind": {
14496          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14497          "type": "string"
14498        },
14499        "metadata": {
14500          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14501          "description": "Standard object's metadata."
14502        }
14503      },
14504      "required": [
14505        "items"
14506      ],
14507      "type": "object",
14508      "x-kubernetes-group-version-kind": [
14509        {
14510          "group": "rbac.authorization.k8s.io",
14511          "kind": "ClusterRoleList",
14512          "version": "v1"
14513        }
14514      ]
14515    },
14516    "io.k8s.api.rbac.v1.PolicyRule": {
14517      "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.",
14518      "properties": {
14519        "apiGroups": {
14520          "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.",
14521          "items": {
14522            "type": "string"
14523          },
14524          "type": "array"
14525        },
14526        "nonResourceURLs": {
14527          "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.",
14528          "items": {
14529            "type": "string"
14530          },
14531          "type": "array"
14532        },
14533        "resourceNames": {
14534          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
14535          "items": {
14536            "type": "string"
14537          },
14538          "type": "array"
14539        },
14540        "resources": {
14541          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
14542          "items": {
14543            "type": "string"
14544          },
14545          "type": "array"
14546        },
14547        "verbs": {
14548          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
14549          "items": {
14550            "type": "string"
14551          },
14552          "type": "array"
14553        }
14554      },
14555      "required": [
14556        "verbs"
14557      ],
14558      "type": "object"
14559    },
14560    "io.k8s.api.rbac.v1.Role": {
14561      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
14562      "properties": {
14563        "apiVersion": {
14564          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14565          "type": "string"
14566        },
14567        "kind": {
14568          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14569          "type": "string"
14570        },
14571        "metadata": {
14572          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14573          "description": "Standard object's metadata."
14574        },
14575        "rules": {
14576          "description": "Rules holds all the PolicyRules for this Role",
14577          "items": {
14578            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14579          },
14580          "type": "array"
14581        }
14582      },
14583      "type": "object",
14584      "x-kubernetes-group-version-kind": [
14585        {
14586          "group": "rbac.authorization.k8s.io",
14587          "kind": "Role",
14588          "version": "v1"
14589        }
14590      ]
14591    },
14592    "io.k8s.api.rbac.v1.RoleBinding": {
14593      "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.",
14594      "properties": {
14595        "apiVersion": {
14596          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14597          "type": "string"
14598        },
14599        "kind": {
14600          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14601          "type": "string"
14602        },
14603        "metadata": {
14604          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14605          "description": "Standard object's metadata."
14606        },
14607        "roleRef": {
14608          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14609          "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."
14610        },
14611        "subjects": {
14612          "description": "Subjects holds references to the objects the role applies to.",
14613          "items": {
14614            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14615          },
14616          "type": "array"
14617        }
14618      },
14619      "required": [
14620        "roleRef"
14621      ],
14622      "type": "object",
14623      "x-kubernetes-group-version-kind": [
14624        {
14625          "group": "rbac.authorization.k8s.io",
14626          "kind": "RoleBinding",
14627          "version": "v1"
14628        }
14629      ]
14630    },
14631    "io.k8s.api.rbac.v1.RoleBindingList": {
14632      "description": "RoleBindingList is a collection of RoleBindings",
14633      "properties": {
14634        "apiVersion": {
14635          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14636          "type": "string"
14637        },
14638        "items": {
14639          "description": "Items is a list of RoleBindings",
14640          "items": {
14641            "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
14642          },
14643          "type": "array"
14644        },
14645        "kind": {
14646          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14647          "type": "string"
14648        },
14649        "metadata": {
14650          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14651          "description": "Standard object's metadata."
14652        }
14653      },
14654      "required": [
14655        "items"
14656      ],
14657      "type": "object",
14658      "x-kubernetes-group-version-kind": [
14659        {
14660          "group": "rbac.authorization.k8s.io",
14661          "kind": "RoleBindingList",
14662          "version": "v1"
14663        }
14664      ]
14665    },
14666    "io.k8s.api.rbac.v1.RoleList": {
14667      "description": "RoleList is a collection of Roles",
14668      "properties": {
14669        "apiVersion": {
14670          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14671          "type": "string"
14672        },
14673        "items": {
14674          "description": "Items is a list of Roles",
14675          "items": {
14676            "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
14677          },
14678          "type": "array"
14679        },
14680        "kind": {
14681          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14682          "type": "string"
14683        },
14684        "metadata": {
14685          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14686          "description": "Standard object's metadata."
14687        }
14688      },
14689      "required": [
14690        "items"
14691      ],
14692      "type": "object",
14693      "x-kubernetes-group-version-kind": [
14694        {
14695          "group": "rbac.authorization.k8s.io",
14696          "kind": "RoleList",
14697          "version": "v1"
14698        }
14699      ]
14700    },
14701    "io.k8s.api.rbac.v1.RoleRef": {
14702      "description": "RoleRef contains information that points to the role being used",
14703      "properties": {
14704        "apiGroup": {
14705          "description": "APIGroup is the group for the resource being referenced",
14706          "type": "string"
14707        },
14708        "kind": {
14709          "description": "Kind is the type of resource being referenced",
14710          "type": "string"
14711        },
14712        "name": {
14713          "description": "Name is the name of resource being referenced",
14714          "type": "string"
14715        }
14716      },
14717      "required": [
14718        "apiGroup",
14719        "kind",
14720        "name"
14721      ],
14722      "type": "object"
14723    },
14724    "io.k8s.api.rbac.v1.Subject": {
14725      "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.",
14726      "properties": {
14727        "apiGroup": {
14728          "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.",
14729          "type": "string"
14730        },
14731        "kind": {
14732          "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.",
14733          "type": "string"
14734        },
14735        "name": {
14736          "description": "Name of the object being referenced.",
14737          "type": "string"
14738        },
14739        "namespace": {
14740          "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.",
14741          "type": "string"
14742        }
14743      },
14744      "required": [
14745        "kind",
14746        "name"
14747      ],
14748      "type": "object"
14749    },
14750    "io.k8s.api.rbac.v1alpha1.AggregationRule": {
14751      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
14752      "properties": {
14753        "clusterRoleSelectors": {
14754          "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",
14755          "items": {
14756            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
14757          },
14758          "type": "array"
14759        }
14760      },
14761      "type": "object"
14762    },
14763    "io.k8s.api.rbac.v1alpha1.ClusterRole": {
14764      "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.",
14765      "properties": {
14766        "aggregationRule": {
14767          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule",
14768          "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."
14769        },
14770        "apiVersion": {
14771          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14772          "type": "string"
14773        },
14774        "kind": {
14775          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14776          "type": "string"
14777        },
14778        "metadata": {
14779          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14780          "description": "Standard object's metadata."
14781        },
14782        "rules": {
14783          "description": "Rules holds all the PolicyRules for this ClusterRole",
14784          "items": {
14785            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
14786          },
14787          "type": "array"
14788        }
14789      },
14790      "type": "object",
14791      "x-kubernetes-group-version-kind": [
14792        {
14793          "group": "rbac.authorization.k8s.io",
14794          "kind": "ClusterRole",
14795          "version": "v1alpha1"
14796        }
14797      ]
14798    },
14799    "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": {
14800      "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.",
14801      "properties": {
14802        "apiVersion": {
14803          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14804          "type": "string"
14805        },
14806        "kind": {
14807          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14808          "type": "string"
14809        },
14810        "metadata": {
14811          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14812          "description": "Standard object's metadata."
14813        },
14814        "roleRef": {
14815          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
14816          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
14817        },
14818        "subjects": {
14819          "description": "Subjects holds references to the objects the role applies to.",
14820          "items": {
14821            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
14822          },
14823          "type": "array"
14824        }
14825      },
14826      "required": [
14827        "roleRef"
14828      ],
14829      "type": "object",
14830      "x-kubernetes-group-version-kind": [
14831        {
14832          "group": "rbac.authorization.k8s.io",
14833          "kind": "ClusterRoleBinding",
14834          "version": "v1alpha1"
14835        }
14836      ]
14837    },
14838    "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": {
14839      "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.",
14840      "properties": {
14841        "apiVersion": {
14842          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14843          "type": "string"
14844        },
14845        "items": {
14846          "description": "Items is a list of ClusterRoleBindings",
14847          "items": {
14848            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
14849          },
14850          "type": "array"
14851        },
14852        "kind": {
14853          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14854          "type": "string"
14855        },
14856        "metadata": {
14857          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14858          "description": "Standard object's metadata."
14859        }
14860      },
14861      "required": [
14862        "items"
14863      ],
14864      "type": "object",
14865      "x-kubernetes-group-version-kind": [
14866        {
14867          "group": "rbac.authorization.k8s.io",
14868          "kind": "ClusterRoleBindingList",
14869          "version": "v1alpha1"
14870        }
14871      ]
14872    },
14873    "io.k8s.api.rbac.v1alpha1.ClusterRoleList": {
14874      "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.",
14875      "properties": {
14876        "apiVersion": {
14877          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14878          "type": "string"
14879        },
14880        "items": {
14881          "description": "Items is a list of ClusterRoles",
14882          "items": {
14883            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
14884          },
14885          "type": "array"
14886        },
14887        "kind": {
14888          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14889          "type": "string"
14890        },
14891        "metadata": {
14892          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14893          "description": "Standard object's metadata."
14894        }
14895      },
14896      "required": [
14897        "items"
14898      ],
14899      "type": "object",
14900      "x-kubernetes-group-version-kind": [
14901        {
14902          "group": "rbac.authorization.k8s.io",
14903          "kind": "ClusterRoleList",
14904          "version": "v1alpha1"
14905        }
14906      ]
14907    },
14908    "io.k8s.api.rbac.v1alpha1.PolicyRule": {
14909      "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.",
14910      "properties": {
14911        "apiGroups": {
14912          "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.",
14913          "items": {
14914            "type": "string"
14915          },
14916          "type": "array"
14917        },
14918        "nonResourceURLs": {
14919          "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.",
14920          "items": {
14921            "type": "string"
14922          },
14923          "type": "array"
14924        },
14925        "resourceNames": {
14926          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
14927          "items": {
14928            "type": "string"
14929          },
14930          "type": "array"
14931        },
14932        "resources": {
14933          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
14934          "items": {
14935            "type": "string"
14936          },
14937          "type": "array"
14938        },
14939        "verbs": {
14940          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
14941          "items": {
14942            "type": "string"
14943          },
14944          "type": "array"
14945        }
14946      },
14947      "required": [
14948        "verbs"
14949      ],
14950      "type": "object"
14951    },
14952    "io.k8s.api.rbac.v1alpha1.Role": {
14953      "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.",
14954      "properties": {
14955        "apiVersion": {
14956          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14957          "type": "string"
14958        },
14959        "kind": {
14960          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14961          "type": "string"
14962        },
14963        "metadata": {
14964          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14965          "description": "Standard object's metadata."
14966        },
14967        "rules": {
14968          "description": "Rules holds all the PolicyRules for this Role",
14969          "items": {
14970            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
14971          },
14972          "type": "array"
14973        }
14974      },
14975      "type": "object",
14976      "x-kubernetes-group-version-kind": [
14977        {
14978          "group": "rbac.authorization.k8s.io",
14979          "kind": "Role",
14980          "version": "v1alpha1"
14981        }
14982      ]
14983    },
14984    "io.k8s.api.rbac.v1alpha1.RoleBinding": {
14985      "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.",
14986      "properties": {
14987        "apiVersion": {
14988          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14989          "type": "string"
14990        },
14991        "kind": {
14992          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14993          "type": "string"
14994        },
14995        "metadata": {
14996          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14997          "description": "Standard object's metadata."
14998        },
14999        "roleRef": {
15000          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
15001          "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."
15002        },
15003        "subjects": {
15004          "description": "Subjects holds references to the objects the role applies to.",
15005          "items": {
15006            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
15007          },
15008          "type": "array"
15009        }
15010      },
15011      "required": [
15012        "roleRef"
15013      ],
15014      "type": "object",
15015      "x-kubernetes-group-version-kind": [
15016        {
15017          "group": "rbac.authorization.k8s.io",
15018          "kind": "RoleBinding",
15019          "version": "v1alpha1"
15020        }
15021      ]
15022    },
15023    "io.k8s.api.rbac.v1alpha1.RoleBindingList": {
15024      "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.",
15025      "properties": {
15026        "apiVersion": {
15027          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15028          "type": "string"
15029        },
15030        "items": {
15031          "description": "Items is a list of RoleBindings",
15032          "items": {
15033            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
15034          },
15035          "type": "array"
15036        },
15037        "kind": {
15038          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15039          "type": "string"
15040        },
15041        "metadata": {
15042          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15043          "description": "Standard object's metadata."
15044        }
15045      },
15046      "required": [
15047        "items"
15048      ],
15049      "type": "object",
15050      "x-kubernetes-group-version-kind": [
15051        {
15052          "group": "rbac.authorization.k8s.io",
15053          "kind": "RoleBindingList",
15054          "version": "v1alpha1"
15055        }
15056      ]
15057    },
15058    "io.k8s.api.rbac.v1alpha1.RoleList": {
15059      "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.",
15060      "properties": {
15061        "apiVersion": {
15062          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15063          "type": "string"
15064        },
15065        "items": {
15066          "description": "Items is a list of Roles",
15067          "items": {
15068            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
15069          },
15070          "type": "array"
15071        },
15072        "kind": {
15073          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15074          "type": "string"
15075        },
15076        "metadata": {
15077          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15078          "description": "Standard object's metadata."
15079        }
15080      },
15081      "required": [
15082        "items"
15083      ],
15084      "type": "object",
15085      "x-kubernetes-group-version-kind": [
15086        {
15087          "group": "rbac.authorization.k8s.io",
15088          "kind": "RoleList",
15089          "version": "v1alpha1"
15090        }
15091      ]
15092    },
15093    "io.k8s.api.rbac.v1alpha1.RoleRef": {
15094      "description": "RoleRef contains information that points to the role being used",
15095      "properties": {
15096        "apiGroup": {
15097          "description": "APIGroup is the group for the resource being referenced",
15098          "type": "string"
15099        },
15100        "kind": {
15101          "description": "Kind is the type of resource being referenced",
15102          "type": "string"
15103        },
15104        "name": {
15105          "description": "Name is the name of resource being referenced",
15106          "type": "string"
15107        }
15108      },
15109      "required": [
15110        "apiGroup",
15111        "kind",
15112        "name"
15113      ],
15114      "type": "object"
15115    },
15116    "io.k8s.api.rbac.v1alpha1.Subject": {
15117      "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.",
15118      "properties": {
15119        "apiVersion": {
15120          "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.",
15121          "type": "string"
15122        },
15123        "kind": {
15124          "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.",
15125          "type": "string"
15126        },
15127        "name": {
15128          "description": "Name of the object being referenced.",
15129          "type": "string"
15130        },
15131        "namespace": {
15132          "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.",
15133          "type": "string"
15134        }
15135      },
15136      "required": [
15137        "kind",
15138        "name"
15139      ],
15140      "type": "object"
15141    },
15142    "io.k8s.api.rbac.v1beta1.AggregationRule": {
15143      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
15144      "properties": {
15145        "clusterRoleSelectors": {
15146          "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",
15147          "items": {
15148            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
15149          },
15150          "type": "array"
15151        }
15152      },
15153      "type": "object"
15154    },
15155    "io.k8s.api.rbac.v1beta1.ClusterRole": {
15156      "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.",
15157      "properties": {
15158        "aggregationRule": {
15159          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule",
15160          "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."
15161        },
15162        "apiVersion": {
15163          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15164          "type": "string"
15165        },
15166        "kind": {
15167          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15168          "type": "string"
15169        },
15170        "metadata": {
15171          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15172          "description": "Standard object's metadata."
15173        },
15174        "rules": {
15175          "description": "Rules holds all the PolicyRules for this ClusterRole",
15176          "items": {
15177            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15178          },
15179          "type": "array"
15180        }
15181      },
15182      "type": "object",
15183      "x-kubernetes-group-version-kind": [
15184        {
15185          "group": "rbac.authorization.k8s.io",
15186          "kind": "ClusterRole",
15187          "version": "v1beta1"
15188        }
15189      ]
15190    },
15191    "io.k8s.api.rbac.v1beta1.ClusterRoleBinding": {
15192      "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.",
15193      "properties": {
15194        "apiVersion": {
15195          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15196          "type": "string"
15197        },
15198        "kind": {
15199          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15200          "type": "string"
15201        },
15202        "metadata": {
15203          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15204          "description": "Standard object's metadata."
15205        },
15206        "roleRef": {
15207          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15208          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
15209        },
15210        "subjects": {
15211          "description": "Subjects holds references to the objects the role applies to.",
15212          "items": {
15213            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15214          },
15215          "type": "array"
15216        }
15217      },
15218      "required": [
15219        "roleRef"
15220      ],
15221      "type": "object",
15222      "x-kubernetes-group-version-kind": [
15223        {
15224          "group": "rbac.authorization.k8s.io",
15225          "kind": "ClusterRoleBinding",
15226          "version": "v1beta1"
15227        }
15228      ]
15229    },
15230    "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList": {
15231      "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.",
15232      "properties": {
15233        "apiVersion": {
15234          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15235          "type": "string"
15236        },
15237        "items": {
15238          "description": "Items is a list of ClusterRoleBindings",
15239          "items": {
15240            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
15241          },
15242          "type": "array"
15243        },
15244        "kind": {
15245          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15246          "type": "string"
15247        },
15248        "metadata": {
15249          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15250          "description": "Standard object's metadata."
15251        }
15252      },
15253      "required": [
15254        "items"
15255      ],
15256      "type": "object",
15257      "x-kubernetes-group-version-kind": [
15258        {
15259          "group": "rbac.authorization.k8s.io",
15260          "kind": "ClusterRoleBindingList",
15261          "version": "v1beta1"
15262        }
15263      ]
15264    },
15265    "io.k8s.api.rbac.v1beta1.ClusterRoleList": {
15266      "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.",
15267      "properties": {
15268        "apiVersion": {
15269          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15270          "type": "string"
15271        },
15272        "items": {
15273          "description": "Items is a list of ClusterRoles",
15274          "items": {
15275            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
15276          },
15277          "type": "array"
15278        },
15279        "kind": {
15280          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15281          "type": "string"
15282        },
15283        "metadata": {
15284          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15285          "description": "Standard object's metadata."
15286        }
15287      },
15288      "required": [
15289        "items"
15290      ],
15291      "type": "object",
15292      "x-kubernetes-group-version-kind": [
15293        {
15294          "group": "rbac.authorization.k8s.io",
15295          "kind": "ClusterRoleList",
15296          "version": "v1beta1"
15297        }
15298      ]
15299    },
15300    "io.k8s.api.rbac.v1beta1.PolicyRule": {
15301      "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.",
15302      "properties": {
15303        "apiGroups": {
15304          "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.",
15305          "items": {
15306            "type": "string"
15307          },
15308          "type": "array"
15309        },
15310        "nonResourceURLs": {
15311          "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.",
15312          "items": {
15313            "type": "string"
15314          },
15315          "type": "array"
15316        },
15317        "resourceNames": {
15318          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
15319          "items": {
15320            "type": "string"
15321          },
15322          "type": "array"
15323        },
15324        "resources": {
15325          "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.",
15326          "items": {
15327            "type": "string"
15328          },
15329          "type": "array"
15330        },
15331        "verbs": {
15332          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
15333          "items": {
15334            "type": "string"
15335          },
15336          "type": "array"
15337        }
15338      },
15339      "required": [
15340        "verbs"
15341      ],
15342      "type": "object"
15343    },
15344    "io.k8s.api.rbac.v1beta1.Role": {
15345      "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.",
15346      "properties": {
15347        "apiVersion": {
15348          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15349          "type": "string"
15350        },
15351        "kind": {
15352          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15353          "type": "string"
15354        },
15355        "metadata": {
15356          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15357          "description": "Standard object's metadata."
15358        },
15359        "rules": {
15360          "description": "Rules holds all the PolicyRules for this Role",
15361          "items": {
15362            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15363          },
15364          "type": "array"
15365        }
15366      },
15367      "type": "object",
15368      "x-kubernetes-group-version-kind": [
15369        {
15370          "group": "rbac.authorization.k8s.io",
15371          "kind": "Role",
15372          "version": "v1beta1"
15373        }
15374      ]
15375    },
15376    "io.k8s.api.rbac.v1beta1.RoleBinding": {
15377      "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.",
15378      "properties": {
15379        "apiVersion": {
15380          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15381          "type": "string"
15382        },
15383        "kind": {
15384          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15385          "type": "string"
15386        },
15387        "metadata": {
15388          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15389          "description": "Standard object's metadata."
15390        },
15391        "roleRef": {
15392          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15393          "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."
15394        },
15395        "subjects": {
15396          "description": "Subjects holds references to the objects the role applies to.",
15397          "items": {
15398            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15399          },
15400          "type": "array"
15401        }
15402      },
15403      "required": [
15404        "roleRef"
15405      ],
15406      "type": "object",
15407      "x-kubernetes-group-version-kind": [
15408        {
15409          "group": "rbac.authorization.k8s.io",
15410          "kind": "RoleBinding",
15411          "version": "v1beta1"
15412        }
15413      ]
15414    },
15415    "io.k8s.api.rbac.v1beta1.RoleBindingList": {
15416      "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.",
15417      "properties": {
15418        "apiVersion": {
15419          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15420          "type": "string"
15421        },
15422        "items": {
15423          "description": "Items is a list of RoleBindings",
15424          "items": {
15425            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
15426          },
15427          "type": "array"
15428        },
15429        "kind": {
15430          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15431          "type": "string"
15432        },
15433        "metadata": {
15434          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15435          "description": "Standard object's metadata."
15436        }
15437      },
15438      "required": [
15439        "items"
15440      ],
15441      "type": "object",
15442      "x-kubernetes-group-version-kind": [
15443        {
15444          "group": "rbac.authorization.k8s.io",
15445          "kind": "RoleBindingList",
15446          "version": "v1beta1"
15447        }
15448      ]
15449    },
15450    "io.k8s.api.rbac.v1beta1.RoleList": {
15451      "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.",
15452      "properties": {
15453        "apiVersion": {
15454          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15455          "type": "string"
15456        },
15457        "items": {
15458          "description": "Items is a list of Roles",
15459          "items": {
15460            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
15461          },
15462          "type": "array"
15463        },
15464        "kind": {
15465          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15466          "type": "string"
15467        },
15468        "metadata": {
15469          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15470          "description": "Standard object's metadata."
15471        }
15472      },
15473      "required": [
15474        "items"
15475      ],
15476      "type": "object",
15477      "x-kubernetes-group-version-kind": [
15478        {
15479          "group": "rbac.authorization.k8s.io",
15480          "kind": "RoleList",
15481          "version": "v1beta1"
15482        }
15483      ]
15484    },
15485    "io.k8s.api.rbac.v1beta1.RoleRef": {
15486      "description": "RoleRef contains information that points to the role being used",
15487      "properties": {
15488        "apiGroup": {
15489          "description": "APIGroup is the group for the resource being referenced",
15490          "type": "string"
15491        },
15492        "kind": {
15493          "description": "Kind is the type of resource being referenced",
15494          "type": "string"
15495        },
15496        "name": {
15497          "description": "Name is the name of resource being referenced",
15498          "type": "string"
15499        }
15500      },
15501      "required": [
15502        "apiGroup",
15503        "kind",
15504        "name"
15505      ],
15506      "type": "object"
15507    },
15508    "io.k8s.api.rbac.v1beta1.Subject": {
15509      "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.",
15510      "properties": {
15511        "apiGroup": {
15512          "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.",
15513          "type": "string"
15514        },
15515        "kind": {
15516          "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.",
15517          "type": "string"
15518        },
15519        "name": {
15520          "description": "Name of the object being referenced.",
15521          "type": "string"
15522        },
15523        "namespace": {
15524          "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.",
15525          "type": "string"
15526        }
15527      },
15528      "required": [
15529        "kind",
15530        "name"
15531      ],
15532      "type": "object"
15533    },
15534    "io.k8s.api.scheduling.v1.PriorityClass": {
15535      "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
15536      "properties": {
15537        "apiVersion": {
15538          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15539          "type": "string"
15540        },
15541        "description": {
15542          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15543          "type": "string"
15544        },
15545        "globalDefault": {
15546          "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.",
15547          "type": "boolean"
15548        },
15549        "kind": {
15550          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15551          "type": "string"
15552        },
15553        "metadata": {
15554          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15555          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15556        },
15557        "preemptionPolicy": {
15558          "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.",
15559          "type": "string"
15560        },
15561        "value": {
15562          "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.",
15563          "format": "int32",
15564          "type": "integer"
15565        }
15566      },
15567      "required": [
15568        "value"
15569      ],
15570      "type": "object",
15571      "x-kubernetes-group-version-kind": [
15572        {
15573          "group": "scheduling.k8s.io",
15574          "kind": "PriorityClass",
15575          "version": "v1"
15576        }
15577      ]
15578    },
15579    "io.k8s.api.scheduling.v1.PriorityClassList": {
15580      "description": "PriorityClassList is a collection of priority classes.",
15581      "properties": {
15582        "apiVersion": {
15583          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15584          "type": "string"
15585        },
15586        "items": {
15587          "description": "items is the list of PriorityClasses",
15588          "items": {
15589            "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
15590          },
15591          "type": "array"
15592        },
15593        "kind": {
15594          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15595          "type": "string"
15596        },
15597        "metadata": {
15598          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15599          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15600        }
15601      },
15602      "required": [
15603        "items"
15604      ],
15605      "type": "object",
15606      "x-kubernetes-group-version-kind": [
15607        {
15608          "group": "scheduling.k8s.io",
15609          "kind": "PriorityClassList",
15610          "version": "v1"
15611        }
15612      ]
15613    },
15614    "io.k8s.api.scheduling.v1alpha1.PriorityClass": {
15615      "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.",
15616      "properties": {
15617        "apiVersion": {
15618          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15619          "type": "string"
15620        },
15621        "description": {
15622          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15623          "type": "string"
15624        },
15625        "globalDefault": {
15626          "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.",
15627          "type": "boolean"
15628        },
15629        "kind": {
15630          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15631          "type": "string"
15632        },
15633        "metadata": {
15634          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15635          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15636        },
15637        "preemptionPolicy": {
15638          "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.",
15639          "type": "string"
15640        },
15641        "value": {
15642          "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.",
15643          "format": "int32",
15644          "type": "integer"
15645        }
15646      },
15647      "required": [
15648        "value"
15649      ],
15650      "type": "object",
15651      "x-kubernetes-group-version-kind": [
15652        {
15653          "group": "scheduling.k8s.io",
15654          "kind": "PriorityClass",
15655          "version": "v1alpha1"
15656        }
15657      ]
15658    },
15659    "io.k8s.api.scheduling.v1alpha1.PriorityClassList": {
15660      "description": "PriorityClassList is a collection of priority classes.",
15661      "properties": {
15662        "apiVersion": {
15663          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15664          "type": "string"
15665        },
15666        "items": {
15667          "description": "items is the list of PriorityClasses",
15668          "items": {
15669            "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
15670          },
15671          "type": "array"
15672        },
15673        "kind": {
15674          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15675          "type": "string"
15676        },
15677        "metadata": {
15678          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15679          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15680        }
15681      },
15682      "required": [
15683        "items"
15684      ],
15685      "type": "object",
15686      "x-kubernetes-group-version-kind": [
15687        {
15688          "group": "scheduling.k8s.io",
15689          "kind": "PriorityClassList",
15690          "version": "v1alpha1"
15691        }
15692      ]
15693    },
15694    "io.k8s.api.scheduling.v1beta1.PriorityClass": {
15695      "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.",
15696      "properties": {
15697        "apiVersion": {
15698          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15699          "type": "string"
15700        },
15701        "description": {
15702          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15703          "type": "string"
15704        },
15705        "globalDefault": {
15706          "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.",
15707          "type": "boolean"
15708        },
15709        "kind": {
15710          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15711          "type": "string"
15712        },
15713        "metadata": {
15714          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15715          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15716        },
15717        "preemptionPolicy": {
15718          "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.",
15719          "type": "string"
15720        },
15721        "value": {
15722          "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.",
15723          "format": "int32",
15724          "type": "integer"
15725        }
15726      },
15727      "required": [
15728        "value"
15729      ],
15730      "type": "object",
15731      "x-kubernetes-group-version-kind": [
15732        {
15733          "group": "scheduling.k8s.io",
15734          "kind": "PriorityClass",
15735          "version": "v1beta1"
15736        }
15737      ]
15738    },
15739    "io.k8s.api.scheduling.v1beta1.PriorityClassList": {
15740      "description": "PriorityClassList is a collection of priority classes.",
15741      "properties": {
15742        "apiVersion": {
15743          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15744          "type": "string"
15745        },
15746        "items": {
15747          "description": "items is the list of PriorityClasses",
15748          "items": {
15749            "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
15750          },
15751          "type": "array"
15752        },
15753        "kind": {
15754          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15755          "type": "string"
15756        },
15757        "metadata": {
15758          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15759          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15760        }
15761      },
15762      "required": [
15763        "items"
15764      ],
15765      "type": "object",
15766      "x-kubernetes-group-version-kind": [
15767        {
15768          "group": "scheduling.k8s.io",
15769          "kind": "PriorityClassList",
15770          "version": "v1beta1"
15771        }
15772      ]
15773    },
15774    "io.k8s.api.storage.v1.CSIDriver": {
15775      "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.",
15776      "properties": {
15777        "apiVersion": {
15778          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15779          "type": "string"
15780        },
15781        "kind": {
15782          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15783          "type": "string"
15784        },
15785        "metadata": {
15786          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15787          "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"
15788        },
15789        "spec": {
15790          "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec",
15791          "description": "Specification of the CSI Driver."
15792        }
15793      },
15794      "required": [
15795        "spec"
15796      ],
15797      "type": "object",
15798      "x-kubernetes-group-version-kind": [
15799        {
15800          "group": "storage.k8s.io",
15801          "kind": "CSIDriver",
15802          "version": "v1"
15803        }
15804      ]
15805    },
15806    "io.k8s.api.storage.v1.CSIDriverList": {
15807      "description": "CSIDriverList is a collection of CSIDriver objects.",
15808      "properties": {
15809        "apiVersion": {
15810          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15811          "type": "string"
15812        },
15813        "items": {
15814          "description": "items is the list of CSIDriver",
15815          "items": {
15816            "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
15817          },
15818          "type": "array"
15819        },
15820        "kind": {
15821          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15822          "type": "string"
15823        },
15824        "metadata": {
15825          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15826          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15827        }
15828      },
15829      "required": [
15830        "items"
15831      ],
15832      "type": "object",
15833      "x-kubernetes-group-version-kind": [
15834        {
15835          "group": "storage.k8s.io",
15836          "kind": "CSIDriverList",
15837          "version": "v1"
15838        }
15839      ]
15840    },
15841    "io.k8s.api.storage.v1.CSIDriverSpec": {
15842      "description": "CSIDriverSpec is the specification of a CSIDriver.",
15843      "properties": {
15844        "attachRequired": {
15845          "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.",
15846          "type": "boolean"
15847        },
15848        "fsGroupPolicy": {
15849          "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.",
15850          "type": "string"
15851        },
15852        "podInfoOnMount": {
15853          "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.",
15854          "type": "boolean"
15855        },
15856        "requiresRepublish": {
15857          "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.",
15858          "type": "boolean"
15859        },
15860        "storageCapacity": {
15861          "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.",
15862          "type": "boolean"
15863        },
15864        "tokenRequests": {
15865          "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.",
15866          "items": {
15867            "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest"
15868          },
15869          "type": "array",
15870          "x-kubernetes-list-type": "atomic"
15871        },
15872        "volumeLifecycleModes": {
15873          "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.",
15874          "items": {
15875            "type": "string"
15876          },
15877          "type": "array",
15878          "x-kubernetes-list-type": "set"
15879        }
15880      },
15881      "type": "object"
15882    },
15883    "io.k8s.api.storage.v1.CSINode": {
15884      "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.",
15885      "properties": {
15886        "apiVersion": {
15887          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15888          "type": "string"
15889        },
15890        "kind": {
15891          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15892          "type": "string"
15893        },
15894        "metadata": {
15895          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15896          "description": "metadata.name must be the Kubernetes node name."
15897        },
15898        "spec": {
15899          "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec",
15900          "description": "spec is the specification of CSINode"
15901        }
15902      },
15903      "required": [
15904        "spec"
15905      ],
15906      "type": "object",
15907      "x-kubernetes-group-version-kind": [
15908        {
15909          "group": "storage.k8s.io",
15910          "kind": "CSINode",
15911          "version": "v1"
15912        }
15913      ]
15914    },
15915    "io.k8s.api.storage.v1.CSINodeDriver": {
15916      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
15917      "properties": {
15918        "allocatable": {
15919          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources",
15920          "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta."
15921        },
15922        "name": {
15923          "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.",
15924          "type": "string"
15925        },
15926        "nodeID": {
15927          "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.",
15928          "type": "string"
15929        },
15930        "topologyKeys": {
15931          "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.",
15932          "items": {
15933            "type": "string"
15934          },
15935          "type": "array"
15936        }
15937      },
15938      "required": [
15939        "name",
15940        "nodeID"
15941      ],
15942      "type": "object"
15943    },
15944    "io.k8s.api.storage.v1.CSINodeList": {
15945      "description": "CSINodeList is a collection of CSINode objects.",
15946      "properties": {
15947        "apiVersion": {
15948          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15949          "type": "string"
15950        },
15951        "items": {
15952          "description": "items is the list of CSINode",
15953          "items": {
15954            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
15955          },
15956          "type": "array"
15957        },
15958        "kind": {
15959          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15960          "type": "string"
15961        },
15962        "metadata": {
15963          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15964          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15965        }
15966      },
15967      "required": [
15968        "items"
15969      ],
15970      "type": "object",
15971      "x-kubernetes-group-version-kind": [
15972        {
15973          "group": "storage.k8s.io",
15974          "kind": "CSINodeList",
15975          "version": "v1"
15976        }
15977      ]
15978    },
15979    "io.k8s.api.storage.v1.CSINodeSpec": {
15980      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
15981      "properties": {
15982        "drivers": {
15983          "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.",
15984          "items": {
15985            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver"
15986          },
15987          "type": "array",
15988          "x-kubernetes-patch-merge-key": "name",
15989          "x-kubernetes-patch-strategy": "merge"
15990        }
15991      },
15992      "required": [
15993        "drivers"
15994      ],
15995      "type": "object"
15996    },
15997    "io.k8s.api.storage.v1.StorageClass": {
15998      "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.",
15999      "properties": {
16000        "allowVolumeExpansion": {
16001          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
16002          "type": "boolean"
16003        },
16004        "allowedTopologies": {
16005          "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.",
16006          "items": {
16007            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
16008          },
16009          "type": "array"
16010        },
16011        "apiVersion": {
16012          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16013          "type": "string"
16014        },
16015        "kind": {
16016          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16017          "type": "string"
16018        },
16019        "metadata": {
16020          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16021          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16022        },
16023        "mountOptions": {
16024          "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.",
16025          "items": {
16026            "type": "string"
16027          },
16028          "type": "array"
16029        },
16030        "parameters": {
16031          "additionalProperties": {
16032            "type": "string"
16033          },
16034          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16035          "type": "object"
16036        },
16037        "provisioner": {
16038          "description": "Provisioner indicates the type of the provisioner.",
16039          "type": "string"
16040        },
16041        "reclaimPolicy": {
16042          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16043          "type": "string"
16044        },
16045        "volumeBindingMode": {
16046          "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.",
16047          "type": "string"
16048        }
16049      },
16050      "required": [
16051        "provisioner"
16052      ],
16053      "type": "object",
16054      "x-kubernetes-group-version-kind": [
16055        {
16056          "group": "storage.k8s.io",
16057          "kind": "StorageClass",
16058          "version": "v1"
16059        }
16060      ]
16061    },
16062    "io.k8s.api.storage.v1.StorageClassList": {
16063      "description": "StorageClassList is a collection of storage classes.",
16064      "properties": {
16065        "apiVersion": {
16066          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16067          "type": "string"
16068        },
16069        "items": {
16070          "description": "Items is the list of StorageClasses",
16071          "items": {
16072            "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
16073          },
16074          "type": "array"
16075        },
16076        "kind": {
16077          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16078          "type": "string"
16079        },
16080        "metadata": {
16081          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16082          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16083        }
16084      },
16085      "required": [
16086        "items"
16087      ],
16088      "type": "object",
16089      "x-kubernetes-group-version-kind": [
16090        {
16091          "group": "storage.k8s.io",
16092          "kind": "StorageClassList",
16093          "version": "v1"
16094        }
16095      ]
16096    },
16097    "io.k8s.api.storage.v1.TokenRequest": {
16098      "description": "TokenRequest contains parameters of a service account token.",
16099      "properties": {
16100        "audience": {
16101          "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
16102          "type": "string"
16103        },
16104        "expirationSeconds": {
16105          "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".",
16106          "format": "int64",
16107          "type": "integer"
16108        }
16109      },
16110      "required": [
16111        "audience"
16112      ],
16113      "type": "object"
16114    },
16115    "io.k8s.api.storage.v1.VolumeAttachment": {
16116      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16117      "properties": {
16118        "apiVersion": {
16119          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16120          "type": "string"
16121        },
16122        "kind": {
16123          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16124          "type": "string"
16125        },
16126        "metadata": {
16127          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16128          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16129        },
16130        "spec": {
16131          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec",
16132          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16133        },
16134        "status": {
16135          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus",
16136          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16137        }
16138      },
16139      "required": [
16140        "spec"
16141      ],
16142      "type": "object",
16143      "x-kubernetes-group-version-kind": [
16144        {
16145          "group": "storage.k8s.io",
16146          "kind": "VolumeAttachment",
16147          "version": "v1"
16148        }
16149      ]
16150    },
16151    "io.k8s.api.storage.v1.VolumeAttachmentList": {
16152      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16153      "properties": {
16154        "apiVersion": {
16155          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16156          "type": "string"
16157        },
16158        "items": {
16159          "description": "Items is the list of VolumeAttachments",
16160          "items": {
16161            "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
16162          },
16163          "type": "array"
16164        },
16165        "kind": {
16166          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16167          "type": "string"
16168        },
16169        "metadata": {
16170          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16171          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16172        }
16173      },
16174      "required": [
16175        "items"
16176      ],
16177      "type": "object",
16178      "x-kubernetes-group-version-kind": [
16179        {
16180          "group": "storage.k8s.io",
16181          "kind": "VolumeAttachmentList",
16182          "version": "v1"
16183        }
16184      ]
16185    },
16186    "io.k8s.api.storage.v1.VolumeAttachmentSource": {
16187      "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.",
16188      "properties": {
16189        "inlineVolumeSpec": {
16190          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16191          "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."
16192        },
16193        "persistentVolumeName": {
16194          "description": "Name of the persistent volume to attach.",
16195          "type": "string"
16196        }
16197      },
16198      "type": "object"
16199    },
16200    "io.k8s.api.storage.v1.VolumeAttachmentSpec": {
16201      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16202      "properties": {
16203        "attacher": {
16204          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16205          "type": "string"
16206        },
16207        "nodeName": {
16208          "description": "The node that the volume should be attached to.",
16209          "type": "string"
16210        },
16211        "source": {
16212          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource",
16213          "description": "Source represents the volume that should be attached."
16214        }
16215      },
16216      "required": [
16217        "attacher",
16218        "source",
16219        "nodeName"
16220      ],
16221      "type": "object"
16222    },
16223    "io.k8s.api.storage.v1.VolumeAttachmentStatus": {
16224      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16225      "properties": {
16226        "attachError": {
16227          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16228          "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."
16229        },
16230        "attached": {
16231          "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.",
16232          "type": "boolean"
16233        },
16234        "attachmentMetadata": {
16235          "additionalProperties": {
16236            "type": "string"
16237          },
16238          "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.",
16239          "type": "object"
16240        },
16241        "detachError": {
16242          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16243          "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."
16244        }
16245      },
16246      "required": [
16247        "attached"
16248      ],
16249      "type": "object"
16250    },
16251    "io.k8s.api.storage.v1.VolumeError": {
16252      "description": "VolumeError captures an error encountered during a volume operation.",
16253      "properties": {
16254        "message": {
16255          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
16256          "type": "string"
16257        },
16258        "time": {
16259          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16260          "description": "Time the error was encountered."
16261        }
16262      },
16263      "type": "object"
16264    },
16265    "io.k8s.api.storage.v1.VolumeNodeResources": {
16266      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
16267      "properties": {
16268        "count": {
16269          "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.",
16270          "format": "int32",
16271          "type": "integer"
16272        }
16273      },
16274      "type": "object"
16275    },
16276    "io.k8s.api.storage.v1alpha1.CSIStorageCapacity": {
16277      "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.",
16278      "properties": {
16279        "apiVersion": {
16280          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16281          "type": "string"
16282        },
16283        "capacity": {
16284          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
16285          "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."
16286        },
16287        "kind": {
16288          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16289          "type": "string"
16290        },
16291        "metadata": {
16292          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16293          "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"
16294        },
16295        "nodeTopology": {
16296          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
16297          "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."
16298        },
16299        "storageClassName": {
16300          "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.",
16301          "type": "string"
16302        }
16303      },
16304      "required": [
16305        "storageClassName"
16306      ],
16307      "type": "object",
16308      "x-kubernetes-group-version-kind": [
16309        {
16310          "group": "storage.k8s.io",
16311          "kind": "CSIStorageCapacity",
16312          "version": "v1alpha1"
16313        }
16314      ]
16315    },
16316    "io.k8s.api.storage.v1alpha1.CSIStorageCapacityList": {
16317      "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
16318      "properties": {
16319        "apiVersion": {
16320          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16321          "type": "string"
16322        },
16323        "items": {
16324          "description": "Items is the list of CSIStorageCapacity objects.",
16325          "items": {
16326            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
16327          },
16328          "type": "array",
16329          "x-kubernetes-list-map-keys": [
16330            "name"
16331          ],
16332          "x-kubernetes-list-type": "map"
16333        },
16334        "kind": {
16335          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16336          "type": "string"
16337        },
16338        "metadata": {
16339          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16340          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16341        }
16342      },
16343      "required": [
16344        "items"
16345      ],
16346      "type": "object",
16347      "x-kubernetes-group-version-kind": [
16348        {
16349          "group": "storage.k8s.io",
16350          "kind": "CSIStorageCapacityList",
16351          "version": "v1alpha1"
16352        }
16353      ]
16354    },
16355    "io.k8s.api.storage.v1alpha1.VolumeAttachment": {
16356      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16357      "properties": {
16358        "apiVersion": {
16359          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16360          "type": "string"
16361        },
16362        "kind": {
16363          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16364          "type": "string"
16365        },
16366        "metadata": {
16367          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16368          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16369        },
16370        "spec": {
16371          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec",
16372          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16373        },
16374        "status": {
16375          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus",
16376          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16377        }
16378      },
16379      "required": [
16380        "spec"
16381      ],
16382      "type": "object",
16383      "x-kubernetes-group-version-kind": [
16384        {
16385          "group": "storage.k8s.io",
16386          "kind": "VolumeAttachment",
16387          "version": "v1alpha1"
16388        }
16389      ]
16390    },
16391    "io.k8s.api.storage.v1alpha1.VolumeAttachmentList": {
16392      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16393      "properties": {
16394        "apiVersion": {
16395          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16396          "type": "string"
16397        },
16398        "items": {
16399          "description": "Items is the list of VolumeAttachments",
16400          "items": {
16401            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
16402          },
16403          "type": "array"
16404        },
16405        "kind": {
16406          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16407          "type": "string"
16408        },
16409        "metadata": {
16410          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16411          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16412        }
16413      },
16414      "required": [
16415        "items"
16416      ],
16417      "type": "object",
16418      "x-kubernetes-group-version-kind": [
16419        {
16420          "group": "storage.k8s.io",
16421          "kind": "VolumeAttachmentList",
16422          "version": "v1alpha1"
16423        }
16424      ]
16425    },
16426    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSource": {
16427      "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.",
16428      "properties": {
16429        "inlineVolumeSpec": {
16430          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16431          "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."
16432        },
16433        "persistentVolumeName": {
16434          "description": "Name of the persistent volume to attach.",
16435          "type": "string"
16436        }
16437      },
16438      "type": "object"
16439    },
16440    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec": {
16441      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16442      "properties": {
16443        "attacher": {
16444          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16445          "type": "string"
16446        },
16447        "nodeName": {
16448          "description": "The node that the volume should be attached to.",
16449          "type": "string"
16450        },
16451        "source": {
16452          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource",
16453          "description": "Source represents the volume that should be attached."
16454        }
16455      },
16456      "required": [
16457        "attacher",
16458        "source",
16459        "nodeName"
16460      ],
16461      "type": "object"
16462    },
16463    "io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus": {
16464      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16465      "properties": {
16466        "attachError": {
16467          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
16468          "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."
16469        },
16470        "attached": {
16471          "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.",
16472          "type": "boolean"
16473        },
16474        "attachmentMetadata": {
16475          "additionalProperties": {
16476            "type": "string"
16477          },
16478          "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.",
16479          "type": "object"
16480        },
16481        "detachError": {
16482          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
16483          "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."
16484        }
16485      },
16486      "required": [
16487        "attached"
16488      ],
16489      "type": "object"
16490    },
16491    "io.k8s.api.storage.v1alpha1.VolumeError": {
16492      "description": "VolumeError captures an error encountered during a volume operation.",
16493      "properties": {
16494        "message": {
16495          "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.",
16496          "type": "string"
16497        },
16498        "time": {
16499          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16500          "description": "Time the error was encountered."
16501        }
16502      },
16503      "type": "object"
16504    },
16505    "io.k8s.api.storage.v1beta1.CSIDriver": {
16506      "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.",
16507      "properties": {
16508        "apiVersion": {
16509          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16510          "type": "string"
16511        },
16512        "kind": {
16513          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16514          "type": "string"
16515        },
16516        "metadata": {
16517          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16518          "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"
16519        },
16520        "spec": {
16521          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverSpec",
16522          "description": "Specification of the CSI Driver."
16523        }
16524      },
16525      "required": [
16526        "spec"
16527      ],
16528      "type": "object",
16529      "x-kubernetes-group-version-kind": [
16530        {
16531          "group": "storage.k8s.io",
16532          "kind": "CSIDriver",
16533          "version": "v1beta1"
16534        }
16535      ]
16536    },
16537    "io.k8s.api.storage.v1beta1.CSIDriverList": {
16538      "description": "CSIDriverList is a collection of CSIDriver objects.",
16539      "properties": {
16540        "apiVersion": {
16541          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16542          "type": "string"
16543        },
16544        "items": {
16545          "description": "items is the list of CSIDriver",
16546          "items": {
16547            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
16548          },
16549          "type": "array"
16550        },
16551        "kind": {
16552          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16553          "type": "string"
16554        },
16555        "metadata": {
16556          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16557          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16558        }
16559      },
16560      "required": [
16561        "items"
16562      ],
16563      "type": "object",
16564      "x-kubernetes-group-version-kind": [
16565        {
16566          "group": "storage.k8s.io",
16567          "kind": "CSIDriverList",
16568          "version": "v1beta1"
16569        }
16570      ]
16571    },
16572    "io.k8s.api.storage.v1beta1.CSIDriverSpec": {
16573      "description": "CSIDriverSpec is the specification of a CSIDriver.",
16574      "properties": {
16575        "attachRequired": {
16576          "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.",
16577          "type": "boolean"
16578        },
16579        "fsGroupPolicy": {
16580          "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.",
16581          "type": "string"
16582        },
16583        "podInfoOnMount": {
16584          "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.",
16585          "type": "boolean"
16586        },
16587        "requiresRepublish": {
16588          "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.",
16589          "type": "boolean"
16590        },
16591        "storageCapacity": {
16592          "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.",
16593          "type": "boolean"
16594        },
16595        "tokenRequests": {
16596          "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.",
16597          "items": {
16598            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.TokenRequest"
16599          },
16600          "type": "array",
16601          "x-kubernetes-list-type": "atomic"
16602        },
16603        "volumeLifecycleModes": {
16604          "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.",
16605          "items": {
16606            "type": "string"
16607          },
16608          "type": "array"
16609        }
16610      },
16611      "type": "object"
16612    },
16613    "io.k8s.api.storage.v1beta1.CSINode": {
16614      "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.",
16615      "properties": {
16616        "apiVersion": {
16617          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16618          "type": "string"
16619        },
16620        "kind": {
16621          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16622          "type": "string"
16623        },
16624        "metadata": {
16625          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16626          "description": "metadata.name must be the Kubernetes node name."
16627        },
16628        "spec": {
16629          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeSpec",
16630          "description": "spec is the specification of CSINode"
16631        }
16632      },
16633      "required": [
16634        "spec"
16635      ],
16636      "type": "object",
16637      "x-kubernetes-group-version-kind": [
16638        {
16639          "group": "storage.k8s.io",
16640          "kind": "CSINode",
16641          "version": "v1beta1"
16642        }
16643      ]
16644    },
16645    "io.k8s.api.storage.v1beta1.CSINodeDriver": {
16646      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
16647      "properties": {
16648        "allocatable": {
16649          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeNodeResources",
16650          "description": "allocatable represents the volume resources of a node that are available for scheduling."
16651        },
16652        "name": {
16653          "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.",
16654          "type": "string"
16655        },
16656        "nodeID": {
16657          "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.",
16658          "type": "string"
16659        },
16660        "topologyKeys": {
16661          "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.",
16662          "items": {
16663            "type": "string"
16664          },
16665          "type": "array"
16666        }
16667      },
16668      "required": [
16669        "name",
16670        "nodeID"
16671      ],
16672      "type": "object"
16673    },
16674    "io.k8s.api.storage.v1beta1.CSINodeList": {
16675      "description": "CSINodeList is a collection of CSINode objects.",
16676      "properties": {
16677        "apiVersion": {
16678          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16679          "type": "string"
16680        },
16681        "items": {
16682          "description": "items is the list of CSINode",
16683          "items": {
16684            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
16685          },
16686          "type": "array"
16687        },
16688        "kind": {
16689          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16690          "type": "string"
16691        },
16692        "metadata": {
16693          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16694          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16695        }
16696      },
16697      "required": [
16698        "items"
16699      ],
16700      "type": "object",
16701      "x-kubernetes-group-version-kind": [
16702        {
16703          "group": "storage.k8s.io",
16704          "kind": "CSINodeList",
16705          "version": "v1beta1"
16706        }
16707      ]
16708    },
16709    "io.k8s.api.storage.v1beta1.CSINodeSpec": {
16710      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
16711      "properties": {
16712        "drivers": {
16713          "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.",
16714          "items": {
16715            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeDriver"
16716          },
16717          "type": "array",
16718          "x-kubernetes-patch-merge-key": "name",
16719          "x-kubernetes-patch-strategy": "merge"
16720        }
16721      },
16722      "required": [
16723        "drivers"
16724      ],
16725      "type": "object"
16726    },
16727    "io.k8s.api.storage.v1beta1.StorageClass": {
16728      "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.",
16729      "properties": {
16730        "allowVolumeExpansion": {
16731          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
16732          "type": "boolean"
16733        },
16734        "allowedTopologies": {
16735          "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.",
16736          "items": {
16737            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
16738          },
16739          "type": "array"
16740        },
16741        "apiVersion": {
16742          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16743          "type": "string"
16744        },
16745        "kind": {
16746          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16747          "type": "string"
16748        },
16749        "metadata": {
16750          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16751          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16752        },
16753        "mountOptions": {
16754          "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.",
16755          "items": {
16756            "type": "string"
16757          },
16758          "type": "array"
16759        },
16760        "parameters": {
16761          "additionalProperties": {
16762            "type": "string"
16763          },
16764          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16765          "type": "object"
16766        },
16767        "provisioner": {
16768          "description": "Provisioner indicates the type of the provisioner.",
16769          "type": "string"
16770        },
16771        "reclaimPolicy": {
16772          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16773          "type": "string"
16774        },
16775        "volumeBindingMode": {
16776          "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.",
16777          "type": "string"
16778        }
16779      },
16780      "required": [
16781        "provisioner"
16782      ],
16783      "type": "object",
16784      "x-kubernetes-group-version-kind": [
16785        {
16786          "group": "storage.k8s.io",
16787          "kind": "StorageClass",
16788          "version": "v1beta1"
16789        }
16790      ]
16791    },
16792    "io.k8s.api.storage.v1beta1.StorageClassList": {
16793      "description": "StorageClassList is a collection of storage classes.",
16794      "properties": {
16795        "apiVersion": {
16796          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16797          "type": "string"
16798        },
16799        "items": {
16800          "description": "Items is the list of StorageClasses",
16801          "items": {
16802            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
16803          },
16804          "type": "array"
16805        },
16806        "kind": {
16807          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16808          "type": "string"
16809        },
16810        "metadata": {
16811          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16812          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16813        }
16814      },
16815      "required": [
16816        "items"
16817      ],
16818      "type": "object",
16819      "x-kubernetes-group-version-kind": [
16820        {
16821          "group": "storage.k8s.io",
16822          "kind": "StorageClassList",
16823          "version": "v1beta1"
16824        }
16825      ]
16826    },
16827    "io.k8s.api.storage.v1beta1.TokenRequest": {
16828      "description": "TokenRequest contains parameters of a service account token.",
16829      "properties": {
16830        "audience": {
16831          "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
16832          "type": "string"
16833        },
16834        "expirationSeconds": {
16835          "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\"",
16836          "format": "int64",
16837          "type": "integer"
16838        }
16839      },
16840      "required": [
16841        "audience"
16842      ],
16843      "type": "object"
16844    },
16845    "io.k8s.api.storage.v1beta1.VolumeAttachment": {
16846      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16847      "properties": {
16848        "apiVersion": {
16849          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16850          "type": "string"
16851        },
16852        "kind": {
16853          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16854          "type": "string"
16855        },
16856        "metadata": {
16857          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16858          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16859        },
16860        "spec": {
16861          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec",
16862          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16863        },
16864        "status": {
16865          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus",
16866          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16867        }
16868      },
16869      "required": [
16870        "spec"
16871      ],
16872      "type": "object",
16873      "x-kubernetes-group-version-kind": [
16874        {
16875          "group": "storage.k8s.io",
16876          "kind": "VolumeAttachment",
16877          "version": "v1beta1"
16878        }
16879      ]
16880    },
16881    "io.k8s.api.storage.v1beta1.VolumeAttachmentList": {
16882      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16883      "properties": {
16884        "apiVersion": {
16885          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16886          "type": "string"
16887        },
16888        "items": {
16889          "description": "Items is the list of VolumeAttachments",
16890          "items": {
16891            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
16892          },
16893          "type": "array"
16894        },
16895        "kind": {
16896          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16897          "type": "string"
16898        },
16899        "metadata": {
16900          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16901          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16902        }
16903      },
16904      "required": [
16905        "items"
16906      ],
16907      "type": "object",
16908      "x-kubernetes-group-version-kind": [
16909        {
16910          "group": "storage.k8s.io",
16911          "kind": "VolumeAttachmentList",
16912          "version": "v1beta1"
16913        }
16914      ]
16915    },
16916    "io.k8s.api.storage.v1beta1.VolumeAttachmentSource": {
16917      "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.",
16918      "properties": {
16919        "inlineVolumeSpec": {
16920          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16921          "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."
16922        },
16923        "persistentVolumeName": {
16924          "description": "Name of the persistent volume to attach.",
16925          "type": "string"
16926        }
16927      },
16928      "type": "object"
16929    },
16930    "io.k8s.api.storage.v1beta1.VolumeAttachmentSpec": {
16931      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16932      "properties": {
16933        "attacher": {
16934          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16935          "type": "string"
16936        },
16937        "nodeName": {
16938          "description": "The node that the volume should be attached to.",
16939          "type": "string"
16940        },
16941        "source": {
16942          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource",
16943          "description": "Source represents the volume that should be attached."
16944        }
16945      },
16946      "required": [
16947        "attacher",
16948        "source",
16949        "nodeName"
16950      ],
16951      "type": "object"
16952    },
16953    "io.k8s.api.storage.v1beta1.VolumeAttachmentStatus": {
16954      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16955      "properties": {
16956        "attachError": {
16957          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
16958          "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."
16959        },
16960        "attached": {
16961          "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.",
16962          "type": "boolean"
16963        },
16964        "attachmentMetadata": {
16965          "additionalProperties": {
16966            "type": "string"
16967          },
16968          "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.",
16969          "type": "object"
16970        },
16971        "detachError": {
16972          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
16973          "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."
16974        }
16975      },
16976      "required": [
16977        "attached"
16978      ],
16979      "type": "object"
16980    },
16981    "io.k8s.api.storage.v1beta1.VolumeError": {
16982      "description": "VolumeError captures an error encountered during a volume operation.",
16983      "properties": {
16984        "message": {
16985          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
16986          "type": "string"
16987        },
16988        "time": {
16989          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16990          "description": "Time the error was encountered."
16991        }
16992      },
16993      "type": "object"
16994    },
16995    "io.k8s.api.storage.v1beta1.VolumeNodeResources": {
16996      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
16997      "properties": {
16998        "count": {
16999          "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.",
17000          "format": "int32",
17001          "type": "integer"
17002        }
17003      },
17004      "type": "object"
17005    },
17006    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": {
17007      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
17008      "properties": {
17009        "description": {
17010          "description": "description is a human readable description of this column.",
17011          "type": "string"
17012        },
17013        "format": {
17014          "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.",
17015          "type": "string"
17016        },
17017        "jsonPath": {
17018          "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.",
17019          "type": "string"
17020        },
17021        "name": {
17022          "description": "name is a human readable name for the column.",
17023          "type": "string"
17024        },
17025        "priority": {
17026          "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.",
17027          "format": "int32",
17028          "type": "integer"
17029        },
17030        "type": {
17031          "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.",
17032          "type": "string"
17033        }
17034      },
17035      "required": [
17036        "name",
17037        "type",
17038        "jsonPath"
17039      ],
17040      "type": "object"
17041    },
17042    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": {
17043      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
17044      "properties": {
17045        "strategy": {
17046          "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.",
17047          "type": "string"
17048        },
17049        "webhook": {
17050          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion",
17051          "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`."
17052        }
17053      },
17054      "required": [
17055        "strategy"
17056      ],
17057      "type": "object"
17058    },
17059    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": {
17060      "description": "CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format <.spec.name>.<.spec.group>.",
17061      "properties": {
17062        "apiVersion": {
17063          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17064          "type": "string"
17065        },
17066        "kind": {
17067          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17068          "type": "string"
17069        },
17070        "metadata": {
17071          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
17072        },
17073        "spec": {
17074          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec",
17075          "description": "spec describes how the user wants the resources to appear"
17076        },
17077        "status": {
17078          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus",
17079          "description": "status indicates the actual state of the CustomResourceDefinition"
17080        }
17081      },
17082      "required": [
17083        "spec"
17084      ],
17085      "type": "object",
17086      "x-kubernetes-group-version-kind": [
17087        {
17088          "group": "apiextensions.k8s.io",
17089          "kind": "CustomResourceDefinition",
17090          "version": "v1"
17091        }
17092      ]
17093    },
17094    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": {
17095      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
17096      "properties": {
17097        "lastTransitionTime": {
17098          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17099          "description": "lastTransitionTime last time the condition transitioned from one status to another."
17100        },
17101        "message": {
17102          "description": "message is a human-readable message indicating details about last transition.",
17103          "type": "string"
17104        },
17105        "reason": {
17106          "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
17107          "type": "string"
17108        },
17109        "status": {
17110          "description": "status is the status of the condition. Can be True, False, Unknown.",
17111          "type": "string"
17112        },
17113        "type": {
17114          "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
17115          "type": "string"
17116        }
17117      },
17118      "required": [
17119        "type",
17120        "status"
17121      ],
17122      "type": "object"
17123    },
17124    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": {
17125      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
17126      "properties": {
17127        "apiVersion": {
17128          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17129          "type": "string"
17130        },
17131        "items": {
17132          "description": "items list individual CustomResourceDefinition objects",
17133          "items": {
17134            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
17135          },
17136          "type": "array"
17137        },
17138        "kind": {
17139          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17140          "type": "string"
17141        },
17142        "metadata": {
17143          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
17144        }
17145      },
17146      "required": [
17147        "items"
17148      ],
17149      "type": "object",
17150      "x-kubernetes-group-version-kind": [
17151        {
17152          "group": "apiextensions.k8s.io",
17153          "kind": "CustomResourceDefinitionList",
17154          "version": "v1"
17155        }
17156      ]
17157    },
17158    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": {
17159      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
17160      "properties": {
17161        "categories": {
17162          "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`.",
17163          "items": {
17164            "type": "string"
17165          },
17166          "type": "array"
17167        },
17168        "kind": {
17169          "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.",
17170          "type": "string"
17171        },
17172        "listKind": {
17173          "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
17174          "type": "string"
17175        },
17176        "plural": {
17177          "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.",
17178          "type": "string"
17179        },
17180        "shortNames": {
17181          "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.",
17182          "items": {
17183            "type": "string"
17184          },
17185          "type": "array"
17186        },
17187        "singular": {
17188          "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
17189          "type": "string"
17190        }
17191      },
17192      "required": [
17193        "plural",
17194        "kind"
17195      ],
17196      "type": "object"
17197    },
17198    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": {
17199      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
17200      "properties": {
17201        "conversion": {
17202          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion",
17203          "description": "conversion defines conversion settings for the CRD."
17204        },
17205        "group": {
17206          "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>`).",
17207          "type": "string"
17208        },
17209        "names": {
17210          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
17211          "description": "names specify the resource and kind names for the custom resource."
17212        },
17213        "preserveUnknownFields": {
17214          "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.",
17215          "type": "boolean"
17216        },
17217        "scope": {
17218          "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.",
17219          "type": "string"
17220        },
17221        "versions": {
17222          "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.",
17223          "items": {
17224            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion"
17225          },
17226          "type": "array"
17227        }
17228      },
17229      "required": [
17230        "group",
17231        "names",
17232        "scope",
17233        "versions"
17234      ],
17235      "type": "object"
17236    },
17237    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": {
17238      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
17239      "properties": {
17240        "acceptedNames": {
17241          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
17242          "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
17243        },
17244        "conditions": {
17245          "description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
17246          "items": {
17247            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition"
17248          },
17249          "type": "array"
17250        },
17251        "storedVersions": {
17252          "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.",
17253          "items": {
17254            "type": "string"
17255          },
17256          "type": "array"
17257        }
17258      },
17259      "type": "object"
17260    },
17261    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": {
17262      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
17263      "properties": {
17264        "additionalPrinterColumns": {
17265          "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.",
17266          "items": {
17267            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition"
17268          },
17269          "type": "array"
17270        },
17271        "deprecated": {
17272          "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.",
17273          "type": "boolean"
17274        },
17275        "deprecationWarning": {
17276          "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.",
17277          "type": "string"
17278        },
17279        "name": {
17280          "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.",
17281          "type": "string"
17282        },
17283        "schema": {
17284          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation",
17285          "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource."
17286        },
17287        "served": {
17288          "description": "served is a flag enabling/disabling this version from being served via REST APIs",
17289          "type": "boolean"
17290        },
17291        "storage": {
17292          "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
17293          "type": "boolean"
17294        },
17295        "subresources": {
17296          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources",
17297          "description": "subresources specify what subresources this version of the defined custom resource have."
17298        }
17299      },
17300      "required": [
17301        "name",
17302        "served",
17303        "storage"
17304      ],
17305      "type": "object"
17306    },
17307    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": {
17308      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
17309      "properties": {
17310        "labelSelectorPath": {
17311          "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.",
17312          "type": "string"
17313        },
17314        "specReplicasPath": {
17315          "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.",
17316          "type": "string"
17317        },
17318        "statusReplicasPath": {
17319          "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.",
17320          "type": "string"
17321        }
17322      },
17323      "required": [
17324        "specReplicasPath",
17325        "statusReplicasPath"
17326      ],
17327      "type": "object"
17328    },
17329    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": {
17330      "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",
17331      "type": "object"
17332    },
17333    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": {
17334      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
17335      "properties": {
17336        "scale": {
17337          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale",
17338          "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
17339        },
17340        "status": {
17341          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus",
17342          "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."
17343        }
17344      },
17345      "type": "object"
17346    },
17347    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": {
17348      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
17349      "properties": {
17350        "openAPIV3Schema": {
17351          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps",
17352          "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
17353        }
17354      },
17355      "type": "object"
17356    },
17357    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": {
17358      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
17359      "properties": {
17360        "description": {
17361          "type": "string"
17362        },
17363        "url": {
17364          "type": "string"
17365        }
17366      },
17367      "type": "object"
17368    },
17369    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": {
17370      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
17371    },
17372    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": {
17373      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
17374      "properties": {
17375        "$ref": {
17376          "type": "string"
17377        },
17378        "$schema": {
17379          "type": "string"
17380        },
17381        "additionalItems": {
17382          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
17383        },
17384        "additionalProperties": {
17385          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
17386        },
17387        "allOf": {
17388          "items": {
17389            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17390          },
17391          "type": "array"
17392        },
17393        "anyOf": {
17394          "items": {
17395            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17396          },
17397          "type": "array"
17398        },
17399        "default": {
17400          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON",
17401          "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."
17402        },
17403        "definitions": {
17404          "additionalProperties": {
17405            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17406          },
17407          "type": "object"
17408        },
17409        "dependencies": {
17410          "additionalProperties": {
17411            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray"
17412          },
17413          "type": "object"
17414        },
17415        "description": {
17416          "type": "string"
17417        },
17418        "enum": {
17419          "items": {
17420            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
17421          },
17422          "type": "array"
17423        },
17424        "example": {
17425          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
17426        },
17427        "exclusiveMaximum": {
17428          "type": "boolean"
17429        },
17430        "exclusiveMinimum": {
17431          "type": "boolean"
17432        },
17433        "externalDocs": {
17434          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation"
17435        },
17436        "format": {
17437          "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.",
17438          "type": "string"
17439        },
17440        "id": {
17441          "type": "string"
17442        },
17443        "items": {
17444          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray"
17445        },
17446        "maxItems": {
17447          "format": "int64",
17448          "type": "integer"
17449        },
17450        "maxLength": {
17451          "format": "int64",
17452          "type": "integer"
17453        },
17454        "maxProperties": {
17455          "format": "int64",
17456          "type": "integer"
17457        },
17458        "maximum": {
17459          "format": "double",
17460          "type": "number"
17461        },
17462        "minItems": {
17463          "format": "int64",
17464          "type": "integer"
17465        },
17466        "minLength": {
17467          "format": "int64",
17468          "type": "integer"
17469        },
17470        "minProperties": {
17471          "format": "int64",
17472          "type": "integer"
17473        },
17474        "minimum": {
17475          "format": "double",
17476          "type": "number"
17477        },
17478        "multipleOf": {
17479          "format": "double",
17480          "type": "number"
17481        },
17482        "not": {
17483          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17484        },
17485        "nullable": {
17486          "type": "boolean"
17487        },
17488        "oneOf": {
17489          "items": {
17490            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17491          },
17492          "type": "array"
17493        },
17494        "pattern": {
17495          "type": "string"
17496        },
17497        "patternProperties": {
17498          "additionalProperties": {
17499            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17500          },
17501          "type": "object"
17502        },
17503        "properties": {
17504          "additionalProperties": {
17505            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
17506          },
17507          "type": "object"
17508        },
17509        "required": {
17510          "items": {
17511            "type": "string"
17512          },
17513          "type": "array"
17514        },
17515        "title": {
17516          "type": "string"
17517        },
17518        "type": {
17519          "type": "string"
17520        },
17521        "uniqueItems": {
17522          "type": "boolean"
17523        },
17524        "x-kubernetes-embedded-resource": {
17525          "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).",
17526          "type": "boolean"
17527        },
17528        "x-kubernetes-int-or-string": {
17529          "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",
17530          "type": "boolean"
17531        },
17532        "x-kubernetes-list-map-keys": {
17533          "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.",
17534          "items": {
17535            "type": "string"
17536          },
17537          "type": "array"
17538        },
17539        "x-kubernetes-list-type": {
17540          "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.",
17541          "type": "string"
17542        },
17543        "x-kubernetes-map-type": {
17544          "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.",
17545          "type": "string"
17546        },
17547        "x-kubernetes-preserve-unknown-fields": {
17548          "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.",
17549          "type": "boolean"
17550        }
17551      },
17552      "type": "object"
17553    },
17554    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
17555      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
17556    },
17557    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": {
17558      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
17559    },
17560    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": {
17561      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
17562    },
17563    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": {
17564      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
17565      "properties": {
17566        "name": {
17567          "description": "name is the name of the service. Required",
17568          "type": "string"
17569        },
17570        "namespace": {
17571          "description": "namespace is the namespace of the service. Required",
17572          "type": "string"
17573        },
17574        "path": {
17575          "description": "path is an optional URL path at which the webhook will be contacted.",
17576          "type": "string"
17577        },
17578        "port": {
17579          "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.",
17580          "format": "int32",
17581          "type": "integer"
17582        }
17583      },
17584      "required": [
17585        "namespace",
17586        "name"
17587      ],
17588      "type": "object"
17589    },
17590    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": {
17591      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
17592      "properties": {
17593        "caBundle": {
17594          "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.",
17595          "format": "byte",
17596          "type": "string"
17597        },
17598        "service": {
17599          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference",
17600          "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`."
17601        },
17602        "url": {
17603          "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.",
17604          "type": "string"
17605        }
17606      },
17607      "type": "object"
17608    },
17609    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": {
17610      "description": "WebhookConversion describes how to call a conversion webhook",
17611      "properties": {
17612        "clientConfig": {
17613          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig",
17614          "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`."
17615        },
17616        "conversionReviewVersions": {
17617          "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.",
17618          "items": {
17619            "type": "string"
17620          },
17621          "type": "array"
17622        }
17623      },
17624      "required": [
17625        "conversionReviewVersions"
17626      ],
17627      "type": "object"
17628    },
17629    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition": {
17630      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
17631      "properties": {
17632        "JSONPath": {
17633          "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.",
17634          "type": "string"
17635        },
17636        "description": {
17637          "description": "description is a human readable description of this column.",
17638          "type": "string"
17639        },
17640        "format": {
17641          "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.",
17642          "type": "string"
17643        },
17644        "name": {
17645          "description": "name is a human readable name for the column.",
17646          "type": "string"
17647        },
17648        "priority": {
17649          "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.",
17650          "format": "int32",
17651          "type": "integer"
17652        },
17653        "type": {
17654          "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.",
17655          "type": "string"
17656        }
17657      },
17658      "required": [
17659        "name",
17660        "type",
17661        "JSONPath"
17662      ],
17663      "type": "object"
17664    },
17665    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": {
17666      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
17667      "properties": {
17668        "conversionReviewVersions": {
17669          "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\"]`.",
17670          "items": {
17671            "type": "string"
17672          },
17673          "type": "array"
17674        },
17675        "strategy": {
17676          "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.",
17677          "type": "string"
17678        },
17679        "webhookClientConfig": {
17680          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig",
17681          "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`."
17682        }
17683      },
17684      "required": [
17685        "strategy"
17686      ],
17687      "type": "object"
17688    },
17689    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": {
17690      "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.",
17691      "properties": {
17692        "apiVersion": {
17693          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17694          "type": "string"
17695        },
17696        "kind": {
17697          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17698          "type": "string"
17699        },
17700        "metadata": {
17701          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
17702        },
17703        "spec": {
17704          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec",
17705          "description": "spec describes how the user wants the resources to appear"
17706        },
17707        "status": {
17708          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus",
17709          "description": "status indicates the actual state of the CustomResourceDefinition"
17710        }
17711      },
17712      "required": [
17713        "spec"
17714      ],
17715      "type": "object",
17716      "x-kubernetes-group-version-kind": [
17717        {
17718          "group": "apiextensions.k8s.io",
17719          "kind": "CustomResourceDefinition",
17720          "version": "v1beta1"
17721        }
17722      ]
17723    },
17724    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": {
17725      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
17726      "properties": {
17727        "lastTransitionTime": {
17728          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17729          "description": "lastTransitionTime last time the condition transitioned from one status to another."
17730        },
17731        "message": {
17732          "description": "message is a human-readable message indicating details about last transition.",
17733          "type": "string"
17734        },
17735        "reason": {
17736          "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
17737          "type": "string"
17738        },
17739        "status": {
17740          "description": "status is the status of the condition. Can be True, False, Unknown.",
17741          "type": "string"
17742        },
17743        "type": {
17744          "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
17745          "type": "string"
17746        }
17747      },
17748      "required": [
17749        "type",
17750        "status"
17751      ],
17752      "type": "object"
17753    },
17754    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList": {
17755      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
17756      "properties": {
17757        "apiVersion": {
17758          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
17759          "type": "string"
17760        },
17761        "items": {
17762          "description": "items list individual CustomResourceDefinition objects",
17763          "items": {
17764            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
17765          },
17766          "type": "array"
17767        },
17768        "kind": {
17769          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
17770          "type": "string"
17771        },
17772        "metadata": {
17773          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
17774        }
17775      },
17776      "required": [
17777        "items"
17778      ],
17779      "type": "object",
17780      "x-kubernetes-group-version-kind": [
17781        {
17782          "group": "apiextensions.k8s.io",
17783          "kind": "CustomResourceDefinitionList",
17784          "version": "v1beta1"
17785        }
17786      ]
17787    },
17788    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames": {
17789      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
17790      "properties": {
17791        "categories": {
17792          "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`.",
17793          "items": {
17794            "type": "string"
17795          },
17796          "type": "array"
17797        },
17798        "kind": {
17799          "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.",
17800          "type": "string"
17801        },
17802        "listKind": {
17803          "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
17804          "type": "string"
17805        },
17806        "plural": {
17807          "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.",
17808          "type": "string"
17809        },
17810        "shortNames": {
17811          "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.",
17812          "items": {
17813            "type": "string"
17814          },
17815          "type": "array"
17816        },
17817        "singular": {
17818          "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
17819          "type": "string"
17820        }
17821      },
17822      "required": [
17823        "plural",
17824        "kind"
17825      ],
17826      "type": "object"
17827    },
17828    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec": {
17829      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
17830      "properties": {
17831        "additionalPrinterColumns": {
17832          "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.",
17833          "items": {
17834            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17835          },
17836          "type": "array"
17837        },
17838        "conversion": {
17839          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion",
17840          "description": "conversion defines conversion settings for the CRD."
17841        },
17842        "group": {
17843          "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>`).",
17844          "type": "string"
17845        },
17846        "names": {
17847          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17848          "description": "names specify the resource and kind names for the custom resource."
17849        },
17850        "preserveUnknownFields": {
17851          "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.",
17852          "type": "boolean"
17853        },
17854        "scope": {
17855          "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.",
17856          "type": "string"
17857        },
17858        "subresources": {
17859          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17860          "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."
17861        },
17862        "validation": {
17863          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17864          "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."
17865        },
17866        "version": {
17867          "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.",
17868          "type": "string"
17869        },
17870        "versions": {
17871          "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.",
17872          "items": {
17873            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion"
17874          },
17875          "type": "array"
17876        }
17877      },
17878      "required": [
17879        "group",
17880        "names",
17881        "scope"
17882      ],
17883      "type": "object"
17884    },
17885    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus": {
17886      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
17887      "properties": {
17888        "acceptedNames": {
17889          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17890          "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
17891        },
17892        "conditions": {
17893          "description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
17894          "items": {
17895            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition"
17896          },
17897          "type": "array"
17898        },
17899        "storedVersions": {
17900          "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.",
17901          "items": {
17902            "type": "string"
17903          },
17904          "type": "array"
17905        }
17906      },
17907      "type": "object"
17908    },
17909    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": {
17910      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
17911      "properties": {
17912        "additionalPrinterColumns": {
17913          "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.",
17914          "items": {
17915            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17916          },
17917          "type": "array"
17918        },
17919        "deprecated": {
17920          "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.",
17921          "type": "boolean"
17922        },
17923        "deprecationWarning": {
17924          "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.",
17925          "type": "string"
17926        },
17927        "name": {
17928          "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.",
17929          "type": "string"
17930        },
17931        "schema": {
17932          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17933          "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)."
17934        },
17935        "served": {
17936          "description": "served is a flag enabling/disabling this version from being served via REST APIs",
17937          "type": "boolean"
17938        },
17939        "storage": {
17940          "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
17941          "type": "boolean"
17942        },
17943        "subresources": {
17944          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17945          "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)."
17946        }
17947      },
17948      "required": [
17949        "name",
17950        "served",
17951        "storage"
17952      ],
17953      "type": "object"
17954    },
17955    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale": {
17956      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
17957      "properties": {
17958        "labelSelectorPath": {
17959          "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.",
17960          "type": "string"
17961        },
17962        "specReplicasPath": {
17963          "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.",
17964          "type": "string"
17965        },
17966        "statusReplicasPath": {
17967          "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.",
17968          "type": "string"
17969        }
17970      },
17971      "required": [
17972        "specReplicasPath",
17973        "statusReplicasPath"
17974      ],
17975      "type": "object"
17976    },
17977    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus": {
17978      "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",
17979      "type": "object"
17980    },
17981    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources": {
17982      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
17983      "properties": {
17984        "scale": {
17985          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale",
17986          "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
17987        },
17988        "status": {
17989          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus",
17990          "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."
17991        }
17992      },
17993      "type": "object"
17994    },
17995    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation": {
17996      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
17997      "properties": {
17998        "openAPIV3Schema": {
17999          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps",
18000          "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
18001        }
18002      },
18003      "type": "object"
18004    },
18005    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation": {
18006      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
18007      "properties": {
18008        "description": {
18009          "type": "string"
18010        },
18011        "url": {
18012          "type": "string"
18013        }
18014      },
18015      "type": "object"
18016    },
18017    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON": {
18018      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
18019    },
18020    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps": {
18021      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
18022      "properties": {
18023        "$ref": {
18024          "type": "string"
18025        },
18026        "$schema": {
18027          "type": "string"
18028        },
18029        "additionalItems": {
18030          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
18031        },
18032        "additionalProperties": {
18033          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
18034        },
18035        "allOf": {
18036          "items": {
18037            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18038          },
18039          "type": "array"
18040        },
18041        "anyOf": {
18042          "items": {
18043            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18044          },
18045          "type": "array"
18046        },
18047        "default": {
18048          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON",
18049          "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."
18050        },
18051        "definitions": {
18052          "additionalProperties": {
18053            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18054          },
18055          "type": "object"
18056        },
18057        "dependencies": {
18058          "additionalProperties": {
18059            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray"
18060          },
18061          "type": "object"
18062        },
18063        "description": {
18064          "type": "string"
18065        },
18066        "enum": {
18067          "items": {
18068            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
18069          },
18070          "type": "array"
18071        },
18072        "example": {
18073          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
18074        },
18075        "exclusiveMaximum": {
18076          "type": "boolean"
18077        },
18078        "exclusiveMinimum": {
18079          "type": "boolean"
18080        },
18081        "externalDocs": {
18082          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation"
18083        },
18084        "format": {
18085          "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.",
18086          "type": "string"
18087        },
18088        "id": {
18089          "type": "string"
18090        },
18091        "items": {
18092          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray"
18093        },
18094        "maxItems": {
18095          "format": "int64",
18096          "type": "integer"
18097        },
18098        "maxLength": {
18099          "format": "int64",
18100          "type": "integer"
18101        },
18102        "maxProperties": {
18103          "format": "int64",
18104          "type": "integer"
18105        },
18106        "maximum": {
18107          "format": "double",
18108          "type": "number"
18109        },
18110        "minItems": {
18111          "format": "int64",
18112          "type": "integer"
18113        },
18114        "minLength": {
18115          "format": "int64",
18116          "type": "integer"
18117        },
18118        "minProperties": {
18119          "format": "int64",
18120          "type": "integer"
18121        },
18122        "minimum": {
18123          "format": "double",
18124          "type": "number"
18125        },
18126        "multipleOf": {
18127          "format": "double",
18128          "type": "number"
18129        },
18130        "not": {
18131          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18132        },
18133        "nullable": {
18134          "type": "boolean"
18135        },
18136        "oneOf": {
18137          "items": {
18138            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18139          },
18140          "type": "array"
18141        },
18142        "pattern": {
18143          "type": "string"
18144        },
18145        "patternProperties": {
18146          "additionalProperties": {
18147            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18148          },
18149          "type": "object"
18150        },
18151        "properties": {
18152          "additionalProperties": {
18153            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
18154          },
18155          "type": "object"
18156        },
18157        "required": {
18158          "items": {
18159            "type": "string"
18160          },
18161          "type": "array"
18162        },
18163        "title": {
18164          "type": "string"
18165        },
18166        "type": {
18167          "type": "string"
18168        },
18169        "uniqueItems": {
18170          "type": "boolean"
18171        },
18172        "x-kubernetes-embedded-resource": {
18173          "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).",
18174          "type": "boolean"
18175        },
18176        "x-kubernetes-int-or-string": {
18177          "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",
18178          "type": "boolean"
18179        },
18180        "x-kubernetes-list-map-keys": {
18181          "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.",
18182          "items": {
18183            "type": "string"
18184          },
18185          "type": "array"
18186        },
18187        "x-kubernetes-list-type": {
18188          "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.",
18189          "type": "string"
18190        },
18191        "x-kubernetes-map-type": {
18192          "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.",
18193          "type": "string"
18194        },
18195        "x-kubernetes-preserve-unknown-fields": {
18196          "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.",
18197          "type": "boolean"
18198        }
18199      },
18200      "type": "object"
18201    },
18202    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray": {
18203      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
18204    },
18205    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool": {
18206      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
18207    },
18208    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": {
18209      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
18210    },
18211    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": {
18212      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
18213      "properties": {
18214        "name": {
18215          "description": "name is the name of the service. Required",
18216          "type": "string"
18217        },
18218        "namespace": {
18219          "description": "namespace is the namespace of the service. Required",
18220          "type": "string"
18221        },
18222        "path": {
18223          "description": "path is an optional URL path at which the webhook will be contacted.",
18224          "type": "string"
18225        },
18226        "port": {
18227          "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.",
18228          "format": "int32",
18229          "type": "integer"
18230        }
18231      },
18232      "required": [
18233        "namespace",
18234        "name"
18235      ],
18236      "type": "object"
18237    },
18238    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": {
18239      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
18240      "properties": {
18241        "caBundle": {
18242          "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.",
18243          "format": "byte",
18244          "type": "string"
18245        },
18246        "service": {
18247          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference",
18248          "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`."
18249        },
18250        "url": {
18251          "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.",
18252          "type": "string"
18253        }
18254      },
18255      "type": "object"
18256    },
18257    "io.k8s.apimachinery.pkg.api.resource.Quantity": {
18258      "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.",
18259      "type": "string"
18260    },
18261    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
18262      "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
18263      "properties": {
18264        "apiVersion": {
18265          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18266          "type": "string"
18267        },
18268        "kind": {
18269          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18270          "type": "string"
18271        },
18272        "name": {
18273          "description": "name is the name of the group.",
18274          "type": "string"
18275        },
18276        "preferredVersion": {
18277          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery",
18278          "description": "preferredVersion is the version preferred by the API server, which probably is the storage version."
18279        },
18280        "serverAddressByClientCIDRs": {
18281          "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.",
18282          "items": {
18283            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
18284          },
18285          "type": "array"
18286        },
18287        "versions": {
18288          "description": "versions are the versions supported in this group.",
18289          "items": {
18290            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery"
18291          },
18292          "type": "array"
18293        }
18294      },
18295      "required": [
18296        "name",
18297        "versions"
18298      ],
18299      "type": "object",
18300      "x-kubernetes-group-version-kind": [
18301        {
18302          "group": "",
18303          "kind": "APIGroup",
18304          "version": "v1"
18305        }
18306      ]
18307    },
18308    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
18309      "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
18310      "properties": {
18311        "apiVersion": {
18312          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18313          "type": "string"
18314        },
18315        "groups": {
18316          "description": "groups is a list of APIGroup.",
18317          "items": {
18318            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
18319          },
18320          "type": "array"
18321        },
18322        "kind": {
18323          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18324          "type": "string"
18325        }
18326      },
18327      "required": [
18328        "groups"
18329      ],
18330      "type": "object",
18331      "x-kubernetes-group-version-kind": [
18332        {
18333          "group": "",
18334          "kind": "APIGroupList",
18335          "version": "v1"
18336        }
18337      ]
18338    },
18339    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
18340      "description": "APIResource specifies the name of a resource and whether it is namespaced.",
18341      "properties": {
18342        "categories": {
18343          "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
18344          "items": {
18345            "type": "string"
18346          },
18347          "type": "array"
18348        },
18349        "group": {
18350          "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\".",
18351          "type": "string"
18352        },
18353        "kind": {
18354          "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
18355          "type": "string"
18356        },
18357        "name": {
18358          "description": "name is the plural name of the resource.",
18359          "type": "string"
18360        },
18361        "namespaced": {
18362          "description": "namespaced indicates if a resource is namespaced or not.",
18363          "type": "boolean"
18364        },
18365        "shortNames": {
18366          "description": "shortNames is a list of suggested short names of the resource.",
18367          "items": {
18368            "type": "string"
18369          },
18370          "type": "array"
18371        },
18372        "singularName": {
18373          "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.",
18374          "type": "string"
18375        },
18376        "storageVersionHash": {
18377          "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.",
18378          "type": "string"
18379        },
18380        "verbs": {
18381          "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
18382          "items": {
18383            "type": "string"
18384          },
18385          "type": "array"
18386        },
18387        "version": {
18388          "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)\".",
18389          "type": "string"
18390        }
18391      },
18392      "required": [
18393        "name",
18394        "singularName",
18395        "namespaced",
18396        "kind",
18397        "verbs"
18398      ],
18399      "type": "object"
18400    },
18401    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
18402      "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.",
18403      "properties": {
18404        "apiVersion": {
18405          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18406          "type": "string"
18407        },
18408        "groupVersion": {
18409          "description": "groupVersion is the group and version this APIResourceList is for.",
18410          "type": "string"
18411        },
18412        "kind": {
18413          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18414          "type": "string"
18415        },
18416        "resources": {
18417          "description": "resources contains the name of the resources and if they are namespaced.",
18418          "items": {
18419            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
18420          },
18421          "type": "array"
18422        }
18423      },
18424      "required": [
18425        "groupVersion",
18426        "resources"
18427      ],
18428      "type": "object",
18429      "x-kubernetes-group-version-kind": [
18430        {
18431          "group": "",
18432          "kind": "APIResourceList",
18433          "version": "v1"
18434        }
18435      ]
18436    },
18437    "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": {
18438      "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.",
18439      "properties": {
18440        "apiVersion": {
18441          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18442          "type": "string"
18443        },
18444        "kind": {
18445          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18446          "type": "string"
18447        },
18448        "serverAddressByClientCIDRs": {
18449          "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.",
18450          "items": {
18451            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
18452          },
18453          "type": "array"
18454        },
18455        "versions": {
18456          "description": "versions are the api versions that are available.",
18457          "items": {
18458            "type": "string"
18459          },
18460          "type": "array"
18461        }
18462      },
18463      "required": [
18464        "versions",
18465        "serverAddressByClientCIDRs"
18466      ],
18467      "type": "object",
18468      "x-kubernetes-group-version-kind": [
18469        {
18470          "group": "",
18471          "kind": "APIVersions",
18472          "version": "v1"
18473        }
18474      ]
18475    },
18476    "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": {
18477      "description": "Condition contains details for one aspect of the current state of this API Resource.",
18478      "properties": {
18479        "lastTransitionTime": {
18480          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18481          "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."
18482        },
18483        "message": {
18484          "description": "message is a human readable message indicating details about the transition. This may be an empty string.",
18485          "type": "string"
18486        },
18487        "observedGeneration": {
18488          "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.",
18489          "format": "int64",
18490          "type": "integer"
18491        },
18492        "reason": {
18493          "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.",
18494          "type": "string"
18495        },
18496        "status": {
18497          "description": "status of the condition, one of True, False, Unknown.",
18498          "type": "string"
18499        },
18500        "type": {
18501          "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
18502          "type": "string"
18503        }
18504      },
18505      "required": [
18506        "type",
18507        "status",
18508        "lastTransitionTime",
18509        "reason",
18510        "message"
18511      ],
18512      "type": "object"
18513    },
18514    "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
18515      "description": "DeleteOptions may be provided when deleting an API object.",
18516      "properties": {
18517        "apiVersion": {
18518          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
18519          "type": "string"
18520        },
18521        "dryRun": {
18522          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18523          "items": {
18524            "type": "string"
18525          },
18526          "type": "array"
18527        },
18528        "gracePeriodSeconds": {
18529          "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18530          "format": "int64",
18531          "type": "integer"
18532        },
18533        "kind": {
18534          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
18535          "type": "string"
18536        },
18537        "orphanDependents": {
18538          "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18539          "type": "boolean"
18540        },
18541        "preconditions": {
18542          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions",
18543          "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
18544        },
18545        "propagationPolicy": {
18546          "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18547          "type": "string"
18548        }
18549      },
18550      "type": "object",
18551      "x-kubernetes-group-version-kind": [
18552        {
18553          "group": "",
18554          "kind": "DeleteOptions",
18555          "version": "v1"
18556        },
18557        {
18558          "group": "admission.k8s.io",
18559          "kind": "DeleteOptions",
18560          "version": "v1"
18561        },
18562        {
18563          "group": "admission.k8s.io",
18564          "kind": "DeleteOptions",
18565          "version": "v1beta1"
18566        },
18567        {
18568          "group": "admissionregistration.k8s.io",
18569          "kind": "DeleteOptions",
18570          "version": "v1"
18571        },
18572        {
18573          "group": "admissionregistration.k8s.io",
18574          "kind": "DeleteOptions",
18575          "version": "v1beta1"
18576        },
18577        {
18578          "group": "apiextensions.k8s.io",
18579          "kind": "DeleteOptions",
18580          "version": "v1"
18581        },
18582        {
18583          "group": "apiextensions.k8s.io",
18584          "kind": "DeleteOptions",
18585          "version": "v1beta1"
18586        },
18587        {
18588          "group": "apiregistration.k8s.io",
18589          "kind": "DeleteOptions",
18590          "version": "v1"
18591        },
18592        {
18593          "group": "apiregistration.k8s.io",
18594          "kind": "DeleteOptions",
18595          "version": "v1beta1"
18596        },
18597        {
18598          "group": "apps",
18599          "kind": "DeleteOptions",
18600          "version": "v1"
18601        },
18602        {
18603          "group": "apps",
18604          "kind": "DeleteOptions",
18605          "version": "v1beta1"
18606        },
18607        {
18608          "group": "apps",
18609          "kind": "DeleteOptions",
18610          "version": "v1beta2"
18611        },
18612        {
18613          "group": "authentication.k8s.io",
18614          "kind": "DeleteOptions",
18615          "version": "v1"
18616        },
18617        {
18618          "group": "authentication.k8s.io",
18619          "kind": "DeleteOptions",
18620          "version": "v1beta1"
18621        },
18622        {
18623          "group": "authorization.k8s.io",
18624          "kind": "DeleteOptions",
18625          "version": "v1"
18626        },
18627        {
18628          "group": "authorization.k8s.io",
18629          "kind": "DeleteOptions",
18630          "version": "v1beta1"
18631        },
18632        {
18633          "group": "autoscaling",
18634          "kind": "DeleteOptions",
18635          "version": "v1"
18636        },
18637        {
18638          "group": "autoscaling",
18639          "kind": "DeleteOptions",
18640          "version": "v2beta1"
18641        },
18642        {
18643          "group": "autoscaling",
18644          "kind": "DeleteOptions",
18645          "version": "v2beta2"
18646        },
18647        {
18648          "group": "batch",
18649          "kind": "DeleteOptions",
18650          "version": "v1"
18651        },
18652        {
18653          "group": "batch",
18654          "kind": "DeleteOptions",
18655          "version": "v1beta1"
18656        },
18657        {
18658          "group": "certificates.k8s.io",
18659          "kind": "DeleteOptions",
18660          "version": "v1"
18661        },
18662        {
18663          "group": "certificates.k8s.io",
18664          "kind": "DeleteOptions",
18665          "version": "v1beta1"
18666        },
18667        {
18668          "group": "coordination.k8s.io",
18669          "kind": "DeleteOptions",
18670          "version": "v1"
18671        },
18672        {
18673          "group": "coordination.k8s.io",
18674          "kind": "DeleteOptions",
18675          "version": "v1beta1"
18676        },
18677        {
18678          "group": "discovery.k8s.io",
18679          "kind": "DeleteOptions",
18680          "version": "v1alpha1"
18681        },
18682        {
18683          "group": "discovery.k8s.io",
18684          "kind": "DeleteOptions",
18685          "version": "v1beta1"
18686        },
18687        {
18688          "group": "events.k8s.io",
18689          "kind": "DeleteOptions",
18690          "version": "v1"
18691        },
18692        {
18693          "group": "events.k8s.io",
18694          "kind": "DeleteOptions",
18695          "version": "v1beta1"
18696        },
18697        {
18698          "group": "extensions",
18699          "kind": "DeleteOptions",
18700          "version": "v1beta1"
18701        },
18702        {
18703          "group": "flowcontrol.apiserver.k8s.io",
18704          "kind": "DeleteOptions",
18705          "version": "v1alpha1"
18706        },
18707        {
18708          "group": "flowcontrol.apiserver.k8s.io",
18709          "kind": "DeleteOptions",
18710          "version": "v1beta1"
18711        },
18712        {
18713          "group": "imagepolicy.k8s.io",
18714          "kind": "DeleteOptions",
18715          "version": "v1alpha1"
18716        },
18717        {
18718          "group": "internal.apiserver.k8s.io",
18719          "kind": "DeleteOptions",
18720          "version": "v1alpha1"
18721        },
18722        {
18723          "group": "networking.k8s.io",
18724          "kind": "DeleteOptions",
18725          "version": "v1"
18726        },
18727        {
18728          "group": "networking.k8s.io",
18729          "kind": "DeleteOptions",
18730          "version": "v1beta1"
18731        },
18732        {
18733          "group": "node.k8s.io",
18734          "kind": "DeleteOptions",
18735          "version": "v1"
18736        },
18737        {
18738          "group": "node.k8s.io",
18739          "kind": "DeleteOptions",
18740          "version": "v1alpha1"
18741        },
18742        {
18743          "group": "node.k8s.io",
18744          "kind": "DeleteOptions",
18745          "version": "v1beta1"
18746        },
18747        {
18748          "group": "policy",
18749          "kind": "DeleteOptions",
18750          "version": "v1beta1"
18751        },
18752        {
18753          "group": "rbac.authorization.k8s.io",
18754          "kind": "DeleteOptions",
18755          "version": "v1"
18756        },
18757        {
18758          "group": "rbac.authorization.k8s.io",
18759          "kind": "DeleteOptions",
18760          "version": "v1alpha1"
18761        },
18762        {
18763          "group": "rbac.authorization.k8s.io",
18764          "kind": "DeleteOptions",
18765          "version": "v1beta1"
18766        },
18767        {
18768          "group": "scheduling.k8s.io",
18769          "kind": "DeleteOptions",
18770          "version": "v1"
18771        },
18772        {
18773          "group": "scheduling.k8s.io",
18774          "kind": "DeleteOptions",
18775          "version": "v1alpha1"
18776        },
18777        {
18778          "group": "scheduling.k8s.io",
18779          "kind": "DeleteOptions",
18780          "version": "v1beta1"
18781        },
18782        {
18783          "group": "storage.k8s.io",
18784          "kind": "DeleteOptions",
18785          "version": "v1"
18786        },
18787        {
18788          "group": "storage.k8s.io",
18789          "kind": "DeleteOptions",
18790          "version": "v1alpha1"
18791        },
18792        {
18793          "group": "storage.k8s.io",
18794          "kind": "DeleteOptions",
18795          "version": "v1beta1"
18796        }
18797      ]
18798    },
18799    "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
18800      "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",
18801      "type": "object"
18802    },
18803    "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": {
18804      "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.",
18805      "properties": {
18806        "groupVersion": {
18807          "description": "groupVersion specifies the API group and version in the form \"group/version\"",
18808          "type": "string"
18809        },
18810        "version": {
18811          "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
18812          "type": "string"
18813        }
18814      },
18815      "required": [
18816        "groupVersion",
18817        "version"
18818      ],
18819      "type": "object"
18820    },
18821    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
18822      "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.",
18823      "properties": {
18824        "matchExpressions": {
18825          "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
18826          "items": {
18827            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
18828          },
18829          "type": "array"
18830        },
18831        "matchLabels": {
18832          "additionalProperties": {
18833            "type": "string"
18834          },
18835          "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.",
18836          "type": "object"
18837        }
18838      },
18839      "type": "object",
18840      "x-kubernetes-map-type": "atomic"
18841    },
18842    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
18843      "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
18844      "properties": {
18845        "key": {
18846          "description": "key is the label key that the selector applies to.",
18847          "type": "string",
18848          "x-kubernetes-patch-merge-key": "key",
18849          "x-kubernetes-patch-strategy": "merge"
18850        },
18851        "operator": {
18852          "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
18853          "type": "string"
18854        },
18855        "values": {
18856          "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.",
18857          "items": {
18858            "type": "string"
18859          },
18860          "type": "array"
18861        }
18862      },
18863      "required": [
18864        "key",
18865        "operator"
18866      ],
18867      "type": "object"
18868    },
18869    "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
18870      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
18871      "properties": {
18872        "continue": {
18873          "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.",
18874          "type": "string"
18875        },
18876        "remainingItemCount": {
18877          "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.",
18878          "format": "int64",
18879          "type": "integer"
18880        },
18881        "resourceVersion": {
18882          "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",
18883          "type": "string"
18884        },
18885        "selfLink": {
18886          "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.",
18887          "type": "string"
18888        }
18889      },
18890      "type": "object"
18891    },
18892    "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
18893      "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
18894      "properties": {
18895        "apiVersion": {
18896          "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.",
18897          "type": "string"
18898        },
18899        "fieldsType": {
18900          "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
18901          "type": "string"
18902        },
18903        "fieldsV1": {
18904          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1",
18905          "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
18906        },
18907        "manager": {
18908          "description": "Manager is an identifier of the workflow managing these fields.",
18909          "type": "string"
18910        },
18911        "operation": {
18912          "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'.",
18913          "type": "string"
18914        },
18915        "time": {
18916          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18917          "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
18918        }
18919      },
18920      "type": "object"
18921    },
18922    "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": {
18923      "description": "MicroTime is version of Time with microsecond level precision.",
18924      "format": "date-time",
18925      "type": "string"
18926    },
18927    "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
18928      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
18929      "properties": {
18930        "annotations": {
18931          "additionalProperties": {
18932            "type": "string"
18933          },
18934          "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",
18935          "type": "object"
18936        },
18937        "clusterName": {
18938          "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.",
18939          "type": "string"
18940        },
18941        "creationTimestamp": {
18942          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18943          "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"
18944        },
18945        "deletionGracePeriodSeconds": {
18946          "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.",
18947          "format": "int64",
18948          "type": "integer"
18949        },
18950        "deletionTimestamp": {
18951          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18952          "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"
18953        },
18954        "finalizers": {
18955          "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.",
18956          "items": {
18957            "type": "string"
18958          },
18959          "type": "array",
18960          "x-kubernetes-patch-strategy": "merge"
18961        },
18962        "generateName": {
18963          "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",
18964          "type": "string"
18965        },
18966        "generation": {
18967          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
18968          "format": "int64",
18969          "type": "integer"
18970        },
18971        "labels": {
18972          "additionalProperties": {
18973            "type": "string"
18974          },
18975          "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",
18976          "type": "object"
18977        },
18978        "managedFields": {
18979          "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.",
18980          "items": {
18981            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
18982          },
18983          "type": "array"
18984        },
18985        "name": {
18986          "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",
18987          "type": "string"
18988        },
18989        "namespace": {
18990          "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",
18991          "type": "string"
18992        },
18993        "ownerReferences": {
18994          "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.",
18995          "items": {
18996            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
18997          },
18998          "type": "array",
18999          "x-kubernetes-patch-merge-key": "uid",
19000          "x-kubernetes-patch-strategy": "merge"
19001        },
19002        "resourceVersion": {
19003          "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",
19004          "type": "string"
19005        },
19006        "selfLink": {
19007          "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.",
19008          "type": "string"
19009        },
19010        "uid": {
19011          "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",
19012          "type": "string"
19013        }
19014      },
19015      "type": "object"
19016    },
19017    "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
19018      "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.",
19019      "properties": {
19020        "apiVersion": {
19021          "description": "API version of the referent.",
19022          "type": "string"
19023        },
19024        "blockOwnerDeletion": {
19025          "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.",
19026          "type": "boolean"
19027        },
19028        "controller": {
19029          "description": "If true, this reference points to the managing controller.",
19030          "type": "boolean"
19031        },
19032        "kind": {
19033          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19034          "type": "string"
19035        },
19036        "name": {
19037          "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
19038          "type": "string"
19039        },
19040        "uid": {
19041          "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
19042          "type": "string"
19043        }
19044      },
19045      "required": [
19046        "apiVersion",
19047        "kind",
19048        "name",
19049        "uid"
19050      ],
19051      "type": "object"
19052    },
19053    "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
19054      "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
19055      "type": "object"
19056    },
19057    "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
19058      "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
19059      "properties": {
19060        "resourceVersion": {
19061          "description": "Specifies the target ResourceVersion",
19062          "type": "string"
19063        },
19064        "uid": {
19065          "description": "Specifies the target UID.",
19066          "type": "string"
19067        }
19068      },
19069      "type": "object"
19070    },
19071    "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": {
19072      "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
19073      "properties": {
19074        "clientCIDR": {
19075          "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
19076          "type": "string"
19077        },
19078        "serverAddress": {
19079          "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.",
19080          "type": "string"
19081        }
19082      },
19083      "required": [
19084        "clientCIDR",
19085        "serverAddress"
19086      ],
19087      "type": "object"
19088    },
19089    "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
19090      "description": "Status is a return value for calls that don't return other objects.",
19091      "properties": {
19092        "apiVersion": {
19093          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19094          "type": "string"
19095        },
19096        "code": {
19097          "description": "Suggested HTTP return code for this status, 0 if not set.",
19098          "format": "int32",
19099          "type": "integer"
19100        },
19101        "details": {
19102          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails",
19103          "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."
19104        },
19105        "kind": {
19106          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19107          "type": "string"
19108        },
19109        "message": {
19110          "description": "A human-readable description of the status of this operation.",
19111          "type": "string"
19112        },
19113        "metadata": {
19114          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
19115          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
19116        },
19117        "reason": {
19118          "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.",
19119          "type": "string"
19120        },
19121        "status": {
19122          "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",
19123          "type": "string"
19124        }
19125      },
19126      "type": "object",
19127      "x-kubernetes-group-version-kind": [
19128        {
19129          "group": "",
19130          "kind": "Status",
19131          "version": "v1"
19132        }
19133      ]
19134    },
19135    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
19136      "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
19137      "properties": {
19138        "field": {
19139          "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\"",
19140          "type": "string"
19141        },
19142        "message": {
19143          "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
19144          "type": "string"
19145        },
19146        "reason": {
19147          "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
19148          "type": "string"
19149        }
19150      },
19151      "type": "object"
19152    },
19153    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
19154      "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.",
19155      "properties": {
19156        "causes": {
19157          "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
19158          "items": {
19159            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
19160          },
19161          "type": "array"
19162        },
19163        "group": {
19164          "description": "The group attribute of the resource associated with the status StatusReason.",
19165          "type": "string"
19166        },
19167        "kind": {
19168          "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",
19169          "type": "string"
19170        },
19171        "name": {
19172          "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
19173          "type": "string"
19174        },
19175        "retryAfterSeconds": {
19176          "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.",
19177          "format": "int32",
19178          "type": "integer"
19179        },
19180        "uid": {
19181          "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",
19182          "type": "string"
19183        }
19184      },
19185      "type": "object"
19186    },
19187    "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
19188      "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.",
19189      "format": "date-time",
19190      "type": "string"
19191    },
19192    "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
19193      "description": "Event represents a single event to a watched resource.",
19194      "properties": {
19195        "object": {
19196          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
19197          "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."
19198        },
19199        "type": {
19200          "type": "string"
19201        }
19202      },
19203      "required": [
19204        "type",
19205        "object"
19206      ],
19207      "type": "object",
19208      "x-kubernetes-group-version-kind": [
19209        {
19210          "group": "",
19211          "kind": "WatchEvent",
19212          "version": "v1"
19213        },
19214        {
19215          "group": "admission.k8s.io",
19216          "kind": "WatchEvent",
19217          "version": "v1"
19218        },
19219        {
19220          "group": "admission.k8s.io",
19221          "kind": "WatchEvent",
19222          "version": "v1beta1"
19223        },
19224        {
19225          "group": "admissionregistration.k8s.io",
19226          "kind": "WatchEvent",
19227          "version": "v1"
19228        },
19229        {
19230          "group": "admissionregistration.k8s.io",
19231          "kind": "WatchEvent",
19232          "version": "v1beta1"
19233        },
19234        {
19235          "group": "apiextensions.k8s.io",
19236          "kind": "WatchEvent",
19237          "version": "v1"
19238        },
19239        {
19240          "group": "apiextensions.k8s.io",
19241          "kind": "WatchEvent",
19242          "version": "v1beta1"
19243        },
19244        {
19245          "group": "apiregistration.k8s.io",
19246          "kind": "WatchEvent",
19247          "version": "v1"
19248        },
19249        {
19250          "group": "apiregistration.k8s.io",
19251          "kind": "WatchEvent",
19252          "version": "v1beta1"
19253        },
19254        {
19255          "group": "apps",
19256          "kind": "WatchEvent",
19257          "version": "v1"
19258        },
19259        {
19260          "group": "apps",
19261          "kind": "WatchEvent",
19262          "version": "v1beta1"
19263        },
19264        {
19265          "group": "apps",
19266          "kind": "WatchEvent",
19267          "version": "v1beta2"
19268        },
19269        {
19270          "group": "authentication.k8s.io",
19271          "kind": "WatchEvent",
19272          "version": "v1"
19273        },
19274        {
19275          "group": "authentication.k8s.io",
19276          "kind": "WatchEvent",
19277          "version": "v1beta1"
19278        },
19279        {
19280          "group": "authorization.k8s.io",
19281          "kind": "WatchEvent",
19282          "version": "v1"
19283        },
19284        {
19285          "group": "authorization.k8s.io",
19286          "kind": "WatchEvent",
19287          "version": "v1beta1"
19288        },
19289        {
19290          "group": "autoscaling",
19291          "kind": "WatchEvent",
19292          "version": "v1"
19293        },
19294        {
19295          "group": "autoscaling",
19296          "kind": "WatchEvent",
19297          "version": "v2beta1"
19298        },
19299        {
19300          "group": "autoscaling",
19301          "kind": "WatchEvent",
19302          "version": "v2beta2"
19303        },
19304        {
19305          "group": "batch",
19306          "kind": "WatchEvent",
19307          "version": "v1"
19308        },
19309        {
19310          "group": "batch",
19311          "kind": "WatchEvent",
19312          "version": "v1beta1"
19313        },
19314        {
19315          "group": "certificates.k8s.io",
19316          "kind": "WatchEvent",
19317          "version": "v1"
19318        },
19319        {
19320          "group": "certificates.k8s.io",
19321          "kind": "WatchEvent",
19322          "version": "v1beta1"
19323        },
19324        {
19325          "group": "coordination.k8s.io",
19326          "kind": "WatchEvent",
19327          "version": "v1"
19328        },
19329        {
19330          "group": "coordination.k8s.io",
19331          "kind": "WatchEvent",
19332          "version": "v1beta1"
19333        },
19334        {
19335          "group": "discovery.k8s.io",
19336          "kind": "WatchEvent",
19337          "version": "v1alpha1"
19338        },
19339        {
19340          "group": "discovery.k8s.io",
19341          "kind": "WatchEvent",
19342          "version": "v1beta1"
19343        },
19344        {
19345          "group": "events.k8s.io",
19346          "kind": "WatchEvent",
19347          "version": "v1"
19348        },
19349        {
19350          "group": "events.k8s.io",
19351          "kind": "WatchEvent",
19352          "version": "v1beta1"
19353        },
19354        {
19355          "group": "extensions",
19356          "kind": "WatchEvent",
19357          "version": "v1beta1"
19358        },
19359        {
19360          "group": "flowcontrol.apiserver.k8s.io",
19361          "kind": "WatchEvent",
19362          "version": "v1alpha1"
19363        },
19364        {
19365          "group": "flowcontrol.apiserver.k8s.io",
19366          "kind": "WatchEvent",
19367          "version": "v1beta1"
19368        },
19369        {
19370          "group": "imagepolicy.k8s.io",
19371          "kind": "WatchEvent",
19372          "version": "v1alpha1"
19373        },
19374        {
19375          "group": "internal.apiserver.k8s.io",
19376          "kind": "WatchEvent",
19377          "version": "v1alpha1"
19378        },
19379        {
19380          "group": "networking.k8s.io",
19381          "kind": "WatchEvent",
19382          "version": "v1"
19383        },
19384        {
19385          "group": "networking.k8s.io",
19386          "kind": "WatchEvent",
19387          "version": "v1beta1"
19388        },
19389        {
19390          "group": "node.k8s.io",
19391          "kind": "WatchEvent",
19392          "version": "v1"
19393        },
19394        {
19395          "group": "node.k8s.io",
19396          "kind": "WatchEvent",
19397          "version": "v1alpha1"
19398        },
19399        {
19400          "group": "node.k8s.io",
19401          "kind": "WatchEvent",
19402          "version": "v1beta1"
19403        },
19404        {
19405          "group": "policy",
19406          "kind": "WatchEvent",
19407          "version": "v1beta1"
19408        },
19409        {
19410          "group": "rbac.authorization.k8s.io",
19411          "kind": "WatchEvent",
19412          "version": "v1"
19413        },
19414        {
19415          "group": "rbac.authorization.k8s.io",
19416          "kind": "WatchEvent",
19417          "version": "v1alpha1"
19418        },
19419        {
19420          "group": "rbac.authorization.k8s.io",
19421          "kind": "WatchEvent",
19422          "version": "v1beta1"
19423        },
19424        {
19425          "group": "scheduling.k8s.io",
19426          "kind": "WatchEvent",
19427          "version": "v1"
19428        },
19429        {
19430          "group": "scheduling.k8s.io",
19431          "kind": "WatchEvent",
19432          "version": "v1alpha1"
19433        },
19434        {
19435          "group": "scheduling.k8s.io",
19436          "kind": "WatchEvent",
19437          "version": "v1beta1"
19438        },
19439        {
19440          "group": "storage.k8s.io",
19441          "kind": "WatchEvent",
19442          "version": "v1"
19443        },
19444        {
19445          "group": "storage.k8s.io",
19446          "kind": "WatchEvent",
19447          "version": "v1alpha1"
19448        },
19449        {
19450          "group": "storage.k8s.io",
19451          "kind": "WatchEvent",
19452          "version": "v1beta1"
19453        }
19454      ]
19455    },
19456    "io.k8s.apimachinery.pkg.runtime.RawExtension": {
19457      "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.)",
19458      "type": "object"
19459    },
19460    "io.k8s.apimachinery.pkg.util.intstr.IntOrString": {
19461      "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.",
19462      "format": "int-or-string",
19463      "type": "string"
19464    },
19465    "io.k8s.apimachinery.pkg.version.Info": {
19466      "description": "Info contains versioning information. how we'll want to distribute that information.",
19467      "properties": {
19468        "buildDate": {
19469          "type": "string"
19470        },
19471        "compiler": {
19472          "type": "string"
19473        },
19474        "gitCommit": {
19475          "type": "string"
19476        },
19477        "gitTreeState": {
19478          "type": "string"
19479        },
19480        "gitVersion": {
19481          "type": "string"
19482        },
19483        "goVersion": {
19484          "type": "string"
19485        },
19486        "major": {
19487          "type": "string"
19488        },
19489        "minor": {
19490          "type": "string"
19491        },
19492        "platform": {
19493          "type": "string"
19494        }
19495      },
19496      "required": [
19497        "major",
19498        "minor",
19499        "gitVersion",
19500        "gitCommit",
19501        "gitTreeState",
19502        "buildDate",
19503        "goVersion",
19504        "compiler",
19505        "platform"
19506      ],
19507      "type": "object"
19508    },
19509    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": {
19510      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
19511      "properties": {
19512        "apiVersion": {
19513          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19514          "type": "string"
19515        },
19516        "kind": {
19517          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19518          "type": "string"
19519        },
19520        "metadata": {
19521          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
19522        },
19523        "spec": {
19524          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec",
19525          "description": "Spec contains information for locating and communicating with a server"
19526        },
19527        "status": {
19528          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus",
19529          "description": "Status contains derived information about an API server"
19530        }
19531      },
19532      "type": "object",
19533      "x-kubernetes-group-version-kind": [
19534        {
19535          "group": "apiregistration.k8s.io",
19536          "kind": "APIService",
19537          "version": "v1"
19538        }
19539      ]
19540    },
19541    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition": {
19542      "description": "APIServiceCondition describes the state of an APIService at a particular point",
19543      "properties": {
19544        "lastTransitionTime": {
19545          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
19546          "description": "Last time the condition transitioned from one status to another."
19547        },
19548        "message": {
19549          "description": "Human-readable message indicating details about last transition.",
19550          "type": "string"
19551        },
19552        "reason": {
19553          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
19554          "type": "string"
19555        },
19556        "status": {
19557          "description": "Status is the status of the condition. Can be True, False, Unknown.",
19558          "type": "string"
19559        },
19560        "type": {
19561          "description": "Type is the type of the condition.",
19562          "type": "string"
19563        }
19564      },
19565      "required": [
19566        "type",
19567        "status"
19568      ],
19569      "type": "object"
19570    },
19571    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList": {
19572      "description": "APIServiceList is a list of APIService objects.",
19573      "properties": {
19574        "apiVersion": {
19575          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19576          "type": "string"
19577        },
19578        "items": {
19579          "items": {
19580            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
19581          },
19582          "type": "array"
19583        },
19584        "kind": {
19585          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19586          "type": "string"
19587        },
19588        "metadata": {
19589          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
19590        }
19591      },
19592      "required": [
19593        "items"
19594      ],
19595      "type": "object",
19596      "x-kubernetes-group-version-kind": [
19597        {
19598          "group": "apiregistration.k8s.io",
19599          "kind": "APIServiceList",
19600          "version": "v1"
19601        }
19602      ]
19603    },
19604    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
19605      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
19606      "properties": {
19607        "caBundle": {
19608          "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.",
19609          "format": "byte",
19610          "type": "string",
19611          "x-kubernetes-list-type": "atomic"
19612        },
19613        "group": {
19614          "description": "Group is the API group name this server hosts",
19615          "type": "string"
19616        },
19617        "groupPriorityMinimum": {
19618          "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",
19619          "format": "int32",
19620          "type": "integer"
19621        },
19622        "insecureSkipTLSVerify": {
19623          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
19624          "type": "boolean"
19625        },
19626        "service": {
19627          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference",
19628          "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."
19629        },
19630        "version": {
19631          "description": "Version is the API version this server hosts.  For example, \"v1\"",
19632          "type": "string"
19633        },
19634        "versionPriority": {
19635          "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.",
19636          "format": "int32",
19637          "type": "integer"
19638        }
19639      },
19640      "required": [
19641        "groupPriorityMinimum",
19642        "versionPriority"
19643      ],
19644      "type": "object"
19645    },
19646    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus": {
19647      "description": "APIServiceStatus contains derived information about an API server",
19648      "properties": {
19649        "conditions": {
19650          "description": "Current service state of apiService.",
19651          "items": {
19652            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition"
19653          },
19654          "type": "array",
19655          "x-kubernetes-list-map-keys": [
19656            "type"
19657          ],
19658          "x-kubernetes-list-type": "map",
19659          "x-kubernetes-patch-merge-key": "type",
19660          "x-kubernetes-patch-strategy": "merge"
19661        }
19662      },
19663      "type": "object"
19664    },
19665    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference": {
19666      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19667      "properties": {
19668        "name": {
19669          "description": "Name is the name of the service",
19670          "type": "string"
19671        },
19672        "namespace": {
19673          "description": "Namespace is the namespace of the service",
19674          "type": "string"
19675        },
19676        "port": {
19677          "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).",
19678          "format": "int32",
19679          "type": "integer"
19680        }
19681      },
19682      "type": "object"
19683    },
19684    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService": {
19685      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
19686      "properties": {
19687        "apiVersion": {
19688          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19689          "type": "string"
19690        },
19691        "kind": {
19692          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19693          "type": "string"
19694        },
19695        "metadata": {
19696          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
19697        },
19698        "spec": {
19699          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec",
19700          "description": "Spec contains information for locating and communicating with a server"
19701        },
19702        "status": {
19703          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus",
19704          "description": "Status contains derived information about an API server"
19705        }
19706      },
19707      "type": "object",
19708      "x-kubernetes-group-version-kind": [
19709        {
19710          "group": "apiregistration.k8s.io",
19711          "kind": "APIService",
19712          "version": "v1beta1"
19713        }
19714      ]
19715    },
19716    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition": {
19717      "description": "APIServiceCondition describes the state of an APIService at a particular point",
19718      "properties": {
19719        "lastTransitionTime": {
19720          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
19721          "description": "Last time the condition transitioned from one status to another."
19722        },
19723        "message": {
19724          "description": "Human-readable message indicating details about last transition.",
19725          "type": "string"
19726        },
19727        "reason": {
19728          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
19729          "type": "string"
19730        },
19731        "status": {
19732          "description": "Status is the status of the condition. Can be True, False, Unknown.",
19733          "type": "string"
19734        },
19735        "type": {
19736          "description": "Type is the type of the condition.",
19737          "type": "string"
19738        }
19739      },
19740      "required": [
19741        "type",
19742        "status"
19743      ],
19744      "type": "object"
19745    },
19746    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList": {
19747      "description": "APIServiceList is a list of APIService objects.",
19748      "properties": {
19749        "apiVersion": {
19750          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
19751          "type": "string"
19752        },
19753        "items": {
19754          "items": {
19755            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
19756          },
19757          "type": "array"
19758        },
19759        "kind": {
19760          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
19761          "type": "string"
19762        },
19763        "metadata": {
19764          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
19765        }
19766      },
19767      "required": [
19768        "items"
19769      ],
19770      "type": "object",
19771      "x-kubernetes-group-version-kind": [
19772        {
19773          "group": "apiregistration.k8s.io",
19774          "kind": "APIServiceList",
19775          "version": "v1beta1"
19776        }
19777      ]
19778    },
19779    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec": {
19780      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
19781      "properties": {
19782        "caBundle": {
19783          "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.",
19784          "format": "byte",
19785          "type": "string",
19786          "x-kubernetes-list-type": "atomic"
19787        },
19788        "group": {
19789          "description": "Group is the API group name this server hosts",
19790          "type": "string"
19791        },
19792        "groupPriorityMinimum": {
19793          "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",
19794          "format": "int32",
19795          "type": "integer"
19796        },
19797        "insecureSkipTLSVerify": {
19798          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
19799          "type": "boolean"
19800        },
19801        "service": {
19802          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference",
19803          "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."
19804        },
19805        "version": {
19806          "description": "Version is the API version this server hosts.  For example, \"v1\"",
19807          "type": "string"
19808        },
19809        "versionPriority": {
19810          "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.",
19811          "format": "int32",
19812          "type": "integer"
19813        }
19814      },
19815      "required": [
19816        "groupPriorityMinimum",
19817        "versionPriority"
19818      ],
19819      "type": "object"
19820    },
19821    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": {
19822      "description": "APIServiceStatus contains derived information about an API server",
19823      "properties": {
19824        "conditions": {
19825          "description": "Current service state of apiService.",
19826          "items": {
19827            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition"
19828          },
19829          "type": "array",
19830          "x-kubernetes-list-map-keys": [
19831            "type"
19832          ],
19833          "x-kubernetes-list-type": "map",
19834          "x-kubernetes-patch-merge-key": "type",
19835          "x-kubernetes-patch-strategy": "merge"
19836        }
19837      },
19838      "type": "object"
19839    },
19840    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference": {
19841      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19842      "properties": {
19843        "name": {
19844          "description": "Name is the name of the service",
19845          "type": "string"
19846        },
19847        "namespace": {
19848          "description": "Namespace is the namespace of the service",
19849          "type": "string"
19850        },
19851        "port": {
19852          "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).",
19853          "format": "int32",
19854          "type": "integer"
19855        }
19856      },
19857      "type": "object"
19858    }
19859  },
19860  "info": {
19861    "title": "Kubernetes",
19862    "version": "unversioned"
19863  },
19864  "paths": {
19865    "/.well-known/openid-configuration/": {
19866      "get": {
19867        "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'",
19868        "operationId": "getServiceAccountIssuerOpenIDConfiguration",
19869        "produces": [
19870          "application/json"
19871        ],
19872        "responses": {
19873          "200": {
19874            "description": "OK",
19875            "schema": {
19876              "type": "string"
19877            }
19878          },
19879          "401": {
19880            "description": "Unauthorized"
19881          }
19882        },
19883        "schemes": [
19884          "https"
19885        ],
19886        "tags": [
19887          "WellKnown"
19888        ]
19889      }
19890    },
19891    "/api/": {
19892      "get": {
19893        "consumes": [
19894          "application/json",
19895          "application/yaml",
19896          "application/vnd.kubernetes.protobuf"
19897        ],
19898        "description": "get available API versions",
19899        "operationId": "getCoreAPIVersions",
19900        "produces": [
19901          "application/json",
19902          "application/yaml",
19903          "application/vnd.kubernetes.protobuf"
19904        ],
19905        "responses": {
19906          "200": {
19907            "description": "OK",
19908            "schema": {
19909              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions"
19910            }
19911          },
19912          "401": {
19913            "description": "Unauthorized"
19914          }
19915        },
19916        "schemes": [
19917          "https"
19918        ],
19919        "tags": [
19920          "core"
19921        ]
19922      }
19923    },
19924    "/api/v1/": {
19925      "get": {
19926        "consumes": [
19927          "application/json",
19928          "application/yaml",
19929          "application/vnd.kubernetes.protobuf"
19930        ],
19931        "description": "get available resources",
19932        "operationId": "getCoreV1APIResources",
19933        "produces": [
19934          "application/json",
19935          "application/yaml",
19936          "application/vnd.kubernetes.protobuf"
19937        ],
19938        "responses": {
19939          "200": {
19940            "description": "OK",
19941            "schema": {
19942              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
19943            }
19944          },
19945          "401": {
19946            "description": "Unauthorized"
19947          }
19948        },
19949        "schemes": [
19950          "https"
19951        ],
19952        "tags": [
19953          "core_v1"
19954        ]
19955      }
19956    },
19957    "/api/v1/componentstatuses": {
19958      "get": {
19959        "consumes": [
19960          "*/*"
19961        ],
19962        "description": "list objects of kind ComponentStatus",
19963        "operationId": "listCoreV1ComponentStatus",
19964        "produces": [
19965          "application/json",
19966          "application/yaml",
19967          "application/vnd.kubernetes.protobuf",
19968          "application/json;stream=watch",
19969          "application/vnd.kubernetes.protobuf;stream=watch"
19970        ],
19971        "responses": {
19972          "200": {
19973            "description": "OK",
19974            "schema": {
19975              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatusList"
19976            }
19977          },
19978          "401": {
19979            "description": "Unauthorized"
19980          }
19981        },
19982        "schemes": [
19983          "https"
19984        ],
19985        "tags": [
19986          "core_v1"
19987        ],
19988        "x-kubernetes-action": "list",
19989        "x-kubernetes-group-version-kind": {
19990          "group": "",
19991          "kind": "ComponentStatus",
19992          "version": "v1"
19993        }
19994      },
19995      "parameters": [
19996        {
19997          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
19998          "in": "query",
19999          "name": "allowWatchBookmarks",
20000          "type": "boolean",
20001          "uniqueItems": true
20002        },
20003        {
20004          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20005          "in": "query",
20006          "name": "continue",
20007          "type": "string",
20008          "uniqueItems": true
20009        },
20010        {
20011          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20012          "in": "query",
20013          "name": "fieldSelector",
20014          "type": "string",
20015          "uniqueItems": true
20016        },
20017        {
20018          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20019          "in": "query",
20020          "name": "labelSelector",
20021          "type": "string",
20022          "uniqueItems": true
20023        },
20024        {
20025          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20026          "in": "query",
20027          "name": "limit",
20028          "type": "integer",
20029          "uniqueItems": true
20030        },
20031        {
20032          "description": "If 'true', then the output is pretty printed.",
20033          "in": "query",
20034          "name": "pretty",
20035          "type": "string",
20036          "uniqueItems": true
20037        },
20038        {
20039          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20040          "in": "query",
20041          "name": "resourceVersion",
20042          "type": "string",
20043          "uniqueItems": true
20044        },
20045        {
20046          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20047          "in": "query",
20048          "name": "resourceVersionMatch",
20049          "type": "string",
20050          "uniqueItems": true
20051        },
20052        {
20053          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20054          "in": "query",
20055          "name": "timeoutSeconds",
20056          "type": "integer",
20057          "uniqueItems": true
20058        },
20059        {
20060          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20061          "in": "query",
20062          "name": "watch",
20063          "type": "boolean",
20064          "uniqueItems": true
20065        }
20066      ]
20067    },
20068    "/api/v1/componentstatuses/{name}": {
20069      "get": {
20070        "consumes": [
20071          "*/*"
20072        ],
20073        "description": "read the specified ComponentStatus",
20074        "operationId": "readCoreV1ComponentStatus",
20075        "produces": [
20076          "application/json",
20077          "application/yaml",
20078          "application/vnd.kubernetes.protobuf"
20079        ],
20080        "responses": {
20081          "200": {
20082            "description": "OK",
20083            "schema": {
20084              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
20085            }
20086          },
20087          "401": {
20088            "description": "Unauthorized"
20089          }
20090        },
20091        "schemes": [
20092          "https"
20093        ],
20094        "tags": [
20095          "core_v1"
20096        ],
20097        "x-kubernetes-action": "get",
20098        "x-kubernetes-group-version-kind": {
20099          "group": "",
20100          "kind": "ComponentStatus",
20101          "version": "v1"
20102        }
20103      },
20104      "parameters": [
20105        {
20106          "description": "name of the ComponentStatus",
20107          "in": "path",
20108          "name": "name",
20109          "required": true,
20110          "type": "string",
20111          "uniqueItems": true
20112        },
20113        {
20114          "description": "If 'true', then the output is pretty printed.",
20115          "in": "query",
20116          "name": "pretty",
20117          "type": "string",
20118          "uniqueItems": true
20119        }
20120      ]
20121    },
20122    "/api/v1/configmaps": {
20123      "get": {
20124        "consumes": [
20125          "*/*"
20126        ],
20127        "description": "list or watch objects of kind ConfigMap",
20128        "operationId": "listCoreV1ConfigMapForAllNamespaces",
20129        "produces": [
20130          "application/json",
20131          "application/yaml",
20132          "application/vnd.kubernetes.protobuf",
20133          "application/json;stream=watch",
20134          "application/vnd.kubernetes.protobuf;stream=watch"
20135        ],
20136        "responses": {
20137          "200": {
20138            "description": "OK",
20139            "schema": {
20140              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
20141            }
20142          },
20143          "401": {
20144            "description": "Unauthorized"
20145          }
20146        },
20147        "schemes": [
20148          "https"
20149        ],
20150        "tags": [
20151          "core_v1"
20152        ],
20153        "x-kubernetes-action": "list",
20154        "x-kubernetes-group-version-kind": {
20155          "group": "",
20156          "kind": "ConfigMap",
20157          "version": "v1"
20158        }
20159      },
20160      "parameters": [
20161        {
20162          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20163          "in": "query",
20164          "name": "allowWatchBookmarks",
20165          "type": "boolean",
20166          "uniqueItems": true
20167        },
20168        {
20169          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20170          "in": "query",
20171          "name": "continue",
20172          "type": "string",
20173          "uniqueItems": true
20174        },
20175        {
20176          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20177          "in": "query",
20178          "name": "fieldSelector",
20179          "type": "string",
20180          "uniqueItems": true
20181        },
20182        {
20183          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20184          "in": "query",
20185          "name": "labelSelector",
20186          "type": "string",
20187          "uniqueItems": true
20188        },
20189        {
20190          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20191          "in": "query",
20192          "name": "limit",
20193          "type": "integer",
20194          "uniqueItems": true
20195        },
20196        {
20197          "description": "If 'true', then the output is pretty printed.",
20198          "in": "query",
20199          "name": "pretty",
20200          "type": "string",
20201          "uniqueItems": true
20202        },
20203        {
20204          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20205          "in": "query",
20206          "name": "resourceVersion",
20207          "type": "string",
20208          "uniqueItems": true
20209        },
20210        {
20211          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20212          "in": "query",
20213          "name": "resourceVersionMatch",
20214          "type": "string",
20215          "uniqueItems": true
20216        },
20217        {
20218          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20219          "in": "query",
20220          "name": "timeoutSeconds",
20221          "type": "integer",
20222          "uniqueItems": true
20223        },
20224        {
20225          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20226          "in": "query",
20227          "name": "watch",
20228          "type": "boolean",
20229          "uniqueItems": true
20230        }
20231      ]
20232    },
20233    "/api/v1/endpoints": {
20234      "get": {
20235        "consumes": [
20236          "*/*"
20237        ],
20238        "description": "list or watch objects of kind Endpoints",
20239        "operationId": "listCoreV1EndpointsForAllNamespaces",
20240        "produces": [
20241          "application/json",
20242          "application/yaml",
20243          "application/vnd.kubernetes.protobuf",
20244          "application/json;stream=watch",
20245          "application/vnd.kubernetes.protobuf;stream=watch"
20246        ],
20247        "responses": {
20248          "200": {
20249            "description": "OK",
20250            "schema": {
20251              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
20252            }
20253          },
20254          "401": {
20255            "description": "Unauthorized"
20256          }
20257        },
20258        "schemes": [
20259          "https"
20260        ],
20261        "tags": [
20262          "core_v1"
20263        ],
20264        "x-kubernetes-action": "list",
20265        "x-kubernetes-group-version-kind": {
20266          "group": "",
20267          "kind": "Endpoints",
20268          "version": "v1"
20269        }
20270      },
20271      "parameters": [
20272        {
20273          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20274          "in": "query",
20275          "name": "allowWatchBookmarks",
20276          "type": "boolean",
20277          "uniqueItems": true
20278        },
20279        {
20280          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20281          "in": "query",
20282          "name": "continue",
20283          "type": "string",
20284          "uniqueItems": true
20285        },
20286        {
20287          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20288          "in": "query",
20289          "name": "fieldSelector",
20290          "type": "string",
20291          "uniqueItems": true
20292        },
20293        {
20294          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20295          "in": "query",
20296          "name": "labelSelector",
20297          "type": "string",
20298          "uniqueItems": true
20299        },
20300        {
20301          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20302          "in": "query",
20303          "name": "limit",
20304          "type": "integer",
20305          "uniqueItems": true
20306        },
20307        {
20308          "description": "If 'true', then the output is pretty printed.",
20309          "in": "query",
20310          "name": "pretty",
20311          "type": "string",
20312          "uniqueItems": true
20313        },
20314        {
20315          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20316          "in": "query",
20317          "name": "resourceVersion",
20318          "type": "string",
20319          "uniqueItems": true
20320        },
20321        {
20322          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20323          "in": "query",
20324          "name": "resourceVersionMatch",
20325          "type": "string",
20326          "uniqueItems": true
20327        },
20328        {
20329          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20330          "in": "query",
20331          "name": "timeoutSeconds",
20332          "type": "integer",
20333          "uniqueItems": true
20334        },
20335        {
20336          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20337          "in": "query",
20338          "name": "watch",
20339          "type": "boolean",
20340          "uniqueItems": true
20341        }
20342      ]
20343    },
20344    "/api/v1/events": {
20345      "get": {
20346        "consumes": [
20347          "*/*"
20348        ],
20349        "description": "list or watch objects of kind Event",
20350        "operationId": "listCoreV1EventForAllNamespaces",
20351        "produces": [
20352          "application/json",
20353          "application/yaml",
20354          "application/vnd.kubernetes.protobuf",
20355          "application/json;stream=watch",
20356          "application/vnd.kubernetes.protobuf;stream=watch"
20357        ],
20358        "responses": {
20359          "200": {
20360            "description": "OK",
20361            "schema": {
20362              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
20363            }
20364          },
20365          "401": {
20366            "description": "Unauthorized"
20367          }
20368        },
20369        "schemes": [
20370          "https"
20371        ],
20372        "tags": [
20373          "core_v1"
20374        ],
20375        "x-kubernetes-action": "list",
20376        "x-kubernetes-group-version-kind": {
20377          "group": "",
20378          "kind": "Event",
20379          "version": "v1"
20380        }
20381      },
20382      "parameters": [
20383        {
20384          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20385          "in": "query",
20386          "name": "allowWatchBookmarks",
20387          "type": "boolean",
20388          "uniqueItems": true
20389        },
20390        {
20391          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20392          "in": "query",
20393          "name": "continue",
20394          "type": "string",
20395          "uniqueItems": true
20396        },
20397        {
20398          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20399          "in": "query",
20400          "name": "fieldSelector",
20401          "type": "string",
20402          "uniqueItems": true
20403        },
20404        {
20405          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20406          "in": "query",
20407          "name": "labelSelector",
20408          "type": "string",
20409          "uniqueItems": true
20410        },
20411        {
20412          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20413          "in": "query",
20414          "name": "limit",
20415          "type": "integer",
20416          "uniqueItems": true
20417        },
20418        {
20419          "description": "If 'true', then the output is pretty printed.",
20420          "in": "query",
20421          "name": "pretty",
20422          "type": "string",
20423          "uniqueItems": true
20424        },
20425        {
20426          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20427          "in": "query",
20428          "name": "resourceVersion",
20429          "type": "string",
20430          "uniqueItems": true
20431        },
20432        {
20433          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20434          "in": "query",
20435          "name": "resourceVersionMatch",
20436          "type": "string",
20437          "uniqueItems": true
20438        },
20439        {
20440          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20441          "in": "query",
20442          "name": "timeoutSeconds",
20443          "type": "integer",
20444          "uniqueItems": true
20445        },
20446        {
20447          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20448          "in": "query",
20449          "name": "watch",
20450          "type": "boolean",
20451          "uniqueItems": true
20452        }
20453      ]
20454    },
20455    "/api/v1/limitranges": {
20456      "get": {
20457        "consumes": [
20458          "*/*"
20459        ],
20460        "description": "list or watch objects of kind LimitRange",
20461        "operationId": "listCoreV1LimitRangeForAllNamespaces",
20462        "produces": [
20463          "application/json",
20464          "application/yaml",
20465          "application/vnd.kubernetes.protobuf",
20466          "application/json;stream=watch",
20467          "application/vnd.kubernetes.protobuf;stream=watch"
20468        ],
20469        "responses": {
20470          "200": {
20471            "description": "OK",
20472            "schema": {
20473              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
20474            }
20475          },
20476          "401": {
20477            "description": "Unauthorized"
20478          }
20479        },
20480        "schemes": [
20481          "https"
20482        ],
20483        "tags": [
20484          "core_v1"
20485        ],
20486        "x-kubernetes-action": "list",
20487        "x-kubernetes-group-version-kind": {
20488          "group": "",
20489          "kind": "LimitRange",
20490          "version": "v1"
20491        }
20492      },
20493      "parameters": [
20494        {
20495          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20496          "in": "query",
20497          "name": "allowWatchBookmarks",
20498          "type": "boolean",
20499          "uniqueItems": true
20500        },
20501        {
20502          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20503          "in": "query",
20504          "name": "continue",
20505          "type": "string",
20506          "uniqueItems": true
20507        },
20508        {
20509          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20510          "in": "query",
20511          "name": "fieldSelector",
20512          "type": "string",
20513          "uniqueItems": true
20514        },
20515        {
20516          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20517          "in": "query",
20518          "name": "labelSelector",
20519          "type": "string",
20520          "uniqueItems": true
20521        },
20522        {
20523          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20524          "in": "query",
20525          "name": "limit",
20526          "type": "integer",
20527          "uniqueItems": true
20528        },
20529        {
20530          "description": "If 'true', then the output is pretty printed.",
20531          "in": "query",
20532          "name": "pretty",
20533          "type": "string",
20534          "uniqueItems": true
20535        },
20536        {
20537          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20538          "in": "query",
20539          "name": "resourceVersion",
20540          "type": "string",
20541          "uniqueItems": true
20542        },
20543        {
20544          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20545          "in": "query",
20546          "name": "resourceVersionMatch",
20547          "type": "string",
20548          "uniqueItems": true
20549        },
20550        {
20551          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20552          "in": "query",
20553          "name": "timeoutSeconds",
20554          "type": "integer",
20555          "uniqueItems": true
20556        },
20557        {
20558          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20559          "in": "query",
20560          "name": "watch",
20561          "type": "boolean",
20562          "uniqueItems": true
20563        }
20564      ]
20565    },
20566    "/api/v1/namespaces": {
20567      "get": {
20568        "consumes": [
20569          "*/*"
20570        ],
20571        "description": "list or watch objects of kind Namespace",
20572        "operationId": "listCoreV1Namespace",
20573        "parameters": [
20574          {
20575            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20576            "in": "query",
20577            "name": "allowWatchBookmarks",
20578            "type": "boolean",
20579            "uniqueItems": true
20580          },
20581          {
20582            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20583            "in": "query",
20584            "name": "continue",
20585            "type": "string",
20586            "uniqueItems": true
20587          },
20588          {
20589            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20590            "in": "query",
20591            "name": "fieldSelector",
20592            "type": "string",
20593            "uniqueItems": true
20594          },
20595          {
20596            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20597            "in": "query",
20598            "name": "labelSelector",
20599            "type": "string",
20600            "uniqueItems": true
20601          },
20602          {
20603            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20604            "in": "query",
20605            "name": "limit",
20606            "type": "integer",
20607            "uniqueItems": true
20608          },
20609          {
20610            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20611            "in": "query",
20612            "name": "resourceVersion",
20613            "type": "string",
20614            "uniqueItems": true
20615          },
20616          {
20617            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20618            "in": "query",
20619            "name": "resourceVersionMatch",
20620            "type": "string",
20621            "uniqueItems": true
20622          },
20623          {
20624            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20625            "in": "query",
20626            "name": "timeoutSeconds",
20627            "type": "integer",
20628            "uniqueItems": true
20629          },
20630          {
20631            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20632            "in": "query",
20633            "name": "watch",
20634            "type": "boolean",
20635            "uniqueItems": true
20636          }
20637        ],
20638        "produces": [
20639          "application/json",
20640          "application/yaml",
20641          "application/vnd.kubernetes.protobuf",
20642          "application/json;stream=watch",
20643          "application/vnd.kubernetes.protobuf;stream=watch"
20644        ],
20645        "responses": {
20646          "200": {
20647            "description": "OK",
20648            "schema": {
20649              "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceList"
20650            }
20651          },
20652          "401": {
20653            "description": "Unauthorized"
20654          }
20655        },
20656        "schemes": [
20657          "https"
20658        ],
20659        "tags": [
20660          "core_v1"
20661        ],
20662        "x-kubernetes-action": "list",
20663        "x-kubernetes-group-version-kind": {
20664          "group": "",
20665          "kind": "Namespace",
20666          "version": "v1"
20667        }
20668      },
20669      "parameters": [
20670        {
20671          "description": "If 'true', then the output is pretty printed.",
20672          "in": "query",
20673          "name": "pretty",
20674          "type": "string",
20675          "uniqueItems": true
20676        }
20677      ],
20678      "post": {
20679        "consumes": [
20680          "*/*"
20681        ],
20682        "description": "create a Namespace",
20683        "operationId": "createCoreV1Namespace",
20684        "parameters": [
20685          {
20686            "in": "body",
20687            "name": "body",
20688            "required": true,
20689            "schema": {
20690              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20691            }
20692          },
20693          {
20694            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20695            "in": "query",
20696            "name": "dryRun",
20697            "type": "string",
20698            "uniqueItems": true
20699          },
20700          {
20701            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20702            "in": "query",
20703            "name": "fieldManager",
20704            "type": "string",
20705            "uniqueItems": true
20706          }
20707        ],
20708        "produces": [
20709          "application/json",
20710          "application/yaml",
20711          "application/vnd.kubernetes.protobuf"
20712        ],
20713        "responses": {
20714          "200": {
20715            "description": "OK",
20716            "schema": {
20717              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20718            }
20719          },
20720          "201": {
20721            "description": "Created",
20722            "schema": {
20723              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20724            }
20725          },
20726          "202": {
20727            "description": "Accepted",
20728            "schema": {
20729              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20730            }
20731          },
20732          "401": {
20733            "description": "Unauthorized"
20734          }
20735        },
20736        "schemes": [
20737          "https"
20738        ],
20739        "tags": [
20740          "core_v1"
20741        ],
20742        "x-kubernetes-action": "post",
20743        "x-kubernetes-group-version-kind": {
20744          "group": "",
20745          "kind": "Namespace",
20746          "version": "v1"
20747        }
20748      }
20749    },
20750    "/api/v1/namespaces/{namespace}/bindings": {
20751      "parameters": [
20752        {
20753          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20754          "in": "query",
20755          "name": "dryRun",
20756          "type": "string",
20757          "uniqueItems": true
20758        },
20759        {
20760          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20761          "in": "query",
20762          "name": "fieldManager",
20763          "type": "string",
20764          "uniqueItems": true
20765        },
20766        {
20767          "description": "object name and auth scope, such as for teams and projects",
20768          "in": "path",
20769          "name": "namespace",
20770          "required": true,
20771          "type": "string",
20772          "uniqueItems": true
20773        },
20774        {
20775          "description": "If 'true', then the output is pretty printed.",
20776          "in": "query",
20777          "name": "pretty",
20778          "type": "string",
20779          "uniqueItems": true
20780        }
20781      ],
20782      "post": {
20783        "consumes": [
20784          "*/*"
20785        ],
20786        "description": "create a Binding",
20787        "operationId": "createCoreV1NamespacedBinding",
20788        "parameters": [
20789          {
20790            "in": "body",
20791            "name": "body",
20792            "required": true,
20793            "schema": {
20794              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20795            }
20796          }
20797        ],
20798        "produces": [
20799          "application/json",
20800          "application/yaml",
20801          "application/vnd.kubernetes.protobuf"
20802        ],
20803        "responses": {
20804          "200": {
20805            "description": "OK",
20806            "schema": {
20807              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20808            }
20809          },
20810          "201": {
20811            "description": "Created",
20812            "schema": {
20813              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20814            }
20815          },
20816          "202": {
20817            "description": "Accepted",
20818            "schema": {
20819              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20820            }
20821          },
20822          "401": {
20823            "description": "Unauthorized"
20824          }
20825        },
20826        "schemes": [
20827          "https"
20828        ],
20829        "tags": [
20830          "core_v1"
20831        ],
20832        "x-kubernetes-action": "post",
20833        "x-kubernetes-group-version-kind": {
20834          "group": "",
20835          "kind": "Binding",
20836          "version": "v1"
20837        }
20838      }
20839    },
20840    "/api/v1/namespaces/{namespace}/configmaps": {
20841      "delete": {
20842        "consumes": [
20843          "*/*"
20844        ],
20845        "description": "delete collection of ConfigMap",
20846        "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
20847        "parameters": [
20848          {
20849            "in": "body",
20850            "name": "body",
20851            "schema": {
20852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20853            }
20854          },
20855          {
20856            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20857            "in": "query",
20858            "name": "continue",
20859            "type": "string",
20860            "uniqueItems": true
20861          },
20862          {
20863            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20864            "in": "query",
20865            "name": "dryRun",
20866            "type": "string",
20867            "uniqueItems": true
20868          },
20869          {
20870            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20871            "in": "query",
20872            "name": "fieldSelector",
20873            "type": "string",
20874            "uniqueItems": true
20875          },
20876          {
20877            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20878            "in": "query",
20879            "name": "gracePeriodSeconds",
20880            "type": "integer",
20881            "uniqueItems": true
20882          },
20883          {
20884            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20885            "in": "query",
20886            "name": "labelSelector",
20887            "type": "string",
20888            "uniqueItems": true
20889          },
20890          {
20891            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20892            "in": "query",
20893            "name": "limit",
20894            "type": "integer",
20895            "uniqueItems": true
20896          },
20897          {
20898            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20899            "in": "query",
20900            "name": "orphanDependents",
20901            "type": "boolean",
20902            "uniqueItems": true
20903          },
20904          {
20905            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20906            "in": "query",
20907            "name": "propagationPolicy",
20908            "type": "string",
20909            "uniqueItems": true
20910          },
20911          {
20912            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20913            "in": "query",
20914            "name": "resourceVersion",
20915            "type": "string",
20916            "uniqueItems": true
20917          },
20918          {
20919            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20920            "in": "query",
20921            "name": "resourceVersionMatch",
20922            "type": "string",
20923            "uniqueItems": true
20924          },
20925          {
20926            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20927            "in": "query",
20928            "name": "timeoutSeconds",
20929            "type": "integer",
20930            "uniqueItems": true
20931          }
20932        ],
20933        "produces": [
20934          "application/json",
20935          "application/yaml",
20936          "application/vnd.kubernetes.protobuf"
20937        ],
20938        "responses": {
20939          "200": {
20940            "description": "OK",
20941            "schema": {
20942              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20943            }
20944          },
20945          "401": {
20946            "description": "Unauthorized"
20947          }
20948        },
20949        "schemes": [
20950          "https"
20951        ],
20952        "tags": [
20953          "core_v1"
20954        ],
20955        "x-kubernetes-action": "deletecollection",
20956        "x-kubernetes-group-version-kind": {
20957          "group": "",
20958          "kind": "ConfigMap",
20959          "version": "v1"
20960        }
20961      },
20962      "get": {
20963        "consumes": [
20964          "*/*"
20965        ],
20966        "description": "list or watch objects of kind ConfigMap",
20967        "operationId": "listCoreV1NamespacedConfigMap",
20968        "parameters": [
20969          {
20970            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
20971            "in": "query",
20972            "name": "allowWatchBookmarks",
20973            "type": "boolean",
20974            "uniqueItems": true
20975          },
20976          {
20977            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20978            "in": "query",
20979            "name": "continue",
20980            "type": "string",
20981            "uniqueItems": true
20982          },
20983          {
20984            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20985            "in": "query",
20986            "name": "fieldSelector",
20987            "type": "string",
20988            "uniqueItems": true
20989          },
20990          {
20991            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20992            "in": "query",
20993            "name": "labelSelector",
20994            "type": "string",
20995            "uniqueItems": true
20996          },
20997          {
20998            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20999            "in": "query",
21000            "name": "limit",
21001            "type": "integer",
21002            "uniqueItems": true
21003          },
21004          {
21005            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21006            "in": "query",
21007            "name": "resourceVersion",
21008            "type": "string",
21009            "uniqueItems": true
21010          },
21011          {
21012            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21013            "in": "query",
21014            "name": "resourceVersionMatch",
21015            "type": "string",
21016            "uniqueItems": true
21017          },
21018          {
21019            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21020            "in": "query",
21021            "name": "timeoutSeconds",
21022            "type": "integer",
21023            "uniqueItems": true
21024          },
21025          {
21026            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21027            "in": "query",
21028            "name": "watch",
21029            "type": "boolean",
21030            "uniqueItems": true
21031          }
21032        ],
21033        "produces": [
21034          "application/json",
21035          "application/yaml",
21036          "application/vnd.kubernetes.protobuf",
21037          "application/json;stream=watch",
21038          "application/vnd.kubernetes.protobuf;stream=watch"
21039        ],
21040        "responses": {
21041          "200": {
21042            "description": "OK",
21043            "schema": {
21044              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
21045            }
21046          },
21047          "401": {
21048            "description": "Unauthorized"
21049          }
21050        },
21051        "schemes": [
21052          "https"
21053        ],
21054        "tags": [
21055          "core_v1"
21056        ],
21057        "x-kubernetes-action": "list",
21058        "x-kubernetes-group-version-kind": {
21059          "group": "",
21060          "kind": "ConfigMap",
21061          "version": "v1"
21062        }
21063      },
21064      "parameters": [
21065        {
21066          "description": "object name and auth scope, such as for teams and projects",
21067          "in": "path",
21068          "name": "namespace",
21069          "required": true,
21070          "type": "string",
21071          "uniqueItems": true
21072        },
21073        {
21074          "description": "If 'true', then the output is pretty printed.",
21075          "in": "query",
21076          "name": "pretty",
21077          "type": "string",
21078          "uniqueItems": true
21079        }
21080      ],
21081      "post": {
21082        "consumes": [
21083          "*/*"
21084        ],
21085        "description": "create a ConfigMap",
21086        "operationId": "createCoreV1NamespacedConfigMap",
21087        "parameters": [
21088          {
21089            "in": "body",
21090            "name": "body",
21091            "required": true,
21092            "schema": {
21093              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21094            }
21095          },
21096          {
21097            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21098            "in": "query",
21099            "name": "dryRun",
21100            "type": "string",
21101            "uniqueItems": true
21102          },
21103          {
21104            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21105            "in": "query",
21106            "name": "fieldManager",
21107            "type": "string",
21108            "uniqueItems": true
21109          }
21110        ],
21111        "produces": [
21112          "application/json",
21113          "application/yaml",
21114          "application/vnd.kubernetes.protobuf"
21115        ],
21116        "responses": {
21117          "200": {
21118            "description": "OK",
21119            "schema": {
21120              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21121            }
21122          },
21123          "201": {
21124            "description": "Created",
21125            "schema": {
21126              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21127            }
21128          },
21129          "202": {
21130            "description": "Accepted",
21131            "schema": {
21132              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21133            }
21134          },
21135          "401": {
21136            "description": "Unauthorized"
21137          }
21138        },
21139        "schemes": [
21140          "https"
21141        ],
21142        "tags": [
21143          "core_v1"
21144        ],
21145        "x-kubernetes-action": "post",
21146        "x-kubernetes-group-version-kind": {
21147          "group": "",
21148          "kind": "ConfigMap",
21149          "version": "v1"
21150        }
21151      }
21152    },
21153    "/api/v1/namespaces/{namespace}/configmaps/{name}": {
21154      "delete": {
21155        "consumes": [
21156          "*/*"
21157        ],
21158        "description": "delete a ConfigMap",
21159        "operationId": "deleteCoreV1NamespacedConfigMap",
21160        "parameters": [
21161          {
21162            "in": "body",
21163            "name": "body",
21164            "schema": {
21165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21166            }
21167          },
21168          {
21169            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21170            "in": "query",
21171            "name": "dryRun",
21172            "type": "string",
21173            "uniqueItems": true
21174          },
21175          {
21176            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21177            "in": "query",
21178            "name": "gracePeriodSeconds",
21179            "type": "integer",
21180            "uniqueItems": true
21181          },
21182          {
21183            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21184            "in": "query",
21185            "name": "orphanDependents",
21186            "type": "boolean",
21187            "uniqueItems": true
21188          },
21189          {
21190            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21191            "in": "query",
21192            "name": "propagationPolicy",
21193            "type": "string",
21194            "uniqueItems": true
21195          }
21196        ],
21197        "produces": [
21198          "application/json",
21199          "application/yaml",
21200          "application/vnd.kubernetes.protobuf"
21201        ],
21202        "responses": {
21203          "200": {
21204            "description": "OK",
21205            "schema": {
21206              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21207            }
21208          },
21209          "202": {
21210            "description": "Accepted",
21211            "schema": {
21212              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21213            }
21214          },
21215          "401": {
21216            "description": "Unauthorized"
21217          }
21218        },
21219        "schemes": [
21220          "https"
21221        ],
21222        "tags": [
21223          "core_v1"
21224        ],
21225        "x-kubernetes-action": "delete",
21226        "x-kubernetes-group-version-kind": {
21227          "group": "",
21228          "kind": "ConfigMap",
21229          "version": "v1"
21230        }
21231      },
21232      "get": {
21233        "consumes": [
21234          "*/*"
21235        ],
21236        "description": "read the specified ConfigMap",
21237        "operationId": "readCoreV1NamespacedConfigMap",
21238        "produces": [
21239          "application/json",
21240          "application/yaml",
21241          "application/vnd.kubernetes.protobuf"
21242        ],
21243        "responses": {
21244          "200": {
21245            "description": "OK",
21246            "schema": {
21247              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21248            }
21249          },
21250          "401": {
21251            "description": "Unauthorized"
21252          }
21253        },
21254        "schemes": [
21255          "https"
21256        ],
21257        "tags": [
21258          "core_v1"
21259        ],
21260        "x-kubernetes-action": "get",
21261        "x-kubernetes-group-version-kind": {
21262          "group": "",
21263          "kind": "ConfigMap",
21264          "version": "v1"
21265        }
21266      },
21267      "parameters": [
21268        {
21269          "description": "name of the ConfigMap",
21270          "in": "path",
21271          "name": "name",
21272          "required": true,
21273          "type": "string",
21274          "uniqueItems": true
21275        },
21276        {
21277          "description": "object name and auth scope, such as for teams and projects",
21278          "in": "path",
21279          "name": "namespace",
21280          "required": true,
21281          "type": "string",
21282          "uniqueItems": true
21283        },
21284        {
21285          "description": "If 'true', then the output is pretty printed.",
21286          "in": "query",
21287          "name": "pretty",
21288          "type": "string",
21289          "uniqueItems": true
21290        }
21291      ],
21292      "patch": {
21293        "consumes": [
21294          "application/json-patch+json",
21295          "application/merge-patch+json",
21296          "application/strategic-merge-patch+json",
21297          "application/apply-patch+yaml"
21298        ],
21299        "description": "partially update the specified ConfigMap",
21300        "operationId": "patchCoreV1NamespacedConfigMap",
21301        "parameters": [
21302          {
21303            "in": "body",
21304            "name": "body",
21305            "required": true,
21306            "schema": {
21307              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21308            }
21309          },
21310          {
21311            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21312            "in": "query",
21313            "name": "dryRun",
21314            "type": "string",
21315            "uniqueItems": true
21316          },
21317          {
21318            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
21319            "in": "query",
21320            "name": "fieldManager",
21321            "type": "string",
21322            "uniqueItems": true
21323          },
21324          {
21325            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
21326            "in": "query",
21327            "name": "force",
21328            "type": "boolean",
21329            "uniqueItems": true
21330          }
21331        ],
21332        "produces": [
21333          "application/json",
21334          "application/yaml",
21335          "application/vnd.kubernetes.protobuf"
21336        ],
21337        "responses": {
21338          "200": {
21339            "description": "OK",
21340            "schema": {
21341              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21342            }
21343          },
21344          "401": {
21345            "description": "Unauthorized"
21346          }
21347        },
21348        "schemes": [
21349          "https"
21350        ],
21351        "tags": [
21352          "core_v1"
21353        ],
21354        "x-kubernetes-action": "patch",
21355        "x-kubernetes-group-version-kind": {
21356          "group": "",
21357          "kind": "ConfigMap",
21358          "version": "v1"
21359        }
21360      },
21361      "put": {
21362        "consumes": [
21363          "*/*"
21364        ],
21365        "description": "replace the specified ConfigMap",
21366        "operationId": "replaceCoreV1NamespacedConfigMap",
21367        "parameters": [
21368          {
21369            "in": "body",
21370            "name": "body",
21371            "required": true,
21372            "schema": {
21373              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21374            }
21375          },
21376          {
21377            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21378            "in": "query",
21379            "name": "dryRun",
21380            "type": "string",
21381            "uniqueItems": true
21382          },
21383          {
21384            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21385            "in": "query",
21386            "name": "fieldManager",
21387            "type": "string",
21388            "uniqueItems": true
21389          }
21390        ],
21391        "produces": [
21392          "application/json",
21393          "application/yaml",
21394          "application/vnd.kubernetes.protobuf"
21395        ],
21396        "responses": {
21397          "200": {
21398            "description": "OK",
21399            "schema": {
21400              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21401            }
21402          },
21403          "201": {
21404            "description": "Created",
21405            "schema": {
21406              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
21407            }
21408          },
21409          "401": {
21410            "description": "Unauthorized"
21411          }
21412        },
21413        "schemes": [
21414          "https"
21415        ],
21416        "tags": [
21417          "core_v1"
21418        ],
21419        "x-kubernetes-action": "put",
21420        "x-kubernetes-group-version-kind": {
21421          "group": "",
21422          "kind": "ConfigMap",
21423          "version": "v1"
21424        }
21425      }
21426    },
21427    "/api/v1/namespaces/{namespace}/endpoints": {
21428      "delete": {
21429        "consumes": [
21430          "*/*"
21431        ],
21432        "description": "delete collection of Endpoints",
21433        "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
21434        "parameters": [
21435          {
21436            "in": "body",
21437            "name": "body",
21438            "schema": {
21439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21440            }
21441          },
21442          {
21443            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21444            "in": "query",
21445            "name": "continue",
21446            "type": "string",
21447            "uniqueItems": true
21448          },
21449          {
21450            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21451            "in": "query",
21452            "name": "dryRun",
21453            "type": "string",
21454            "uniqueItems": true
21455          },
21456          {
21457            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21458            "in": "query",
21459            "name": "fieldSelector",
21460            "type": "string",
21461            "uniqueItems": true
21462          },
21463          {
21464            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21465            "in": "query",
21466            "name": "gracePeriodSeconds",
21467            "type": "integer",
21468            "uniqueItems": true
21469          },
21470          {
21471            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21472            "in": "query",
21473            "name": "labelSelector",
21474            "type": "string",
21475            "uniqueItems": true
21476          },
21477          {
21478            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21479            "in": "query",
21480            "name": "limit",
21481            "type": "integer",
21482            "uniqueItems": true
21483          },
21484          {
21485            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21486            "in": "query",
21487            "name": "orphanDependents",
21488            "type": "boolean",
21489            "uniqueItems": true
21490          },
21491          {
21492            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21493            "in": "query",
21494            "name": "propagationPolicy",
21495            "type": "string",
21496            "uniqueItems": true
21497          },
21498          {
21499            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21500            "in": "query",
21501            "name": "resourceVersion",
21502            "type": "string",
21503            "uniqueItems": true
21504          },
21505          {
21506            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21507            "in": "query",
21508            "name": "resourceVersionMatch",
21509            "type": "string",
21510            "uniqueItems": true
21511          },
21512          {
21513            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21514            "in": "query",
21515            "name": "timeoutSeconds",
21516            "type": "integer",
21517            "uniqueItems": true
21518          }
21519        ],
21520        "produces": [
21521          "application/json",
21522          "application/yaml",
21523          "application/vnd.kubernetes.protobuf"
21524        ],
21525        "responses": {
21526          "200": {
21527            "description": "OK",
21528            "schema": {
21529              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21530            }
21531          },
21532          "401": {
21533            "description": "Unauthorized"
21534          }
21535        },
21536        "schemes": [
21537          "https"
21538        ],
21539        "tags": [
21540          "core_v1"
21541        ],
21542        "x-kubernetes-action": "deletecollection",
21543        "x-kubernetes-group-version-kind": {
21544          "group": "",
21545          "kind": "Endpoints",
21546          "version": "v1"
21547        }
21548      },
21549      "get": {
21550        "consumes": [
21551          "*/*"
21552        ],
21553        "description": "list or watch objects of kind Endpoints",
21554        "operationId": "listCoreV1NamespacedEndpoints",
21555        "parameters": [
21556          {
21557            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
21558            "in": "query",
21559            "name": "allowWatchBookmarks",
21560            "type": "boolean",
21561            "uniqueItems": true
21562          },
21563          {
21564            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21565            "in": "query",
21566            "name": "continue",
21567            "type": "string",
21568            "uniqueItems": true
21569          },
21570          {
21571            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21572            "in": "query",
21573            "name": "fieldSelector",
21574            "type": "string",
21575            "uniqueItems": true
21576          },
21577          {
21578            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21579            "in": "query",
21580            "name": "labelSelector",
21581            "type": "string",
21582            "uniqueItems": true
21583          },
21584          {
21585            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21586            "in": "query",
21587            "name": "limit",
21588            "type": "integer",
21589            "uniqueItems": true
21590          },
21591          {
21592            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21593            "in": "query",
21594            "name": "resourceVersion",
21595            "type": "string",
21596            "uniqueItems": true
21597          },
21598          {
21599            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21600            "in": "query",
21601            "name": "resourceVersionMatch",
21602            "type": "string",
21603            "uniqueItems": true
21604          },
21605          {
21606            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21607            "in": "query",
21608            "name": "timeoutSeconds",
21609            "type": "integer",
21610            "uniqueItems": true
21611          },
21612          {
21613            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21614            "in": "query",
21615            "name": "watch",
21616            "type": "boolean",
21617            "uniqueItems": true
21618          }
21619        ],
21620        "produces": [
21621          "application/json",
21622          "application/yaml",
21623          "application/vnd.kubernetes.protobuf",
21624          "application/json;stream=watch",
21625          "application/vnd.kubernetes.protobuf;stream=watch"
21626        ],
21627        "responses": {
21628          "200": {
21629            "description": "OK",
21630            "schema": {
21631              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
21632            }
21633          },
21634          "401": {
21635            "description": "Unauthorized"
21636          }
21637        },
21638        "schemes": [
21639          "https"
21640        ],
21641        "tags": [
21642          "core_v1"
21643        ],
21644        "x-kubernetes-action": "list",
21645        "x-kubernetes-group-version-kind": {
21646          "group": "",
21647          "kind": "Endpoints",
21648          "version": "v1"
21649        }
21650      },
21651      "parameters": [
21652        {
21653          "description": "object name and auth scope, such as for teams and projects",
21654          "in": "path",
21655          "name": "namespace",
21656          "required": true,
21657          "type": "string",
21658          "uniqueItems": true
21659        },
21660        {
21661          "description": "If 'true', then the output is pretty printed.",
21662          "in": "query",
21663          "name": "pretty",
21664          "type": "string",
21665          "uniqueItems": true
21666        }
21667      ],
21668      "post": {
21669        "consumes": [
21670          "*/*"
21671        ],
21672        "description": "create Endpoints",
21673        "operationId": "createCoreV1NamespacedEndpoints",
21674        "parameters": [
21675          {
21676            "in": "body",
21677            "name": "body",
21678            "required": true,
21679            "schema": {
21680              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21681            }
21682          },
21683          {
21684            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21685            "in": "query",
21686            "name": "dryRun",
21687            "type": "string",
21688            "uniqueItems": true
21689          },
21690          {
21691            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21692            "in": "query",
21693            "name": "fieldManager",
21694            "type": "string",
21695            "uniqueItems": true
21696          }
21697        ],
21698        "produces": [
21699          "application/json",
21700          "application/yaml",
21701          "application/vnd.kubernetes.protobuf"
21702        ],
21703        "responses": {
21704          "200": {
21705            "description": "OK",
21706            "schema": {
21707              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21708            }
21709          },
21710          "201": {
21711            "description": "Created",
21712            "schema": {
21713              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21714            }
21715          },
21716          "202": {
21717            "description": "Accepted",
21718            "schema": {
21719              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21720            }
21721          },
21722          "401": {
21723            "description": "Unauthorized"
21724          }
21725        },
21726        "schemes": [
21727          "https"
21728        ],
21729        "tags": [
21730          "core_v1"
21731        ],
21732        "x-kubernetes-action": "post",
21733        "x-kubernetes-group-version-kind": {
21734          "group": "",
21735          "kind": "Endpoints",
21736          "version": "v1"
21737        }
21738      }
21739    },
21740    "/api/v1/namespaces/{namespace}/endpoints/{name}": {
21741      "delete": {
21742        "consumes": [
21743          "*/*"
21744        ],
21745        "description": "delete Endpoints",
21746        "operationId": "deleteCoreV1NamespacedEndpoints",
21747        "parameters": [
21748          {
21749            "in": "body",
21750            "name": "body",
21751            "schema": {
21752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21753            }
21754          },
21755          {
21756            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21757            "in": "query",
21758            "name": "dryRun",
21759            "type": "string",
21760            "uniqueItems": true
21761          },
21762          {
21763            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21764            "in": "query",
21765            "name": "gracePeriodSeconds",
21766            "type": "integer",
21767            "uniqueItems": true
21768          },
21769          {
21770            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21771            "in": "query",
21772            "name": "orphanDependents",
21773            "type": "boolean",
21774            "uniqueItems": true
21775          },
21776          {
21777            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21778            "in": "query",
21779            "name": "propagationPolicy",
21780            "type": "string",
21781            "uniqueItems": true
21782          }
21783        ],
21784        "produces": [
21785          "application/json",
21786          "application/yaml",
21787          "application/vnd.kubernetes.protobuf"
21788        ],
21789        "responses": {
21790          "200": {
21791            "description": "OK",
21792            "schema": {
21793              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21794            }
21795          },
21796          "202": {
21797            "description": "Accepted",
21798            "schema": {
21799              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21800            }
21801          },
21802          "401": {
21803            "description": "Unauthorized"
21804          }
21805        },
21806        "schemes": [
21807          "https"
21808        ],
21809        "tags": [
21810          "core_v1"
21811        ],
21812        "x-kubernetes-action": "delete",
21813        "x-kubernetes-group-version-kind": {
21814          "group": "",
21815          "kind": "Endpoints",
21816          "version": "v1"
21817        }
21818      },
21819      "get": {
21820        "consumes": [
21821          "*/*"
21822        ],
21823        "description": "read the specified Endpoints",
21824        "operationId": "readCoreV1NamespacedEndpoints",
21825        "produces": [
21826          "application/json",
21827          "application/yaml",
21828          "application/vnd.kubernetes.protobuf"
21829        ],
21830        "responses": {
21831          "200": {
21832            "description": "OK",
21833            "schema": {
21834              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21835            }
21836          },
21837          "401": {
21838            "description": "Unauthorized"
21839          }
21840        },
21841        "schemes": [
21842          "https"
21843        ],
21844        "tags": [
21845          "core_v1"
21846        ],
21847        "x-kubernetes-action": "get",
21848        "x-kubernetes-group-version-kind": {
21849          "group": "",
21850          "kind": "Endpoints",
21851          "version": "v1"
21852        }
21853      },
21854      "parameters": [
21855        {
21856          "description": "name of the Endpoints",
21857          "in": "path",
21858          "name": "name",
21859          "required": true,
21860          "type": "string",
21861          "uniqueItems": true
21862        },
21863        {
21864          "description": "object name and auth scope, such as for teams and projects",
21865          "in": "path",
21866          "name": "namespace",
21867          "required": true,
21868          "type": "string",
21869          "uniqueItems": true
21870        },
21871        {
21872          "description": "If 'true', then the output is pretty printed.",
21873          "in": "query",
21874          "name": "pretty",
21875          "type": "string",
21876          "uniqueItems": true
21877        }
21878      ],
21879      "patch": {
21880        "consumes": [
21881          "application/json-patch+json",
21882          "application/merge-patch+json",
21883          "application/strategic-merge-patch+json",
21884          "application/apply-patch+yaml"
21885        ],
21886        "description": "partially update the specified Endpoints",
21887        "operationId": "patchCoreV1NamespacedEndpoints",
21888        "parameters": [
21889          {
21890            "in": "body",
21891            "name": "body",
21892            "required": true,
21893            "schema": {
21894              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21895            }
21896          },
21897          {
21898            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21899            "in": "query",
21900            "name": "dryRun",
21901            "type": "string",
21902            "uniqueItems": true
21903          },
21904          {
21905            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
21906            "in": "query",
21907            "name": "fieldManager",
21908            "type": "string",
21909            "uniqueItems": true
21910          },
21911          {
21912            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
21913            "in": "query",
21914            "name": "force",
21915            "type": "boolean",
21916            "uniqueItems": true
21917          }
21918        ],
21919        "produces": [
21920          "application/json",
21921          "application/yaml",
21922          "application/vnd.kubernetes.protobuf"
21923        ],
21924        "responses": {
21925          "200": {
21926            "description": "OK",
21927            "schema": {
21928              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21929            }
21930          },
21931          "401": {
21932            "description": "Unauthorized"
21933          }
21934        },
21935        "schemes": [
21936          "https"
21937        ],
21938        "tags": [
21939          "core_v1"
21940        ],
21941        "x-kubernetes-action": "patch",
21942        "x-kubernetes-group-version-kind": {
21943          "group": "",
21944          "kind": "Endpoints",
21945          "version": "v1"
21946        }
21947      },
21948      "put": {
21949        "consumes": [
21950          "*/*"
21951        ],
21952        "description": "replace the specified Endpoints",
21953        "operationId": "replaceCoreV1NamespacedEndpoints",
21954        "parameters": [
21955          {
21956            "in": "body",
21957            "name": "body",
21958            "required": true,
21959            "schema": {
21960              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21961            }
21962          },
21963          {
21964            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21965            "in": "query",
21966            "name": "dryRun",
21967            "type": "string",
21968            "uniqueItems": true
21969          },
21970          {
21971            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21972            "in": "query",
21973            "name": "fieldManager",
21974            "type": "string",
21975            "uniqueItems": true
21976          }
21977        ],
21978        "produces": [
21979          "application/json",
21980          "application/yaml",
21981          "application/vnd.kubernetes.protobuf"
21982        ],
21983        "responses": {
21984          "200": {
21985            "description": "OK",
21986            "schema": {
21987              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21988            }
21989          },
21990          "201": {
21991            "description": "Created",
21992            "schema": {
21993              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21994            }
21995          },
21996          "401": {
21997            "description": "Unauthorized"
21998          }
21999        },
22000        "schemes": [
22001          "https"
22002        ],
22003        "tags": [
22004          "core_v1"
22005        ],
22006        "x-kubernetes-action": "put",
22007        "x-kubernetes-group-version-kind": {
22008          "group": "",
22009          "kind": "Endpoints",
22010          "version": "v1"
22011        }
22012      }
22013    },
22014    "/api/v1/namespaces/{namespace}/events": {
22015      "delete": {
22016        "consumes": [
22017          "*/*"
22018        ],
22019        "description": "delete collection of Event",
22020        "operationId": "deleteCoreV1CollectionNamespacedEvent",
22021        "parameters": [
22022          {
22023            "in": "body",
22024            "name": "body",
22025            "schema": {
22026              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22027            }
22028          },
22029          {
22030            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22031            "in": "query",
22032            "name": "continue",
22033            "type": "string",
22034            "uniqueItems": true
22035          },
22036          {
22037            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22038            "in": "query",
22039            "name": "dryRun",
22040            "type": "string",
22041            "uniqueItems": true
22042          },
22043          {
22044            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22045            "in": "query",
22046            "name": "fieldSelector",
22047            "type": "string",
22048            "uniqueItems": true
22049          },
22050          {
22051            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22052            "in": "query",
22053            "name": "gracePeriodSeconds",
22054            "type": "integer",
22055            "uniqueItems": true
22056          },
22057          {
22058            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22059            "in": "query",
22060            "name": "labelSelector",
22061            "type": "string",
22062            "uniqueItems": true
22063          },
22064          {
22065            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22066            "in": "query",
22067            "name": "limit",
22068            "type": "integer",
22069            "uniqueItems": true
22070          },
22071          {
22072            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22073            "in": "query",
22074            "name": "orphanDependents",
22075            "type": "boolean",
22076            "uniqueItems": true
22077          },
22078          {
22079            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22080            "in": "query",
22081            "name": "propagationPolicy",
22082            "type": "string",
22083            "uniqueItems": true
22084          },
22085          {
22086            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22087            "in": "query",
22088            "name": "resourceVersion",
22089            "type": "string",
22090            "uniqueItems": true
22091          },
22092          {
22093            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22094            "in": "query",
22095            "name": "resourceVersionMatch",
22096            "type": "string",
22097            "uniqueItems": true
22098          },
22099          {
22100            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22101            "in": "query",
22102            "name": "timeoutSeconds",
22103            "type": "integer",
22104            "uniqueItems": true
22105          }
22106        ],
22107        "produces": [
22108          "application/json",
22109          "application/yaml",
22110          "application/vnd.kubernetes.protobuf"
22111        ],
22112        "responses": {
22113          "200": {
22114            "description": "OK",
22115            "schema": {
22116              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22117            }
22118          },
22119          "401": {
22120            "description": "Unauthorized"
22121          }
22122        },
22123        "schemes": [
22124          "https"
22125        ],
22126        "tags": [
22127          "core_v1"
22128        ],
22129        "x-kubernetes-action": "deletecollection",
22130        "x-kubernetes-group-version-kind": {
22131          "group": "",
22132          "kind": "Event",
22133          "version": "v1"
22134        }
22135      },
22136      "get": {
22137        "consumes": [
22138          "*/*"
22139        ],
22140        "description": "list or watch objects of kind Event",
22141        "operationId": "listCoreV1NamespacedEvent",
22142        "parameters": [
22143          {
22144            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
22145            "in": "query",
22146            "name": "allowWatchBookmarks",
22147            "type": "boolean",
22148            "uniqueItems": true
22149          },
22150          {
22151            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22152            "in": "query",
22153            "name": "continue",
22154            "type": "string",
22155            "uniqueItems": true
22156          },
22157          {
22158            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22159            "in": "query",
22160            "name": "fieldSelector",
22161            "type": "string",
22162            "uniqueItems": true
22163          },
22164          {
22165            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22166            "in": "query",
22167            "name": "labelSelector",
22168            "type": "string",
22169            "uniqueItems": true
22170          },
22171          {
22172            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22173            "in": "query",
22174            "name": "limit",
22175            "type": "integer",
22176            "uniqueItems": true
22177          },
22178          {
22179            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22180            "in": "query",
22181            "name": "resourceVersion",
22182            "type": "string",
22183            "uniqueItems": true
22184          },
22185          {
22186            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22187            "in": "query",
22188            "name": "resourceVersionMatch",
22189            "type": "string",
22190            "uniqueItems": true
22191          },
22192          {
22193            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22194            "in": "query",
22195            "name": "timeoutSeconds",
22196            "type": "integer",
22197            "uniqueItems": true
22198          },
22199          {
22200            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22201            "in": "query",
22202            "name": "watch",
22203            "type": "boolean",
22204            "uniqueItems": true
22205          }
22206        ],
22207        "produces": [
22208          "application/json",
22209          "application/yaml",
22210          "application/vnd.kubernetes.protobuf",
22211          "application/json;stream=watch",
22212          "application/vnd.kubernetes.protobuf;stream=watch"
22213        ],
22214        "responses": {
22215          "200": {
22216            "description": "OK",
22217            "schema": {
22218              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
22219            }
22220          },
22221          "401": {
22222            "description": "Unauthorized"
22223          }
22224        },
22225        "schemes": [
22226          "https"
22227        ],
22228        "tags": [
22229          "core_v1"
22230        ],
22231        "x-kubernetes-action": "list",
22232        "x-kubernetes-group-version-kind": {
22233          "group": "",
22234          "kind": "Event",
22235          "version": "v1"
22236        }
22237      },
22238      "parameters": [
22239        {
22240          "description": "object name and auth scope, such as for teams and projects",
22241          "in": "path",
22242          "name": "namespace",
22243          "required": true,
22244          "type": "string",
22245          "uniqueItems": true
22246        },
22247        {
22248          "description": "If 'true', then the output is pretty printed.",
22249          "in": "query",
22250          "name": "pretty",
22251          "type": "string",
22252          "uniqueItems": true
22253        }
22254      ],
22255      "post": {
22256        "consumes": [
22257          "*/*"
22258        ],
22259        "description": "create an Event",
22260        "operationId": "createCoreV1NamespacedEvent",
22261        "parameters": [
22262          {
22263            "in": "body",
22264            "name": "body",
22265            "required": true,
22266            "schema": {
22267              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22268            }
22269          },
22270          {
22271            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22272            "in": "query",
22273            "name": "dryRun",
22274            "type": "string",
22275            "uniqueItems": true
22276          },
22277          {
22278            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22279            "in": "query",
22280            "name": "fieldManager",
22281            "type": "string",
22282            "uniqueItems": true
22283          }
22284        ],
22285        "produces": [
22286          "application/json",
22287          "application/yaml",
22288          "application/vnd.kubernetes.protobuf"
22289        ],
22290        "responses": {
22291          "200": {
22292            "description": "OK",
22293            "schema": {
22294              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22295            }
22296          },
22297          "201": {
22298            "description": "Created",
22299            "schema": {
22300              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22301            }
22302          },
22303          "202": {
22304            "description": "Accepted",
22305            "schema": {
22306              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22307            }
22308          },
22309          "401": {
22310            "description": "Unauthorized"
22311          }
22312        },
22313        "schemes": [
22314          "https"
22315        ],
22316        "tags": [
22317          "core_v1"
22318        ],
22319        "x-kubernetes-action": "post",
22320        "x-kubernetes-group-version-kind": {
22321          "group": "",
22322          "kind": "Event",
22323          "version": "v1"
22324        }
22325      }
22326    },
22327    "/api/v1/namespaces/{namespace}/events/{name}": {
22328      "delete": {
22329        "consumes": [
22330          "*/*"
22331        ],
22332        "description": "delete an Event",
22333        "operationId": "deleteCoreV1NamespacedEvent",
22334        "parameters": [
22335          {
22336            "in": "body",
22337            "name": "body",
22338            "schema": {
22339              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22340            }
22341          },
22342          {
22343            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22344            "in": "query",
22345            "name": "dryRun",
22346            "type": "string",
22347            "uniqueItems": true
22348          },
22349          {
22350            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22351            "in": "query",
22352            "name": "gracePeriodSeconds",
22353            "type": "integer",
22354            "uniqueItems": true
22355          },
22356          {
22357            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22358            "in": "query",
22359            "name": "orphanDependents",
22360            "type": "boolean",
22361            "uniqueItems": true
22362          },
22363          {
22364            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22365            "in": "query",
22366            "name": "propagationPolicy",
22367            "type": "string",
22368            "uniqueItems": true
22369          }
22370        ],
22371        "produces": [
22372          "application/json",
22373          "application/yaml",
22374          "application/vnd.kubernetes.protobuf"
22375        ],
22376        "responses": {
22377          "200": {
22378            "description": "OK",
22379            "schema": {
22380              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22381            }
22382          },
22383          "202": {
22384            "description": "Accepted",
22385            "schema": {
22386              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22387            }
22388          },
22389          "401": {
22390            "description": "Unauthorized"
22391          }
22392        },
22393        "schemes": [
22394          "https"
22395        ],
22396        "tags": [
22397          "core_v1"
22398        ],
22399        "x-kubernetes-action": "delete",
22400        "x-kubernetes-group-version-kind": {
22401          "group": "",
22402          "kind": "Event",
22403          "version": "v1"
22404        }
22405      },
22406      "get": {
22407        "consumes": [
22408          "*/*"
22409        ],
22410        "description": "read the specified Event",
22411        "operationId": "readCoreV1NamespacedEvent",
22412        "produces": [
22413          "application/json",
22414          "application/yaml",
22415          "application/vnd.kubernetes.protobuf"
22416        ],
22417        "responses": {
22418          "200": {
22419            "description": "OK",
22420            "schema": {
22421              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22422            }
22423          },
22424          "401": {
22425            "description": "Unauthorized"
22426          }
22427        },
22428        "schemes": [
22429          "https"
22430        ],
22431        "tags": [
22432          "core_v1"
22433        ],
22434        "x-kubernetes-action": "get",
22435        "x-kubernetes-group-version-kind": {
22436          "group": "",
22437          "kind": "Event",
22438          "version": "v1"
22439        }
22440      },
22441      "parameters": [
22442        {
22443          "description": "name of the Event",
22444          "in": "path",
22445          "name": "name",
22446          "required": true,
22447          "type": "string",
22448          "uniqueItems": true
22449        },
22450        {
22451          "description": "object name and auth scope, such as for teams and projects",
22452          "in": "path",
22453          "name": "namespace",
22454          "required": true,
22455          "type": "string",
22456          "uniqueItems": true
22457        },
22458        {
22459          "description": "If 'true', then the output is pretty printed.",
22460          "in": "query",
22461          "name": "pretty",
22462          "type": "string",
22463          "uniqueItems": true
22464        }
22465      ],
22466      "patch": {
22467        "consumes": [
22468          "application/json-patch+json",
22469          "application/merge-patch+json",
22470          "application/strategic-merge-patch+json",
22471          "application/apply-patch+yaml"
22472        ],
22473        "description": "partially update the specified Event",
22474        "operationId": "patchCoreV1NamespacedEvent",
22475        "parameters": [
22476          {
22477            "in": "body",
22478            "name": "body",
22479            "required": true,
22480            "schema": {
22481              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22482            }
22483          },
22484          {
22485            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22486            "in": "query",
22487            "name": "dryRun",
22488            "type": "string",
22489            "uniqueItems": true
22490          },
22491          {
22492            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
22493            "in": "query",
22494            "name": "fieldManager",
22495            "type": "string",
22496            "uniqueItems": true
22497          },
22498          {
22499            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
22500            "in": "query",
22501            "name": "force",
22502            "type": "boolean",
22503            "uniqueItems": true
22504          }
22505        ],
22506        "produces": [
22507          "application/json",
22508          "application/yaml",
22509          "application/vnd.kubernetes.protobuf"
22510        ],
22511        "responses": {
22512          "200": {
22513            "description": "OK",
22514            "schema": {
22515              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22516            }
22517          },
22518          "401": {
22519            "description": "Unauthorized"
22520          }
22521        },
22522        "schemes": [
22523          "https"
22524        ],
22525        "tags": [
22526          "core_v1"
22527        ],
22528        "x-kubernetes-action": "patch",
22529        "x-kubernetes-group-version-kind": {
22530          "group": "",
22531          "kind": "Event",
22532          "version": "v1"
22533        }
22534      },
22535      "put": {
22536        "consumes": [
22537          "*/*"
22538        ],
22539        "description": "replace the specified Event",
22540        "operationId": "replaceCoreV1NamespacedEvent",
22541        "parameters": [
22542          {
22543            "in": "body",
22544            "name": "body",
22545            "required": true,
22546            "schema": {
22547              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22548            }
22549          },
22550          {
22551            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22552            "in": "query",
22553            "name": "dryRun",
22554            "type": "string",
22555            "uniqueItems": true
22556          },
22557          {
22558            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22559            "in": "query",
22560            "name": "fieldManager",
22561            "type": "string",
22562            "uniqueItems": true
22563          }
22564        ],
22565        "produces": [
22566          "application/json",
22567          "application/yaml",
22568          "application/vnd.kubernetes.protobuf"
22569        ],
22570        "responses": {
22571          "200": {
22572            "description": "OK",
22573            "schema": {
22574              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22575            }
22576          },
22577          "201": {
22578            "description": "Created",
22579            "schema": {
22580              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
22581            }
22582          },
22583          "401": {
22584            "description": "Unauthorized"
22585          }
22586        },
22587        "schemes": [
22588          "https"
22589        ],
22590        "tags": [
22591          "core_v1"
22592        ],
22593        "x-kubernetes-action": "put",
22594        "x-kubernetes-group-version-kind": {
22595          "group": "",
22596          "kind": "Event",
22597          "version": "v1"
22598        }
22599      }
22600    },
22601    "/api/v1/namespaces/{namespace}/limitranges": {
22602      "delete": {
22603        "consumes": [
22604          "*/*"
22605        ],
22606        "description": "delete collection of LimitRange",
22607        "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
22608        "parameters": [
22609          {
22610            "in": "body",
22611            "name": "body",
22612            "schema": {
22613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22614            }
22615          },
22616          {
22617            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22618            "in": "query",
22619            "name": "continue",
22620            "type": "string",
22621            "uniqueItems": true
22622          },
22623          {
22624            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22625            "in": "query",
22626            "name": "dryRun",
22627            "type": "string",
22628            "uniqueItems": true
22629          },
22630          {
22631            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22632            "in": "query",
22633            "name": "fieldSelector",
22634            "type": "string",
22635            "uniqueItems": true
22636          },
22637          {
22638            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22639            "in": "query",
22640            "name": "gracePeriodSeconds",
22641            "type": "integer",
22642            "uniqueItems": true
22643          },
22644          {
22645            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22646            "in": "query",
22647            "name": "labelSelector",
22648            "type": "string",
22649            "uniqueItems": true
22650          },
22651          {
22652            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22653            "in": "query",
22654            "name": "limit",
22655            "type": "integer",
22656            "uniqueItems": true
22657          },
22658          {
22659            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22660            "in": "query",
22661            "name": "orphanDependents",
22662            "type": "boolean",
22663            "uniqueItems": true
22664          },
22665          {
22666            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22667            "in": "query",
22668            "name": "propagationPolicy",
22669            "type": "string",
22670            "uniqueItems": true
22671          },
22672          {
22673            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22674            "in": "query",
22675            "name": "resourceVersion",
22676            "type": "string",
22677            "uniqueItems": true
22678          },
22679          {
22680            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22681            "in": "query",
22682            "name": "resourceVersionMatch",
22683            "type": "string",
22684            "uniqueItems": true
22685          },
22686          {
22687            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22688            "in": "query",
22689            "name": "timeoutSeconds",
22690            "type": "integer",
22691            "uniqueItems": true
22692          }
22693        ],
22694        "produces": [
22695          "application/json",
22696          "application/yaml",
22697          "application/vnd.kubernetes.protobuf"
22698        ],
22699        "responses": {
22700          "200": {
22701            "description": "OK",
22702            "schema": {
22703              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22704            }
22705          },
22706          "401": {
22707            "description": "Unauthorized"
22708          }
22709        },
22710        "schemes": [
22711          "https"
22712        ],
22713        "tags": [
22714          "core_v1"
22715        ],
22716        "x-kubernetes-action": "deletecollection",
22717        "x-kubernetes-group-version-kind": {
22718          "group": "",
22719          "kind": "LimitRange",
22720          "version": "v1"
22721        }
22722      },
22723      "get": {
22724        "consumes": [
22725          "*/*"
22726        ],
22727        "description": "list or watch objects of kind LimitRange",
22728        "operationId": "listCoreV1NamespacedLimitRange",
22729        "parameters": [
22730          {
22731            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
22732            "in": "query",
22733            "name": "allowWatchBookmarks",
22734            "type": "boolean",
22735            "uniqueItems": true
22736          },
22737          {
22738            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22739            "in": "query",
22740            "name": "continue",
22741            "type": "string",
22742            "uniqueItems": true
22743          },
22744          {
22745            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22746            "in": "query",
22747            "name": "fieldSelector",
22748            "type": "string",
22749            "uniqueItems": true
22750          },
22751          {
22752            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22753            "in": "query",
22754            "name": "labelSelector",
22755            "type": "string",
22756            "uniqueItems": true
22757          },
22758          {
22759            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22760            "in": "query",
22761            "name": "limit",
22762            "type": "integer",
22763            "uniqueItems": true
22764          },
22765          {
22766            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22767            "in": "query",
22768            "name": "resourceVersion",
22769            "type": "string",
22770            "uniqueItems": true
22771          },
22772          {
22773            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22774            "in": "query",
22775            "name": "resourceVersionMatch",
22776            "type": "string",
22777            "uniqueItems": true
22778          },
22779          {
22780            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22781            "in": "query",
22782            "name": "timeoutSeconds",
22783            "type": "integer",
22784            "uniqueItems": true
22785          },
22786          {
22787            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22788            "in": "query",
22789            "name": "watch",
22790            "type": "boolean",
22791            "uniqueItems": true
22792          }
22793        ],
22794        "produces": [
22795          "application/json",
22796          "application/yaml",
22797          "application/vnd.kubernetes.protobuf",
22798          "application/json;stream=watch",
22799          "application/vnd.kubernetes.protobuf;stream=watch"
22800        ],
22801        "responses": {
22802          "200": {
22803            "description": "OK",
22804            "schema": {
22805              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
22806            }
22807          },
22808          "401": {
22809            "description": "Unauthorized"
22810          }
22811        },
22812        "schemes": [
22813          "https"
22814        ],
22815        "tags": [
22816          "core_v1"
22817        ],
22818        "x-kubernetes-action": "list",
22819        "x-kubernetes-group-version-kind": {
22820          "group": "",
22821          "kind": "LimitRange",
22822          "version": "v1"
22823        }
22824      },
22825      "parameters": [
22826        {
22827          "description": "object name and auth scope, such as for teams and projects",
22828          "in": "path",
22829          "name": "namespace",
22830          "required": true,
22831          "type": "string",
22832          "uniqueItems": true
22833        },
22834        {
22835          "description": "If 'true', then the output is pretty printed.",
22836          "in": "query",
22837          "name": "pretty",
22838          "type": "string",
22839          "uniqueItems": true
22840        }
22841      ],
22842      "post": {
22843        "consumes": [
22844          "*/*"
22845        ],
22846        "description": "create a LimitRange",
22847        "operationId": "createCoreV1NamespacedLimitRange",
22848        "parameters": [
22849          {
22850            "in": "body",
22851            "name": "body",
22852            "required": true,
22853            "schema": {
22854              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22855            }
22856          },
22857          {
22858            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22859            "in": "query",
22860            "name": "dryRun",
22861            "type": "string",
22862            "uniqueItems": true
22863          },
22864          {
22865            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22866            "in": "query",
22867            "name": "fieldManager",
22868            "type": "string",
22869            "uniqueItems": true
22870          }
22871        ],
22872        "produces": [
22873          "application/json",
22874          "application/yaml",
22875          "application/vnd.kubernetes.protobuf"
22876        ],
22877        "responses": {
22878          "200": {
22879            "description": "OK",
22880            "schema": {
22881              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22882            }
22883          },
22884          "201": {
22885            "description": "Created",
22886            "schema": {
22887              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22888            }
22889          },
22890          "202": {
22891            "description": "Accepted",
22892            "schema": {
22893              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22894            }
22895          },
22896          "401": {
22897            "description": "Unauthorized"
22898          }
22899        },
22900        "schemes": [
22901          "https"
22902        ],
22903        "tags": [
22904          "core_v1"
22905        ],
22906        "x-kubernetes-action": "post",
22907        "x-kubernetes-group-version-kind": {
22908          "group": "",
22909          "kind": "LimitRange",
22910          "version": "v1"
22911        }
22912      }
22913    },
22914    "/api/v1/namespaces/{namespace}/limitranges/{name}": {
22915      "delete": {
22916        "consumes": [
22917          "*/*"
22918        ],
22919        "description": "delete a LimitRange",
22920        "operationId": "deleteCoreV1NamespacedLimitRange",
22921        "parameters": [
22922          {
22923            "in": "body",
22924            "name": "body",
22925            "schema": {
22926              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22927            }
22928          },
22929          {
22930            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22931            "in": "query",
22932            "name": "dryRun",
22933            "type": "string",
22934            "uniqueItems": true
22935          },
22936          {
22937            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22938            "in": "query",
22939            "name": "gracePeriodSeconds",
22940            "type": "integer",
22941            "uniqueItems": true
22942          },
22943          {
22944            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22945            "in": "query",
22946            "name": "orphanDependents",
22947            "type": "boolean",
22948            "uniqueItems": true
22949          },
22950          {
22951            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22952            "in": "query",
22953            "name": "propagationPolicy",
22954            "type": "string",
22955            "uniqueItems": true
22956          }
22957        ],
22958        "produces": [
22959          "application/json",
22960          "application/yaml",
22961          "application/vnd.kubernetes.protobuf"
22962        ],
22963        "responses": {
22964          "200": {
22965            "description": "OK",
22966            "schema": {
22967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22968            }
22969          },
22970          "202": {
22971            "description": "Accepted",
22972            "schema": {
22973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22974            }
22975          },
22976          "401": {
22977            "description": "Unauthorized"
22978          }
22979        },
22980        "schemes": [
22981          "https"
22982        ],
22983        "tags": [
22984          "core_v1"
22985        ],
22986        "x-kubernetes-action": "delete",
22987        "x-kubernetes-group-version-kind": {
22988          "group": "",
22989          "kind": "LimitRange",
22990          "version": "v1"
22991        }
22992      },
22993      "get": {
22994        "consumes": [
22995          "*/*"
22996        ],
22997        "description": "read the specified LimitRange",
22998        "operationId": "readCoreV1NamespacedLimitRange",
22999        "produces": [
23000          "application/json",
23001          "application/yaml",
23002          "application/vnd.kubernetes.protobuf"
23003        ],
23004        "responses": {
23005          "200": {
23006            "description": "OK",
23007            "schema": {
23008              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23009            }
23010          },
23011          "401": {
23012            "description": "Unauthorized"
23013          }
23014        },
23015        "schemes": [
23016          "https"
23017        ],
23018        "tags": [
23019          "core_v1"
23020        ],
23021        "x-kubernetes-action": "get",
23022        "x-kubernetes-group-version-kind": {
23023          "group": "",
23024          "kind": "LimitRange",
23025          "version": "v1"
23026        }
23027      },
23028      "parameters": [
23029        {
23030          "description": "name of the LimitRange",
23031          "in": "path",
23032          "name": "name",
23033          "required": true,
23034          "type": "string",
23035          "uniqueItems": true
23036        },
23037        {
23038          "description": "object name and auth scope, such as for teams and projects",
23039          "in": "path",
23040          "name": "namespace",
23041          "required": true,
23042          "type": "string",
23043          "uniqueItems": true
23044        },
23045        {
23046          "description": "If 'true', then the output is pretty printed.",
23047          "in": "query",
23048          "name": "pretty",
23049          "type": "string",
23050          "uniqueItems": true
23051        }
23052      ],
23053      "patch": {
23054        "consumes": [
23055          "application/json-patch+json",
23056          "application/merge-patch+json",
23057          "application/strategic-merge-patch+json",
23058          "application/apply-patch+yaml"
23059        ],
23060        "description": "partially update the specified LimitRange",
23061        "operationId": "patchCoreV1NamespacedLimitRange",
23062        "parameters": [
23063          {
23064            "in": "body",
23065            "name": "body",
23066            "required": true,
23067            "schema": {
23068              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23069            }
23070          },
23071          {
23072            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23073            "in": "query",
23074            "name": "dryRun",
23075            "type": "string",
23076            "uniqueItems": true
23077          },
23078          {
23079            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
23080            "in": "query",
23081            "name": "fieldManager",
23082            "type": "string",
23083            "uniqueItems": true
23084          },
23085          {
23086            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
23087            "in": "query",
23088            "name": "force",
23089            "type": "boolean",
23090            "uniqueItems": true
23091          }
23092        ],
23093        "produces": [
23094          "application/json",
23095          "application/yaml",
23096          "application/vnd.kubernetes.protobuf"
23097        ],
23098        "responses": {
23099          "200": {
23100            "description": "OK",
23101            "schema": {
23102              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23103            }
23104          },
23105          "401": {
23106            "description": "Unauthorized"
23107          }
23108        },
23109        "schemes": [
23110          "https"
23111        ],
23112        "tags": [
23113          "core_v1"
23114        ],
23115        "x-kubernetes-action": "patch",
23116        "x-kubernetes-group-version-kind": {
23117          "group": "",
23118          "kind": "LimitRange",
23119          "version": "v1"
23120        }
23121      },
23122      "put": {
23123        "consumes": [
23124          "*/*"
23125        ],
23126        "description": "replace the specified LimitRange",
23127        "operationId": "replaceCoreV1NamespacedLimitRange",
23128        "parameters": [
23129          {
23130            "in": "body",
23131            "name": "body",
23132            "required": true,
23133            "schema": {
23134              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23135            }
23136          },
23137          {
23138            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23139            "in": "query",
23140            "name": "dryRun",
23141            "type": "string",
23142            "uniqueItems": true
23143          },
23144          {
23145            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23146            "in": "query",
23147            "name": "fieldManager",
23148            "type": "string",
23149            "uniqueItems": true
23150          }
23151        ],
23152        "produces": [
23153          "application/json",
23154          "application/yaml",
23155          "application/vnd.kubernetes.protobuf"
23156        ],
23157        "responses": {
23158          "200": {
23159            "description": "OK",
23160            "schema": {
23161              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23162            }
23163          },
23164          "201": {
23165            "description": "Created",
23166            "schema": {
23167              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
23168            }
23169          },
23170          "401": {
23171            "description": "Unauthorized"
23172          }
23173        },
23174        "schemes": [
23175          "https"
23176        ],
23177        "tags": [
23178          "core_v1"
23179        ],
23180        "x-kubernetes-action": "put",
23181        "x-kubernetes-group-version-kind": {
23182          "group": "",
23183          "kind": "LimitRange",
23184          "version": "v1"
23185        }
23186      }
23187    },
23188    "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
23189      "delete": {
23190        "consumes": [
23191          "*/*"
23192        ],
23193        "description": "delete collection of PersistentVolumeClaim",
23194        "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
23195        "parameters": [
23196          {
23197            "in": "body",
23198            "name": "body",
23199            "schema": {
23200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23201            }
23202          },
23203          {
23204            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23205            "in": "query",
23206            "name": "continue",
23207            "type": "string",
23208            "uniqueItems": true
23209          },
23210          {
23211            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23212            "in": "query",
23213            "name": "dryRun",
23214            "type": "string",
23215            "uniqueItems": true
23216          },
23217          {
23218            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23219            "in": "query",
23220            "name": "fieldSelector",
23221            "type": "string",
23222            "uniqueItems": true
23223          },
23224          {
23225            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23226            "in": "query",
23227            "name": "gracePeriodSeconds",
23228            "type": "integer",
23229            "uniqueItems": true
23230          },
23231          {
23232            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23233            "in": "query",
23234            "name": "labelSelector",
23235            "type": "string",
23236            "uniqueItems": true
23237          },
23238          {
23239            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23240            "in": "query",
23241            "name": "limit",
23242            "type": "integer",
23243            "uniqueItems": true
23244          },
23245          {
23246            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23247            "in": "query",
23248            "name": "orphanDependents",
23249            "type": "boolean",
23250            "uniqueItems": true
23251          },
23252          {
23253            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23254            "in": "query",
23255            "name": "propagationPolicy",
23256            "type": "string",
23257            "uniqueItems": true
23258          },
23259          {
23260            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23261            "in": "query",
23262            "name": "resourceVersion",
23263            "type": "string",
23264            "uniqueItems": true
23265          },
23266          {
23267            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23268            "in": "query",
23269            "name": "resourceVersionMatch",
23270            "type": "string",
23271            "uniqueItems": true
23272          },
23273          {
23274            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23275            "in": "query",
23276            "name": "timeoutSeconds",
23277            "type": "integer",
23278            "uniqueItems": true
23279          }
23280        ],
23281        "produces": [
23282          "application/json",
23283          "application/yaml",
23284          "application/vnd.kubernetes.protobuf"
23285        ],
23286        "responses": {
23287          "200": {
23288            "description": "OK",
23289            "schema": {
23290              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23291            }
23292          },
23293          "401": {
23294            "description": "Unauthorized"
23295          }
23296        },
23297        "schemes": [
23298          "https"
23299        ],
23300        "tags": [
23301          "core_v1"
23302        ],
23303        "x-kubernetes-action": "deletecollection",
23304        "x-kubernetes-group-version-kind": {
23305          "group": "",
23306          "kind": "PersistentVolumeClaim",
23307          "version": "v1"
23308        }
23309      },
23310      "get": {
23311        "consumes": [
23312          "*/*"
23313        ],
23314        "description": "list or watch objects of kind PersistentVolumeClaim",
23315        "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
23316        "parameters": [
23317          {
23318            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
23319            "in": "query",
23320            "name": "allowWatchBookmarks",
23321            "type": "boolean",
23322            "uniqueItems": true
23323          },
23324          {
23325            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23326            "in": "query",
23327            "name": "continue",
23328            "type": "string",
23329            "uniqueItems": true
23330          },
23331          {
23332            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23333            "in": "query",
23334            "name": "fieldSelector",
23335            "type": "string",
23336            "uniqueItems": true
23337          },
23338          {
23339            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23340            "in": "query",
23341            "name": "labelSelector",
23342            "type": "string",
23343            "uniqueItems": true
23344          },
23345          {
23346            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23347            "in": "query",
23348            "name": "limit",
23349            "type": "integer",
23350            "uniqueItems": true
23351          },
23352          {
23353            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23354            "in": "query",
23355            "name": "resourceVersion",
23356            "type": "string",
23357            "uniqueItems": true
23358          },
23359          {
23360            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23361            "in": "query",
23362            "name": "resourceVersionMatch",
23363            "type": "string",
23364            "uniqueItems": true
23365          },
23366          {
23367            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23368            "in": "query",
23369            "name": "timeoutSeconds",
23370            "type": "integer",
23371            "uniqueItems": true
23372          },
23373          {
23374            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23375            "in": "query",
23376            "name": "watch",
23377            "type": "boolean",
23378            "uniqueItems": true
23379          }
23380        ],
23381        "produces": [
23382          "application/json",
23383          "application/yaml",
23384          "application/vnd.kubernetes.protobuf",
23385          "application/json;stream=watch",
23386          "application/vnd.kubernetes.protobuf;stream=watch"
23387        ],
23388        "responses": {
23389          "200": {
23390            "description": "OK",
23391            "schema": {
23392              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
23393            }
23394          },
23395          "401": {
23396            "description": "Unauthorized"
23397          }
23398        },
23399        "schemes": [
23400          "https"
23401        ],
23402        "tags": [
23403          "core_v1"
23404        ],
23405        "x-kubernetes-action": "list",
23406        "x-kubernetes-group-version-kind": {
23407          "group": "",
23408          "kind": "PersistentVolumeClaim",
23409          "version": "v1"
23410        }
23411      },
23412      "parameters": [
23413        {
23414          "description": "object name and auth scope, such as for teams and projects",
23415          "in": "path",
23416          "name": "namespace",
23417          "required": true,
23418          "type": "string",
23419          "uniqueItems": true
23420        },
23421        {
23422          "description": "If 'true', then the output is pretty printed.",
23423          "in": "query",
23424          "name": "pretty",
23425          "type": "string",
23426          "uniqueItems": true
23427        }
23428      ],
23429      "post": {
23430        "consumes": [
23431          "*/*"
23432        ],
23433        "description": "create a PersistentVolumeClaim",
23434        "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
23435        "parameters": [
23436          {
23437            "in": "body",
23438            "name": "body",
23439            "required": true,
23440            "schema": {
23441              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23442            }
23443          },
23444          {
23445            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23446            "in": "query",
23447            "name": "dryRun",
23448            "type": "string",
23449            "uniqueItems": true
23450          },
23451          {
23452            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23453            "in": "query",
23454            "name": "fieldManager",
23455            "type": "string",
23456            "uniqueItems": true
23457          }
23458        ],
23459        "produces": [
23460          "application/json",
23461          "application/yaml",
23462          "application/vnd.kubernetes.protobuf"
23463        ],
23464        "responses": {
23465          "200": {
23466            "description": "OK",
23467            "schema": {
23468              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23469            }
23470          },
23471          "201": {
23472            "description": "Created",
23473            "schema": {
23474              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23475            }
23476          },
23477          "202": {
23478            "description": "Accepted",
23479            "schema": {
23480              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23481            }
23482          },
23483          "401": {
23484            "description": "Unauthorized"
23485          }
23486        },
23487        "schemes": [
23488          "https"
23489        ],
23490        "tags": [
23491          "core_v1"
23492        ],
23493        "x-kubernetes-action": "post",
23494        "x-kubernetes-group-version-kind": {
23495          "group": "",
23496          "kind": "PersistentVolumeClaim",
23497          "version": "v1"
23498        }
23499      }
23500    },
23501    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
23502      "delete": {
23503        "consumes": [
23504          "*/*"
23505        ],
23506        "description": "delete a PersistentVolumeClaim",
23507        "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
23508        "parameters": [
23509          {
23510            "in": "body",
23511            "name": "body",
23512            "schema": {
23513              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23514            }
23515          },
23516          {
23517            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23518            "in": "query",
23519            "name": "dryRun",
23520            "type": "string",
23521            "uniqueItems": true
23522          },
23523          {
23524            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23525            "in": "query",
23526            "name": "gracePeriodSeconds",
23527            "type": "integer",
23528            "uniqueItems": true
23529          },
23530          {
23531            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23532            "in": "query",
23533            "name": "orphanDependents",
23534            "type": "boolean",
23535            "uniqueItems": true
23536          },
23537          {
23538            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23539            "in": "query",
23540            "name": "propagationPolicy",
23541            "type": "string",
23542            "uniqueItems": true
23543          }
23544        ],
23545        "produces": [
23546          "application/json",
23547          "application/yaml",
23548          "application/vnd.kubernetes.protobuf"
23549        ],
23550        "responses": {
23551          "200": {
23552            "description": "OK",
23553            "schema": {
23554              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23555            }
23556          },
23557          "202": {
23558            "description": "Accepted",
23559            "schema": {
23560              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23561            }
23562          },
23563          "401": {
23564            "description": "Unauthorized"
23565          }
23566        },
23567        "schemes": [
23568          "https"
23569        ],
23570        "tags": [
23571          "core_v1"
23572        ],
23573        "x-kubernetes-action": "delete",
23574        "x-kubernetes-group-version-kind": {
23575          "group": "",
23576          "kind": "PersistentVolumeClaim",
23577          "version": "v1"
23578        }
23579      },
23580      "get": {
23581        "consumes": [
23582          "*/*"
23583        ],
23584        "description": "read the specified PersistentVolumeClaim",
23585        "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
23586        "produces": [
23587          "application/json",
23588          "application/yaml",
23589          "application/vnd.kubernetes.protobuf"
23590        ],
23591        "responses": {
23592          "200": {
23593            "description": "OK",
23594            "schema": {
23595              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23596            }
23597          },
23598          "401": {
23599            "description": "Unauthorized"
23600          }
23601        },
23602        "schemes": [
23603          "https"
23604        ],
23605        "tags": [
23606          "core_v1"
23607        ],
23608        "x-kubernetes-action": "get",
23609        "x-kubernetes-group-version-kind": {
23610          "group": "",
23611          "kind": "PersistentVolumeClaim",
23612          "version": "v1"
23613        }
23614      },
23615      "parameters": [
23616        {
23617          "description": "name of the PersistentVolumeClaim",
23618          "in": "path",
23619          "name": "name",
23620          "required": true,
23621          "type": "string",
23622          "uniqueItems": true
23623        },
23624        {
23625          "description": "object name and auth scope, such as for teams and projects",
23626          "in": "path",
23627          "name": "namespace",
23628          "required": true,
23629          "type": "string",
23630          "uniqueItems": true
23631        },
23632        {
23633          "description": "If 'true', then the output is pretty printed.",
23634          "in": "query",
23635          "name": "pretty",
23636          "type": "string",
23637          "uniqueItems": true
23638        }
23639      ],
23640      "patch": {
23641        "consumes": [
23642          "application/json-patch+json",
23643          "application/merge-patch+json",
23644          "application/strategic-merge-patch+json",
23645          "application/apply-patch+yaml"
23646        ],
23647        "description": "partially update the specified PersistentVolumeClaim",
23648        "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
23649        "parameters": [
23650          {
23651            "in": "body",
23652            "name": "body",
23653            "required": true,
23654            "schema": {
23655              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23656            }
23657          },
23658          {
23659            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23660            "in": "query",
23661            "name": "dryRun",
23662            "type": "string",
23663            "uniqueItems": true
23664          },
23665          {
23666            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
23667            "in": "query",
23668            "name": "fieldManager",
23669            "type": "string",
23670            "uniqueItems": true
23671          },
23672          {
23673            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
23674            "in": "query",
23675            "name": "force",
23676            "type": "boolean",
23677            "uniqueItems": true
23678          }
23679        ],
23680        "produces": [
23681          "application/json",
23682          "application/yaml",
23683          "application/vnd.kubernetes.protobuf"
23684        ],
23685        "responses": {
23686          "200": {
23687            "description": "OK",
23688            "schema": {
23689              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23690            }
23691          },
23692          "401": {
23693            "description": "Unauthorized"
23694          }
23695        },
23696        "schemes": [
23697          "https"
23698        ],
23699        "tags": [
23700          "core_v1"
23701        ],
23702        "x-kubernetes-action": "patch",
23703        "x-kubernetes-group-version-kind": {
23704          "group": "",
23705          "kind": "PersistentVolumeClaim",
23706          "version": "v1"
23707        }
23708      },
23709      "put": {
23710        "consumes": [
23711          "*/*"
23712        ],
23713        "description": "replace the specified PersistentVolumeClaim",
23714        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
23715        "parameters": [
23716          {
23717            "in": "body",
23718            "name": "body",
23719            "required": true,
23720            "schema": {
23721              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23722            }
23723          },
23724          {
23725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23726            "in": "query",
23727            "name": "dryRun",
23728            "type": "string",
23729            "uniqueItems": true
23730          },
23731          {
23732            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23733            "in": "query",
23734            "name": "fieldManager",
23735            "type": "string",
23736            "uniqueItems": true
23737          }
23738        ],
23739        "produces": [
23740          "application/json",
23741          "application/yaml",
23742          "application/vnd.kubernetes.protobuf"
23743        ],
23744        "responses": {
23745          "200": {
23746            "description": "OK",
23747            "schema": {
23748              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23749            }
23750          },
23751          "201": {
23752            "description": "Created",
23753            "schema": {
23754              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23755            }
23756          },
23757          "401": {
23758            "description": "Unauthorized"
23759          }
23760        },
23761        "schemes": [
23762          "https"
23763        ],
23764        "tags": [
23765          "core_v1"
23766        ],
23767        "x-kubernetes-action": "put",
23768        "x-kubernetes-group-version-kind": {
23769          "group": "",
23770          "kind": "PersistentVolumeClaim",
23771          "version": "v1"
23772        }
23773      }
23774    },
23775    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
23776      "get": {
23777        "consumes": [
23778          "*/*"
23779        ],
23780        "description": "read status of the specified PersistentVolumeClaim",
23781        "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
23782        "produces": [
23783          "application/json",
23784          "application/yaml",
23785          "application/vnd.kubernetes.protobuf"
23786        ],
23787        "responses": {
23788          "200": {
23789            "description": "OK",
23790            "schema": {
23791              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23792            }
23793          },
23794          "401": {
23795            "description": "Unauthorized"
23796          }
23797        },
23798        "schemes": [
23799          "https"
23800        ],
23801        "tags": [
23802          "core_v1"
23803        ],
23804        "x-kubernetes-action": "get",
23805        "x-kubernetes-group-version-kind": {
23806          "group": "",
23807          "kind": "PersistentVolumeClaim",
23808          "version": "v1"
23809        }
23810      },
23811      "parameters": [
23812        {
23813          "description": "name of the PersistentVolumeClaim",
23814          "in": "path",
23815          "name": "name",
23816          "required": true,
23817          "type": "string",
23818          "uniqueItems": true
23819        },
23820        {
23821          "description": "object name and auth scope, such as for teams and projects",
23822          "in": "path",
23823          "name": "namespace",
23824          "required": true,
23825          "type": "string",
23826          "uniqueItems": true
23827        },
23828        {
23829          "description": "If 'true', then the output is pretty printed.",
23830          "in": "query",
23831          "name": "pretty",
23832          "type": "string",
23833          "uniqueItems": true
23834        }
23835      ],
23836      "patch": {
23837        "consumes": [
23838          "application/json-patch+json",
23839          "application/merge-patch+json",
23840          "application/strategic-merge-patch+json",
23841          "application/apply-patch+yaml"
23842        ],
23843        "description": "partially update status of the specified PersistentVolumeClaim",
23844        "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
23845        "parameters": [
23846          {
23847            "in": "body",
23848            "name": "body",
23849            "required": true,
23850            "schema": {
23851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23852            }
23853          },
23854          {
23855            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23856            "in": "query",
23857            "name": "dryRun",
23858            "type": "string",
23859            "uniqueItems": true
23860          },
23861          {
23862            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
23863            "in": "query",
23864            "name": "fieldManager",
23865            "type": "string",
23866            "uniqueItems": true
23867          },
23868          {
23869            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
23870            "in": "query",
23871            "name": "force",
23872            "type": "boolean",
23873            "uniqueItems": true
23874          }
23875        ],
23876        "produces": [
23877          "application/json",
23878          "application/yaml",
23879          "application/vnd.kubernetes.protobuf"
23880        ],
23881        "responses": {
23882          "200": {
23883            "description": "OK",
23884            "schema": {
23885              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23886            }
23887          },
23888          "401": {
23889            "description": "Unauthorized"
23890          }
23891        },
23892        "schemes": [
23893          "https"
23894        ],
23895        "tags": [
23896          "core_v1"
23897        ],
23898        "x-kubernetes-action": "patch",
23899        "x-kubernetes-group-version-kind": {
23900          "group": "",
23901          "kind": "PersistentVolumeClaim",
23902          "version": "v1"
23903        }
23904      },
23905      "put": {
23906        "consumes": [
23907          "*/*"
23908        ],
23909        "description": "replace status of the specified PersistentVolumeClaim",
23910        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
23911        "parameters": [
23912          {
23913            "in": "body",
23914            "name": "body",
23915            "required": true,
23916            "schema": {
23917              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23918            }
23919          },
23920          {
23921            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23922            "in": "query",
23923            "name": "dryRun",
23924            "type": "string",
23925            "uniqueItems": true
23926          },
23927          {
23928            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23929            "in": "query",
23930            "name": "fieldManager",
23931            "type": "string",
23932            "uniqueItems": true
23933          }
23934        ],
23935        "produces": [
23936          "application/json",
23937          "application/yaml",
23938          "application/vnd.kubernetes.protobuf"
23939        ],
23940        "responses": {
23941          "200": {
23942            "description": "OK",
23943            "schema": {
23944              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23945            }
23946          },
23947          "201": {
23948            "description": "Created",
23949            "schema": {
23950              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23951            }
23952          },
23953          "401": {
23954            "description": "Unauthorized"
23955          }
23956        },
23957        "schemes": [
23958          "https"
23959        ],
23960        "tags": [
23961          "core_v1"
23962        ],
23963        "x-kubernetes-action": "put",
23964        "x-kubernetes-group-version-kind": {
23965          "group": "",
23966          "kind": "PersistentVolumeClaim",
23967          "version": "v1"
23968        }
23969      }
23970    },
23971    "/api/v1/namespaces/{namespace}/pods": {
23972      "delete": {
23973        "consumes": [
23974          "*/*"
23975        ],
23976        "description": "delete collection of Pod",
23977        "operationId": "deleteCoreV1CollectionNamespacedPod",
23978        "parameters": [
23979          {
23980            "in": "body",
23981            "name": "body",
23982            "schema": {
23983              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23984            }
23985          },
23986          {
23987            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23988            "in": "query",
23989            "name": "continue",
23990            "type": "string",
23991            "uniqueItems": true
23992          },
23993          {
23994            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23995            "in": "query",
23996            "name": "dryRun",
23997            "type": "string",
23998            "uniqueItems": true
23999          },
24000          {
24001            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24002            "in": "query",
24003            "name": "fieldSelector",
24004            "type": "string",
24005            "uniqueItems": true
24006          },
24007          {
24008            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24009            "in": "query",
24010            "name": "gracePeriodSeconds",
24011            "type": "integer",
24012            "uniqueItems": true
24013          },
24014          {
24015            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24016            "in": "query",
24017            "name": "labelSelector",
24018            "type": "string",
24019            "uniqueItems": true
24020          },
24021          {
24022            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24023            "in": "query",
24024            "name": "limit",
24025            "type": "integer",
24026            "uniqueItems": true
24027          },
24028          {
24029            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24030            "in": "query",
24031            "name": "orphanDependents",
24032            "type": "boolean",
24033            "uniqueItems": true
24034          },
24035          {
24036            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24037            "in": "query",
24038            "name": "propagationPolicy",
24039            "type": "string",
24040            "uniqueItems": true
24041          },
24042          {
24043            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24044            "in": "query",
24045            "name": "resourceVersion",
24046            "type": "string",
24047            "uniqueItems": true
24048          },
24049          {
24050            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24051            "in": "query",
24052            "name": "resourceVersionMatch",
24053            "type": "string",
24054            "uniqueItems": true
24055          },
24056          {
24057            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24058            "in": "query",
24059            "name": "timeoutSeconds",
24060            "type": "integer",
24061            "uniqueItems": true
24062          }
24063        ],
24064        "produces": [
24065          "application/json",
24066          "application/yaml",
24067          "application/vnd.kubernetes.protobuf"
24068        ],
24069        "responses": {
24070          "200": {
24071            "description": "OK",
24072            "schema": {
24073              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24074            }
24075          },
24076          "401": {
24077            "description": "Unauthorized"
24078          }
24079        },
24080        "schemes": [
24081          "https"
24082        ],
24083        "tags": [
24084          "core_v1"
24085        ],
24086        "x-kubernetes-action": "deletecollection",
24087        "x-kubernetes-group-version-kind": {
24088          "group": "",
24089          "kind": "Pod",
24090          "version": "v1"
24091        }
24092      },
24093      "get": {
24094        "consumes": [
24095          "*/*"
24096        ],
24097        "description": "list or watch objects of kind Pod",
24098        "operationId": "listCoreV1NamespacedPod",
24099        "parameters": [
24100          {
24101            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
24102            "in": "query",
24103            "name": "allowWatchBookmarks",
24104            "type": "boolean",
24105            "uniqueItems": true
24106          },
24107          {
24108            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
24109            "in": "query",
24110            "name": "continue",
24111            "type": "string",
24112            "uniqueItems": true
24113          },
24114          {
24115            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24116            "in": "query",
24117            "name": "fieldSelector",
24118            "type": "string",
24119            "uniqueItems": true
24120          },
24121          {
24122            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24123            "in": "query",
24124            "name": "labelSelector",
24125            "type": "string",
24126            "uniqueItems": true
24127          },
24128          {
24129            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24130            "in": "query",
24131            "name": "limit",
24132            "type": "integer",
24133            "uniqueItems": true
24134          },
24135          {
24136            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24137            "in": "query",
24138            "name": "resourceVersion",
24139            "type": "string",
24140            "uniqueItems": true
24141          },
24142          {
24143            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24144            "in": "query",
24145            "name": "resourceVersionMatch",
24146            "type": "string",
24147            "uniqueItems": true
24148          },
24149          {
24150            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24151            "in": "query",
24152            "name": "timeoutSeconds",
24153            "type": "integer",
24154            "uniqueItems": true
24155          },
24156          {
24157            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
24158            "in": "query",
24159            "name": "watch",
24160            "type": "boolean",
24161            "uniqueItems": true
24162          }
24163        ],
24164        "produces": [
24165          "application/json",
24166          "application/yaml",
24167          "application/vnd.kubernetes.protobuf",
24168          "application/json;stream=watch",
24169          "application/vnd.kubernetes.protobuf;stream=watch"
24170        ],
24171        "responses": {
24172          "200": {
24173            "description": "OK",
24174            "schema": {
24175              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
24176            }
24177          },
24178          "401": {
24179            "description": "Unauthorized"
24180          }
24181        },
24182        "schemes": [
24183          "https"
24184        ],
24185        "tags": [
24186          "core_v1"
24187        ],
24188        "x-kubernetes-action": "list",
24189        "x-kubernetes-group-version-kind": {
24190          "group": "",
24191          "kind": "Pod",
24192          "version": "v1"
24193        }
24194      },
24195      "parameters": [
24196        {
24197          "description": "object name and auth scope, such as for teams and projects",
24198          "in": "path",
24199          "name": "namespace",
24200          "required": true,
24201          "type": "string",
24202          "uniqueItems": true
24203        },
24204        {
24205          "description": "If 'true', then the output is pretty printed.",
24206          "in": "query",
24207          "name": "pretty",
24208          "type": "string",
24209          "uniqueItems": true
24210        }
24211      ],
24212      "post": {
24213        "consumes": [
24214          "*/*"
24215        ],
24216        "description": "create a Pod",
24217        "operationId": "createCoreV1NamespacedPod",
24218        "parameters": [
24219          {
24220            "in": "body",
24221            "name": "body",
24222            "required": true,
24223            "schema": {
24224              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24225            }
24226          },
24227          {
24228            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24229            "in": "query",
24230            "name": "dryRun",
24231            "type": "string",
24232            "uniqueItems": true
24233          },
24234          {
24235            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24236            "in": "query",
24237            "name": "fieldManager",
24238            "type": "string",
24239            "uniqueItems": true
24240          }
24241        ],
24242        "produces": [
24243          "application/json",
24244          "application/yaml",
24245          "application/vnd.kubernetes.protobuf"
24246        ],
24247        "responses": {
24248          "200": {
24249            "description": "OK",
24250            "schema": {
24251              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24252            }
24253          },
24254          "201": {
24255            "description": "Created",
24256            "schema": {
24257              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24258            }
24259          },
24260          "202": {
24261            "description": "Accepted",
24262            "schema": {
24263              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24264            }
24265          },
24266          "401": {
24267            "description": "Unauthorized"
24268          }
24269        },
24270        "schemes": [
24271          "https"
24272        ],
24273        "tags": [
24274          "core_v1"
24275        ],
24276        "x-kubernetes-action": "post",
24277        "x-kubernetes-group-version-kind": {
24278          "group": "",
24279          "kind": "Pod",
24280          "version": "v1"
24281        }
24282      }
24283    },
24284    "/api/v1/namespaces/{namespace}/pods/{name}": {
24285      "delete": {
24286        "consumes": [
24287          "*/*"
24288        ],
24289        "description": "delete a Pod",
24290        "operationId": "deleteCoreV1NamespacedPod",
24291        "parameters": [
24292          {
24293            "in": "body",
24294            "name": "body",
24295            "schema": {
24296              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
24297            }
24298          },
24299          {
24300            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24301            "in": "query",
24302            "name": "dryRun",
24303            "type": "string",
24304            "uniqueItems": true
24305          },
24306          {
24307            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24308            "in": "query",
24309            "name": "gracePeriodSeconds",
24310            "type": "integer",
24311            "uniqueItems": true
24312          },
24313          {
24314            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24315            "in": "query",
24316            "name": "orphanDependents",
24317            "type": "boolean",
24318            "uniqueItems": true
24319          },
24320          {
24321            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24322            "in": "query",
24323            "name": "propagationPolicy",
24324            "type": "string",
24325            "uniqueItems": true
24326          }
24327        ],
24328        "produces": [
24329          "application/json",
24330          "application/yaml",
24331          "application/vnd.kubernetes.protobuf"
24332        ],
24333        "responses": {
24334          "200": {
24335            "description": "OK",
24336            "schema": {
24337              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24338            }
24339          },
24340          "202": {
24341            "description": "Accepted",
24342            "schema": {
24343              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24344            }
24345          },
24346          "401": {
24347            "description": "Unauthorized"
24348          }
24349        },
24350        "schemes": [
24351          "https"
24352        ],
24353        "tags": [
24354          "core_v1"
24355        ],
24356        "x-kubernetes-action": "delete",
24357        "x-kubernetes-group-version-kind": {
24358          "group": "",
24359          "kind": "Pod",
24360          "version": "v1"
24361        }
24362      },
24363      "get": {
24364        "consumes": [
24365          "*/*"
24366        ],
24367        "description": "read the specified Pod",
24368        "operationId": "readCoreV1NamespacedPod",
24369        "produces": [
24370          "application/json",
24371          "application/yaml",
24372          "application/vnd.kubernetes.protobuf"
24373        ],
24374        "responses": {
24375          "200": {
24376            "description": "OK",
24377            "schema": {
24378              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24379            }
24380          },
24381          "401": {
24382            "description": "Unauthorized"
24383          }
24384        },
24385        "schemes": [
24386          "https"
24387        ],
24388        "tags": [
24389          "core_v1"
24390        ],
24391        "x-kubernetes-action": "get",
24392        "x-kubernetes-group-version-kind": {
24393          "group": "",
24394          "kind": "Pod",
24395          "version": "v1"
24396        }
24397      },
24398      "parameters": [
24399        {
24400          "description": "name of the Pod",
24401          "in": "path",
24402          "name": "name",
24403          "required": true,
24404          "type": "string",
24405          "uniqueItems": true
24406        },
24407        {
24408          "description": "object name and auth scope, such as for teams and projects",
24409          "in": "path",
24410          "name": "namespace",
24411          "required": true,
24412          "type": "string",
24413          "uniqueItems": true
24414        },
24415        {
24416          "description": "If 'true', then the output is pretty printed.",
24417          "in": "query",
24418          "name": "pretty",
24419          "type": "string",
24420          "uniqueItems": true
24421        }
24422      ],
24423      "patch": {
24424        "consumes": [
24425          "application/json-patch+json",
24426          "application/merge-patch+json",
24427          "application/strategic-merge-patch+json",
24428          "application/apply-patch+yaml"
24429        ],
24430        "description": "partially update the specified Pod",
24431        "operationId": "patchCoreV1NamespacedPod",
24432        "parameters": [
24433          {
24434            "in": "body",
24435            "name": "body",
24436            "required": true,
24437            "schema": {
24438              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24439            }
24440          },
24441          {
24442            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24443            "in": "query",
24444            "name": "dryRun",
24445            "type": "string",
24446            "uniqueItems": true
24447          },
24448          {
24449            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24450            "in": "query",
24451            "name": "fieldManager",
24452            "type": "string",
24453            "uniqueItems": true
24454          },
24455          {
24456            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
24457            "in": "query",
24458            "name": "force",
24459            "type": "boolean",
24460            "uniqueItems": true
24461          }
24462        ],
24463        "produces": [
24464          "application/json",
24465          "application/yaml",
24466          "application/vnd.kubernetes.protobuf"
24467        ],
24468        "responses": {
24469          "200": {
24470            "description": "OK",
24471            "schema": {
24472              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24473            }
24474          },
24475          "401": {
24476            "description": "Unauthorized"
24477          }
24478        },
24479        "schemes": [
24480          "https"
24481        ],
24482        "tags": [
24483          "core_v1"
24484        ],
24485        "x-kubernetes-action": "patch",
24486        "x-kubernetes-group-version-kind": {
24487          "group": "",
24488          "kind": "Pod",
24489          "version": "v1"
24490        }
24491      },
24492      "put": {
24493        "consumes": [
24494          "*/*"
24495        ],
24496        "description": "replace the specified Pod",
24497        "operationId": "replaceCoreV1NamespacedPod",
24498        "parameters": [
24499          {
24500            "in": "body",
24501            "name": "body",
24502            "required": true,
24503            "schema": {
24504              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24505            }
24506          },
24507          {
24508            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24509            "in": "query",
24510            "name": "dryRun",
24511            "type": "string",
24512            "uniqueItems": true
24513          },
24514          {
24515            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24516            "in": "query",
24517            "name": "fieldManager",
24518            "type": "string",
24519            "uniqueItems": true
24520          }
24521        ],
24522        "produces": [
24523          "application/json",
24524          "application/yaml",
24525          "application/vnd.kubernetes.protobuf"
24526        ],
24527        "responses": {
24528          "200": {
24529            "description": "OK",
24530            "schema": {
24531              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24532            }
24533          },
24534          "201": {
24535            "description": "Created",
24536            "schema": {
24537              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
24538            }
24539          },
24540          "401": {
24541            "description": "Unauthorized"
24542          }
24543        },
24544        "schemes": [
24545          "https"
24546        ],
24547        "tags": [
24548          "core_v1"
24549        ],
24550        "x-kubernetes-action": "put",
24551        "x-kubernetes-group-version-kind": {
24552          "group": "",
24553          "kind": "Pod",
24554          "version": "v1"
24555        }
24556      }
24557    },
24558    "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
24559      "get": {
24560        "consumes": [
24561          "*/*"
24562        ],
24563        "description": "connect GET requests to attach of Pod",
24564        "operationId": "connectCoreV1GetNamespacedPodAttach",
24565        "produces": [
24566          "*/*"
24567        ],
24568        "responses": {
24569          "200": {
24570            "description": "OK",
24571            "schema": {
24572              "type": "string"
24573            }
24574          },
24575          "401": {
24576            "description": "Unauthorized"
24577          }
24578        },
24579        "schemes": [
24580          "https"
24581        ],
24582        "tags": [
24583          "core_v1"
24584        ],
24585        "x-kubernetes-action": "connect",
24586        "x-kubernetes-group-version-kind": {
24587          "group": "",
24588          "kind": "PodAttachOptions",
24589          "version": "v1"
24590        }
24591      },
24592      "parameters": [
24593        {
24594          "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
24595          "in": "query",
24596          "name": "container",
24597          "type": "string",
24598          "uniqueItems": true
24599        },
24600        {
24601          "description": "name of the PodAttachOptions",
24602          "in": "path",
24603          "name": "name",
24604          "required": true,
24605          "type": "string",
24606          "uniqueItems": true
24607        },
24608        {
24609          "description": "object name and auth scope, such as for teams and projects",
24610          "in": "path",
24611          "name": "namespace",
24612          "required": true,
24613          "type": "string",
24614          "uniqueItems": true
24615        },
24616        {
24617          "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
24618          "in": "query",
24619          "name": "stderr",
24620          "type": "boolean",
24621          "uniqueItems": true
24622        },
24623        {
24624          "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
24625          "in": "query",
24626          "name": "stdin",
24627          "type": "boolean",
24628          "uniqueItems": true
24629        },
24630        {
24631          "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
24632          "in": "query",
24633          "name": "stdout",
24634          "type": "boolean",
24635          "uniqueItems": true
24636        },
24637        {
24638          "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.",
24639          "in": "query",
24640          "name": "tty",
24641          "type": "boolean",
24642          "uniqueItems": true
24643        }
24644      ],
24645      "post": {
24646        "consumes": [
24647          "*/*"
24648        ],
24649        "description": "connect POST requests to attach of Pod",
24650        "operationId": "connectCoreV1PostNamespacedPodAttach",
24651        "produces": [
24652          "*/*"
24653        ],
24654        "responses": {
24655          "200": {
24656            "description": "OK",
24657            "schema": {
24658              "type": "string"
24659            }
24660          },
24661          "401": {
24662            "description": "Unauthorized"
24663          }
24664        },
24665        "schemes": [
24666          "https"
24667        ],
24668        "tags": [
24669          "core_v1"
24670        ],
24671        "x-kubernetes-action": "connect",
24672        "x-kubernetes-group-version-kind": {
24673          "group": "",
24674          "kind": "PodAttachOptions",
24675          "version": "v1"
24676        }
24677      }
24678    },
24679    "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
24680      "parameters": [
24681        {
24682          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24683          "in": "query",
24684          "name": "dryRun",
24685          "type": "string",
24686          "uniqueItems": true
24687        },
24688        {
24689          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24690          "in": "query",
24691          "name": "fieldManager",
24692          "type": "string",
24693          "uniqueItems": true
24694        },
24695        {
24696          "description": "name of the Binding",
24697          "in": "path",
24698          "name": "name",
24699          "required": true,
24700          "type": "string",
24701          "uniqueItems": true
24702        },
24703        {
24704          "description": "object name and auth scope, such as for teams and projects",
24705          "in": "path",
24706          "name": "namespace",
24707          "required": true,
24708          "type": "string",
24709          "uniqueItems": true
24710        },
24711        {
24712          "description": "If 'true', then the output is pretty printed.",
24713          "in": "query",
24714          "name": "pretty",
24715          "type": "string",
24716          "uniqueItems": true
24717        }
24718      ],
24719      "post": {
24720        "consumes": [
24721          "*/*"
24722        ],
24723        "description": "create binding of a Pod",
24724        "operationId": "createCoreV1NamespacedPodBinding",
24725        "parameters": [
24726          {
24727            "in": "body",
24728            "name": "body",
24729            "required": true,
24730            "schema": {
24731              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24732            }
24733          }
24734        ],
24735        "produces": [
24736          "application/json",
24737          "application/yaml",
24738          "application/vnd.kubernetes.protobuf"
24739        ],
24740        "responses": {
24741          "200": {
24742            "description": "OK",
24743            "schema": {
24744              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24745            }
24746          },
24747          "201": {
24748            "description": "Created",
24749            "schema": {
24750              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24751            }
24752          },
24753          "202": {
24754            "description": "Accepted",
24755            "schema": {
24756              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24757            }
24758          },
24759          "401": {
24760            "description": "Unauthorized"
24761          }
24762        },
24763        "schemes": [
24764          "https"
24765        ],
24766        "tags": [
24767          "core_v1"
24768        ],
24769        "x-kubernetes-action": "post",
24770        "x-kubernetes-group-version-kind": {
24771          "group": "",
24772          "kind": "Binding",
24773          "version": "v1"
24774        }
24775      }
24776    },
24777    "/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers": {
24778      "get": {
24779        "consumes": [
24780          "*/*"
24781        ],
24782        "description": "read ephemeralcontainers of the specified Pod",
24783        "operationId": "readCoreV1NamespacedPodEphemeralcontainers",
24784        "produces": [
24785          "application/json",
24786          "application/yaml",
24787          "application/vnd.kubernetes.protobuf"
24788        ],
24789        "responses": {
24790          "200": {
24791            "description": "OK",
24792            "schema": {
24793              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24794            }
24795          },
24796          "401": {
24797            "description": "Unauthorized"
24798          }
24799        },
24800        "schemes": [
24801          "https"
24802        ],
24803        "tags": [
24804          "core_v1"
24805        ],
24806        "x-kubernetes-action": "get",
24807        "x-kubernetes-group-version-kind": {
24808          "group": "",
24809          "kind": "EphemeralContainers",
24810          "version": "v1"
24811        }
24812      },
24813      "parameters": [
24814        {
24815          "description": "name of the EphemeralContainers",
24816          "in": "path",
24817          "name": "name",
24818          "required": true,
24819          "type": "string",
24820          "uniqueItems": true
24821        },
24822        {
24823          "description": "object name and auth scope, such as for teams and projects",
24824          "in": "path",
24825          "name": "namespace",
24826          "required": true,
24827          "type": "string",
24828          "uniqueItems": true
24829        },
24830        {
24831          "description": "If 'true', then the output is pretty printed.",
24832          "in": "query",
24833          "name": "pretty",
24834          "type": "string",
24835          "uniqueItems": true
24836        }
24837      ],
24838      "patch": {
24839        "consumes": [
24840          "application/json-patch+json",
24841          "application/merge-patch+json",
24842          "application/strategic-merge-patch+json",
24843          "application/apply-patch+yaml"
24844        ],
24845        "description": "partially update ephemeralcontainers of the specified Pod",
24846        "operationId": "patchCoreV1NamespacedPodEphemeralcontainers",
24847        "parameters": [
24848          {
24849            "in": "body",
24850            "name": "body",
24851            "required": true,
24852            "schema": {
24853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24854            }
24855          },
24856          {
24857            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24858            "in": "query",
24859            "name": "dryRun",
24860            "type": "string",
24861            "uniqueItems": true
24862          },
24863          {
24864            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24865            "in": "query",
24866            "name": "fieldManager",
24867            "type": "string",
24868            "uniqueItems": true
24869          },
24870          {
24871            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
24872            "in": "query",
24873            "name": "force",
24874            "type": "boolean",
24875            "uniqueItems": true
24876          }
24877        ],
24878        "produces": [
24879          "application/json",
24880          "application/yaml",
24881          "application/vnd.kubernetes.protobuf"
24882        ],
24883        "responses": {
24884          "200": {
24885            "description": "OK",
24886            "schema": {
24887              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24888            }
24889          },
24890          "401": {
24891            "description": "Unauthorized"
24892          }
24893        },
24894        "schemes": [
24895          "https"
24896        ],
24897        "tags": [
24898          "core_v1"
24899        ],
24900        "x-kubernetes-action": "patch",
24901        "x-kubernetes-group-version-kind": {
24902          "group": "",
24903          "kind": "EphemeralContainers",
24904          "version": "v1"
24905        }
24906      },
24907      "put": {
24908        "consumes": [
24909          "*/*"
24910        ],
24911        "description": "replace ephemeralcontainers of the specified Pod",
24912        "operationId": "replaceCoreV1NamespacedPodEphemeralcontainers",
24913        "parameters": [
24914          {
24915            "in": "body",
24916            "name": "body",
24917            "required": true,
24918            "schema": {
24919              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24920            }
24921          },
24922          {
24923            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24924            "in": "query",
24925            "name": "dryRun",
24926            "type": "string",
24927            "uniqueItems": true
24928          },
24929          {
24930            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24931            "in": "query",
24932            "name": "fieldManager",
24933            "type": "string",
24934            "uniqueItems": true
24935          }
24936        ],
24937        "produces": [
24938          "application/json",
24939          "application/yaml",
24940          "application/vnd.kubernetes.protobuf"
24941        ],
24942        "responses": {
24943          "200": {
24944            "description": "OK",
24945            "schema": {
24946              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24947            }
24948          },
24949          "201": {
24950            "description": "Created",
24951            "schema": {
24952              "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainers"
24953            }
24954          },
24955          "401": {
24956            "description": "Unauthorized"
24957          }
24958        },
24959        "schemes": [
24960          "https"
24961        ],
24962        "tags": [
24963          "core_v1"
24964        ],
24965        "x-kubernetes-action": "put",
24966        "x-kubernetes-group-version-kind": {
24967          "group": "",
24968          "kind": "EphemeralContainers",
24969          "version": "v1"
24970        }
24971      }
24972    },
24973    "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
24974      "parameters": [
24975        {
24976          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24977          "in": "query",
24978          "name": "dryRun",
24979          "type": "string",
24980          "uniqueItems": true
24981        },
24982        {
24983          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24984          "in": "query",
24985          "name": "fieldManager",
24986          "type": "string",
24987          "uniqueItems": true
24988        },
24989        {
24990          "description": "name of the Eviction",
24991          "in": "path",
24992          "name": "name",
24993          "required": true,
24994          "type": "string",
24995          "uniqueItems": true
24996        },
24997        {
24998          "description": "object name and auth scope, such as for teams and projects",
24999          "in": "path",
25000          "name": "namespace",
25001          "required": true,
25002          "type": "string",
25003          "uniqueItems": true
25004        },
25005        {
25006          "description": "If 'true', then the output is pretty printed.",
25007          "in": "query",
25008          "name": "pretty",
25009          "type": "string",
25010          "uniqueItems": true
25011        }
25012      ],
25013      "post": {
25014        "consumes": [
25015          "*/*"
25016        ],
25017        "description": "create eviction of a Pod",
25018        "operationId": "createCoreV1NamespacedPodEviction",
25019        "parameters": [
25020          {
25021            "in": "body",
25022            "name": "body",
25023            "required": true,
25024            "schema": {
25025              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25026            }
25027          }
25028        ],
25029        "produces": [
25030          "application/json",
25031          "application/yaml",
25032          "application/vnd.kubernetes.protobuf"
25033        ],
25034        "responses": {
25035          "200": {
25036            "description": "OK",
25037            "schema": {
25038              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25039            }
25040          },
25041          "201": {
25042            "description": "Created",
25043            "schema": {
25044              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25045            }
25046          },
25047          "202": {
25048            "description": "Accepted",
25049            "schema": {
25050              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
25051            }
25052          },
25053          "401": {
25054            "description": "Unauthorized"
25055          }
25056        },
25057        "schemes": [
25058          "https"
25059        ],
25060        "tags": [
25061          "core_v1"
25062        ],
25063        "x-kubernetes-action": "post",
25064        "x-kubernetes-group-version-kind": {
25065          "group": "policy",
25066          "kind": "Eviction",
25067          "version": "v1beta1"
25068        }
25069      }
25070    },
25071    "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
25072      "get": {
25073        "consumes": [
25074          "*/*"
25075        ],
25076        "description": "connect GET requests to exec of Pod",
25077        "operationId": "connectCoreV1GetNamespacedPodExec",
25078        "produces": [
25079          "*/*"
25080        ],
25081        "responses": {
25082          "200": {
25083            "description": "OK",
25084            "schema": {
25085              "type": "string"
25086            }
25087          },
25088          "401": {
25089            "description": "Unauthorized"
25090          }
25091        },
25092        "schemes": [
25093          "https"
25094        ],
25095        "tags": [
25096          "core_v1"
25097        ],
25098        "x-kubernetes-action": "connect",
25099        "x-kubernetes-group-version-kind": {
25100          "group": "",
25101          "kind": "PodExecOptions",
25102          "version": "v1"
25103        }
25104      },
25105      "parameters": [
25106        {
25107          "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
25108          "in": "query",
25109          "name": "command",
25110          "type": "string",
25111          "uniqueItems": true
25112        },
25113        {
25114          "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
25115          "in": "query",
25116          "name": "container",
25117          "type": "string",
25118          "uniqueItems": true
25119        },
25120        {
25121          "description": "name of the PodExecOptions",
25122          "in": "path",
25123          "name": "name",
25124          "required": true,
25125          "type": "string",
25126          "uniqueItems": true
25127        },
25128        {
25129          "description": "object name and auth scope, such as for teams and projects",
25130          "in": "path",
25131          "name": "namespace",
25132          "required": true,
25133          "type": "string",
25134          "uniqueItems": true
25135        },
25136        {
25137          "description": "Redirect the standard error stream of the pod for this call. Defaults to true.",
25138          "in": "query",
25139          "name": "stderr",
25140          "type": "boolean",
25141          "uniqueItems": true
25142        },
25143        {
25144          "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
25145          "in": "query",
25146          "name": "stdin",
25147          "type": "boolean",
25148          "uniqueItems": true
25149        },
25150        {
25151          "description": "Redirect the standard output stream of the pod for this call. Defaults to true.",
25152          "in": "query",
25153          "name": "stdout",
25154          "type": "boolean",
25155          "uniqueItems": true
25156        },
25157        {
25158          "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
25159          "in": "query",
25160          "name": "tty",
25161          "type": "boolean",
25162          "uniqueItems": true
25163        }
25164      ],
25165      "post": {
25166        "consumes": [
25167          "*/*"
25168        ],
25169        "description": "connect POST requests to exec of Pod",
25170        "operationId": "connectCoreV1PostNamespacedPodExec",
25171        "produces": [
25172          "*/*"
25173        ],
25174        "responses": {
25175          "200": {
25176            "description": "OK",
25177            "schema": {
25178              "type": "string"
25179            }
25180          },
25181          "401": {
25182            "description": "Unauthorized"
25183          }
25184        },
25185        "schemes": [
25186          "https"
25187        ],
25188        "tags": [
25189          "core_v1"
25190        ],
25191        "x-kubernetes-action": "connect",
25192        "x-kubernetes-group-version-kind": {
25193          "group": "",
25194          "kind": "PodExecOptions",
25195          "version": "v1"
25196        }
25197      }
25198    },
25199    "/api/v1/namespaces/{namespace}/pods/{name}/log": {
25200      "get": {
25201        "consumes": [
25202          "*/*"
25203        ],
25204        "description": "read log of the specified Pod",
25205        "operationId": "readCoreV1NamespacedPodLog",
25206        "produces": [
25207          "text/plain",
25208          "application/json",
25209          "application/yaml",
25210          "application/vnd.kubernetes.protobuf"
25211        ],
25212        "responses": {
25213          "200": {
25214            "description": "OK",
25215            "schema": {
25216              "type": "string"
25217            }
25218          },
25219          "401": {
25220            "description": "Unauthorized"
25221          }
25222        },
25223        "schemes": [
25224          "https"
25225        ],
25226        "tags": [
25227          "core_v1"
25228        ],
25229        "x-kubernetes-action": "get",
25230        "x-kubernetes-group-version-kind": {
25231          "group": "",
25232          "kind": "Pod",
25233          "version": "v1"
25234        }
25235      },
25236      "parameters": [
25237        {
25238          "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
25239          "in": "query",
25240          "name": "container",
25241          "type": "string",
25242          "uniqueItems": true
25243        },
25244        {
25245          "description": "Follow the log stream of the pod. Defaults to false.",
25246          "in": "query",
25247          "name": "follow",
25248          "type": "boolean",
25249          "uniqueItems": true
25250        },
25251        {
25252          "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).",
25253          "in": "query",
25254          "name": "insecureSkipTLSVerifyBackend",
25255          "type": "boolean",
25256          "uniqueItems": true
25257        },
25258        {
25259          "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.",
25260          "in": "query",
25261          "name": "limitBytes",
25262          "type": "integer",
25263          "uniqueItems": true
25264        },
25265        {
25266          "description": "name of the Pod",
25267          "in": "path",
25268          "name": "name",
25269          "required": true,
25270          "type": "string",
25271          "uniqueItems": true
25272        },
25273        {
25274          "description": "object name and auth scope, such as for teams and projects",
25275          "in": "path",
25276          "name": "namespace",
25277          "required": true,
25278          "type": "string",
25279          "uniqueItems": true
25280        },
25281        {
25282          "description": "If 'true', then the output is pretty printed.",
25283          "in": "query",
25284          "name": "pretty",
25285          "type": "string",
25286          "uniqueItems": true
25287        },
25288        {
25289          "description": "Return previous terminated container logs. Defaults to false.",
25290          "in": "query",
25291          "name": "previous",
25292          "type": "boolean",
25293          "uniqueItems": true
25294        },
25295        {
25296          "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.",
25297          "in": "query",
25298          "name": "sinceSeconds",
25299          "type": "integer",
25300          "uniqueItems": true
25301        },
25302        {
25303          "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",
25304          "in": "query",
25305          "name": "tailLines",
25306          "type": "integer",
25307          "uniqueItems": true
25308        },
25309        {
25310          "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
25311          "in": "query",
25312          "name": "timestamps",
25313          "type": "boolean",
25314          "uniqueItems": true
25315        }
25316      ]
25317    },
25318    "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
25319      "get": {
25320        "consumes": [
25321          "*/*"
25322        ],
25323        "description": "connect GET requests to portforward of Pod",
25324        "operationId": "connectCoreV1GetNamespacedPodPortforward",
25325        "produces": [
25326          "*/*"
25327        ],
25328        "responses": {
25329          "200": {
25330            "description": "OK",
25331            "schema": {
25332              "type": "string"
25333            }
25334          },
25335          "401": {
25336            "description": "Unauthorized"
25337          }
25338        },
25339        "schemes": [
25340          "https"
25341        ],
25342        "tags": [
25343          "core_v1"
25344        ],
25345        "x-kubernetes-action": "connect",
25346        "x-kubernetes-group-version-kind": {
25347          "group": "",
25348          "kind": "PodPortForwardOptions",
25349          "version": "v1"
25350        }
25351      },
25352      "parameters": [
25353        {
25354          "description": "name of the PodPortForwardOptions",
25355          "in": "path",
25356          "name": "name",
25357          "required": true,
25358          "type": "string",
25359          "uniqueItems": true
25360        },
25361        {
25362          "description": "object name and auth scope, such as for teams and projects",
25363          "in": "path",
25364          "name": "namespace",
25365          "required": true,
25366          "type": "string",
25367          "uniqueItems": true
25368        },
25369        {
25370          "description": "List of ports to forward Required when using WebSockets",
25371          "in": "query",
25372          "name": "ports",
25373          "type": "integer",
25374          "uniqueItems": true
25375        }
25376      ],
25377      "post": {
25378        "consumes": [
25379          "*/*"
25380        ],
25381        "description": "connect POST requests to portforward of Pod",
25382        "operationId": "connectCoreV1PostNamespacedPodPortforward",
25383        "produces": [
25384          "*/*"
25385        ],
25386        "responses": {
25387          "200": {
25388            "description": "OK",
25389            "schema": {
25390              "type": "string"
25391            }
25392          },
25393          "401": {
25394            "description": "Unauthorized"
25395          }
25396        },
25397        "schemes": [
25398          "https"
25399        ],
25400        "tags": [
25401          "core_v1"
25402        ],
25403        "x-kubernetes-action": "connect",
25404        "x-kubernetes-group-version-kind": {
25405          "group": "",
25406          "kind": "PodPortForwardOptions",
25407          "version": "v1"
25408        }
25409      }
25410    },
25411    "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
25412      "delete": {
25413        "consumes": [
25414          "*/*"
25415        ],
25416        "description": "connect DELETE requests to proxy of Pod",
25417        "operationId": "connectCoreV1DeleteNamespacedPodProxy",
25418        "produces": [
25419          "*/*"
25420        ],
25421        "responses": {
25422          "200": {
25423            "description": "OK",
25424            "schema": {
25425              "type": "string"
25426            }
25427          },
25428          "401": {
25429            "description": "Unauthorized"
25430          }
25431        },
25432        "schemes": [
25433          "https"
25434        ],
25435        "tags": [
25436          "core_v1"
25437        ],
25438        "x-kubernetes-action": "connect",
25439        "x-kubernetes-group-version-kind": {
25440          "group": "",
25441          "kind": "PodProxyOptions",
25442          "version": "v1"
25443        }
25444      },
25445      "get": {
25446        "consumes": [
25447          "*/*"
25448        ],
25449        "description": "connect GET requests to proxy of Pod",
25450        "operationId": "connectCoreV1GetNamespacedPodProxy",
25451        "produces": [
25452          "*/*"
25453        ],
25454        "responses": {
25455          "200": {
25456            "description": "OK",
25457            "schema": {
25458              "type": "string"
25459            }
25460          },
25461          "401": {
25462            "description": "Unauthorized"
25463          }
25464        },
25465        "schemes": [
25466          "https"
25467        ],
25468        "tags": [
25469          "core_v1"
25470        ],
25471        "x-kubernetes-action": "connect",
25472        "x-kubernetes-group-version-kind": {
25473          "group": "",
25474          "kind": "PodProxyOptions",
25475          "version": "v1"
25476        }
25477      },
25478      "head": {
25479        "consumes": [
25480          "*/*"
25481        ],
25482        "description": "connect HEAD requests to proxy of Pod",
25483        "operationId": "connectCoreV1HeadNamespacedPodProxy",
25484        "produces": [
25485          "*/*"
25486        ],
25487        "responses": {
25488          "200": {
25489            "description": "OK",
25490            "schema": {
25491              "type": "string"
25492            }
25493          },
25494          "401": {
25495            "description": "Unauthorized"
25496          }
25497        },
25498        "schemes": [
25499          "https"
25500        ],
25501        "tags": [
25502          "core_v1"
25503        ],
25504        "x-kubernetes-action": "connect",
25505        "x-kubernetes-group-version-kind": {
25506          "group": "",
25507          "kind": "PodProxyOptions",
25508          "version": "v1"
25509        }
25510      },
25511      "options": {
25512        "consumes": [
25513          "*/*"
25514        ],
25515        "description": "connect OPTIONS requests to proxy of Pod",
25516        "operationId": "connectCoreV1OptionsNamespacedPodProxy",
25517        "produces": [
25518          "*/*"
25519        ],
25520        "responses": {
25521          "200": {
25522            "description": "OK",
25523            "schema": {
25524              "type": "string"
25525            }
25526          },
25527          "401": {
25528            "description": "Unauthorized"
25529          }
25530        },
25531        "schemes": [
25532          "https"
25533        ],
25534        "tags": [
25535          "core_v1"
25536        ],
25537        "x-kubernetes-action": "connect",
25538        "x-kubernetes-group-version-kind": {
25539          "group": "",
25540          "kind": "PodProxyOptions",
25541          "version": "v1"
25542        }
25543      },
25544      "parameters": [
25545        {
25546          "description": "name of the PodProxyOptions",
25547          "in": "path",
25548          "name": "name",
25549          "required": true,
25550          "type": "string",
25551          "uniqueItems": true
25552        },
25553        {
25554          "description": "object name and auth scope, such as for teams and projects",
25555          "in": "path",
25556          "name": "namespace",
25557          "required": true,
25558          "type": "string",
25559          "uniqueItems": true
25560        },
25561        {
25562          "description": "Path is the URL path to use for the current proxy request to pod.",
25563          "in": "query",
25564          "name": "path",
25565          "type": "string",
25566          "uniqueItems": true
25567        }
25568      ],
25569      "patch": {
25570        "consumes": [
25571          "*/*"
25572        ],
25573        "description": "connect PATCH requests to proxy of Pod",
25574        "operationId": "connectCoreV1PatchNamespacedPodProxy",
25575        "produces": [
25576          "*/*"
25577        ],
25578        "responses": {
25579          "200": {
25580            "description": "OK",
25581            "schema": {
25582              "type": "string"
25583            }
25584          },
25585          "401": {
25586            "description": "Unauthorized"
25587          }
25588        },
25589        "schemes": [
25590          "https"
25591        ],
25592        "tags": [
25593          "core_v1"
25594        ],
25595        "x-kubernetes-action": "connect",
25596        "x-kubernetes-group-version-kind": {
25597          "group": "",
25598          "kind": "PodProxyOptions",
25599          "version": "v1"
25600        }
25601      },
25602      "post": {
25603        "consumes": [
25604          "*/*"
25605        ],
25606        "description": "connect POST requests to proxy of Pod",
25607        "operationId": "connectCoreV1PostNamespacedPodProxy",
25608        "produces": [
25609          "*/*"
25610        ],
25611        "responses": {
25612          "200": {
25613            "description": "OK",
25614            "schema": {
25615              "type": "string"
25616            }
25617          },
25618          "401": {
25619            "description": "Unauthorized"
25620          }
25621        },
25622        "schemes": [
25623          "https"
25624        ],
25625        "tags": [
25626          "core_v1"
25627        ],
25628        "x-kubernetes-action": "connect",
25629        "x-kubernetes-group-version-kind": {
25630          "group": "",
25631          "kind": "PodProxyOptions",
25632          "version": "v1"
25633        }
25634      },
25635      "put": {
25636        "consumes": [
25637          "*/*"
25638        ],
25639        "description": "connect PUT requests to proxy of Pod",
25640        "operationId": "connectCoreV1PutNamespacedPodProxy",
25641        "produces": [
25642          "*/*"
25643        ],
25644        "responses": {
25645          "200": {
25646            "description": "OK",
25647            "schema": {
25648              "type": "string"
25649            }
25650          },
25651          "401": {
25652            "description": "Unauthorized"
25653          }
25654        },
25655        "schemes": [
25656          "https"
25657        ],
25658        "tags": [
25659          "core_v1"
25660        ],
25661        "x-kubernetes-action": "connect",
25662        "x-kubernetes-group-version-kind": {
25663          "group": "",
25664          "kind": "PodProxyOptions",
25665          "version": "v1"
25666        }
25667      }
25668    },
25669    "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
25670      "delete": {
25671        "consumes": [
25672          "*/*"
25673        ],
25674        "description": "connect DELETE requests to proxy of Pod",
25675        "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
25676        "produces": [
25677          "*/*"
25678        ],
25679        "responses": {
25680          "200": {
25681            "description": "OK",
25682            "schema": {
25683              "type": "string"
25684            }
25685          },
25686          "401": {
25687            "description": "Unauthorized"
25688          }
25689        },
25690        "schemes": [
25691          "https"
25692        ],
25693        "tags": [
25694          "core_v1"
25695        ],
25696        "x-kubernetes-action": "connect",
25697        "x-kubernetes-group-version-kind": {
25698          "group": "",
25699          "kind": "PodProxyOptions",
25700          "version": "v1"
25701        }
25702      },
25703      "get": {
25704        "consumes": [
25705          "*/*"
25706        ],
25707        "description": "connect GET requests to proxy of Pod",
25708        "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
25709        "produces": [
25710          "*/*"
25711        ],
25712        "responses": {
25713          "200": {
25714            "description": "OK",
25715            "schema": {
25716              "type": "string"
25717            }
25718          },
25719          "401": {
25720            "description": "Unauthorized"
25721          }
25722        },
25723        "schemes": [
25724          "https"
25725        ],
25726        "tags": [
25727          "core_v1"
25728        ],
25729        "x-kubernetes-action": "connect",
25730        "x-kubernetes-group-version-kind": {
25731          "group": "",
25732          "kind": "PodProxyOptions",
25733          "version": "v1"
25734        }
25735      },
25736      "head": {
25737        "consumes": [
25738          "*/*"
25739        ],
25740        "description": "connect HEAD requests to proxy of Pod",
25741        "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
25742        "produces": [
25743          "*/*"
25744        ],
25745        "responses": {
25746          "200": {
25747            "description": "OK",
25748            "schema": {
25749              "type": "string"
25750            }
25751          },
25752          "401": {
25753            "description": "Unauthorized"
25754          }
25755        },
25756        "schemes": [
25757          "https"
25758        ],
25759        "tags": [
25760          "core_v1"
25761        ],
25762        "x-kubernetes-action": "connect",
25763        "x-kubernetes-group-version-kind": {
25764          "group": "",
25765          "kind": "PodProxyOptions",
25766          "version": "v1"
25767        }
25768      },
25769      "options": {
25770        "consumes": [
25771          "*/*"
25772        ],
25773        "description": "connect OPTIONS requests to proxy of Pod",
25774        "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
25775        "produces": [
25776          "*/*"
25777        ],
25778        "responses": {
25779          "200": {
25780            "description": "OK",
25781            "schema": {
25782              "type": "string"
25783            }
25784          },
25785          "401": {
25786            "description": "Unauthorized"
25787          }
25788        },
25789        "schemes": [
25790          "https"
25791        ],
25792        "tags": [
25793          "core_v1"
25794        ],
25795        "x-kubernetes-action": "connect",
25796        "x-kubernetes-group-version-kind": {
25797          "group": "",
25798          "kind": "PodProxyOptions",
25799          "version": "v1"
25800        }
25801      },
25802      "parameters": [
25803        {
25804          "description": "name of the PodProxyOptions",
25805          "in": "path",
25806          "name": "name",
25807          "required": true,
25808          "type": "string",
25809          "uniqueItems": true
25810        },
25811        {
25812          "description": "object name and auth scope, such as for teams and projects",
25813          "in": "path",
25814          "name": "namespace",
25815          "required": true,
25816          "type": "string",
25817          "uniqueItems": true
25818        },
25819        {
25820          "description": "path to the resource",
25821          "in": "path",
25822          "name": "path",
25823          "required": true,
25824          "type": "string",
25825          "uniqueItems": true
25826        },
25827        {
25828          "description": "Path is the URL path to use for the current proxy request to pod.",
25829          "in": "query",
25830          "name": "path",
25831          "type": "string",
25832          "uniqueItems": true
25833        }
25834      ],
25835      "patch": {
25836        "consumes": [
25837          "*/*"
25838        ],
25839        "description": "connect PATCH requests to proxy of Pod",
25840        "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath",
25841        "produces": [
25842          "*/*"
25843        ],
25844        "responses": {
25845          "200": {
25846            "description": "OK",
25847            "schema": {
25848              "type": "string"
25849            }
25850          },
25851          "401": {
25852            "description": "Unauthorized"
25853          }
25854        },
25855        "schemes": [
25856          "https"
25857        ],
25858        "tags": [
25859          "core_v1"
25860        ],
25861        "x-kubernetes-action": "connect",
25862        "x-kubernetes-group-version-kind": {
25863          "group": "",
25864          "kind": "PodProxyOptions",
25865          "version": "v1"
25866        }
25867      },
25868      "post": {
25869        "consumes": [
25870          "*/*"
25871        ],
25872        "description": "connect POST requests to proxy of Pod",
25873        "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
25874        "produces": [
25875          "*/*"
25876        ],
25877        "responses": {
25878          "200": {
25879            "description": "OK",
25880            "schema": {
25881              "type": "string"
25882            }
25883          },
25884          "401": {
25885            "description": "Unauthorized"
25886          }
25887        },
25888        "schemes": [
25889          "https"
25890        ],
25891        "tags": [
25892          "core_v1"
25893        ],
25894        "x-kubernetes-action": "connect",
25895        "x-kubernetes-group-version-kind": {
25896          "group": "",
25897          "kind": "PodProxyOptions",
25898          "version": "v1"
25899        }
25900      },
25901      "put": {
25902        "consumes": [
25903          "*/*"
25904        ],
25905        "description": "connect PUT requests to proxy of Pod",
25906        "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
25907        "produces": [
25908          "*/*"
25909        ],
25910        "responses": {
25911          "200": {
25912            "description": "OK",
25913            "schema": {
25914              "type": "string"
25915            }
25916          },
25917          "401": {
25918            "description": "Unauthorized"
25919          }
25920        },
25921        "schemes": [
25922          "https"
25923        ],
25924        "tags": [
25925          "core_v1"
25926        ],
25927        "x-kubernetes-action": "connect",
25928        "x-kubernetes-group-version-kind": {
25929          "group": "",
25930          "kind": "PodProxyOptions",
25931          "version": "v1"
25932        }
25933      }
25934    },
25935    "/api/v1/namespaces/{namespace}/pods/{name}/status": {
25936      "get": {
25937        "consumes": [
25938          "*/*"
25939        ],
25940        "description": "read status of the specified Pod",
25941        "operationId": "readCoreV1NamespacedPodStatus",
25942        "produces": [
25943          "application/json",
25944          "application/yaml",
25945          "application/vnd.kubernetes.protobuf"
25946        ],
25947        "responses": {
25948          "200": {
25949            "description": "OK",
25950            "schema": {
25951              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25952            }
25953          },
25954          "401": {
25955            "description": "Unauthorized"
25956          }
25957        },
25958        "schemes": [
25959          "https"
25960        ],
25961        "tags": [
25962          "core_v1"
25963        ],
25964        "x-kubernetes-action": "get",
25965        "x-kubernetes-group-version-kind": {
25966          "group": "",
25967          "kind": "Pod",
25968          "version": "v1"
25969        }
25970      },
25971      "parameters": [
25972        {
25973          "description": "name of the Pod",
25974          "in": "path",
25975          "name": "name",
25976          "required": true,
25977          "type": "string",
25978          "uniqueItems": true
25979        },
25980        {
25981          "description": "object name and auth scope, such as for teams and projects",
25982          "in": "path",
25983          "name": "namespace",
25984          "required": true,
25985          "type": "string",
25986          "uniqueItems": true
25987        },
25988        {
25989          "description": "If 'true', then the output is pretty printed.",
25990          "in": "query",
25991          "name": "pretty",
25992          "type": "string",
25993          "uniqueItems": true
25994        }
25995      ],
25996      "patch": {
25997        "consumes": [
25998          "application/json-patch+json",
25999          "application/merge-patch+json",
26000          "application/strategic-merge-patch+json",
26001          "application/apply-patch+yaml"
26002        ],
26003        "description": "partially update status of the specified Pod",
26004        "operationId": "patchCoreV1NamespacedPodStatus",
26005        "parameters": [
26006          {
26007            "in": "body",
26008            "name": "body",
26009            "required": true,
26010            "schema": {
26011              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26012            }
26013          },
26014          {
26015            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26016            "in": "query",
26017            "name": "dryRun",
26018            "type": "string",
26019            "uniqueItems": true
26020          },
26021          {
26022            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26023            "in": "query",
26024            "name": "fieldManager",
26025            "type": "string",
26026            "uniqueItems": true
26027          },
26028          {
26029            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
26030            "in": "query",
26031            "name": "force",
26032            "type": "boolean",
26033            "uniqueItems": true
26034          }
26035        ],
26036        "produces": [
26037          "application/json",
26038          "application/yaml",
26039          "application/vnd.kubernetes.protobuf"
26040        ],
26041        "responses": {
26042          "200": {
26043            "description": "OK",
26044            "schema": {
26045              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26046            }
26047          },
26048          "401": {
26049            "description": "Unauthorized"
26050          }
26051        },
26052        "schemes": [
26053          "https"
26054        ],
26055        "tags": [
26056          "core_v1"
26057        ],
26058        "x-kubernetes-action": "patch",
26059        "x-kubernetes-group-version-kind": {
26060          "group": "",
26061          "kind": "Pod",
26062          "version": "v1"
26063        }
26064      },
26065      "put": {
26066        "consumes": [
26067          "*/*"
26068        ],
26069        "description": "replace status of the specified Pod",
26070        "operationId": "replaceCoreV1NamespacedPodStatus",
26071        "parameters": [
26072          {
26073            "in": "body",
26074            "name": "body",
26075            "required": true,
26076            "schema": {
26077              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26078            }
26079          },
26080          {
26081            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26082            "in": "query",
26083            "name": "dryRun",
26084            "type": "string",
26085            "uniqueItems": true
26086          },
26087          {
26088            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26089            "in": "query",
26090            "name": "fieldManager",
26091            "type": "string",
26092            "uniqueItems": true
26093          }
26094        ],
26095        "produces": [
26096          "application/json",
26097          "application/yaml",
26098          "application/vnd.kubernetes.protobuf"
26099        ],
26100        "responses": {
26101          "200": {
26102            "description": "OK",
26103            "schema": {
26104              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26105            }
26106          },
26107          "201": {
26108            "description": "Created",
26109            "schema": {
26110              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
26111            }
26112          },
26113          "401": {
26114            "description": "Unauthorized"
26115          }
26116        },
26117        "schemes": [
26118          "https"
26119        ],
26120        "tags": [
26121          "core_v1"
26122        ],
26123        "x-kubernetes-action": "put",
26124        "x-kubernetes-group-version-kind": {
26125          "group": "",
26126          "kind": "Pod",
26127          "version": "v1"
26128        }
26129      }
26130    },
26131    "/api/v1/namespaces/{namespace}/podtemplates": {
26132      "delete": {
26133        "consumes": [
26134          "*/*"
26135        ],
26136        "description": "delete collection of PodTemplate",
26137        "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
26138        "parameters": [
26139          {
26140            "in": "body",
26141            "name": "body",
26142            "schema": {
26143              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26144            }
26145          },
26146          {
26147            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26148            "in": "query",
26149            "name": "continue",
26150            "type": "string",
26151            "uniqueItems": true
26152          },
26153          {
26154            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26155            "in": "query",
26156            "name": "dryRun",
26157            "type": "string",
26158            "uniqueItems": true
26159          },
26160          {
26161            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26162            "in": "query",
26163            "name": "fieldSelector",
26164            "type": "string",
26165            "uniqueItems": true
26166          },
26167          {
26168            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26169            "in": "query",
26170            "name": "gracePeriodSeconds",
26171            "type": "integer",
26172            "uniqueItems": true
26173          },
26174          {
26175            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26176            "in": "query",
26177            "name": "labelSelector",
26178            "type": "string",
26179            "uniqueItems": true
26180          },
26181          {
26182            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26183            "in": "query",
26184            "name": "limit",
26185            "type": "integer",
26186            "uniqueItems": true
26187          },
26188          {
26189            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26190            "in": "query",
26191            "name": "orphanDependents",
26192            "type": "boolean",
26193            "uniqueItems": true
26194          },
26195          {
26196            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26197            "in": "query",
26198            "name": "propagationPolicy",
26199            "type": "string",
26200            "uniqueItems": true
26201          },
26202          {
26203            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26204            "in": "query",
26205            "name": "resourceVersion",
26206            "type": "string",
26207            "uniqueItems": true
26208          },
26209          {
26210            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26211            "in": "query",
26212            "name": "resourceVersionMatch",
26213            "type": "string",
26214            "uniqueItems": true
26215          },
26216          {
26217            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26218            "in": "query",
26219            "name": "timeoutSeconds",
26220            "type": "integer",
26221            "uniqueItems": true
26222          }
26223        ],
26224        "produces": [
26225          "application/json",
26226          "application/yaml",
26227          "application/vnd.kubernetes.protobuf"
26228        ],
26229        "responses": {
26230          "200": {
26231            "description": "OK",
26232            "schema": {
26233              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26234            }
26235          },
26236          "401": {
26237            "description": "Unauthorized"
26238          }
26239        },
26240        "schemes": [
26241          "https"
26242        ],
26243        "tags": [
26244          "core_v1"
26245        ],
26246        "x-kubernetes-action": "deletecollection",
26247        "x-kubernetes-group-version-kind": {
26248          "group": "",
26249          "kind": "PodTemplate",
26250          "version": "v1"
26251        }
26252      },
26253      "get": {
26254        "consumes": [
26255          "*/*"
26256        ],
26257        "description": "list or watch objects of kind PodTemplate",
26258        "operationId": "listCoreV1NamespacedPodTemplate",
26259        "parameters": [
26260          {
26261            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
26262            "in": "query",
26263            "name": "allowWatchBookmarks",
26264            "type": "boolean",
26265            "uniqueItems": true
26266          },
26267          {
26268            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26269            "in": "query",
26270            "name": "continue",
26271            "type": "string",
26272            "uniqueItems": true
26273          },
26274          {
26275            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26276            "in": "query",
26277            "name": "fieldSelector",
26278            "type": "string",
26279            "uniqueItems": true
26280          },
26281          {
26282            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26283            "in": "query",
26284            "name": "labelSelector",
26285            "type": "string",
26286            "uniqueItems": true
26287          },
26288          {
26289            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26290            "in": "query",
26291            "name": "limit",
26292            "type": "integer",
26293            "uniqueItems": true
26294          },
26295          {
26296            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26297            "in": "query",
26298            "name": "resourceVersion",
26299            "type": "string",
26300            "uniqueItems": true
26301          },
26302          {
26303            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26304            "in": "query",
26305            "name": "resourceVersionMatch",
26306            "type": "string",
26307            "uniqueItems": true
26308          },
26309          {
26310            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26311            "in": "query",
26312            "name": "timeoutSeconds",
26313            "type": "integer",
26314            "uniqueItems": true
26315          },
26316          {
26317            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26318            "in": "query",
26319            "name": "watch",
26320            "type": "boolean",
26321            "uniqueItems": true
26322          }
26323        ],
26324        "produces": [
26325          "application/json",
26326          "application/yaml",
26327          "application/vnd.kubernetes.protobuf",
26328          "application/json;stream=watch",
26329          "application/vnd.kubernetes.protobuf;stream=watch"
26330        ],
26331        "responses": {
26332          "200": {
26333            "description": "OK",
26334            "schema": {
26335              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
26336            }
26337          },
26338          "401": {
26339            "description": "Unauthorized"
26340          }
26341        },
26342        "schemes": [
26343          "https"
26344        ],
26345        "tags": [
26346          "core_v1"
26347        ],
26348        "x-kubernetes-action": "list",
26349        "x-kubernetes-group-version-kind": {
26350          "group": "",
26351          "kind": "PodTemplate",
26352          "version": "v1"
26353        }
26354      },
26355      "parameters": [
26356        {
26357          "description": "object name and auth scope, such as for teams and projects",
26358          "in": "path",
26359          "name": "namespace",
26360          "required": true,
26361          "type": "string",
26362          "uniqueItems": true
26363        },
26364        {
26365          "description": "If 'true', then the output is pretty printed.",
26366          "in": "query",
26367          "name": "pretty",
26368          "type": "string",
26369          "uniqueItems": true
26370        }
26371      ],
26372      "post": {
26373        "consumes": [
26374          "*/*"
26375        ],
26376        "description": "create a PodTemplate",
26377        "operationId": "createCoreV1NamespacedPodTemplate",
26378        "parameters": [
26379          {
26380            "in": "body",
26381            "name": "body",
26382            "required": true,
26383            "schema": {
26384              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26385            }
26386          },
26387          {
26388            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26389            "in": "query",
26390            "name": "dryRun",
26391            "type": "string",
26392            "uniqueItems": true
26393          },
26394          {
26395            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26396            "in": "query",
26397            "name": "fieldManager",
26398            "type": "string",
26399            "uniqueItems": true
26400          }
26401        ],
26402        "produces": [
26403          "application/json",
26404          "application/yaml",
26405          "application/vnd.kubernetes.protobuf"
26406        ],
26407        "responses": {
26408          "200": {
26409            "description": "OK",
26410            "schema": {
26411              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26412            }
26413          },
26414          "201": {
26415            "description": "Created",
26416            "schema": {
26417              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26418            }
26419          },
26420          "202": {
26421            "description": "Accepted",
26422            "schema": {
26423              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26424            }
26425          },
26426          "401": {
26427            "description": "Unauthorized"
26428          }
26429        },
26430        "schemes": [
26431          "https"
26432        ],
26433        "tags": [
26434          "core_v1"
26435        ],
26436        "x-kubernetes-action": "post",
26437        "x-kubernetes-group-version-kind": {
26438          "group": "",
26439          "kind": "PodTemplate",
26440          "version": "v1"
26441        }
26442      }
26443    },
26444    "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
26445      "delete": {
26446        "consumes": [
26447          "*/*"
26448        ],
26449        "description": "delete a PodTemplate",
26450        "operationId": "deleteCoreV1NamespacedPodTemplate",
26451        "parameters": [
26452          {
26453            "in": "body",
26454            "name": "body",
26455            "schema": {
26456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26457            }
26458          },
26459          {
26460            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26461            "in": "query",
26462            "name": "dryRun",
26463            "type": "string",
26464            "uniqueItems": true
26465          },
26466          {
26467            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26468            "in": "query",
26469            "name": "gracePeriodSeconds",
26470            "type": "integer",
26471            "uniqueItems": true
26472          },
26473          {
26474            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26475            "in": "query",
26476            "name": "orphanDependents",
26477            "type": "boolean",
26478            "uniqueItems": true
26479          },
26480          {
26481            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26482            "in": "query",
26483            "name": "propagationPolicy",
26484            "type": "string",
26485            "uniqueItems": true
26486          }
26487        ],
26488        "produces": [
26489          "application/json",
26490          "application/yaml",
26491          "application/vnd.kubernetes.protobuf"
26492        ],
26493        "responses": {
26494          "200": {
26495            "description": "OK",
26496            "schema": {
26497              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26498            }
26499          },
26500          "202": {
26501            "description": "Accepted",
26502            "schema": {
26503              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26504            }
26505          },
26506          "401": {
26507            "description": "Unauthorized"
26508          }
26509        },
26510        "schemes": [
26511          "https"
26512        ],
26513        "tags": [
26514          "core_v1"
26515        ],
26516        "x-kubernetes-action": "delete",
26517        "x-kubernetes-group-version-kind": {
26518          "group": "",
26519          "kind": "PodTemplate",
26520          "version": "v1"
26521        }
26522      },
26523      "get": {
26524        "consumes": [
26525          "*/*"
26526        ],
26527        "description": "read the specified PodTemplate",
26528        "operationId": "readCoreV1NamespacedPodTemplate",
26529        "produces": [
26530          "application/json",
26531          "application/yaml",
26532          "application/vnd.kubernetes.protobuf"
26533        ],
26534        "responses": {
26535          "200": {
26536            "description": "OK",
26537            "schema": {
26538              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26539            }
26540          },
26541          "401": {
26542            "description": "Unauthorized"
26543          }
26544        },
26545        "schemes": [
26546          "https"
26547        ],
26548        "tags": [
26549          "core_v1"
26550        ],
26551        "x-kubernetes-action": "get",
26552        "x-kubernetes-group-version-kind": {
26553          "group": "",
26554          "kind": "PodTemplate",
26555          "version": "v1"
26556        }
26557      },
26558      "parameters": [
26559        {
26560          "description": "name of the PodTemplate",
26561          "in": "path",
26562          "name": "name",
26563          "required": true,
26564          "type": "string",
26565          "uniqueItems": true
26566        },
26567        {
26568          "description": "object name and auth scope, such as for teams and projects",
26569          "in": "path",
26570          "name": "namespace",
26571          "required": true,
26572          "type": "string",
26573          "uniqueItems": true
26574        },
26575        {
26576          "description": "If 'true', then the output is pretty printed.",
26577          "in": "query",
26578          "name": "pretty",
26579          "type": "string",
26580          "uniqueItems": true
26581        }
26582      ],
26583      "patch": {
26584        "consumes": [
26585          "application/json-patch+json",
26586          "application/merge-patch+json",
26587          "application/strategic-merge-patch+json",
26588          "application/apply-patch+yaml"
26589        ],
26590        "description": "partially update the specified PodTemplate",
26591        "operationId": "patchCoreV1NamespacedPodTemplate",
26592        "parameters": [
26593          {
26594            "in": "body",
26595            "name": "body",
26596            "required": true,
26597            "schema": {
26598              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26599            }
26600          },
26601          {
26602            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26603            "in": "query",
26604            "name": "dryRun",
26605            "type": "string",
26606            "uniqueItems": true
26607          },
26608          {
26609            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26610            "in": "query",
26611            "name": "fieldManager",
26612            "type": "string",
26613            "uniqueItems": true
26614          },
26615          {
26616            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
26617            "in": "query",
26618            "name": "force",
26619            "type": "boolean",
26620            "uniqueItems": true
26621          }
26622        ],
26623        "produces": [
26624          "application/json",
26625          "application/yaml",
26626          "application/vnd.kubernetes.protobuf"
26627        ],
26628        "responses": {
26629          "200": {
26630            "description": "OK",
26631            "schema": {
26632              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26633            }
26634          },
26635          "401": {
26636            "description": "Unauthorized"
26637          }
26638        },
26639        "schemes": [
26640          "https"
26641        ],
26642        "tags": [
26643          "core_v1"
26644        ],
26645        "x-kubernetes-action": "patch",
26646        "x-kubernetes-group-version-kind": {
26647          "group": "",
26648          "kind": "PodTemplate",
26649          "version": "v1"
26650        }
26651      },
26652      "put": {
26653        "consumes": [
26654          "*/*"
26655        ],
26656        "description": "replace the specified PodTemplate",
26657        "operationId": "replaceCoreV1NamespacedPodTemplate",
26658        "parameters": [
26659          {
26660            "in": "body",
26661            "name": "body",
26662            "required": true,
26663            "schema": {
26664              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26665            }
26666          },
26667          {
26668            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26669            "in": "query",
26670            "name": "dryRun",
26671            "type": "string",
26672            "uniqueItems": true
26673          },
26674          {
26675            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26676            "in": "query",
26677            "name": "fieldManager",
26678            "type": "string",
26679            "uniqueItems": true
26680          }
26681        ],
26682        "produces": [
26683          "application/json",
26684          "application/yaml",
26685          "application/vnd.kubernetes.protobuf"
26686        ],
26687        "responses": {
26688          "200": {
26689            "description": "OK",
26690            "schema": {
26691              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26692            }
26693          },
26694          "201": {
26695            "description": "Created",
26696            "schema": {
26697              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
26698            }
26699          },
26700          "401": {
26701            "description": "Unauthorized"
26702          }
26703        },
26704        "schemes": [
26705          "https"
26706        ],
26707        "tags": [
26708          "core_v1"
26709        ],
26710        "x-kubernetes-action": "put",
26711        "x-kubernetes-group-version-kind": {
26712          "group": "",
26713          "kind": "PodTemplate",
26714          "version": "v1"
26715        }
26716      }
26717    },
26718    "/api/v1/namespaces/{namespace}/replicationcontrollers": {
26719      "delete": {
26720        "consumes": [
26721          "*/*"
26722        ],
26723        "description": "delete collection of ReplicationController",
26724        "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
26725        "parameters": [
26726          {
26727            "in": "body",
26728            "name": "body",
26729            "schema": {
26730              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26731            }
26732          },
26733          {
26734            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26735            "in": "query",
26736            "name": "continue",
26737            "type": "string",
26738            "uniqueItems": true
26739          },
26740          {
26741            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26742            "in": "query",
26743            "name": "dryRun",
26744            "type": "string",
26745            "uniqueItems": true
26746          },
26747          {
26748            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26749            "in": "query",
26750            "name": "fieldSelector",
26751            "type": "string",
26752            "uniqueItems": true
26753          },
26754          {
26755            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26756            "in": "query",
26757            "name": "gracePeriodSeconds",
26758            "type": "integer",
26759            "uniqueItems": true
26760          },
26761          {
26762            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26763            "in": "query",
26764            "name": "labelSelector",
26765            "type": "string",
26766            "uniqueItems": true
26767          },
26768          {
26769            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26770            "in": "query",
26771            "name": "limit",
26772            "type": "integer",
26773            "uniqueItems": true
26774          },
26775          {
26776            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26777            "in": "query",
26778            "name": "orphanDependents",
26779            "type": "boolean",
26780            "uniqueItems": true
26781          },
26782          {
26783            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26784            "in": "query",
26785            "name": "propagationPolicy",
26786            "type": "string",
26787            "uniqueItems": true
26788          },
26789          {
26790            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26791            "in": "query",
26792            "name": "resourceVersion",
26793            "type": "string",
26794            "uniqueItems": true
26795          },
26796          {
26797            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26798            "in": "query",
26799            "name": "resourceVersionMatch",
26800            "type": "string",
26801            "uniqueItems": true
26802          },
26803          {
26804            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26805            "in": "query",
26806            "name": "timeoutSeconds",
26807            "type": "integer",
26808            "uniqueItems": true
26809          }
26810        ],
26811        "produces": [
26812          "application/json",
26813          "application/yaml",
26814          "application/vnd.kubernetes.protobuf"
26815        ],
26816        "responses": {
26817          "200": {
26818            "description": "OK",
26819            "schema": {
26820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26821            }
26822          },
26823          "401": {
26824            "description": "Unauthorized"
26825          }
26826        },
26827        "schemes": [
26828          "https"
26829        ],
26830        "tags": [
26831          "core_v1"
26832        ],
26833        "x-kubernetes-action": "deletecollection",
26834        "x-kubernetes-group-version-kind": {
26835          "group": "",
26836          "kind": "ReplicationController",
26837          "version": "v1"
26838        }
26839      },
26840      "get": {
26841        "consumes": [
26842          "*/*"
26843        ],
26844        "description": "list or watch objects of kind ReplicationController",
26845        "operationId": "listCoreV1NamespacedReplicationController",
26846        "parameters": [
26847          {
26848            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
26849            "in": "query",
26850            "name": "allowWatchBookmarks",
26851            "type": "boolean",
26852            "uniqueItems": true
26853          },
26854          {
26855            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26856            "in": "query",
26857            "name": "continue",
26858            "type": "string",
26859            "uniqueItems": true
26860          },
26861          {
26862            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26863            "in": "query",
26864            "name": "fieldSelector",
26865            "type": "string",
26866            "uniqueItems": true
26867          },
26868          {
26869            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26870            "in": "query",
26871            "name": "labelSelector",
26872            "type": "string",
26873            "uniqueItems": true
26874          },
26875          {
26876            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26877            "in": "query",
26878            "name": "limit",
26879            "type": "integer",
26880            "uniqueItems": true
26881          },
26882          {
26883            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26884            "in": "query",
26885            "name": "resourceVersion",
26886            "type": "string",
26887            "uniqueItems": true
26888          },
26889          {
26890            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26891            "in": "query",
26892            "name": "resourceVersionMatch",
26893            "type": "string",
26894            "uniqueItems": true
26895          },
26896          {
26897            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26898            "in": "query",
26899            "name": "timeoutSeconds",
26900            "type": "integer",
26901            "uniqueItems": true
26902          },
26903          {
26904            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26905            "in": "query",
26906            "name": "watch",
26907            "type": "boolean",
26908            "uniqueItems": true
26909          }
26910        ],
26911        "produces": [
26912          "application/json",
26913          "application/yaml",
26914          "application/vnd.kubernetes.protobuf",
26915          "application/json;stream=watch",
26916          "application/vnd.kubernetes.protobuf;stream=watch"
26917        ],
26918        "responses": {
26919          "200": {
26920            "description": "OK",
26921            "schema": {
26922              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
26923            }
26924          },
26925          "401": {
26926            "description": "Unauthorized"
26927          }
26928        },
26929        "schemes": [
26930          "https"
26931        ],
26932        "tags": [
26933          "core_v1"
26934        ],
26935        "x-kubernetes-action": "list",
26936        "x-kubernetes-group-version-kind": {
26937          "group": "",
26938          "kind": "ReplicationController",
26939          "version": "v1"
26940        }
26941      },
26942      "parameters": [
26943        {
26944          "description": "object name and auth scope, such as for teams and projects",
26945          "in": "path",
26946          "name": "namespace",
26947          "required": true,
26948          "type": "string",
26949          "uniqueItems": true
26950        },
26951        {
26952          "description": "If 'true', then the output is pretty printed.",
26953          "in": "query",
26954          "name": "pretty",
26955          "type": "string",
26956          "uniqueItems": true
26957        }
26958      ],
26959      "post": {
26960        "consumes": [
26961          "*/*"
26962        ],
26963        "description": "create a ReplicationController",
26964        "operationId": "createCoreV1NamespacedReplicationController",
26965        "parameters": [
26966          {
26967            "in": "body",
26968            "name": "body",
26969            "required": true,
26970            "schema": {
26971              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26972            }
26973          },
26974          {
26975            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26976            "in": "query",
26977            "name": "dryRun",
26978            "type": "string",
26979            "uniqueItems": true
26980          },
26981          {
26982            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26983            "in": "query",
26984            "name": "fieldManager",
26985            "type": "string",
26986            "uniqueItems": true
26987          }
26988        ],
26989        "produces": [
26990          "application/json",
26991          "application/yaml",
26992          "application/vnd.kubernetes.protobuf"
26993        ],
26994        "responses": {
26995          "200": {
26996            "description": "OK",
26997            "schema": {
26998              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26999            }
27000          },
27001          "201": {
27002            "description": "Created",
27003            "schema": {
27004              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27005            }
27006          },
27007          "202": {
27008            "description": "Accepted",
27009            "schema": {
27010              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27011            }
27012          },
27013          "401": {
27014            "description": "Unauthorized"
27015          }
27016        },
27017        "schemes": [
27018          "https"
27019        ],
27020        "tags": [
27021          "core_v1"
27022        ],
27023        "x-kubernetes-action": "post",
27024        "x-kubernetes-group-version-kind": {
27025          "group": "",
27026          "kind": "ReplicationController",
27027          "version": "v1"
27028        }
27029      }
27030    },
27031    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
27032      "delete": {
27033        "consumes": [
27034          "*/*"
27035        ],
27036        "description": "delete a ReplicationController",
27037        "operationId": "deleteCoreV1NamespacedReplicationController",
27038        "parameters": [
27039          {
27040            "in": "body",
27041            "name": "body",
27042            "schema": {
27043              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27044            }
27045          },
27046          {
27047            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27048            "in": "query",
27049            "name": "dryRun",
27050            "type": "string",
27051            "uniqueItems": true
27052          },
27053          {
27054            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27055            "in": "query",
27056            "name": "gracePeriodSeconds",
27057            "type": "integer",
27058            "uniqueItems": true
27059          },
27060          {
27061            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27062            "in": "query",
27063            "name": "orphanDependents",
27064            "type": "boolean",
27065            "uniqueItems": true
27066          },
27067          {
27068            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27069            "in": "query",
27070            "name": "propagationPolicy",
27071            "type": "string",
27072            "uniqueItems": true
27073          }
27074        ],
27075        "produces": [
27076          "application/json",
27077          "application/yaml",
27078          "application/vnd.kubernetes.protobuf"
27079        ],
27080        "responses": {
27081          "200": {
27082            "description": "OK",
27083            "schema": {
27084              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27085            }
27086          },
27087          "202": {
27088            "description": "Accepted",
27089            "schema": {
27090              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27091            }
27092          },
27093          "401": {
27094            "description": "Unauthorized"
27095          }
27096        },
27097        "schemes": [
27098          "https"
27099        ],
27100        "tags": [
27101          "core_v1"
27102        ],
27103        "x-kubernetes-action": "delete",
27104        "x-kubernetes-group-version-kind": {
27105          "group": "",
27106          "kind": "ReplicationController",
27107          "version": "v1"
27108        }
27109      },
27110      "get": {
27111        "consumes": [
27112          "*/*"
27113        ],
27114        "description": "read the specified ReplicationController",
27115        "operationId": "readCoreV1NamespacedReplicationController",
27116        "produces": [
27117          "application/json",
27118          "application/yaml",
27119          "application/vnd.kubernetes.protobuf"
27120        ],
27121        "responses": {
27122          "200": {
27123            "description": "OK",
27124            "schema": {
27125              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27126            }
27127          },
27128          "401": {
27129            "description": "Unauthorized"
27130          }
27131        },
27132        "schemes": [
27133          "https"
27134        ],
27135        "tags": [
27136          "core_v1"
27137        ],
27138        "x-kubernetes-action": "get",
27139        "x-kubernetes-group-version-kind": {
27140          "group": "",
27141          "kind": "ReplicationController",
27142          "version": "v1"
27143        }
27144      },
27145      "parameters": [
27146        {
27147          "description": "name of the ReplicationController",
27148          "in": "path",
27149          "name": "name",
27150          "required": true,
27151          "type": "string",
27152          "uniqueItems": true
27153        },
27154        {
27155          "description": "object name and auth scope, such as for teams and projects",
27156          "in": "path",
27157          "name": "namespace",
27158          "required": true,
27159          "type": "string",
27160          "uniqueItems": true
27161        },
27162        {
27163          "description": "If 'true', then the output is pretty printed.",
27164          "in": "query",
27165          "name": "pretty",
27166          "type": "string",
27167          "uniqueItems": true
27168        }
27169      ],
27170      "patch": {
27171        "consumes": [
27172          "application/json-patch+json",
27173          "application/merge-patch+json",
27174          "application/strategic-merge-patch+json",
27175          "application/apply-patch+yaml"
27176        ],
27177        "description": "partially update the specified ReplicationController",
27178        "operationId": "patchCoreV1NamespacedReplicationController",
27179        "parameters": [
27180          {
27181            "in": "body",
27182            "name": "body",
27183            "required": true,
27184            "schema": {
27185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27186            }
27187          },
27188          {
27189            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27190            "in": "query",
27191            "name": "dryRun",
27192            "type": "string",
27193            "uniqueItems": true
27194          },
27195          {
27196            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27197            "in": "query",
27198            "name": "fieldManager",
27199            "type": "string",
27200            "uniqueItems": true
27201          },
27202          {
27203            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
27204            "in": "query",
27205            "name": "force",
27206            "type": "boolean",
27207            "uniqueItems": true
27208          }
27209        ],
27210        "produces": [
27211          "application/json",
27212          "application/yaml",
27213          "application/vnd.kubernetes.protobuf"
27214        ],
27215        "responses": {
27216          "200": {
27217            "description": "OK",
27218            "schema": {
27219              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27220            }
27221          },
27222          "401": {
27223            "description": "Unauthorized"
27224          }
27225        },
27226        "schemes": [
27227          "https"
27228        ],
27229        "tags": [
27230          "core_v1"
27231        ],
27232        "x-kubernetes-action": "patch",
27233        "x-kubernetes-group-version-kind": {
27234          "group": "",
27235          "kind": "ReplicationController",
27236          "version": "v1"
27237        }
27238      },
27239      "put": {
27240        "consumes": [
27241          "*/*"
27242        ],
27243        "description": "replace the specified ReplicationController",
27244        "operationId": "replaceCoreV1NamespacedReplicationController",
27245        "parameters": [
27246          {
27247            "in": "body",
27248            "name": "body",
27249            "required": true,
27250            "schema": {
27251              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27252            }
27253          },
27254          {
27255            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27256            "in": "query",
27257            "name": "dryRun",
27258            "type": "string",
27259            "uniqueItems": true
27260          },
27261          {
27262            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27263            "in": "query",
27264            "name": "fieldManager",
27265            "type": "string",
27266            "uniqueItems": true
27267          }
27268        ],
27269        "produces": [
27270          "application/json",
27271          "application/yaml",
27272          "application/vnd.kubernetes.protobuf"
27273        ],
27274        "responses": {
27275          "200": {
27276            "description": "OK",
27277            "schema": {
27278              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27279            }
27280          },
27281          "201": {
27282            "description": "Created",
27283            "schema": {
27284              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27285            }
27286          },
27287          "401": {
27288            "description": "Unauthorized"
27289          }
27290        },
27291        "schemes": [
27292          "https"
27293        ],
27294        "tags": [
27295          "core_v1"
27296        ],
27297        "x-kubernetes-action": "put",
27298        "x-kubernetes-group-version-kind": {
27299          "group": "",
27300          "kind": "ReplicationController",
27301          "version": "v1"
27302        }
27303      }
27304    },
27305    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
27306      "get": {
27307        "consumes": [
27308          "*/*"
27309        ],
27310        "description": "read scale of the specified ReplicationController",
27311        "operationId": "readCoreV1NamespacedReplicationControllerScale",
27312        "produces": [
27313          "application/json",
27314          "application/yaml",
27315          "application/vnd.kubernetes.protobuf"
27316        ],
27317        "responses": {
27318          "200": {
27319            "description": "OK",
27320            "schema": {
27321              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27322            }
27323          },
27324          "401": {
27325            "description": "Unauthorized"
27326          }
27327        },
27328        "schemes": [
27329          "https"
27330        ],
27331        "tags": [
27332          "core_v1"
27333        ],
27334        "x-kubernetes-action": "get",
27335        "x-kubernetes-group-version-kind": {
27336          "group": "autoscaling",
27337          "kind": "Scale",
27338          "version": "v1"
27339        }
27340      },
27341      "parameters": [
27342        {
27343          "description": "name of the Scale",
27344          "in": "path",
27345          "name": "name",
27346          "required": true,
27347          "type": "string",
27348          "uniqueItems": true
27349        },
27350        {
27351          "description": "object name and auth scope, such as for teams and projects",
27352          "in": "path",
27353          "name": "namespace",
27354          "required": true,
27355          "type": "string",
27356          "uniqueItems": true
27357        },
27358        {
27359          "description": "If 'true', then the output is pretty printed.",
27360          "in": "query",
27361          "name": "pretty",
27362          "type": "string",
27363          "uniqueItems": true
27364        }
27365      ],
27366      "patch": {
27367        "consumes": [
27368          "application/json-patch+json",
27369          "application/merge-patch+json",
27370          "application/strategic-merge-patch+json",
27371          "application/apply-patch+yaml"
27372        ],
27373        "description": "partially update scale of the specified ReplicationController",
27374        "operationId": "patchCoreV1NamespacedReplicationControllerScale",
27375        "parameters": [
27376          {
27377            "in": "body",
27378            "name": "body",
27379            "required": true,
27380            "schema": {
27381              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27382            }
27383          },
27384          {
27385            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27386            "in": "query",
27387            "name": "dryRun",
27388            "type": "string",
27389            "uniqueItems": true
27390          },
27391          {
27392            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27393            "in": "query",
27394            "name": "fieldManager",
27395            "type": "string",
27396            "uniqueItems": true
27397          },
27398          {
27399            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
27400            "in": "query",
27401            "name": "force",
27402            "type": "boolean",
27403            "uniqueItems": true
27404          }
27405        ],
27406        "produces": [
27407          "application/json",
27408          "application/yaml",
27409          "application/vnd.kubernetes.protobuf"
27410        ],
27411        "responses": {
27412          "200": {
27413            "description": "OK",
27414            "schema": {
27415              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27416            }
27417          },
27418          "401": {
27419            "description": "Unauthorized"
27420          }
27421        },
27422        "schemes": [
27423          "https"
27424        ],
27425        "tags": [
27426          "core_v1"
27427        ],
27428        "x-kubernetes-action": "patch",
27429        "x-kubernetes-group-version-kind": {
27430          "group": "autoscaling",
27431          "kind": "Scale",
27432          "version": "v1"
27433        }
27434      },
27435      "put": {
27436        "consumes": [
27437          "*/*"
27438        ],
27439        "description": "replace scale of the specified ReplicationController",
27440        "operationId": "replaceCoreV1NamespacedReplicationControllerScale",
27441        "parameters": [
27442          {
27443            "in": "body",
27444            "name": "body",
27445            "required": true,
27446            "schema": {
27447              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27448            }
27449          },
27450          {
27451            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27452            "in": "query",
27453            "name": "dryRun",
27454            "type": "string",
27455            "uniqueItems": true
27456          },
27457          {
27458            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27459            "in": "query",
27460            "name": "fieldManager",
27461            "type": "string",
27462            "uniqueItems": true
27463          }
27464        ],
27465        "produces": [
27466          "application/json",
27467          "application/yaml",
27468          "application/vnd.kubernetes.protobuf"
27469        ],
27470        "responses": {
27471          "200": {
27472            "description": "OK",
27473            "schema": {
27474              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27475            }
27476          },
27477          "201": {
27478            "description": "Created",
27479            "schema": {
27480              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
27481            }
27482          },
27483          "401": {
27484            "description": "Unauthorized"
27485          }
27486        },
27487        "schemes": [
27488          "https"
27489        ],
27490        "tags": [
27491          "core_v1"
27492        ],
27493        "x-kubernetes-action": "put",
27494        "x-kubernetes-group-version-kind": {
27495          "group": "autoscaling",
27496          "kind": "Scale",
27497          "version": "v1"
27498        }
27499      }
27500    },
27501    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
27502      "get": {
27503        "consumes": [
27504          "*/*"
27505        ],
27506        "description": "read status of the specified ReplicationController",
27507        "operationId": "readCoreV1NamespacedReplicationControllerStatus",
27508        "produces": [
27509          "application/json",
27510          "application/yaml",
27511          "application/vnd.kubernetes.protobuf"
27512        ],
27513        "responses": {
27514          "200": {
27515            "description": "OK",
27516            "schema": {
27517              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27518            }
27519          },
27520          "401": {
27521            "description": "Unauthorized"
27522          }
27523        },
27524        "schemes": [
27525          "https"
27526        ],
27527        "tags": [
27528          "core_v1"
27529        ],
27530        "x-kubernetes-action": "get",
27531        "x-kubernetes-group-version-kind": {
27532          "group": "",
27533          "kind": "ReplicationController",
27534          "version": "v1"
27535        }
27536      },
27537      "parameters": [
27538        {
27539          "description": "name of the ReplicationController",
27540          "in": "path",
27541          "name": "name",
27542          "required": true,
27543          "type": "string",
27544          "uniqueItems": true
27545        },
27546        {
27547          "description": "object name and auth scope, such as for teams and projects",
27548          "in": "path",
27549          "name": "namespace",
27550          "required": true,
27551          "type": "string",
27552          "uniqueItems": true
27553        },
27554        {
27555          "description": "If 'true', then the output is pretty printed.",
27556          "in": "query",
27557          "name": "pretty",
27558          "type": "string",
27559          "uniqueItems": true
27560        }
27561      ],
27562      "patch": {
27563        "consumes": [
27564          "application/json-patch+json",
27565          "application/merge-patch+json",
27566          "application/strategic-merge-patch+json",
27567          "application/apply-patch+yaml"
27568        ],
27569        "description": "partially update status of the specified ReplicationController",
27570        "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
27571        "parameters": [
27572          {
27573            "in": "body",
27574            "name": "body",
27575            "required": true,
27576            "schema": {
27577              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27578            }
27579          },
27580          {
27581            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27582            "in": "query",
27583            "name": "dryRun",
27584            "type": "string",
27585            "uniqueItems": true
27586          },
27587          {
27588            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27589            "in": "query",
27590            "name": "fieldManager",
27591            "type": "string",
27592            "uniqueItems": true
27593          },
27594          {
27595            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
27596            "in": "query",
27597            "name": "force",
27598            "type": "boolean",
27599            "uniqueItems": true
27600          }
27601        ],
27602        "produces": [
27603          "application/json",
27604          "application/yaml",
27605          "application/vnd.kubernetes.protobuf"
27606        ],
27607        "responses": {
27608          "200": {
27609            "description": "OK",
27610            "schema": {
27611              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27612            }
27613          },
27614          "401": {
27615            "description": "Unauthorized"
27616          }
27617        },
27618        "schemes": [
27619          "https"
27620        ],
27621        "tags": [
27622          "core_v1"
27623        ],
27624        "x-kubernetes-action": "patch",
27625        "x-kubernetes-group-version-kind": {
27626          "group": "",
27627          "kind": "ReplicationController",
27628          "version": "v1"
27629        }
27630      },
27631      "put": {
27632        "consumes": [
27633          "*/*"
27634        ],
27635        "description": "replace status of the specified ReplicationController",
27636        "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
27637        "parameters": [
27638          {
27639            "in": "body",
27640            "name": "body",
27641            "required": true,
27642            "schema": {
27643              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27644            }
27645          },
27646          {
27647            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27648            "in": "query",
27649            "name": "dryRun",
27650            "type": "string",
27651            "uniqueItems": true
27652          },
27653          {
27654            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27655            "in": "query",
27656            "name": "fieldManager",
27657            "type": "string",
27658            "uniqueItems": true
27659          }
27660        ],
27661        "produces": [
27662          "application/json",
27663          "application/yaml",
27664          "application/vnd.kubernetes.protobuf"
27665        ],
27666        "responses": {
27667          "200": {
27668            "description": "OK",
27669            "schema": {
27670              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27671            }
27672          },
27673          "201": {
27674            "description": "Created",
27675            "schema": {
27676              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
27677            }
27678          },
27679          "401": {
27680            "description": "Unauthorized"
27681          }
27682        },
27683        "schemes": [
27684          "https"
27685        ],
27686        "tags": [
27687          "core_v1"
27688        ],
27689        "x-kubernetes-action": "put",
27690        "x-kubernetes-group-version-kind": {
27691          "group": "",
27692          "kind": "ReplicationController",
27693          "version": "v1"
27694        }
27695      }
27696    },
27697    "/api/v1/namespaces/{namespace}/resourcequotas": {
27698      "delete": {
27699        "consumes": [
27700          "*/*"
27701        ],
27702        "description": "delete collection of ResourceQuota",
27703        "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
27704        "parameters": [
27705          {
27706            "in": "body",
27707            "name": "body",
27708            "schema": {
27709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27710            }
27711          },
27712          {
27713            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27714            "in": "query",
27715            "name": "continue",
27716            "type": "string",
27717            "uniqueItems": true
27718          },
27719          {
27720            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27721            "in": "query",
27722            "name": "dryRun",
27723            "type": "string",
27724            "uniqueItems": true
27725          },
27726          {
27727            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27728            "in": "query",
27729            "name": "fieldSelector",
27730            "type": "string",
27731            "uniqueItems": true
27732          },
27733          {
27734            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27735            "in": "query",
27736            "name": "gracePeriodSeconds",
27737            "type": "integer",
27738            "uniqueItems": true
27739          },
27740          {
27741            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27742            "in": "query",
27743            "name": "labelSelector",
27744            "type": "string",
27745            "uniqueItems": true
27746          },
27747          {
27748            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27749            "in": "query",
27750            "name": "limit",
27751            "type": "integer",
27752            "uniqueItems": true
27753          },
27754          {
27755            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27756            "in": "query",
27757            "name": "orphanDependents",
27758            "type": "boolean",
27759            "uniqueItems": true
27760          },
27761          {
27762            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27763            "in": "query",
27764            "name": "propagationPolicy",
27765            "type": "string",
27766            "uniqueItems": true
27767          },
27768          {
27769            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27770            "in": "query",
27771            "name": "resourceVersion",
27772            "type": "string",
27773            "uniqueItems": true
27774          },
27775          {
27776            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27777            "in": "query",
27778            "name": "resourceVersionMatch",
27779            "type": "string",
27780            "uniqueItems": true
27781          },
27782          {
27783            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27784            "in": "query",
27785            "name": "timeoutSeconds",
27786            "type": "integer",
27787            "uniqueItems": true
27788          }
27789        ],
27790        "produces": [
27791          "application/json",
27792          "application/yaml",
27793          "application/vnd.kubernetes.protobuf"
27794        ],
27795        "responses": {
27796          "200": {
27797            "description": "OK",
27798            "schema": {
27799              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27800            }
27801          },
27802          "401": {
27803            "description": "Unauthorized"
27804          }
27805        },
27806        "schemes": [
27807          "https"
27808        ],
27809        "tags": [
27810          "core_v1"
27811        ],
27812        "x-kubernetes-action": "deletecollection",
27813        "x-kubernetes-group-version-kind": {
27814          "group": "",
27815          "kind": "ResourceQuota",
27816          "version": "v1"
27817        }
27818      },
27819      "get": {
27820        "consumes": [
27821          "*/*"
27822        ],
27823        "description": "list or watch objects of kind ResourceQuota",
27824        "operationId": "listCoreV1NamespacedResourceQuota",
27825        "parameters": [
27826          {
27827            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
27828            "in": "query",
27829            "name": "allowWatchBookmarks",
27830            "type": "boolean",
27831            "uniqueItems": true
27832          },
27833          {
27834            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27835            "in": "query",
27836            "name": "continue",
27837            "type": "string",
27838            "uniqueItems": true
27839          },
27840          {
27841            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27842            "in": "query",
27843            "name": "fieldSelector",
27844            "type": "string",
27845            "uniqueItems": true
27846          },
27847          {
27848            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27849            "in": "query",
27850            "name": "labelSelector",
27851            "type": "string",
27852            "uniqueItems": true
27853          },
27854          {
27855            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27856            "in": "query",
27857            "name": "limit",
27858            "type": "integer",
27859            "uniqueItems": true
27860          },
27861          {
27862            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27863            "in": "query",
27864            "name": "resourceVersion",
27865            "type": "string",
27866            "uniqueItems": true
27867          },
27868          {
27869            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27870            "in": "query",
27871            "name": "resourceVersionMatch",
27872            "type": "string",
27873            "uniqueItems": true
27874          },
27875          {
27876            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27877            "in": "query",
27878            "name": "timeoutSeconds",
27879            "type": "integer",
27880            "uniqueItems": true
27881          },
27882          {
27883            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27884            "in": "query",
27885            "name": "watch",
27886            "type": "boolean",
27887            "uniqueItems": true
27888          }
27889        ],
27890        "produces": [
27891          "application/json",
27892          "application/yaml",
27893          "application/vnd.kubernetes.protobuf",
27894          "application/json;stream=watch",
27895          "application/vnd.kubernetes.protobuf;stream=watch"
27896        ],
27897        "responses": {
27898          "200": {
27899            "description": "OK",
27900            "schema": {
27901              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
27902            }
27903          },
27904          "401": {
27905            "description": "Unauthorized"
27906          }
27907        },
27908        "schemes": [
27909          "https"
27910        ],
27911        "tags": [
27912          "core_v1"
27913        ],
27914        "x-kubernetes-action": "list",
27915        "x-kubernetes-group-version-kind": {
27916          "group": "",
27917          "kind": "ResourceQuota",
27918          "version": "v1"
27919        }
27920      },
27921      "parameters": [
27922        {
27923          "description": "object name and auth scope, such as for teams and projects",
27924          "in": "path",
27925          "name": "namespace",
27926          "required": true,
27927          "type": "string",
27928          "uniqueItems": true
27929        },
27930        {
27931          "description": "If 'true', then the output is pretty printed.",
27932          "in": "query",
27933          "name": "pretty",
27934          "type": "string",
27935          "uniqueItems": true
27936        }
27937      ],
27938      "post": {
27939        "consumes": [
27940          "*/*"
27941        ],
27942        "description": "create a ResourceQuota",
27943        "operationId": "createCoreV1NamespacedResourceQuota",
27944        "parameters": [
27945          {
27946            "in": "body",
27947            "name": "body",
27948            "required": true,
27949            "schema": {
27950              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27951            }
27952          },
27953          {
27954            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27955            "in": "query",
27956            "name": "dryRun",
27957            "type": "string",
27958            "uniqueItems": true
27959          },
27960          {
27961            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27962            "in": "query",
27963            "name": "fieldManager",
27964            "type": "string",
27965            "uniqueItems": true
27966          }
27967        ],
27968        "produces": [
27969          "application/json",
27970          "application/yaml",
27971          "application/vnd.kubernetes.protobuf"
27972        ],
27973        "responses": {
27974          "200": {
27975            "description": "OK",
27976            "schema": {
27977              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27978            }
27979          },
27980          "201": {
27981            "description": "Created",
27982            "schema": {
27983              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27984            }
27985          },
27986          "202": {
27987            "description": "Accepted",
27988            "schema": {
27989              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27990            }
27991          },
27992          "401": {
27993            "description": "Unauthorized"
27994          }
27995        },
27996        "schemes": [
27997          "https"
27998        ],
27999        "tags": [
28000          "core_v1"
28001        ],
28002        "x-kubernetes-action": "post",
28003        "x-kubernetes-group-version-kind": {
28004          "group": "",
28005          "kind": "ResourceQuota",
28006          "version": "v1"
28007        }
28008      }
28009    },
28010    "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
28011      "delete": {
28012        "consumes": [
28013          "*/*"
28014        ],
28015        "description": "delete a ResourceQuota",
28016        "operationId": "deleteCoreV1NamespacedResourceQuota",
28017        "parameters": [
28018          {
28019            "in": "body",
28020            "name": "body",
28021            "schema": {
28022              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28023            }
28024          },
28025          {
28026            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28027            "in": "query",
28028            "name": "dryRun",
28029            "type": "string",
28030            "uniqueItems": true
28031          },
28032          {
28033            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28034            "in": "query",
28035            "name": "gracePeriodSeconds",
28036            "type": "integer",
28037            "uniqueItems": true
28038          },
28039          {
28040            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28041            "in": "query",
28042            "name": "orphanDependents",
28043            "type": "boolean",
28044            "uniqueItems": true
28045          },
28046          {
28047            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28048            "in": "query",
28049            "name": "propagationPolicy",
28050            "type": "string",
28051            "uniqueItems": true
28052          }
28053        ],
28054        "produces": [
28055          "application/json",
28056          "application/yaml",
28057          "application/vnd.kubernetes.protobuf"
28058        ],
28059        "responses": {
28060          "200": {
28061            "description": "OK",
28062            "schema": {
28063              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28064            }
28065          },
28066          "202": {
28067            "description": "Accepted",
28068            "schema": {
28069              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28070            }
28071          },
28072          "401": {
28073            "description": "Unauthorized"
28074          }
28075        },
28076        "schemes": [
28077          "https"
28078        ],
28079        "tags": [
28080          "core_v1"
28081        ],
28082        "x-kubernetes-action": "delete",
28083        "x-kubernetes-group-version-kind": {
28084          "group": "",
28085          "kind": "ResourceQuota",
28086          "version": "v1"
28087        }
28088      },
28089      "get": {
28090        "consumes": [
28091          "*/*"
28092        ],
28093        "description": "read the specified ResourceQuota",
28094        "operationId": "readCoreV1NamespacedResourceQuota",
28095        "produces": [
28096          "application/json",
28097          "application/yaml",
28098          "application/vnd.kubernetes.protobuf"
28099        ],
28100        "responses": {
28101          "200": {
28102            "description": "OK",
28103            "schema": {
28104              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28105            }
28106          },
28107          "401": {
28108            "description": "Unauthorized"
28109          }
28110        },
28111        "schemes": [
28112          "https"
28113        ],
28114        "tags": [
28115          "core_v1"
28116        ],
28117        "x-kubernetes-action": "get",
28118        "x-kubernetes-group-version-kind": {
28119          "group": "",
28120          "kind": "ResourceQuota",
28121          "version": "v1"
28122        }
28123      },
28124      "parameters": [
28125        {
28126          "description": "name of the ResourceQuota",
28127          "in": "path",
28128          "name": "name",
28129          "required": true,
28130          "type": "string",
28131          "uniqueItems": true
28132        },
28133        {
28134          "description": "object name and auth scope, such as for teams and projects",
28135          "in": "path",
28136          "name": "namespace",
28137          "required": true,
28138          "type": "string",
28139          "uniqueItems": true
28140        },
28141        {
28142          "description": "If 'true', then the output is pretty printed.",
28143          "in": "query",
28144          "name": "pretty",
28145          "type": "string",
28146          "uniqueItems": true
28147        }
28148      ],
28149      "patch": {
28150        "consumes": [
28151          "application/json-patch+json",
28152          "application/merge-patch+json",
28153          "application/strategic-merge-patch+json",
28154          "application/apply-patch+yaml"
28155        ],
28156        "description": "partially update the specified ResourceQuota",
28157        "operationId": "patchCoreV1NamespacedResourceQuota",
28158        "parameters": [
28159          {
28160            "in": "body",
28161            "name": "body",
28162            "required": true,
28163            "schema": {
28164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28165            }
28166          },
28167          {
28168            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28169            "in": "query",
28170            "name": "dryRun",
28171            "type": "string",
28172            "uniqueItems": true
28173          },
28174          {
28175            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28176            "in": "query",
28177            "name": "fieldManager",
28178            "type": "string",
28179            "uniqueItems": true
28180          },
28181          {
28182            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
28183            "in": "query",
28184            "name": "force",
28185            "type": "boolean",
28186            "uniqueItems": true
28187          }
28188        ],
28189        "produces": [
28190          "application/json",
28191          "application/yaml",
28192          "application/vnd.kubernetes.protobuf"
28193        ],
28194        "responses": {
28195          "200": {
28196            "description": "OK",
28197            "schema": {
28198              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28199            }
28200          },
28201          "401": {
28202            "description": "Unauthorized"
28203          }
28204        },
28205        "schemes": [
28206          "https"
28207        ],
28208        "tags": [
28209          "core_v1"
28210        ],
28211        "x-kubernetes-action": "patch",
28212        "x-kubernetes-group-version-kind": {
28213          "group": "",
28214          "kind": "ResourceQuota",
28215          "version": "v1"
28216        }
28217      },
28218      "put": {
28219        "consumes": [
28220          "*/*"
28221        ],
28222        "description": "replace the specified ResourceQuota",
28223        "operationId": "replaceCoreV1NamespacedResourceQuota",
28224        "parameters": [
28225          {
28226            "in": "body",
28227            "name": "body",
28228            "required": true,
28229            "schema": {
28230              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28231            }
28232          },
28233          {
28234            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28235            "in": "query",
28236            "name": "dryRun",
28237            "type": "string",
28238            "uniqueItems": true
28239          },
28240          {
28241            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28242            "in": "query",
28243            "name": "fieldManager",
28244            "type": "string",
28245            "uniqueItems": true
28246          }
28247        ],
28248        "produces": [
28249          "application/json",
28250          "application/yaml",
28251          "application/vnd.kubernetes.protobuf"
28252        ],
28253        "responses": {
28254          "200": {
28255            "description": "OK",
28256            "schema": {
28257              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28258            }
28259          },
28260          "201": {
28261            "description": "Created",
28262            "schema": {
28263              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28264            }
28265          },
28266          "401": {
28267            "description": "Unauthorized"
28268          }
28269        },
28270        "schemes": [
28271          "https"
28272        ],
28273        "tags": [
28274          "core_v1"
28275        ],
28276        "x-kubernetes-action": "put",
28277        "x-kubernetes-group-version-kind": {
28278          "group": "",
28279          "kind": "ResourceQuota",
28280          "version": "v1"
28281        }
28282      }
28283    },
28284    "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
28285      "get": {
28286        "consumes": [
28287          "*/*"
28288        ],
28289        "description": "read status of the specified ResourceQuota",
28290        "operationId": "readCoreV1NamespacedResourceQuotaStatus",
28291        "produces": [
28292          "application/json",
28293          "application/yaml",
28294          "application/vnd.kubernetes.protobuf"
28295        ],
28296        "responses": {
28297          "200": {
28298            "description": "OK",
28299            "schema": {
28300              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28301            }
28302          },
28303          "401": {
28304            "description": "Unauthorized"
28305          }
28306        },
28307        "schemes": [
28308          "https"
28309        ],
28310        "tags": [
28311          "core_v1"
28312        ],
28313        "x-kubernetes-action": "get",
28314        "x-kubernetes-group-version-kind": {
28315          "group": "",
28316          "kind": "ResourceQuota",
28317          "version": "v1"
28318        }
28319      },
28320      "parameters": [
28321        {
28322          "description": "name of the ResourceQuota",
28323          "in": "path",
28324          "name": "name",
28325          "required": true,
28326          "type": "string",
28327          "uniqueItems": true
28328        },
28329        {
28330          "description": "object name and auth scope, such as for teams and projects",
28331          "in": "path",
28332          "name": "namespace",
28333          "required": true,
28334          "type": "string",
28335          "uniqueItems": true
28336        },
28337        {
28338          "description": "If 'true', then the output is pretty printed.",
28339          "in": "query",
28340          "name": "pretty",
28341          "type": "string",
28342          "uniqueItems": true
28343        }
28344      ],
28345      "patch": {
28346        "consumes": [
28347          "application/json-patch+json",
28348          "application/merge-patch+json",
28349          "application/strategic-merge-patch+json",
28350          "application/apply-patch+yaml"
28351        ],
28352        "description": "partially update status of the specified ResourceQuota",
28353        "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
28354        "parameters": [
28355          {
28356            "in": "body",
28357            "name": "body",
28358            "required": true,
28359            "schema": {
28360              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28361            }
28362          },
28363          {
28364            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28365            "in": "query",
28366            "name": "dryRun",
28367            "type": "string",
28368            "uniqueItems": true
28369          },
28370          {
28371            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28372            "in": "query",
28373            "name": "fieldManager",
28374            "type": "string",
28375            "uniqueItems": true
28376          },
28377          {
28378            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
28379            "in": "query",
28380            "name": "force",
28381            "type": "boolean",
28382            "uniqueItems": true
28383          }
28384        ],
28385        "produces": [
28386          "application/json",
28387          "application/yaml",
28388          "application/vnd.kubernetes.protobuf"
28389        ],
28390        "responses": {
28391          "200": {
28392            "description": "OK",
28393            "schema": {
28394              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28395            }
28396          },
28397          "401": {
28398            "description": "Unauthorized"
28399          }
28400        },
28401        "schemes": [
28402          "https"
28403        ],
28404        "tags": [
28405          "core_v1"
28406        ],
28407        "x-kubernetes-action": "patch",
28408        "x-kubernetes-group-version-kind": {
28409          "group": "",
28410          "kind": "ResourceQuota",
28411          "version": "v1"
28412        }
28413      },
28414      "put": {
28415        "consumes": [
28416          "*/*"
28417        ],
28418        "description": "replace status of the specified ResourceQuota",
28419        "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
28420        "parameters": [
28421          {
28422            "in": "body",
28423            "name": "body",
28424            "required": true,
28425            "schema": {
28426              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28427            }
28428          },
28429          {
28430            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28431            "in": "query",
28432            "name": "dryRun",
28433            "type": "string",
28434            "uniqueItems": true
28435          },
28436          {
28437            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28438            "in": "query",
28439            "name": "fieldManager",
28440            "type": "string",
28441            "uniqueItems": true
28442          }
28443        ],
28444        "produces": [
28445          "application/json",
28446          "application/yaml",
28447          "application/vnd.kubernetes.protobuf"
28448        ],
28449        "responses": {
28450          "200": {
28451            "description": "OK",
28452            "schema": {
28453              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28454            }
28455          },
28456          "201": {
28457            "description": "Created",
28458            "schema": {
28459              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
28460            }
28461          },
28462          "401": {
28463            "description": "Unauthorized"
28464          }
28465        },
28466        "schemes": [
28467          "https"
28468        ],
28469        "tags": [
28470          "core_v1"
28471        ],
28472        "x-kubernetes-action": "put",
28473        "x-kubernetes-group-version-kind": {
28474          "group": "",
28475          "kind": "ResourceQuota",
28476          "version": "v1"
28477        }
28478      }
28479    },
28480    "/api/v1/namespaces/{namespace}/secrets": {
28481      "delete": {
28482        "consumes": [
28483          "*/*"
28484        ],
28485        "description": "delete collection of Secret",
28486        "operationId": "deleteCoreV1CollectionNamespacedSecret",
28487        "parameters": [
28488          {
28489            "in": "body",
28490            "name": "body",
28491            "schema": {
28492              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28493            }
28494          },
28495          {
28496            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28497            "in": "query",
28498            "name": "continue",
28499            "type": "string",
28500            "uniqueItems": true
28501          },
28502          {
28503            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28504            "in": "query",
28505            "name": "dryRun",
28506            "type": "string",
28507            "uniqueItems": true
28508          },
28509          {
28510            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28511            "in": "query",
28512            "name": "fieldSelector",
28513            "type": "string",
28514            "uniqueItems": true
28515          },
28516          {
28517            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28518            "in": "query",
28519            "name": "gracePeriodSeconds",
28520            "type": "integer",
28521            "uniqueItems": true
28522          },
28523          {
28524            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28525            "in": "query",
28526            "name": "labelSelector",
28527            "type": "string",
28528            "uniqueItems": true
28529          },
28530          {
28531            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28532            "in": "query",
28533            "name": "limit",
28534            "type": "integer",
28535            "uniqueItems": true
28536          },
28537          {
28538            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28539            "in": "query",
28540            "name": "orphanDependents",
28541            "type": "boolean",
28542            "uniqueItems": true
28543          },
28544          {
28545            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28546            "in": "query",
28547            "name": "propagationPolicy",
28548            "type": "string",
28549            "uniqueItems": true
28550          },
28551          {
28552            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28553            "in": "query",
28554            "name": "resourceVersion",
28555            "type": "string",
28556            "uniqueItems": true
28557          },
28558          {
28559            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28560            "in": "query",
28561            "name": "resourceVersionMatch",
28562            "type": "string",
28563            "uniqueItems": true
28564          },
28565          {
28566            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28567            "in": "query",
28568            "name": "timeoutSeconds",
28569            "type": "integer",
28570            "uniqueItems": true
28571          }
28572        ],
28573        "produces": [
28574          "application/json",
28575          "application/yaml",
28576          "application/vnd.kubernetes.protobuf"
28577        ],
28578        "responses": {
28579          "200": {
28580            "description": "OK",
28581            "schema": {
28582              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28583            }
28584          },
28585          "401": {
28586            "description": "Unauthorized"
28587          }
28588        },
28589        "schemes": [
28590          "https"
28591        ],
28592        "tags": [
28593          "core_v1"
28594        ],
28595        "x-kubernetes-action": "deletecollection",
28596        "x-kubernetes-group-version-kind": {
28597          "group": "",
28598          "kind": "Secret",
28599          "version": "v1"
28600        }
28601      },
28602      "get": {
28603        "consumes": [
28604          "*/*"
28605        ],
28606        "description": "list or watch objects of kind Secret",
28607        "operationId": "listCoreV1NamespacedSecret",
28608        "parameters": [
28609          {
28610            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
28611            "in": "query",
28612            "name": "allowWatchBookmarks",
28613            "type": "boolean",
28614            "uniqueItems": true
28615          },
28616          {
28617            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28618            "in": "query",
28619            "name": "continue",
28620            "type": "string",
28621            "uniqueItems": true
28622          },
28623          {
28624            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28625            "in": "query",
28626            "name": "fieldSelector",
28627            "type": "string",
28628            "uniqueItems": true
28629          },
28630          {
28631            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28632            "in": "query",
28633            "name": "labelSelector",
28634            "type": "string",
28635            "uniqueItems": true
28636          },
28637          {
28638            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28639            "in": "query",
28640            "name": "limit",
28641            "type": "integer",
28642            "uniqueItems": true
28643          },
28644          {
28645            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28646            "in": "query",
28647            "name": "resourceVersion",
28648            "type": "string",
28649            "uniqueItems": true
28650          },
28651          {
28652            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28653            "in": "query",
28654            "name": "resourceVersionMatch",
28655            "type": "string",
28656            "uniqueItems": true
28657          },
28658          {
28659            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28660            "in": "query",
28661            "name": "timeoutSeconds",
28662            "type": "integer",
28663            "uniqueItems": true
28664          },
28665          {
28666            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28667            "in": "query",
28668            "name": "watch",
28669            "type": "boolean",
28670            "uniqueItems": true
28671          }
28672        ],
28673        "produces": [
28674          "application/json",
28675          "application/yaml",
28676          "application/vnd.kubernetes.protobuf",
28677          "application/json;stream=watch",
28678          "application/vnd.kubernetes.protobuf;stream=watch"
28679        ],
28680        "responses": {
28681          "200": {
28682            "description": "OK",
28683            "schema": {
28684              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
28685            }
28686          },
28687          "401": {
28688            "description": "Unauthorized"
28689          }
28690        },
28691        "schemes": [
28692          "https"
28693        ],
28694        "tags": [
28695          "core_v1"
28696        ],
28697        "x-kubernetes-action": "list",
28698        "x-kubernetes-group-version-kind": {
28699          "group": "",
28700          "kind": "Secret",
28701          "version": "v1"
28702        }
28703      },
28704      "parameters": [
28705        {
28706          "description": "object name and auth scope, such as for teams and projects",
28707          "in": "path",
28708          "name": "namespace",
28709          "required": true,
28710          "type": "string",
28711          "uniqueItems": true
28712        },
28713        {
28714          "description": "If 'true', then the output is pretty printed.",
28715          "in": "query",
28716          "name": "pretty",
28717          "type": "string",
28718          "uniqueItems": true
28719        }
28720      ],
28721      "post": {
28722        "consumes": [
28723          "*/*"
28724        ],
28725        "description": "create a Secret",
28726        "operationId": "createCoreV1NamespacedSecret",
28727        "parameters": [
28728          {
28729            "in": "body",
28730            "name": "body",
28731            "required": true,
28732            "schema": {
28733              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28734            }
28735          },
28736          {
28737            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28738            "in": "query",
28739            "name": "dryRun",
28740            "type": "string",
28741            "uniqueItems": true
28742          },
28743          {
28744            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28745            "in": "query",
28746            "name": "fieldManager",
28747            "type": "string",
28748            "uniqueItems": true
28749          }
28750        ],
28751        "produces": [
28752          "application/json",
28753          "application/yaml",
28754          "application/vnd.kubernetes.protobuf"
28755        ],
28756        "responses": {
28757          "200": {
28758            "description": "OK",
28759            "schema": {
28760              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28761            }
28762          },
28763          "201": {
28764            "description": "Created",
28765            "schema": {
28766              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28767            }
28768          },
28769          "202": {
28770            "description": "Accepted",
28771            "schema": {
28772              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28773            }
28774          },
28775          "401": {
28776            "description": "Unauthorized"
28777          }
28778        },
28779        "schemes": [
28780          "https"
28781        ],
28782        "tags": [
28783          "core_v1"
28784        ],
28785        "x-kubernetes-action": "post",
28786        "x-kubernetes-group-version-kind": {
28787          "group": "",
28788          "kind": "Secret",
28789          "version": "v1"
28790        }
28791      }
28792    },
28793    "/api/v1/namespaces/{namespace}/secrets/{name}": {
28794      "delete": {
28795        "consumes": [
28796          "*/*"
28797        ],
28798        "description": "delete a Secret",
28799        "operationId": "deleteCoreV1NamespacedSecret",
28800        "parameters": [
28801          {
28802            "in": "body",
28803            "name": "body",
28804            "schema": {
28805              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28806            }
28807          },
28808          {
28809            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28810            "in": "query",
28811            "name": "dryRun",
28812            "type": "string",
28813            "uniqueItems": true
28814          },
28815          {
28816            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28817            "in": "query",
28818            "name": "gracePeriodSeconds",
28819            "type": "integer",
28820            "uniqueItems": true
28821          },
28822          {
28823            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28824            "in": "query",
28825            "name": "orphanDependents",
28826            "type": "boolean",
28827            "uniqueItems": true
28828          },
28829          {
28830            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28831            "in": "query",
28832            "name": "propagationPolicy",
28833            "type": "string",
28834            "uniqueItems": true
28835          }
28836        ],
28837        "produces": [
28838          "application/json",
28839          "application/yaml",
28840          "application/vnd.kubernetes.protobuf"
28841        ],
28842        "responses": {
28843          "200": {
28844            "description": "OK",
28845            "schema": {
28846              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28847            }
28848          },
28849          "202": {
28850            "description": "Accepted",
28851            "schema": {
28852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28853            }
28854          },
28855          "401": {
28856            "description": "Unauthorized"
28857          }
28858        },
28859        "schemes": [
28860          "https"
28861        ],
28862        "tags": [
28863          "core_v1"
28864        ],
28865        "x-kubernetes-action": "delete",
28866        "x-kubernetes-group-version-kind": {
28867          "group": "",
28868          "kind": "Secret",
28869          "version": "v1"
28870        }
28871      },
28872      "get": {
28873        "consumes": [
28874          "*/*"
28875        ],
28876        "description": "read the specified Secret",
28877        "operationId": "readCoreV1NamespacedSecret",
28878        "produces": [
28879          "application/json",
28880          "application/yaml",
28881          "application/vnd.kubernetes.protobuf"
28882        ],
28883        "responses": {
28884          "200": {
28885            "description": "OK",
28886            "schema": {
28887              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28888            }
28889          },
28890          "401": {
28891            "description": "Unauthorized"
28892          }
28893        },
28894        "schemes": [
28895          "https"
28896        ],
28897        "tags": [
28898          "core_v1"
28899        ],
28900        "x-kubernetes-action": "get",
28901        "x-kubernetes-group-version-kind": {
28902          "group": "",
28903          "kind": "Secret",
28904          "version": "v1"
28905        }
28906      },
28907      "parameters": [
28908        {
28909          "description": "name of the Secret",
28910          "in": "path",
28911          "name": "name",
28912          "required": true,
28913          "type": "string",
28914          "uniqueItems": true
28915        },
28916        {
28917          "description": "object name and auth scope, such as for teams and projects",
28918          "in": "path",
28919          "name": "namespace",
28920          "required": true,
28921          "type": "string",
28922          "uniqueItems": true
28923        },
28924        {
28925          "description": "If 'true', then the output is pretty printed.",
28926          "in": "query",
28927          "name": "pretty",
28928          "type": "string",
28929          "uniqueItems": true
28930        }
28931      ],
28932      "patch": {
28933        "consumes": [
28934          "application/json-patch+json",
28935          "application/merge-patch+json",
28936          "application/strategic-merge-patch+json",
28937          "application/apply-patch+yaml"
28938        ],
28939        "description": "partially update the specified Secret",
28940        "operationId": "patchCoreV1NamespacedSecret",
28941        "parameters": [
28942          {
28943            "in": "body",
28944            "name": "body",
28945            "required": true,
28946            "schema": {
28947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28948            }
28949          },
28950          {
28951            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28952            "in": "query",
28953            "name": "dryRun",
28954            "type": "string",
28955            "uniqueItems": true
28956          },
28957          {
28958            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28959            "in": "query",
28960            "name": "fieldManager",
28961            "type": "string",
28962            "uniqueItems": true
28963          },
28964          {
28965            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
28966            "in": "query",
28967            "name": "force",
28968            "type": "boolean",
28969            "uniqueItems": true
28970          }
28971        ],
28972        "produces": [
28973          "application/json",
28974          "application/yaml",
28975          "application/vnd.kubernetes.protobuf"
28976        ],
28977        "responses": {
28978          "200": {
28979            "description": "OK",
28980            "schema": {
28981              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28982            }
28983          },
28984          "401": {
28985            "description": "Unauthorized"
28986          }
28987        },
28988        "schemes": [
28989          "https"
28990        ],
28991        "tags": [
28992          "core_v1"
28993        ],
28994        "x-kubernetes-action": "patch",
28995        "x-kubernetes-group-version-kind": {
28996          "group": "",
28997          "kind": "Secret",
28998          "version": "v1"
28999        }
29000      },
29001      "put": {
29002        "consumes": [
29003          "*/*"
29004        ],
29005        "description": "replace the specified Secret",
29006        "operationId": "replaceCoreV1NamespacedSecret",
29007        "parameters": [
29008          {
29009            "in": "body",
29010            "name": "body",
29011            "required": true,
29012            "schema": {
29013              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29014            }
29015          },
29016          {
29017            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29018            "in": "query",
29019            "name": "dryRun",
29020            "type": "string",
29021            "uniqueItems": true
29022          },
29023          {
29024            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29025            "in": "query",
29026            "name": "fieldManager",
29027            "type": "string",
29028            "uniqueItems": true
29029          }
29030        ],
29031        "produces": [
29032          "application/json",
29033          "application/yaml",
29034          "application/vnd.kubernetes.protobuf"
29035        ],
29036        "responses": {
29037          "200": {
29038            "description": "OK",
29039            "schema": {
29040              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29041            }
29042          },
29043          "201": {
29044            "description": "Created",
29045            "schema": {
29046              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
29047            }
29048          },
29049          "401": {
29050            "description": "Unauthorized"
29051          }
29052        },
29053        "schemes": [
29054          "https"
29055        ],
29056        "tags": [
29057          "core_v1"
29058        ],
29059        "x-kubernetes-action": "put",
29060        "x-kubernetes-group-version-kind": {
29061          "group": "",
29062          "kind": "Secret",
29063          "version": "v1"
29064        }
29065      }
29066    },
29067    "/api/v1/namespaces/{namespace}/serviceaccounts": {
29068      "delete": {
29069        "consumes": [
29070          "*/*"
29071        ],
29072        "description": "delete collection of ServiceAccount",
29073        "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
29074        "parameters": [
29075          {
29076            "in": "body",
29077            "name": "body",
29078            "schema": {
29079              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29080            }
29081          },
29082          {
29083            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29084            "in": "query",
29085            "name": "continue",
29086            "type": "string",
29087            "uniqueItems": true
29088          },
29089          {
29090            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29091            "in": "query",
29092            "name": "dryRun",
29093            "type": "string",
29094            "uniqueItems": true
29095          },
29096          {
29097            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29098            "in": "query",
29099            "name": "fieldSelector",
29100            "type": "string",
29101            "uniqueItems": true
29102          },
29103          {
29104            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29105            "in": "query",
29106            "name": "gracePeriodSeconds",
29107            "type": "integer",
29108            "uniqueItems": true
29109          },
29110          {
29111            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29112            "in": "query",
29113            "name": "labelSelector",
29114            "type": "string",
29115            "uniqueItems": true
29116          },
29117          {
29118            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29119            "in": "query",
29120            "name": "limit",
29121            "type": "integer",
29122            "uniqueItems": true
29123          },
29124          {
29125            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29126            "in": "query",
29127            "name": "orphanDependents",
29128            "type": "boolean",
29129            "uniqueItems": true
29130          },
29131          {
29132            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29133            "in": "query",
29134            "name": "propagationPolicy",
29135            "type": "string",
29136            "uniqueItems": true
29137          },
29138          {
29139            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29140            "in": "query",
29141            "name": "resourceVersion",
29142            "type": "string",
29143            "uniqueItems": true
29144          },
29145          {
29146            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29147            "in": "query",
29148            "name": "resourceVersionMatch",
29149            "type": "string",
29150            "uniqueItems": true
29151          },
29152          {
29153            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29154            "in": "query",
29155            "name": "timeoutSeconds",
29156            "type": "integer",
29157            "uniqueItems": true
29158          }
29159        ],
29160        "produces": [
29161          "application/json",
29162          "application/yaml",
29163          "application/vnd.kubernetes.protobuf"
29164        ],
29165        "responses": {
29166          "200": {
29167            "description": "OK",
29168            "schema": {
29169              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29170            }
29171          },
29172          "401": {
29173            "description": "Unauthorized"
29174          }
29175        },
29176        "schemes": [
29177          "https"
29178        ],
29179        "tags": [
29180          "core_v1"
29181        ],
29182        "x-kubernetes-action": "deletecollection",
29183        "x-kubernetes-group-version-kind": {
29184          "group": "",
29185          "kind": "ServiceAccount",
29186          "version": "v1"
29187        }
29188      },
29189      "get": {
29190        "consumes": [
29191          "*/*"
29192        ],
29193        "description": "list or watch objects of kind ServiceAccount",
29194        "operationId": "listCoreV1NamespacedServiceAccount",
29195        "parameters": [
29196          {
29197            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
29198            "in": "query",
29199            "name": "allowWatchBookmarks",
29200            "type": "boolean",
29201            "uniqueItems": true
29202          },
29203          {
29204            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29205            "in": "query",
29206            "name": "continue",
29207            "type": "string",
29208            "uniqueItems": true
29209          },
29210          {
29211            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29212            "in": "query",
29213            "name": "fieldSelector",
29214            "type": "string",
29215            "uniqueItems": true
29216          },
29217          {
29218            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29219            "in": "query",
29220            "name": "labelSelector",
29221            "type": "string",
29222            "uniqueItems": true
29223          },
29224          {
29225            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29226            "in": "query",
29227            "name": "limit",
29228            "type": "integer",
29229            "uniqueItems": true
29230          },
29231          {
29232            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29233            "in": "query",
29234            "name": "resourceVersion",
29235            "type": "string",
29236            "uniqueItems": true
29237          },
29238          {
29239            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29240            "in": "query",
29241            "name": "resourceVersionMatch",
29242            "type": "string",
29243            "uniqueItems": true
29244          },
29245          {
29246            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29247            "in": "query",
29248            "name": "timeoutSeconds",
29249            "type": "integer",
29250            "uniqueItems": true
29251          },
29252          {
29253            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29254            "in": "query",
29255            "name": "watch",
29256            "type": "boolean",
29257            "uniqueItems": true
29258          }
29259        ],
29260        "produces": [
29261          "application/json",
29262          "application/yaml",
29263          "application/vnd.kubernetes.protobuf",
29264          "application/json;stream=watch",
29265          "application/vnd.kubernetes.protobuf;stream=watch"
29266        ],
29267        "responses": {
29268          "200": {
29269            "description": "OK",
29270            "schema": {
29271              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
29272            }
29273          },
29274          "401": {
29275            "description": "Unauthorized"
29276          }
29277        },
29278        "schemes": [
29279          "https"
29280        ],
29281        "tags": [
29282          "core_v1"
29283        ],
29284        "x-kubernetes-action": "list",
29285        "x-kubernetes-group-version-kind": {
29286          "group": "",
29287          "kind": "ServiceAccount",
29288          "version": "v1"
29289        }
29290      },
29291      "parameters": [
29292        {
29293          "description": "object name and auth scope, such as for teams and projects",
29294          "in": "path",
29295          "name": "namespace",
29296          "required": true,
29297          "type": "string",
29298          "uniqueItems": true
29299        },
29300        {
29301          "description": "If 'true', then the output is pretty printed.",
29302          "in": "query",
29303          "name": "pretty",
29304          "type": "string",
29305          "uniqueItems": true
29306        }
29307      ],
29308      "post": {
29309        "consumes": [
29310          "*/*"
29311        ],
29312        "description": "create a ServiceAccount",
29313        "operationId": "createCoreV1NamespacedServiceAccount",
29314        "parameters": [
29315          {
29316            "in": "body",
29317            "name": "body",
29318            "required": true,
29319            "schema": {
29320              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29321            }
29322          },
29323          {
29324            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29325            "in": "query",
29326            "name": "dryRun",
29327            "type": "string",
29328            "uniqueItems": true
29329          },
29330          {
29331            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29332            "in": "query",
29333            "name": "fieldManager",
29334            "type": "string",
29335            "uniqueItems": true
29336          }
29337        ],
29338        "produces": [
29339          "application/json",
29340          "application/yaml",
29341          "application/vnd.kubernetes.protobuf"
29342        ],
29343        "responses": {
29344          "200": {
29345            "description": "OK",
29346            "schema": {
29347              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29348            }
29349          },
29350          "201": {
29351            "description": "Created",
29352            "schema": {
29353              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29354            }
29355          },
29356          "202": {
29357            "description": "Accepted",
29358            "schema": {
29359              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29360            }
29361          },
29362          "401": {
29363            "description": "Unauthorized"
29364          }
29365        },
29366        "schemes": [
29367          "https"
29368        ],
29369        "tags": [
29370          "core_v1"
29371        ],
29372        "x-kubernetes-action": "post",
29373        "x-kubernetes-group-version-kind": {
29374          "group": "",
29375          "kind": "ServiceAccount",
29376          "version": "v1"
29377        }
29378      }
29379    },
29380    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
29381      "delete": {
29382        "consumes": [
29383          "*/*"
29384        ],
29385        "description": "delete a ServiceAccount",
29386        "operationId": "deleteCoreV1NamespacedServiceAccount",
29387        "parameters": [
29388          {
29389            "in": "body",
29390            "name": "body",
29391            "schema": {
29392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29393            }
29394          },
29395          {
29396            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29397            "in": "query",
29398            "name": "dryRun",
29399            "type": "string",
29400            "uniqueItems": true
29401          },
29402          {
29403            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29404            "in": "query",
29405            "name": "gracePeriodSeconds",
29406            "type": "integer",
29407            "uniqueItems": true
29408          },
29409          {
29410            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29411            "in": "query",
29412            "name": "orphanDependents",
29413            "type": "boolean",
29414            "uniqueItems": true
29415          },
29416          {
29417            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29418            "in": "query",
29419            "name": "propagationPolicy",
29420            "type": "string",
29421            "uniqueItems": true
29422          }
29423        ],
29424        "produces": [
29425          "application/json",
29426          "application/yaml",
29427          "application/vnd.kubernetes.protobuf"
29428        ],
29429        "responses": {
29430          "200": {
29431            "description": "OK",
29432            "schema": {
29433              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29434            }
29435          },
29436          "202": {
29437            "description": "Accepted",
29438            "schema": {
29439              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29440            }
29441          },
29442          "401": {
29443            "description": "Unauthorized"
29444          }
29445        },
29446        "schemes": [
29447          "https"
29448        ],
29449        "tags": [
29450          "core_v1"
29451        ],
29452        "x-kubernetes-action": "delete",
29453        "x-kubernetes-group-version-kind": {
29454          "group": "",
29455          "kind": "ServiceAccount",
29456          "version": "v1"
29457        }
29458      },
29459      "get": {
29460        "consumes": [
29461          "*/*"
29462        ],
29463        "description": "read the specified ServiceAccount",
29464        "operationId": "readCoreV1NamespacedServiceAccount",
29465        "produces": [
29466          "application/json",
29467          "application/yaml",
29468          "application/vnd.kubernetes.protobuf"
29469        ],
29470        "responses": {
29471          "200": {
29472            "description": "OK",
29473            "schema": {
29474              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29475            }
29476          },
29477          "401": {
29478            "description": "Unauthorized"
29479          }
29480        },
29481        "schemes": [
29482          "https"
29483        ],
29484        "tags": [
29485          "core_v1"
29486        ],
29487        "x-kubernetes-action": "get",
29488        "x-kubernetes-group-version-kind": {
29489          "group": "",
29490          "kind": "ServiceAccount",
29491          "version": "v1"
29492        }
29493      },
29494      "parameters": [
29495        {
29496          "description": "name of the ServiceAccount",
29497          "in": "path",
29498          "name": "name",
29499          "required": true,
29500          "type": "string",
29501          "uniqueItems": true
29502        },
29503        {
29504          "description": "object name and auth scope, such as for teams and projects",
29505          "in": "path",
29506          "name": "namespace",
29507          "required": true,
29508          "type": "string",
29509          "uniqueItems": true
29510        },
29511        {
29512          "description": "If 'true', then the output is pretty printed.",
29513          "in": "query",
29514          "name": "pretty",
29515          "type": "string",
29516          "uniqueItems": true
29517        }
29518      ],
29519      "patch": {
29520        "consumes": [
29521          "application/json-patch+json",
29522          "application/merge-patch+json",
29523          "application/strategic-merge-patch+json",
29524          "application/apply-patch+yaml"
29525        ],
29526        "description": "partially update the specified ServiceAccount",
29527        "operationId": "patchCoreV1NamespacedServiceAccount",
29528        "parameters": [
29529          {
29530            "in": "body",
29531            "name": "body",
29532            "required": true,
29533            "schema": {
29534              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
29535            }
29536          },
29537          {
29538            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29539            "in": "query",
29540            "name": "dryRun",
29541            "type": "string",
29542            "uniqueItems": true
29543          },
29544          {
29545            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
29546            "in": "query",
29547            "name": "fieldManager",
29548            "type": "string",
29549            "uniqueItems": true
29550          },
29551          {
29552            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
29553            "in": "query",
29554            "name": "force",
29555            "type": "boolean",
29556            "uniqueItems": true
29557          }
29558        ],
29559        "produces": [
29560          "application/json",
29561          "application/yaml",
29562          "application/vnd.kubernetes.protobuf"
29563        ],
29564        "responses": {
29565          "200": {
29566            "description": "OK",
29567            "schema": {
29568              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29569            }
29570          },
29571          "401": {
29572            "description": "Unauthorized"
29573          }
29574        },
29575        "schemes": [
29576          "https"
29577        ],
29578        "tags": [
29579          "core_v1"
29580        ],
29581        "x-kubernetes-action": "patch",
29582        "x-kubernetes-group-version-kind": {
29583          "group": "",
29584          "kind": "ServiceAccount",
29585          "version": "v1"
29586        }
29587      },
29588      "put": {
29589        "consumes": [
29590          "*/*"
29591        ],
29592        "description": "replace the specified ServiceAccount",
29593        "operationId": "replaceCoreV1NamespacedServiceAccount",
29594        "parameters": [
29595          {
29596            "in": "body",
29597            "name": "body",
29598            "required": true,
29599            "schema": {
29600              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29601            }
29602          },
29603          {
29604            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29605            "in": "query",
29606            "name": "dryRun",
29607            "type": "string",
29608            "uniqueItems": true
29609          },
29610          {
29611            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29612            "in": "query",
29613            "name": "fieldManager",
29614            "type": "string",
29615            "uniqueItems": true
29616          }
29617        ],
29618        "produces": [
29619          "application/json",
29620          "application/yaml",
29621          "application/vnd.kubernetes.protobuf"
29622        ],
29623        "responses": {
29624          "200": {
29625            "description": "OK",
29626            "schema": {
29627              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29628            }
29629          },
29630          "201": {
29631            "description": "Created",
29632            "schema": {
29633              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
29634            }
29635          },
29636          "401": {
29637            "description": "Unauthorized"
29638          }
29639        },
29640        "schemes": [
29641          "https"
29642        ],
29643        "tags": [
29644          "core_v1"
29645        ],
29646        "x-kubernetes-action": "put",
29647        "x-kubernetes-group-version-kind": {
29648          "group": "",
29649          "kind": "ServiceAccount",
29650          "version": "v1"
29651        }
29652      }
29653    },
29654    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": {
29655      "parameters": [
29656        {
29657          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29658          "in": "query",
29659          "name": "dryRun",
29660          "type": "string",
29661          "uniqueItems": true
29662        },
29663        {
29664          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29665          "in": "query",
29666          "name": "fieldManager",
29667          "type": "string",
29668          "uniqueItems": true
29669        },
29670        {
29671          "description": "name of the TokenRequest",
29672          "in": "path",
29673          "name": "name",
29674          "required": true,
29675          "type": "string",
29676          "uniqueItems": true
29677        },
29678        {
29679          "description": "object name and auth scope, such as for teams and projects",
29680          "in": "path",
29681          "name": "namespace",
29682          "required": true,
29683          "type": "string",
29684          "uniqueItems": true
29685        },
29686        {
29687          "description": "If 'true', then the output is pretty printed.",
29688          "in": "query",
29689          "name": "pretty",
29690          "type": "string",
29691          "uniqueItems": true
29692        }
29693      ],
29694      "post": {
29695        "consumes": [
29696          "*/*"
29697        ],
29698        "description": "create token of a ServiceAccount",
29699        "operationId": "createCoreV1NamespacedServiceAccountToken",
29700        "parameters": [
29701          {
29702            "in": "body",
29703            "name": "body",
29704            "required": true,
29705            "schema": {
29706              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29707            }
29708          }
29709        ],
29710        "produces": [
29711          "application/json",
29712          "application/yaml",
29713          "application/vnd.kubernetes.protobuf"
29714        ],
29715        "responses": {
29716          "200": {
29717            "description": "OK",
29718            "schema": {
29719              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29720            }
29721          },
29722          "201": {
29723            "description": "Created",
29724            "schema": {
29725              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29726            }
29727          },
29728          "202": {
29729            "description": "Accepted",
29730            "schema": {
29731              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
29732            }
29733          },
29734          "401": {
29735            "description": "Unauthorized"
29736          }
29737        },
29738        "schemes": [
29739          "https"
29740        ],
29741        "tags": [
29742          "core_v1"
29743        ],
29744        "x-kubernetes-action": "post",
29745        "x-kubernetes-group-version-kind": {
29746          "group": "authentication.k8s.io",
29747          "kind": "TokenRequest",
29748          "version": "v1"
29749        }
29750      }
29751    },
29752    "/api/v1/namespaces/{namespace}/services": {
29753      "get": {
29754        "consumes": [
29755          "*/*"
29756        ],
29757        "description": "list or watch objects of kind Service",
29758        "operationId": "listCoreV1NamespacedService",
29759        "parameters": [
29760          {
29761            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
29762            "in": "query",
29763            "name": "allowWatchBookmarks",
29764            "type": "boolean",
29765            "uniqueItems": true
29766          },
29767          {
29768            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29769            "in": "query",
29770            "name": "continue",
29771            "type": "string",
29772            "uniqueItems": true
29773          },
29774          {
29775            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29776            "in": "query",
29777            "name": "fieldSelector",
29778            "type": "string",
29779            "uniqueItems": true
29780          },
29781          {
29782            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29783            "in": "query",
29784            "name": "labelSelector",
29785            "type": "string",
29786            "uniqueItems": true
29787          },
29788          {
29789            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29790            "in": "query",
29791            "name": "limit",
29792            "type": "integer",
29793            "uniqueItems": true
29794          },
29795          {
29796            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29797            "in": "query",
29798            "name": "resourceVersion",
29799            "type": "string",
29800            "uniqueItems": true
29801          },
29802          {
29803            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29804            "in": "query",
29805            "name": "resourceVersionMatch",
29806            "type": "string",
29807            "uniqueItems": true
29808          },
29809          {
29810            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29811            "in": "query",
29812            "name": "timeoutSeconds",
29813            "type": "integer",
29814            "uniqueItems": true
29815          },
29816          {
29817            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29818            "in": "query",
29819            "name": "watch",
29820            "type": "boolean",
29821            "uniqueItems": true
29822          }
29823        ],
29824        "produces": [
29825          "application/json",
29826          "application/yaml",
29827          "application/vnd.kubernetes.protobuf",
29828          "application/json;stream=watch",
29829          "application/vnd.kubernetes.protobuf;stream=watch"
29830        ],
29831        "responses": {
29832          "200": {
29833            "description": "OK",
29834            "schema": {
29835              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
29836            }
29837          },
29838          "401": {
29839            "description": "Unauthorized"
29840          }
29841        },
29842        "schemes": [
29843          "https"
29844        ],
29845        "tags": [
29846          "core_v1"
29847        ],
29848        "x-kubernetes-action": "list",
29849        "x-kubernetes-group-version-kind": {
29850          "group": "",
29851          "kind": "Service",
29852          "version": "v1"
29853        }
29854      },
29855      "parameters": [
29856        {
29857          "description": "object name and auth scope, such as for teams and projects",
29858          "in": "path",
29859          "name": "namespace",
29860          "required": true,
29861          "type": "string",
29862          "uniqueItems": true
29863        },
29864        {
29865          "description": "If 'true', then the output is pretty printed.",
29866          "in": "query",
29867          "name": "pretty",
29868          "type": "string",
29869          "uniqueItems": true
29870        }
29871      ],
29872      "post": {
29873        "consumes": [
29874          "*/*"
29875        ],
29876        "description": "create a Service",
29877        "operationId": "createCoreV1NamespacedService",
29878        "parameters": [
29879          {
29880            "in": "body",
29881            "name": "body",
29882            "required": true,
29883            "schema": {
29884              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29885            }
29886          },
29887          {
29888            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29889            "in": "query",
29890            "name": "dryRun",
29891            "type": "string",
29892            "uniqueItems": true
29893          },
29894          {
29895            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29896            "in": "query",
29897            "name": "fieldManager",
29898            "type": "string",
29899            "uniqueItems": true
29900          }
29901        ],
29902        "produces": [
29903          "application/json",
29904          "application/yaml",
29905          "application/vnd.kubernetes.protobuf"
29906        ],
29907        "responses": {
29908          "200": {
29909            "description": "OK",
29910            "schema": {
29911              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29912            }
29913          },
29914          "201": {
29915            "description": "Created",
29916            "schema": {
29917              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29918            }
29919          },
29920          "202": {
29921            "description": "Accepted",
29922            "schema": {
29923              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29924            }
29925          },
29926          "401": {
29927            "description": "Unauthorized"
29928          }
29929        },
29930        "schemes": [
29931          "https"
29932        ],
29933        "tags": [
29934          "core_v1"
29935        ],
29936        "x-kubernetes-action": "post",
29937        "x-kubernetes-group-version-kind": {
29938          "group": "",
29939          "kind": "Service",
29940          "version": "v1"
29941        }
29942      }
29943    },
29944    "/api/v1/namespaces/{namespace}/services/{name}": {
29945      "delete": {
29946        "consumes": [
29947          "*/*"
29948        ],
29949        "description": "delete a Service",
29950        "operationId": "deleteCoreV1NamespacedService",
29951        "parameters": [
29952          {
29953            "in": "body",
29954            "name": "body",
29955            "schema": {
29956              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29957            }
29958          },
29959          {
29960            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29961            "in": "query",
29962            "name": "dryRun",
29963            "type": "string",
29964            "uniqueItems": true
29965          },
29966          {
29967            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29968            "in": "query",
29969            "name": "gracePeriodSeconds",
29970            "type": "integer",
29971            "uniqueItems": true
29972          },
29973          {
29974            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29975            "in": "query",
29976            "name": "orphanDependents",
29977            "type": "boolean",
29978            "uniqueItems": true
29979          },
29980          {
29981            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29982            "in": "query",
29983            "name": "propagationPolicy",
29984            "type": "string",
29985            "uniqueItems": true
29986          }
29987        ],
29988        "produces": [
29989          "application/json",
29990          "application/yaml",
29991          "application/vnd.kubernetes.protobuf"
29992        ],
29993        "responses": {
29994          "200": {
29995            "description": "OK",
29996            "schema": {
29997              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29998            }
29999          },
30000          "202": {
30001            "description": "Accepted",
30002            "schema": {
30003              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30004            }
30005          },
30006          "401": {
30007            "description": "Unauthorized"
30008          }
30009        },
30010        "schemes": [
30011          "https"
30012        ],
30013        "tags": [
30014          "core_v1"
30015        ],
30016        "x-kubernetes-action": "delete",
30017        "x-kubernetes-group-version-kind": {
30018          "group": "",
30019          "kind": "Service",
30020          "version": "v1"
30021        }
30022      },
30023      "get": {
30024        "consumes": [
30025          "*/*"
30026        ],
30027        "description": "read the specified Service",
30028        "operationId": "readCoreV1NamespacedService",
30029        "produces": [
30030          "application/json",
30031          "application/yaml",
30032          "application/vnd.kubernetes.protobuf"
30033        ],
30034        "responses": {
30035          "200": {
30036            "description": "OK",
30037            "schema": {
30038              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30039            }
30040          },
30041          "401": {
30042            "description": "Unauthorized"
30043          }
30044        },
30045        "schemes": [
30046          "https"
30047        ],
30048        "tags": [
30049          "core_v1"
30050        ],
30051        "x-kubernetes-action": "get",
30052        "x-kubernetes-group-version-kind": {
30053          "group": "",
30054          "kind": "Service",
30055          "version": "v1"
30056        }
30057      },
30058      "parameters": [
30059        {
30060          "description": "name of the Service",
30061          "in": "path",
30062          "name": "name",
30063          "required": true,
30064          "type": "string",
30065          "uniqueItems": true
30066        },
30067        {
30068          "description": "object name and auth scope, such as for teams and projects",
30069          "in": "path",
30070          "name": "namespace",
30071          "required": true,
30072          "type": "string",
30073          "uniqueItems": true
30074        },
30075        {
30076          "description": "If 'true', then the output is pretty printed.",
30077          "in": "query",
30078          "name": "pretty",
30079          "type": "string",
30080          "uniqueItems": true
30081        }
30082      ],
30083      "patch": {
30084        "consumes": [
30085          "application/json-patch+json",
30086          "application/merge-patch+json",
30087          "application/strategic-merge-patch+json",
30088          "application/apply-patch+yaml"
30089        ],
30090        "description": "partially update the specified Service",
30091        "operationId": "patchCoreV1NamespacedService",
30092        "parameters": [
30093          {
30094            "in": "body",
30095            "name": "body",
30096            "required": true,
30097            "schema": {
30098              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30099            }
30100          },
30101          {
30102            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30103            "in": "query",
30104            "name": "dryRun",
30105            "type": "string",
30106            "uniqueItems": true
30107          },
30108          {
30109            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
30110            "in": "query",
30111            "name": "fieldManager",
30112            "type": "string",
30113            "uniqueItems": true
30114          },
30115          {
30116            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
30117            "in": "query",
30118            "name": "force",
30119            "type": "boolean",
30120            "uniqueItems": true
30121          }
30122        ],
30123        "produces": [
30124          "application/json",
30125          "application/yaml",
30126          "application/vnd.kubernetes.protobuf"
30127        ],
30128        "responses": {
30129          "200": {
30130            "description": "OK",
30131            "schema": {
30132              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30133            }
30134          },
30135          "401": {
30136            "description": "Unauthorized"
30137          }
30138        },
30139        "schemes": [
30140          "https"
30141        ],
30142        "tags": [
30143          "core_v1"
30144        ],
30145        "x-kubernetes-action": "patch",
30146        "x-kubernetes-group-version-kind": {
30147          "group": "",
30148          "kind": "Service",
30149          "version": "v1"
30150        }
30151      },
30152      "put": {
30153        "consumes": [
30154          "*/*"
30155        ],
30156        "description": "replace the specified Service",
30157        "operationId": "replaceCoreV1NamespacedService",
30158        "parameters": [
30159          {
30160            "in": "body",
30161            "name": "body",
30162            "required": true,
30163            "schema": {
30164              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30165            }
30166          },
30167          {
30168            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30169            "in": "query",
30170            "name": "dryRun",
30171            "type": "string",
30172            "uniqueItems": true
30173          },
30174          {
30175            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30176            "in": "query",
30177            "name": "fieldManager",
30178            "type": "string",
30179            "uniqueItems": true
30180          }
30181        ],
30182        "produces": [
30183          "application/json",
30184          "application/yaml",
30185          "application/vnd.kubernetes.protobuf"
30186        ],
30187        "responses": {
30188          "200": {
30189            "description": "OK",
30190            "schema": {
30191              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30192            }
30193          },
30194          "201": {
30195            "description": "Created",
30196            "schema": {
30197              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30198            }
30199          },
30200          "401": {
30201            "description": "Unauthorized"
30202          }
30203        },
30204        "schemes": [
30205          "https"
30206        ],
30207        "tags": [
30208          "core_v1"
30209        ],
30210        "x-kubernetes-action": "put",
30211        "x-kubernetes-group-version-kind": {
30212          "group": "",
30213          "kind": "Service",
30214          "version": "v1"
30215        }
30216      }
30217    },
30218    "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
30219      "delete": {
30220        "consumes": [
30221          "*/*"
30222        ],
30223        "description": "connect DELETE requests to proxy of Service",
30224        "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
30225        "produces": [
30226          "*/*"
30227        ],
30228        "responses": {
30229          "200": {
30230            "description": "OK",
30231            "schema": {
30232              "type": "string"
30233            }
30234          },
30235          "401": {
30236            "description": "Unauthorized"
30237          }
30238        },
30239        "schemes": [
30240          "https"
30241        ],
30242        "tags": [
30243          "core_v1"
30244        ],
30245        "x-kubernetes-action": "connect",
30246        "x-kubernetes-group-version-kind": {
30247          "group": "",
30248          "kind": "ServiceProxyOptions",
30249          "version": "v1"
30250        }
30251      },
30252      "get": {
30253        "consumes": [
30254          "*/*"
30255        ],
30256        "description": "connect GET requests to proxy of Service",
30257        "operationId": "connectCoreV1GetNamespacedServiceProxy",
30258        "produces": [
30259          "*/*"
30260        ],
30261        "responses": {
30262          "200": {
30263            "description": "OK",
30264            "schema": {
30265              "type": "string"
30266            }
30267          },
30268          "401": {
30269            "description": "Unauthorized"
30270          }
30271        },
30272        "schemes": [
30273          "https"
30274        ],
30275        "tags": [
30276          "core_v1"
30277        ],
30278        "x-kubernetes-action": "connect",
30279        "x-kubernetes-group-version-kind": {
30280          "group": "",
30281          "kind": "ServiceProxyOptions",
30282          "version": "v1"
30283        }
30284      },
30285      "head": {
30286        "consumes": [
30287          "*/*"
30288        ],
30289        "description": "connect HEAD requests to proxy of Service",
30290        "operationId": "connectCoreV1HeadNamespacedServiceProxy",
30291        "produces": [
30292          "*/*"
30293        ],
30294        "responses": {
30295          "200": {
30296            "description": "OK",
30297            "schema": {
30298              "type": "string"
30299            }
30300          },
30301          "401": {
30302            "description": "Unauthorized"
30303          }
30304        },
30305        "schemes": [
30306          "https"
30307        ],
30308        "tags": [
30309          "core_v1"
30310        ],
30311        "x-kubernetes-action": "connect",
30312        "x-kubernetes-group-version-kind": {
30313          "group": "",
30314          "kind": "ServiceProxyOptions",
30315          "version": "v1"
30316        }
30317      },
30318      "options": {
30319        "consumes": [
30320          "*/*"
30321        ],
30322        "description": "connect OPTIONS requests to proxy of Service",
30323        "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
30324        "produces": [
30325          "*/*"
30326        ],
30327        "responses": {
30328          "200": {
30329            "description": "OK",
30330            "schema": {
30331              "type": "string"
30332            }
30333          },
30334          "401": {
30335            "description": "Unauthorized"
30336          }
30337        },
30338        "schemes": [
30339          "https"
30340        ],
30341        "tags": [
30342          "core_v1"
30343        ],
30344        "x-kubernetes-action": "connect",
30345        "x-kubernetes-group-version-kind": {
30346          "group": "",
30347          "kind": "ServiceProxyOptions",
30348          "version": "v1"
30349        }
30350      },
30351      "parameters": [
30352        {
30353          "description": "name of the ServiceProxyOptions",
30354          "in": "path",
30355          "name": "name",
30356          "required": true,
30357          "type": "string",
30358          "uniqueItems": true
30359        },
30360        {
30361          "description": "object name and auth scope, such as for teams and projects",
30362          "in": "path",
30363          "name": "namespace",
30364          "required": true,
30365          "type": "string",
30366          "uniqueItems": true
30367        },
30368        {
30369          "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.",
30370          "in": "query",
30371          "name": "path",
30372          "type": "string",
30373          "uniqueItems": true
30374        }
30375      ],
30376      "patch": {
30377        "consumes": [
30378          "*/*"
30379        ],
30380        "description": "connect PATCH requests to proxy of Service",
30381        "operationId": "connectCoreV1PatchNamespacedServiceProxy",
30382        "produces": [
30383          "*/*"
30384        ],
30385        "responses": {
30386          "200": {
30387            "description": "OK",
30388            "schema": {
30389              "type": "string"
30390            }
30391          },
30392          "401": {
30393            "description": "Unauthorized"
30394          }
30395        },
30396        "schemes": [
30397          "https"
30398        ],
30399        "tags": [
30400          "core_v1"
30401        ],
30402        "x-kubernetes-action": "connect",
30403        "x-kubernetes-group-version-kind": {
30404          "group": "",
30405          "kind": "ServiceProxyOptions",
30406          "version": "v1"
30407        }
30408      },
30409      "post": {
30410        "consumes": [
30411          "*/*"
30412        ],
30413        "description": "connect POST requests to proxy of Service",
30414        "operationId": "connectCoreV1PostNamespacedServiceProxy",
30415        "produces": [
30416          "*/*"
30417        ],
30418        "responses": {
30419          "200": {
30420            "description": "OK",
30421            "schema": {
30422              "type": "string"
30423            }
30424          },
30425          "401": {
30426            "description": "Unauthorized"
30427          }
30428        },
30429        "schemes": [
30430          "https"
30431        ],
30432        "tags": [
30433          "core_v1"
30434        ],
30435        "x-kubernetes-action": "connect",
30436        "x-kubernetes-group-version-kind": {
30437          "group": "",
30438          "kind": "ServiceProxyOptions",
30439          "version": "v1"
30440        }
30441      },
30442      "put": {
30443        "consumes": [
30444          "*/*"
30445        ],
30446        "description": "connect PUT requests to proxy of Service",
30447        "operationId": "connectCoreV1PutNamespacedServiceProxy",
30448        "produces": [
30449          "*/*"
30450        ],
30451        "responses": {
30452          "200": {
30453            "description": "OK",
30454            "schema": {
30455              "type": "string"
30456            }
30457          },
30458          "401": {
30459            "description": "Unauthorized"
30460          }
30461        },
30462        "schemes": [
30463          "https"
30464        ],
30465        "tags": [
30466          "core_v1"
30467        ],
30468        "x-kubernetes-action": "connect",
30469        "x-kubernetes-group-version-kind": {
30470          "group": "",
30471          "kind": "ServiceProxyOptions",
30472          "version": "v1"
30473        }
30474      }
30475    },
30476    "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
30477      "delete": {
30478        "consumes": [
30479          "*/*"
30480        ],
30481        "description": "connect DELETE requests to proxy of Service",
30482        "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
30483        "produces": [
30484          "*/*"
30485        ],
30486        "responses": {
30487          "200": {
30488            "description": "OK",
30489            "schema": {
30490              "type": "string"
30491            }
30492          },
30493          "401": {
30494            "description": "Unauthorized"
30495          }
30496        },
30497        "schemes": [
30498          "https"
30499        ],
30500        "tags": [
30501          "core_v1"
30502        ],
30503        "x-kubernetes-action": "connect",
30504        "x-kubernetes-group-version-kind": {
30505          "group": "",
30506          "kind": "ServiceProxyOptions",
30507          "version": "v1"
30508        }
30509      },
30510      "get": {
30511        "consumes": [
30512          "*/*"
30513        ],
30514        "description": "connect GET requests to proxy of Service",
30515        "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
30516        "produces": [
30517          "*/*"
30518        ],
30519        "responses": {
30520          "200": {
30521            "description": "OK",
30522            "schema": {
30523              "type": "string"
30524            }
30525          },
30526          "401": {
30527            "description": "Unauthorized"
30528          }
30529        },
30530        "schemes": [
30531          "https"
30532        ],
30533        "tags": [
30534          "core_v1"
30535        ],
30536        "x-kubernetes-action": "connect",
30537        "x-kubernetes-group-version-kind": {
30538          "group": "",
30539          "kind": "ServiceProxyOptions",
30540          "version": "v1"
30541        }
30542      },
30543      "head": {
30544        "consumes": [
30545          "*/*"
30546        ],
30547        "description": "connect HEAD requests to proxy of Service",
30548        "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
30549        "produces": [
30550          "*/*"
30551        ],
30552        "responses": {
30553          "200": {
30554            "description": "OK",
30555            "schema": {
30556              "type": "string"
30557            }
30558          },
30559          "401": {
30560            "description": "Unauthorized"
30561          }
30562        },
30563        "schemes": [
30564          "https"
30565        ],
30566        "tags": [
30567          "core_v1"
30568        ],
30569        "x-kubernetes-action": "connect",
30570        "x-kubernetes-group-version-kind": {
30571          "group": "",
30572          "kind": "ServiceProxyOptions",
30573          "version": "v1"
30574        }
30575      },
30576      "options": {
30577        "consumes": [
30578          "*/*"
30579        ],
30580        "description": "connect OPTIONS requests to proxy of Service",
30581        "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
30582        "produces": [
30583          "*/*"
30584        ],
30585        "responses": {
30586          "200": {
30587            "description": "OK",
30588            "schema": {
30589              "type": "string"
30590            }
30591          },
30592          "401": {
30593            "description": "Unauthorized"
30594          }
30595        },
30596        "schemes": [
30597          "https"
30598        ],
30599        "tags": [
30600          "core_v1"
30601        ],
30602        "x-kubernetes-action": "connect",
30603        "x-kubernetes-group-version-kind": {
30604          "group": "",
30605          "kind": "ServiceProxyOptions",
30606          "version": "v1"
30607        }
30608      },
30609      "parameters": [
30610        {
30611          "description": "name of the ServiceProxyOptions",
30612          "in": "path",
30613          "name": "name",
30614          "required": true,
30615          "type": "string",
30616          "uniqueItems": true
30617        },
30618        {
30619          "description": "object name and auth scope, such as for teams and projects",
30620          "in": "path",
30621          "name": "namespace",
30622          "required": true,
30623          "type": "string",
30624          "uniqueItems": true
30625        },
30626        {
30627          "description": "path to the resource",
30628          "in": "path",
30629          "name": "path",
30630          "required": true,
30631          "type": "string",
30632          "uniqueItems": true
30633        },
30634        {
30635          "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.",
30636          "in": "query",
30637          "name": "path",
30638          "type": "string",
30639          "uniqueItems": true
30640        }
30641      ],
30642      "patch": {
30643        "consumes": [
30644          "*/*"
30645        ],
30646        "description": "connect PATCH requests to proxy of Service",
30647        "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath",
30648        "produces": [
30649          "*/*"
30650        ],
30651        "responses": {
30652          "200": {
30653            "description": "OK",
30654            "schema": {
30655              "type": "string"
30656            }
30657          },
30658          "401": {
30659            "description": "Unauthorized"
30660          }
30661        },
30662        "schemes": [
30663          "https"
30664        ],
30665        "tags": [
30666          "core_v1"
30667        ],
30668        "x-kubernetes-action": "connect",
30669        "x-kubernetes-group-version-kind": {
30670          "group": "",
30671          "kind": "ServiceProxyOptions",
30672          "version": "v1"
30673        }
30674      },
30675      "post": {
30676        "consumes": [
30677          "*/*"
30678        ],
30679        "description": "connect POST requests to proxy of Service",
30680        "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
30681        "produces": [
30682          "*/*"
30683        ],
30684        "responses": {
30685          "200": {
30686            "description": "OK",
30687            "schema": {
30688              "type": "string"
30689            }
30690          },
30691          "401": {
30692            "description": "Unauthorized"
30693          }
30694        },
30695        "schemes": [
30696          "https"
30697        ],
30698        "tags": [
30699          "core_v1"
30700        ],
30701        "x-kubernetes-action": "connect",
30702        "x-kubernetes-group-version-kind": {
30703          "group": "",
30704          "kind": "ServiceProxyOptions",
30705          "version": "v1"
30706        }
30707      },
30708      "put": {
30709        "consumes": [
30710          "*/*"
30711        ],
30712        "description": "connect PUT requests to proxy of Service",
30713        "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
30714        "produces": [
30715          "*/*"
30716        ],
30717        "responses": {
30718          "200": {
30719            "description": "OK",
30720            "schema": {
30721              "type": "string"
30722            }
30723          },
30724          "401": {
30725            "description": "Unauthorized"
30726          }
30727        },
30728        "schemes": [
30729          "https"
30730        ],
30731        "tags": [
30732          "core_v1"
30733        ],
30734        "x-kubernetes-action": "connect",
30735        "x-kubernetes-group-version-kind": {
30736          "group": "",
30737          "kind": "ServiceProxyOptions",
30738          "version": "v1"
30739        }
30740      }
30741    },
30742    "/api/v1/namespaces/{namespace}/services/{name}/status": {
30743      "get": {
30744        "consumes": [
30745          "*/*"
30746        ],
30747        "description": "read status of the specified Service",
30748        "operationId": "readCoreV1NamespacedServiceStatus",
30749        "produces": [
30750          "application/json",
30751          "application/yaml",
30752          "application/vnd.kubernetes.protobuf"
30753        ],
30754        "responses": {
30755          "200": {
30756            "description": "OK",
30757            "schema": {
30758              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30759            }
30760          },
30761          "401": {
30762            "description": "Unauthorized"
30763          }
30764        },
30765        "schemes": [
30766          "https"
30767        ],
30768        "tags": [
30769          "core_v1"
30770        ],
30771        "x-kubernetes-action": "get",
30772        "x-kubernetes-group-version-kind": {
30773          "group": "",
30774          "kind": "Service",
30775          "version": "v1"
30776        }
30777      },
30778      "parameters": [
30779        {
30780          "description": "name of the Service",
30781          "in": "path",
30782          "name": "name",
30783          "required": true,
30784          "type": "string",
30785          "uniqueItems": true
30786        },
30787        {
30788          "description": "object name and auth scope, such as for teams and projects",
30789          "in": "path",
30790          "name": "namespace",
30791          "required": true,
30792          "type": "string",
30793          "uniqueItems": true
30794        },
30795        {
30796          "description": "If 'true', then the output is pretty printed.",
30797          "in": "query",
30798          "name": "pretty",
30799          "type": "string",
30800          "uniqueItems": true
30801        }
30802      ],
30803      "patch": {
30804        "consumes": [
30805          "application/json-patch+json",
30806          "application/merge-patch+json",
30807          "application/strategic-merge-patch+json",
30808          "application/apply-patch+yaml"
30809        ],
30810        "description": "partially update status of the specified Service",
30811        "operationId": "patchCoreV1NamespacedServiceStatus",
30812        "parameters": [
30813          {
30814            "in": "body",
30815            "name": "body",
30816            "required": true,
30817            "schema": {
30818              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30819            }
30820          },
30821          {
30822            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30823            "in": "query",
30824            "name": "dryRun",
30825            "type": "string",
30826            "uniqueItems": true
30827          },
30828          {
30829            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
30830            "in": "query",
30831            "name": "fieldManager",
30832            "type": "string",
30833            "uniqueItems": true
30834          },
30835          {
30836            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
30837            "in": "query",
30838            "name": "force",
30839            "type": "boolean",
30840            "uniqueItems": true
30841          }
30842        ],
30843        "produces": [
30844          "application/json",
30845          "application/yaml",
30846          "application/vnd.kubernetes.protobuf"
30847        ],
30848        "responses": {
30849          "200": {
30850            "description": "OK",
30851            "schema": {
30852              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30853            }
30854          },
30855          "401": {
30856            "description": "Unauthorized"
30857          }
30858        },
30859        "schemes": [
30860          "https"
30861        ],
30862        "tags": [
30863          "core_v1"
30864        ],
30865        "x-kubernetes-action": "patch",
30866        "x-kubernetes-group-version-kind": {
30867          "group": "",
30868          "kind": "Service",
30869          "version": "v1"
30870        }
30871      },
30872      "put": {
30873        "consumes": [
30874          "*/*"
30875        ],
30876        "description": "replace status of the specified Service",
30877        "operationId": "replaceCoreV1NamespacedServiceStatus",
30878        "parameters": [
30879          {
30880            "in": "body",
30881            "name": "body",
30882            "required": true,
30883            "schema": {
30884              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30885            }
30886          },
30887          {
30888            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30889            "in": "query",
30890            "name": "dryRun",
30891            "type": "string",
30892            "uniqueItems": true
30893          },
30894          {
30895            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30896            "in": "query",
30897            "name": "fieldManager",
30898            "type": "string",
30899            "uniqueItems": true
30900          }
30901        ],
30902        "produces": [
30903          "application/json",
30904          "application/yaml",
30905          "application/vnd.kubernetes.protobuf"
30906        ],
30907        "responses": {
30908          "200": {
30909            "description": "OK",
30910            "schema": {
30911              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30912            }
30913          },
30914          "201": {
30915            "description": "Created",
30916            "schema": {
30917              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30918            }
30919          },
30920          "401": {
30921            "description": "Unauthorized"
30922          }
30923        },
30924        "schemes": [
30925          "https"
30926        ],
30927        "tags": [
30928          "core_v1"
30929        ],
30930        "x-kubernetes-action": "put",
30931        "x-kubernetes-group-version-kind": {
30932          "group": "",
30933          "kind": "Service",
30934          "version": "v1"
30935        }
30936      }
30937    },
30938    "/api/v1/namespaces/{name}": {
30939      "delete": {
30940        "consumes": [
30941          "*/*"
30942        ],
30943        "description": "delete a Namespace",
30944        "operationId": "deleteCoreV1Namespace",
30945        "parameters": [
30946          {
30947            "in": "body",
30948            "name": "body",
30949            "schema": {
30950              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
30951            }
30952          },
30953          {
30954            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30955            "in": "query",
30956            "name": "dryRun",
30957            "type": "string",
30958            "uniqueItems": true
30959          },
30960          {
30961            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
30962            "in": "query",
30963            "name": "gracePeriodSeconds",
30964            "type": "integer",
30965            "uniqueItems": true
30966          },
30967          {
30968            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
30969            "in": "query",
30970            "name": "orphanDependents",
30971            "type": "boolean",
30972            "uniqueItems": true
30973          },
30974          {
30975            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
30976            "in": "query",
30977            "name": "propagationPolicy",
30978            "type": "string",
30979            "uniqueItems": true
30980          }
30981        ],
30982        "produces": [
30983          "application/json",
30984          "application/yaml",
30985          "application/vnd.kubernetes.protobuf"
30986        ],
30987        "responses": {
30988          "200": {
30989            "description": "OK",
30990            "schema": {
30991              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30992            }
30993          },
30994          "202": {
30995            "description": "Accepted",
30996            "schema": {
30997              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30998            }
30999          },
31000          "401": {
31001            "description": "Unauthorized"
31002          }
31003        },
31004        "schemes": [
31005          "https"
31006        ],
31007        "tags": [
31008          "core_v1"
31009        ],
31010        "x-kubernetes-action": "delete",
31011        "x-kubernetes-group-version-kind": {
31012          "group": "",
31013          "kind": "Namespace",
31014          "version": "v1"
31015        }
31016      },
31017      "get": {
31018        "consumes": [
31019          "*/*"
31020        ],
31021        "description": "read the specified Namespace",
31022        "operationId": "readCoreV1Namespace",
31023        "produces": [
31024          "application/json",
31025          "application/yaml",
31026          "application/vnd.kubernetes.protobuf"
31027        ],
31028        "responses": {
31029          "200": {
31030            "description": "OK",
31031            "schema": {
31032              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31033            }
31034          },
31035          "401": {
31036            "description": "Unauthorized"
31037          }
31038        },
31039        "schemes": [
31040          "https"
31041        ],
31042        "tags": [
31043          "core_v1"
31044        ],
31045        "x-kubernetes-action": "get",
31046        "x-kubernetes-group-version-kind": {
31047          "group": "",
31048          "kind": "Namespace",
31049          "version": "v1"
31050        }
31051      },
31052      "parameters": [
31053        {
31054          "description": "name of the Namespace",
31055          "in": "path",
31056          "name": "name",
31057          "required": true,
31058          "type": "string",
31059          "uniqueItems": true
31060        },
31061        {
31062          "description": "If 'true', then the output is pretty printed.",
31063          "in": "query",
31064          "name": "pretty",
31065          "type": "string",
31066          "uniqueItems": true
31067        }
31068      ],
31069      "patch": {
31070        "consumes": [
31071          "application/json-patch+json",
31072          "application/merge-patch+json",
31073          "application/strategic-merge-patch+json",
31074          "application/apply-patch+yaml"
31075        ],
31076        "description": "partially update the specified Namespace",
31077        "operationId": "patchCoreV1Namespace",
31078        "parameters": [
31079          {
31080            "in": "body",
31081            "name": "body",
31082            "required": true,
31083            "schema": {
31084              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31085            }
31086          },
31087          {
31088            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31089            "in": "query",
31090            "name": "dryRun",
31091            "type": "string",
31092            "uniqueItems": true
31093          },
31094          {
31095            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
31096            "in": "query",
31097            "name": "fieldManager",
31098            "type": "string",
31099            "uniqueItems": true
31100          },
31101          {
31102            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
31103            "in": "query",
31104            "name": "force",
31105            "type": "boolean",
31106            "uniqueItems": true
31107          }
31108        ],
31109        "produces": [
31110          "application/json",
31111          "application/yaml",
31112          "application/vnd.kubernetes.protobuf"
31113        ],
31114        "responses": {
31115          "200": {
31116            "description": "OK",
31117            "schema": {
31118              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31119            }
31120          },
31121          "401": {
31122            "description": "Unauthorized"
31123          }
31124        },
31125        "schemes": [
31126          "https"
31127        ],
31128        "tags": [
31129          "core_v1"
31130        ],
31131        "x-kubernetes-action": "patch",
31132        "x-kubernetes-group-version-kind": {
31133          "group": "",
31134          "kind": "Namespace",
31135          "version": "v1"
31136        }
31137      },
31138      "put": {
31139        "consumes": [
31140          "*/*"
31141        ],
31142        "description": "replace the specified Namespace",
31143        "operationId": "replaceCoreV1Namespace",
31144        "parameters": [
31145          {
31146            "in": "body",
31147            "name": "body",
31148            "required": true,
31149            "schema": {
31150              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31151            }
31152          },
31153          {
31154            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31155            "in": "query",
31156            "name": "dryRun",
31157            "type": "string",
31158            "uniqueItems": true
31159          },
31160          {
31161            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31162            "in": "query",
31163            "name": "fieldManager",
31164            "type": "string",
31165            "uniqueItems": true
31166          }
31167        ],
31168        "produces": [
31169          "application/json",
31170          "application/yaml",
31171          "application/vnd.kubernetes.protobuf"
31172        ],
31173        "responses": {
31174          "200": {
31175            "description": "OK",
31176            "schema": {
31177              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31178            }
31179          },
31180          "201": {
31181            "description": "Created",
31182            "schema": {
31183              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31184            }
31185          },
31186          "401": {
31187            "description": "Unauthorized"
31188          }
31189        },
31190        "schemes": [
31191          "https"
31192        ],
31193        "tags": [
31194          "core_v1"
31195        ],
31196        "x-kubernetes-action": "put",
31197        "x-kubernetes-group-version-kind": {
31198          "group": "",
31199          "kind": "Namespace",
31200          "version": "v1"
31201        }
31202      }
31203    },
31204    "/api/v1/namespaces/{name}/finalize": {
31205      "parameters": [
31206        {
31207          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31208          "in": "query",
31209          "name": "dryRun",
31210          "type": "string",
31211          "uniqueItems": true
31212        },
31213        {
31214          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31215          "in": "query",
31216          "name": "fieldManager",
31217          "type": "string",
31218          "uniqueItems": true
31219        },
31220        {
31221          "description": "name of the Namespace",
31222          "in": "path",
31223          "name": "name",
31224          "required": true,
31225          "type": "string",
31226          "uniqueItems": true
31227        },
31228        {
31229          "description": "If 'true', then the output is pretty printed.",
31230          "in": "query",
31231          "name": "pretty",
31232          "type": "string",
31233          "uniqueItems": true
31234        }
31235      ],
31236      "put": {
31237        "consumes": [
31238          "*/*"
31239        ],
31240        "description": "replace finalize of the specified Namespace",
31241        "operationId": "replaceCoreV1NamespaceFinalize",
31242        "parameters": [
31243          {
31244            "in": "body",
31245            "name": "body",
31246            "required": true,
31247            "schema": {
31248              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31249            }
31250          }
31251        ],
31252        "produces": [
31253          "application/json",
31254          "application/yaml",
31255          "application/vnd.kubernetes.protobuf"
31256        ],
31257        "responses": {
31258          "200": {
31259            "description": "OK",
31260            "schema": {
31261              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31262            }
31263          },
31264          "201": {
31265            "description": "Created",
31266            "schema": {
31267              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31268            }
31269          },
31270          "401": {
31271            "description": "Unauthorized"
31272          }
31273        },
31274        "schemes": [
31275          "https"
31276        ],
31277        "tags": [
31278          "core_v1"
31279        ],
31280        "x-kubernetes-action": "put",
31281        "x-kubernetes-group-version-kind": {
31282          "group": "",
31283          "kind": "Namespace",
31284          "version": "v1"
31285        }
31286      }
31287    },
31288    "/api/v1/namespaces/{name}/status": {
31289      "get": {
31290        "consumes": [
31291          "*/*"
31292        ],
31293        "description": "read status of the specified Namespace",
31294        "operationId": "readCoreV1NamespaceStatus",
31295        "produces": [
31296          "application/json",
31297          "application/yaml",
31298          "application/vnd.kubernetes.protobuf"
31299        ],
31300        "responses": {
31301          "200": {
31302            "description": "OK",
31303            "schema": {
31304              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31305            }
31306          },
31307          "401": {
31308            "description": "Unauthorized"
31309          }
31310        },
31311        "schemes": [
31312          "https"
31313        ],
31314        "tags": [
31315          "core_v1"
31316        ],
31317        "x-kubernetes-action": "get",
31318        "x-kubernetes-group-version-kind": {
31319          "group": "",
31320          "kind": "Namespace",
31321          "version": "v1"
31322        }
31323      },
31324      "parameters": [
31325        {
31326          "description": "name of the Namespace",
31327          "in": "path",
31328          "name": "name",
31329          "required": true,
31330          "type": "string",
31331          "uniqueItems": true
31332        },
31333        {
31334          "description": "If 'true', then the output is pretty printed.",
31335          "in": "query",
31336          "name": "pretty",
31337          "type": "string",
31338          "uniqueItems": true
31339        }
31340      ],
31341      "patch": {
31342        "consumes": [
31343          "application/json-patch+json",
31344          "application/merge-patch+json",
31345          "application/strategic-merge-patch+json",
31346          "application/apply-patch+yaml"
31347        ],
31348        "description": "partially update status of the specified Namespace",
31349        "operationId": "patchCoreV1NamespaceStatus",
31350        "parameters": [
31351          {
31352            "in": "body",
31353            "name": "body",
31354            "required": true,
31355            "schema": {
31356              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31357            }
31358          },
31359          {
31360            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31361            "in": "query",
31362            "name": "dryRun",
31363            "type": "string",
31364            "uniqueItems": true
31365          },
31366          {
31367            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
31368            "in": "query",
31369            "name": "fieldManager",
31370            "type": "string",
31371            "uniqueItems": true
31372          },
31373          {
31374            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
31375            "in": "query",
31376            "name": "force",
31377            "type": "boolean",
31378            "uniqueItems": true
31379          }
31380        ],
31381        "produces": [
31382          "application/json",
31383          "application/yaml",
31384          "application/vnd.kubernetes.protobuf"
31385        ],
31386        "responses": {
31387          "200": {
31388            "description": "OK",
31389            "schema": {
31390              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31391            }
31392          },
31393          "401": {
31394            "description": "Unauthorized"
31395          }
31396        },
31397        "schemes": [
31398          "https"
31399        ],
31400        "tags": [
31401          "core_v1"
31402        ],
31403        "x-kubernetes-action": "patch",
31404        "x-kubernetes-group-version-kind": {
31405          "group": "",
31406          "kind": "Namespace",
31407          "version": "v1"
31408        }
31409      },
31410      "put": {
31411        "consumes": [
31412          "*/*"
31413        ],
31414        "description": "replace status of the specified Namespace",
31415        "operationId": "replaceCoreV1NamespaceStatus",
31416        "parameters": [
31417          {
31418            "in": "body",
31419            "name": "body",
31420            "required": true,
31421            "schema": {
31422              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31423            }
31424          },
31425          {
31426            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31427            "in": "query",
31428            "name": "dryRun",
31429            "type": "string",
31430            "uniqueItems": true
31431          },
31432          {
31433            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31434            "in": "query",
31435            "name": "fieldManager",
31436            "type": "string",
31437            "uniqueItems": true
31438          }
31439        ],
31440        "produces": [
31441          "application/json",
31442          "application/yaml",
31443          "application/vnd.kubernetes.protobuf"
31444        ],
31445        "responses": {
31446          "200": {
31447            "description": "OK",
31448            "schema": {
31449              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31450            }
31451          },
31452          "201": {
31453            "description": "Created",
31454            "schema": {
31455              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
31456            }
31457          },
31458          "401": {
31459            "description": "Unauthorized"
31460          }
31461        },
31462        "schemes": [
31463          "https"
31464        ],
31465        "tags": [
31466          "core_v1"
31467        ],
31468        "x-kubernetes-action": "put",
31469        "x-kubernetes-group-version-kind": {
31470          "group": "",
31471          "kind": "Namespace",
31472          "version": "v1"
31473        }
31474      }
31475    },
31476    "/api/v1/nodes": {
31477      "delete": {
31478        "consumes": [
31479          "*/*"
31480        ],
31481        "description": "delete collection of Node",
31482        "operationId": "deleteCoreV1CollectionNode",
31483        "parameters": [
31484          {
31485            "in": "body",
31486            "name": "body",
31487            "schema": {
31488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
31489            }
31490          },
31491          {
31492            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31493            "in": "query",
31494            "name": "continue",
31495            "type": "string",
31496            "uniqueItems": true
31497          },
31498          {
31499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31500            "in": "query",
31501            "name": "dryRun",
31502            "type": "string",
31503            "uniqueItems": true
31504          },
31505          {
31506            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31507            "in": "query",
31508            "name": "fieldSelector",
31509            "type": "string",
31510            "uniqueItems": true
31511          },
31512          {
31513            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
31514            "in": "query",
31515            "name": "gracePeriodSeconds",
31516            "type": "integer",
31517            "uniqueItems": true
31518          },
31519          {
31520            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31521            "in": "query",
31522            "name": "labelSelector",
31523            "type": "string",
31524            "uniqueItems": true
31525          },
31526          {
31527            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31528            "in": "query",
31529            "name": "limit",
31530            "type": "integer",
31531            "uniqueItems": true
31532          },
31533          {
31534            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
31535            "in": "query",
31536            "name": "orphanDependents",
31537            "type": "boolean",
31538            "uniqueItems": true
31539          },
31540          {
31541            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
31542            "in": "query",
31543            "name": "propagationPolicy",
31544            "type": "string",
31545            "uniqueItems": true
31546          },
31547          {
31548            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31549            "in": "query",
31550            "name": "resourceVersion",
31551            "type": "string",
31552            "uniqueItems": true
31553          },
31554          {
31555            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31556            "in": "query",
31557            "name": "resourceVersionMatch",
31558            "type": "string",
31559            "uniqueItems": true
31560          },
31561          {
31562            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31563            "in": "query",
31564            "name": "timeoutSeconds",
31565            "type": "integer",
31566            "uniqueItems": true
31567          }
31568        ],
31569        "produces": [
31570          "application/json",
31571          "application/yaml",
31572          "application/vnd.kubernetes.protobuf"
31573        ],
31574        "responses": {
31575          "200": {
31576            "description": "OK",
31577            "schema": {
31578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31579            }
31580          },
31581          "401": {
31582            "description": "Unauthorized"
31583          }
31584        },
31585        "schemes": [
31586          "https"
31587        ],
31588        "tags": [
31589          "core_v1"
31590        ],
31591        "x-kubernetes-action": "deletecollection",
31592        "x-kubernetes-group-version-kind": {
31593          "group": "",
31594          "kind": "Node",
31595          "version": "v1"
31596        }
31597      },
31598      "get": {
31599        "consumes": [
31600          "*/*"
31601        ],
31602        "description": "list or watch objects of kind Node",
31603        "operationId": "listCoreV1Node",
31604        "parameters": [
31605          {
31606            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
31607            "in": "query",
31608            "name": "allowWatchBookmarks",
31609            "type": "boolean",
31610            "uniqueItems": true
31611          },
31612          {
31613            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31614            "in": "query",
31615            "name": "continue",
31616            "type": "string",
31617            "uniqueItems": true
31618          },
31619          {
31620            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31621            "in": "query",
31622            "name": "fieldSelector",
31623            "type": "string",
31624            "uniqueItems": true
31625          },
31626          {
31627            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31628            "in": "query",
31629            "name": "labelSelector",
31630            "type": "string",
31631            "uniqueItems": true
31632          },
31633          {
31634            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31635            "in": "query",
31636            "name": "limit",
31637            "type": "integer",
31638            "uniqueItems": true
31639          },
31640          {
31641            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31642            "in": "query",
31643            "name": "resourceVersion",
31644            "type": "string",
31645            "uniqueItems": true
31646          },
31647          {
31648            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31649            "in": "query",
31650            "name": "resourceVersionMatch",
31651            "type": "string",
31652            "uniqueItems": true
31653          },
31654          {
31655            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31656            "in": "query",
31657            "name": "timeoutSeconds",
31658            "type": "integer",
31659            "uniqueItems": true
31660          },
31661          {
31662            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31663            "in": "query",
31664            "name": "watch",
31665            "type": "boolean",
31666            "uniqueItems": true
31667          }
31668        ],
31669        "produces": [
31670          "application/json",
31671          "application/yaml",
31672          "application/vnd.kubernetes.protobuf",
31673          "application/json;stream=watch",
31674          "application/vnd.kubernetes.protobuf;stream=watch"
31675        ],
31676        "responses": {
31677          "200": {
31678            "description": "OK",
31679            "schema": {
31680              "$ref": "#/definitions/io.k8s.api.core.v1.NodeList"
31681            }
31682          },
31683          "401": {
31684            "description": "Unauthorized"
31685          }
31686        },
31687        "schemes": [
31688          "https"
31689        ],
31690        "tags": [
31691          "core_v1"
31692        ],
31693        "x-kubernetes-action": "list",
31694        "x-kubernetes-group-version-kind": {
31695          "group": "",
31696          "kind": "Node",
31697          "version": "v1"
31698        }
31699      },
31700      "parameters": [
31701        {
31702          "description": "If 'true', then the output is pretty printed.",
31703          "in": "query",
31704          "name": "pretty",
31705          "type": "string",
31706          "uniqueItems": true
31707        }
31708      ],
31709      "post": {
31710        "consumes": [
31711          "*/*"
31712        ],
31713        "description": "create a Node",
31714        "operationId": "createCoreV1Node",
31715        "parameters": [
31716          {
31717            "in": "body",
31718            "name": "body",
31719            "required": true,
31720            "schema": {
31721              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31722            }
31723          },
31724          {
31725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31726            "in": "query",
31727            "name": "dryRun",
31728            "type": "string",
31729            "uniqueItems": true
31730          },
31731          {
31732            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31733            "in": "query",
31734            "name": "fieldManager",
31735            "type": "string",
31736            "uniqueItems": true
31737          }
31738        ],
31739        "produces": [
31740          "application/json",
31741          "application/yaml",
31742          "application/vnd.kubernetes.protobuf"
31743        ],
31744        "responses": {
31745          "200": {
31746            "description": "OK",
31747            "schema": {
31748              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31749            }
31750          },
31751          "201": {
31752            "description": "Created",
31753            "schema": {
31754              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31755            }
31756          },
31757          "202": {
31758            "description": "Accepted",
31759            "schema": {
31760              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31761            }
31762          },
31763          "401": {
31764            "description": "Unauthorized"
31765          }
31766        },
31767        "schemes": [
31768          "https"
31769        ],
31770        "tags": [
31771          "core_v1"
31772        ],
31773        "x-kubernetes-action": "post",
31774        "x-kubernetes-group-version-kind": {
31775          "group": "",
31776          "kind": "Node",
31777          "version": "v1"
31778        }
31779      }
31780    },
31781    "/api/v1/nodes/{name}": {
31782      "delete": {
31783        "consumes": [
31784          "*/*"
31785        ],
31786        "description": "delete a Node",
31787        "operationId": "deleteCoreV1Node",
31788        "parameters": [
31789          {
31790            "in": "body",
31791            "name": "body",
31792            "schema": {
31793              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
31794            }
31795          },
31796          {
31797            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31798            "in": "query",
31799            "name": "dryRun",
31800            "type": "string",
31801            "uniqueItems": true
31802          },
31803          {
31804            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
31805            "in": "query",
31806            "name": "gracePeriodSeconds",
31807            "type": "integer",
31808            "uniqueItems": true
31809          },
31810          {
31811            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
31812            "in": "query",
31813            "name": "orphanDependents",
31814            "type": "boolean",
31815            "uniqueItems": true
31816          },
31817          {
31818            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
31819            "in": "query",
31820            "name": "propagationPolicy",
31821            "type": "string",
31822            "uniqueItems": true
31823          }
31824        ],
31825        "produces": [
31826          "application/json",
31827          "application/yaml",
31828          "application/vnd.kubernetes.protobuf"
31829        ],
31830        "responses": {
31831          "200": {
31832            "description": "OK",
31833            "schema": {
31834              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31835            }
31836          },
31837          "202": {
31838            "description": "Accepted",
31839            "schema": {
31840              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31841            }
31842          },
31843          "401": {
31844            "description": "Unauthorized"
31845          }
31846        },
31847        "schemes": [
31848          "https"
31849        ],
31850        "tags": [
31851          "core_v1"
31852        ],
31853        "x-kubernetes-action": "delete",
31854        "x-kubernetes-group-version-kind": {
31855          "group": "",
31856          "kind": "Node",
31857          "version": "v1"
31858        }
31859      },
31860      "get": {
31861        "consumes": [
31862          "*/*"
31863        ],
31864        "description": "read the specified Node",
31865        "operationId": "readCoreV1Node",
31866        "produces": [
31867          "application/json",
31868          "application/yaml",
31869          "application/vnd.kubernetes.protobuf"
31870        ],
31871        "responses": {
31872          "200": {
31873            "description": "OK",
31874            "schema": {
31875              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31876            }
31877          },
31878          "401": {
31879            "description": "Unauthorized"
31880          }
31881        },
31882        "schemes": [
31883          "https"
31884        ],
31885        "tags": [
31886          "core_v1"
31887        ],
31888        "x-kubernetes-action": "get",
31889        "x-kubernetes-group-version-kind": {
31890          "group": "",
31891          "kind": "Node",
31892          "version": "v1"
31893        }
31894      },
31895      "parameters": [
31896        {
31897          "description": "name of the Node",
31898          "in": "path",
31899          "name": "name",
31900          "required": true,
31901          "type": "string",
31902          "uniqueItems": true
31903        },
31904        {
31905          "description": "If 'true', then the output is pretty printed.",
31906          "in": "query",
31907          "name": "pretty",
31908          "type": "string",
31909          "uniqueItems": true
31910        }
31911      ],
31912      "patch": {
31913        "consumes": [
31914          "application/json-patch+json",
31915          "application/merge-patch+json",
31916          "application/strategic-merge-patch+json",
31917          "application/apply-patch+yaml"
31918        ],
31919        "description": "partially update the specified Node",
31920        "operationId": "patchCoreV1Node",
31921        "parameters": [
31922          {
31923            "in": "body",
31924            "name": "body",
31925            "required": true,
31926            "schema": {
31927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31928            }
31929          },
31930          {
31931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31932            "in": "query",
31933            "name": "dryRun",
31934            "type": "string",
31935            "uniqueItems": true
31936          },
31937          {
31938            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
31939            "in": "query",
31940            "name": "fieldManager",
31941            "type": "string",
31942            "uniqueItems": true
31943          },
31944          {
31945            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
31946            "in": "query",
31947            "name": "force",
31948            "type": "boolean",
31949            "uniqueItems": true
31950          }
31951        ],
31952        "produces": [
31953          "application/json",
31954          "application/yaml",
31955          "application/vnd.kubernetes.protobuf"
31956        ],
31957        "responses": {
31958          "200": {
31959            "description": "OK",
31960            "schema": {
31961              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31962            }
31963          },
31964          "401": {
31965            "description": "Unauthorized"
31966          }
31967        },
31968        "schemes": [
31969          "https"
31970        ],
31971        "tags": [
31972          "core_v1"
31973        ],
31974        "x-kubernetes-action": "patch",
31975        "x-kubernetes-group-version-kind": {
31976          "group": "",
31977          "kind": "Node",
31978          "version": "v1"
31979        }
31980      },
31981      "put": {
31982        "consumes": [
31983          "*/*"
31984        ],
31985        "description": "replace the specified Node",
31986        "operationId": "replaceCoreV1Node",
31987        "parameters": [
31988          {
31989            "in": "body",
31990            "name": "body",
31991            "required": true,
31992            "schema": {
31993              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31994            }
31995          },
31996          {
31997            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31998            "in": "query",
31999            "name": "dryRun",
32000            "type": "string",
32001            "uniqueItems": true
32002          },
32003          {
32004            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32005            "in": "query",
32006            "name": "fieldManager",
32007            "type": "string",
32008            "uniqueItems": true
32009          }
32010        ],
32011        "produces": [
32012          "application/json",
32013          "application/yaml",
32014          "application/vnd.kubernetes.protobuf"
32015        ],
32016        "responses": {
32017          "200": {
32018            "description": "OK",
32019            "schema": {
32020              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32021            }
32022          },
32023          "201": {
32024            "description": "Created",
32025            "schema": {
32026              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32027            }
32028          },
32029          "401": {
32030            "description": "Unauthorized"
32031          }
32032        },
32033        "schemes": [
32034          "https"
32035        ],
32036        "tags": [
32037          "core_v1"
32038        ],
32039        "x-kubernetes-action": "put",
32040        "x-kubernetes-group-version-kind": {
32041          "group": "",
32042          "kind": "Node",
32043          "version": "v1"
32044        }
32045      }
32046    },
32047    "/api/v1/nodes/{name}/proxy": {
32048      "delete": {
32049        "consumes": [
32050          "*/*"
32051        ],
32052        "description": "connect DELETE requests to proxy of Node",
32053        "operationId": "connectCoreV1DeleteNodeProxy",
32054        "produces": [
32055          "*/*"
32056        ],
32057        "responses": {
32058          "200": {
32059            "description": "OK",
32060            "schema": {
32061              "type": "string"
32062            }
32063          },
32064          "401": {
32065            "description": "Unauthorized"
32066          }
32067        },
32068        "schemes": [
32069          "https"
32070        ],
32071        "tags": [
32072          "core_v1"
32073        ],
32074        "x-kubernetes-action": "connect",
32075        "x-kubernetes-group-version-kind": {
32076          "group": "",
32077          "kind": "NodeProxyOptions",
32078          "version": "v1"
32079        }
32080      },
32081      "get": {
32082        "consumes": [
32083          "*/*"
32084        ],
32085        "description": "connect GET requests to proxy of Node",
32086        "operationId": "connectCoreV1GetNodeProxy",
32087        "produces": [
32088          "*/*"
32089        ],
32090        "responses": {
32091          "200": {
32092            "description": "OK",
32093            "schema": {
32094              "type": "string"
32095            }
32096          },
32097          "401": {
32098            "description": "Unauthorized"
32099          }
32100        },
32101        "schemes": [
32102          "https"
32103        ],
32104        "tags": [
32105          "core_v1"
32106        ],
32107        "x-kubernetes-action": "connect",
32108        "x-kubernetes-group-version-kind": {
32109          "group": "",
32110          "kind": "NodeProxyOptions",
32111          "version": "v1"
32112        }
32113      },
32114      "head": {
32115        "consumes": [
32116          "*/*"
32117        ],
32118        "description": "connect HEAD requests to proxy of Node",
32119        "operationId": "connectCoreV1HeadNodeProxy",
32120        "produces": [
32121          "*/*"
32122        ],
32123        "responses": {
32124          "200": {
32125            "description": "OK",
32126            "schema": {
32127              "type": "string"
32128            }
32129          },
32130          "401": {
32131            "description": "Unauthorized"
32132          }
32133        },
32134        "schemes": [
32135          "https"
32136        ],
32137        "tags": [
32138          "core_v1"
32139        ],
32140        "x-kubernetes-action": "connect",
32141        "x-kubernetes-group-version-kind": {
32142          "group": "",
32143          "kind": "NodeProxyOptions",
32144          "version": "v1"
32145        }
32146      },
32147      "options": {
32148        "consumes": [
32149          "*/*"
32150        ],
32151        "description": "connect OPTIONS requests to proxy of Node",
32152        "operationId": "connectCoreV1OptionsNodeProxy",
32153        "produces": [
32154          "*/*"
32155        ],
32156        "responses": {
32157          "200": {
32158            "description": "OK",
32159            "schema": {
32160              "type": "string"
32161            }
32162          },
32163          "401": {
32164            "description": "Unauthorized"
32165          }
32166        },
32167        "schemes": [
32168          "https"
32169        ],
32170        "tags": [
32171          "core_v1"
32172        ],
32173        "x-kubernetes-action": "connect",
32174        "x-kubernetes-group-version-kind": {
32175          "group": "",
32176          "kind": "NodeProxyOptions",
32177          "version": "v1"
32178        }
32179      },
32180      "parameters": [
32181        {
32182          "description": "name of the NodeProxyOptions",
32183          "in": "path",
32184          "name": "name",
32185          "required": true,
32186          "type": "string",
32187          "uniqueItems": true
32188        },
32189        {
32190          "description": "Path is the URL path to use for the current proxy request to node.",
32191          "in": "query",
32192          "name": "path",
32193          "type": "string",
32194          "uniqueItems": true
32195        }
32196      ],
32197      "patch": {
32198        "consumes": [
32199          "*/*"
32200        ],
32201        "description": "connect PATCH requests to proxy of Node",
32202        "operationId": "connectCoreV1PatchNodeProxy",
32203        "produces": [
32204          "*/*"
32205        ],
32206        "responses": {
32207          "200": {
32208            "description": "OK",
32209            "schema": {
32210              "type": "string"
32211            }
32212          },
32213          "401": {
32214            "description": "Unauthorized"
32215          }
32216        },
32217        "schemes": [
32218          "https"
32219        ],
32220        "tags": [
32221          "core_v1"
32222        ],
32223        "x-kubernetes-action": "connect",
32224        "x-kubernetes-group-version-kind": {
32225          "group": "",
32226          "kind": "NodeProxyOptions",
32227          "version": "v1"
32228        }
32229      },
32230      "post": {
32231        "consumes": [
32232          "*/*"
32233        ],
32234        "description": "connect POST requests to proxy of Node",
32235        "operationId": "connectCoreV1PostNodeProxy",
32236        "produces": [
32237          "*/*"
32238        ],
32239        "responses": {
32240          "200": {
32241            "description": "OK",
32242            "schema": {
32243              "type": "string"
32244            }
32245          },
32246          "401": {
32247            "description": "Unauthorized"
32248          }
32249        },
32250        "schemes": [
32251          "https"
32252        ],
32253        "tags": [
32254          "core_v1"
32255        ],
32256        "x-kubernetes-action": "connect",
32257        "x-kubernetes-group-version-kind": {
32258          "group": "",
32259          "kind": "NodeProxyOptions",
32260          "version": "v1"
32261        }
32262      },
32263      "put": {
32264        "consumes": [
32265          "*/*"
32266        ],
32267        "description": "connect PUT requests to proxy of Node",
32268        "operationId": "connectCoreV1PutNodeProxy",
32269        "produces": [
32270          "*/*"
32271        ],
32272        "responses": {
32273          "200": {
32274            "description": "OK",
32275            "schema": {
32276              "type": "string"
32277            }
32278          },
32279          "401": {
32280            "description": "Unauthorized"
32281          }
32282        },
32283        "schemes": [
32284          "https"
32285        ],
32286        "tags": [
32287          "core_v1"
32288        ],
32289        "x-kubernetes-action": "connect",
32290        "x-kubernetes-group-version-kind": {
32291          "group": "",
32292          "kind": "NodeProxyOptions",
32293          "version": "v1"
32294        }
32295      }
32296    },
32297    "/api/v1/nodes/{name}/proxy/{path}": {
32298      "delete": {
32299        "consumes": [
32300          "*/*"
32301        ],
32302        "description": "connect DELETE requests to proxy of Node",
32303        "operationId": "connectCoreV1DeleteNodeProxyWithPath",
32304        "produces": [
32305          "*/*"
32306        ],
32307        "responses": {
32308          "200": {
32309            "description": "OK",
32310            "schema": {
32311              "type": "string"
32312            }
32313          },
32314          "401": {
32315            "description": "Unauthorized"
32316          }
32317        },
32318        "schemes": [
32319          "https"
32320        ],
32321        "tags": [
32322          "core_v1"
32323        ],
32324        "x-kubernetes-action": "connect",
32325        "x-kubernetes-group-version-kind": {
32326          "group": "",
32327          "kind": "NodeProxyOptions",
32328          "version": "v1"
32329        }
32330      },
32331      "get": {
32332        "consumes": [
32333          "*/*"
32334        ],
32335        "description": "connect GET requests to proxy of Node",
32336        "operationId": "connectCoreV1GetNodeProxyWithPath",
32337        "produces": [
32338          "*/*"
32339        ],
32340        "responses": {
32341          "200": {
32342            "description": "OK",
32343            "schema": {
32344              "type": "string"
32345            }
32346          },
32347          "401": {
32348            "description": "Unauthorized"
32349          }
32350        },
32351        "schemes": [
32352          "https"
32353        ],
32354        "tags": [
32355          "core_v1"
32356        ],
32357        "x-kubernetes-action": "connect",
32358        "x-kubernetes-group-version-kind": {
32359          "group": "",
32360          "kind": "NodeProxyOptions",
32361          "version": "v1"
32362        }
32363      },
32364      "head": {
32365        "consumes": [
32366          "*/*"
32367        ],
32368        "description": "connect HEAD requests to proxy of Node",
32369        "operationId": "connectCoreV1HeadNodeProxyWithPath",
32370        "produces": [
32371          "*/*"
32372        ],
32373        "responses": {
32374          "200": {
32375            "description": "OK",
32376            "schema": {
32377              "type": "string"
32378            }
32379          },
32380          "401": {
32381            "description": "Unauthorized"
32382          }
32383        },
32384        "schemes": [
32385          "https"
32386        ],
32387        "tags": [
32388          "core_v1"
32389        ],
32390        "x-kubernetes-action": "connect",
32391        "x-kubernetes-group-version-kind": {
32392          "group": "",
32393          "kind": "NodeProxyOptions",
32394          "version": "v1"
32395        }
32396      },
32397      "options": {
32398        "consumes": [
32399          "*/*"
32400        ],
32401        "description": "connect OPTIONS requests to proxy of Node",
32402        "operationId": "connectCoreV1OptionsNodeProxyWithPath",
32403        "produces": [
32404          "*/*"
32405        ],
32406        "responses": {
32407          "200": {
32408            "description": "OK",
32409            "schema": {
32410              "type": "string"
32411            }
32412          },
32413          "401": {
32414            "description": "Unauthorized"
32415          }
32416        },
32417        "schemes": [
32418          "https"
32419        ],
32420        "tags": [
32421          "core_v1"
32422        ],
32423        "x-kubernetes-action": "connect",
32424        "x-kubernetes-group-version-kind": {
32425          "group": "",
32426          "kind": "NodeProxyOptions",
32427          "version": "v1"
32428        }
32429      },
32430      "parameters": [
32431        {
32432          "description": "name of the NodeProxyOptions",
32433          "in": "path",
32434          "name": "name",
32435          "required": true,
32436          "type": "string",
32437          "uniqueItems": true
32438        },
32439        {
32440          "description": "path to the resource",
32441          "in": "path",
32442          "name": "path",
32443          "required": true,
32444          "type": "string",
32445          "uniqueItems": true
32446        },
32447        {
32448          "description": "Path is the URL path to use for the current proxy request to node.",
32449          "in": "query",
32450          "name": "path",
32451          "type": "string",
32452          "uniqueItems": true
32453        }
32454      ],
32455      "patch": {
32456        "consumes": [
32457          "*/*"
32458        ],
32459        "description": "connect PATCH requests to proxy of Node",
32460        "operationId": "connectCoreV1PatchNodeProxyWithPath",
32461        "produces": [
32462          "*/*"
32463        ],
32464        "responses": {
32465          "200": {
32466            "description": "OK",
32467            "schema": {
32468              "type": "string"
32469            }
32470          },
32471          "401": {
32472            "description": "Unauthorized"
32473          }
32474        },
32475        "schemes": [
32476          "https"
32477        ],
32478        "tags": [
32479          "core_v1"
32480        ],
32481        "x-kubernetes-action": "connect",
32482        "x-kubernetes-group-version-kind": {
32483          "group": "",
32484          "kind": "NodeProxyOptions",
32485          "version": "v1"
32486        }
32487      },
32488      "post": {
32489        "consumes": [
32490          "*/*"
32491        ],
32492        "description": "connect POST requests to proxy of Node",
32493        "operationId": "connectCoreV1PostNodeProxyWithPath",
32494        "produces": [
32495          "*/*"
32496        ],
32497        "responses": {
32498          "200": {
32499            "description": "OK",
32500            "schema": {
32501              "type": "string"
32502            }
32503          },
32504          "401": {
32505            "description": "Unauthorized"
32506          }
32507        },
32508        "schemes": [
32509          "https"
32510        ],
32511        "tags": [
32512          "core_v1"
32513        ],
32514        "x-kubernetes-action": "connect",
32515        "x-kubernetes-group-version-kind": {
32516          "group": "",
32517          "kind": "NodeProxyOptions",
32518          "version": "v1"
32519        }
32520      },
32521      "put": {
32522        "consumes": [
32523          "*/*"
32524        ],
32525        "description": "connect PUT requests to proxy of Node",
32526        "operationId": "connectCoreV1PutNodeProxyWithPath",
32527        "produces": [
32528          "*/*"
32529        ],
32530        "responses": {
32531          "200": {
32532            "description": "OK",
32533            "schema": {
32534              "type": "string"
32535            }
32536          },
32537          "401": {
32538            "description": "Unauthorized"
32539          }
32540        },
32541        "schemes": [
32542          "https"
32543        ],
32544        "tags": [
32545          "core_v1"
32546        ],
32547        "x-kubernetes-action": "connect",
32548        "x-kubernetes-group-version-kind": {
32549          "group": "",
32550          "kind": "NodeProxyOptions",
32551          "version": "v1"
32552        }
32553      }
32554    },
32555    "/api/v1/nodes/{name}/status": {
32556      "get": {
32557        "consumes": [
32558          "*/*"
32559        ],
32560        "description": "read status of the specified Node",
32561        "operationId": "readCoreV1NodeStatus",
32562        "produces": [
32563          "application/json",
32564          "application/yaml",
32565          "application/vnd.kubernetes.protobuf"
32566        ],
32567        "responses": {
32568          "200": {
32569            "description": "OK",
32570            "schema": {
32571              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32572            }
32573          },
32574          "401": {
32575            "description": "Unauthorized"
32576          }
32577        },
32578        "schemes": [
32579          "https"
32580        ],
32581        "tags": [
32582          "core_v1"
32583        ],
32584        "x-kubernetes-action": "get",
32585        "x-kubernetes-group-version-kind": {
32586          "group": "",
32587          "kind": "Node",
32588          "version": "v1"
32589        }
32590      },
32591      "parameters": [
32592        {
32593          "description": "name of the Node",
32594          "in": "path",
32595          "name": "name",
32596          "required": true,
32597          "type": "string",
32598          "uniqueItems": true
32599        },
32600        {
32601          "description": "If 'true', then the output is pretty printed.",
32602          "in": "query",
32603          "name": "pretty",
32604          "type": "string",
32605          "uniqueItems": true
32606        }
32607      ],
32608      "patch": {
32609        "consumes": [
32610          "application/json-patch+json",
32611          "application/merge-patch+json",
32612          "application/strategic-merge-patch+json",
32613          "application/apply-patch+yaml"
32614        ],
32615        "description": "partially update status of the specified Node",
32616        "operationId": "patchCoreV1NodeStatus",
32617        "parameters": [
32618          {
32619            "in": "body",
32620            "name": "body",
32621            "required": true,
32622            "schema": {
32623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
32624            }
32625          },
32626          {
32627            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32628            "in": "query",
32629            "name": "dryRun",
32630            "type": "string",
32631            "uniqueItems": true
32632          },
32633          {
32634            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
32635            "in": "query",
32636            "name": "fieldManager",
32637            "type": "string",
32638            "uniqueItems": true
32639          },
32640          {
32641            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
32642            "in": "query",
32643            "name": "force",
32644            "type": "boolean",
32645            "uniqueItems": true
32646          }
32647        ],
32648        "produces": [
32649          "application/json",
32650          "application/yaml",
32651          "application/vnd.kubernetes.protobuf"
32652        ],
32653        "responses": {
32654          "200": {
32655            "description": "OK",
32656            "schema": {
32657              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32658            }
32659          },
32660          "401": {
32661            "description": "Unauthorized"
32662          }
32663        },
32664        "schemes": [
32665          "https"
32666        ],
32667        "tags": [
32668          "core_v1"
32669        ],
32670        "x-kubernetes-action": "patch",
32671        "x-kubernetes-group-version-kind": {
32672          "group": "",
32673          "kind": "Node",
32674          "version": "v1"
32675        }
32676      },
32677      "put": {
32678        "consumes": [
32679          "*/*"
32680        ],
32681        "description": "replace status of the specified Node",
32682        "operationId": "replaceCoreV1NodeStatus",
32683        "parameters": [
32684          {
32685            "in": "body",
32686            "name": "body",
32687            "required": true,
32688            "schema": {
32689              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32690            }
32691          },
32692          {
32693            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32694            "in": "query",
32695            "name": "dryRun",
32696            "type": "string",
32697            "uniqueItems": true
32698          },
32699          {
32700            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32701            "in": "query",
32702            "name": "fieldManager",
32703            "type": "string",
32704            "uniqueItems": true
32705          }
32706        ],
32707        "produces": [
32708          "application/json",
32709          "application/yaml",
32710          "application/vnd.kubernetes.protobuf"
32711        ],
32712        "responses": {
32713          "200": {
32714            "description": "OK",
32715            "schema": {
32716              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32717            }
32718          },
32719          "201": {
32720            "description": "Created",
32721            "schema": {
32722              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
32723            }
32724          },
32725          "401": {
32726            "description": "Unauthorized"
32727          }
32728        },
32729        "schemes": [
32730          "https"
32731        ],
32732        "tags": [
32733          "core_v1"
32734        ],
32735        "x-kubernetes-action": "put",
32736        "x-kubernetes-group-version-kind": {
32737          "group": "",
32738          "kind": "Node",
32739          "version": "v1"
32740        }
32741      }
32742    },
32743    "/api/v1/persistentvolumeclaims": {
32744      "get": {
32745        "consumes": [
32746          "*/*"
32747        ],
32748        "description": "list or watch objects of kind PersistentVolumeClaim",
32749        "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
32750        "produces": [
32751          "application/json",
32752          "application/yaml",
32753          "application/vnd.kubernetes.protobuf",
32754          "application/json;stream=watch",
32755          "application/vnd.kubernetes.protobuf;stream=watch"
32756        ],
32757        "responses": {
32758          "200": {
32759            "description": "OK",
32760            "schema": {
32761              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
32762            }
32763          },
32764          "401": {
32765            "description": "Unauthorized"
32766          }
32767        },
32768        "schemes": [
32769          "https"
32770        ],
32771        "tags": [
32772          "core_v1"
32773        ],
32774        "x-kubernetes-action": "list",
32775        "x-kubernetes-group-version-kind": {
32776          "group": "",
32777          "kind": "PersistentVolumeClaim",
32778          "version": "v1"
32779        }
32780      },
32781      "parameters": [
32782        {
32783          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
32784          "in": "query",
32785          "name": "allowWatchBookmarks",
32786          "type": "boolean",
32787          "uniqueItems": true
32788        },
32789        {
32790          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32791          "in": "query",
32792          "name": "continue",
32793          "type": "string",
32794          "uniqueItems": true
32795        },
32796        {
32797          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32798          "in": "query",
32799          "name": "fieldSelector",
32800          "type": "string",
32801          "uniqueItems": true
32802        },
32803        {
32804          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32805          "in": "query",
32806          "name": "labelSelector",
32807          "type": "string",
32808          "uniqueItems": true
32809        },
32810        {
32811          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32812          "in": "query",
32813          "name": "limit",
32814          "type": "integer",
32815          "uniqueItems": true
32816        },
32817        {
32818          "description": "If 'true', then the output is pretty printed.",
32819          "in": "query",
32820          "name": "pretty",
32821          "type": "string",
32822          "uniqueItems": true
32823        },
32824        {
32825          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32826          "in": "query",
32827          "name": "resourceVersion",
32828          "type": "string",
32829          "uniqueItems": true
32830        },
32831        {
32832          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32833          "in": "query",
32834          "name": "resourceVersionMatch",
32835          "type": "string",
32836          "uniqueItems": true
32837        },
32838        {
32839          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32840          "in": "query",
32841          "name": "timeoutSeconds",
32842          "type": "integer",
32843          "uniqueItems": true
32844        },
32845        {
32846          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32847          "in": "query",
32848          "name": "watch",
32849          "type": "boolean",
32850          "uniqueItems": true
32851        }
32852      ]
32853    },
32854    "/api/v1/persistentvolumes": {
32855      "delete": {
32856        "consumes": [
32857          "*/*"
32858        ],
32859        "description": "delete collection of PersistentVolume",
32860        "operationId": "deleteCoreV1CollectionPersistentVolume",
32861        "parameters": [
32862          {
32863            "in": "body",
32864            "name": "body",
32865            "schema": {
32866              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
32867            }
32868          },
32869          {
32870            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32871            "in": "query",
32872            "name": "continue",
32873            "type": "string",
32874            "uniqueItems": true
32875          },
32876          {
32877            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32878            "in": "query",
32879            "name": "dryRun",
32880            "type": "string",
32881            "uniqueItems": true
32882          },
32883          {
32884            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32885            "in": "query",
32886            "name": "fieldSelector",
32887            "type": "string",
32888            "uniqueItems": true
32889          },
32890          {
32891            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
32892            "in": "query",
32893            "name": "gracePeriodSeconds",
32894            "type": "integer",
32895            "uniqueItems": true
32896          },
32897          {
32898            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32899            "in": "query",
32900            "name": "labelSelector",
32901            "type": "string",
32902            "uniqueItems": true
32903          },
32904          {
32905            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32906            "in": "query",
32907            "name": "limit",
32908            "type": "integer",
32909            "uniqueItems": true
32910          },
32911          {
32912            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
32913            "in": "query",
32914            "name": "orphanDependents",
32915            "type": "boolean",
32916            "uniqueItems": true
32917          },
32918          {
32919            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
32920            "in": "query",
32921            "name": "propagationPolicy",
32922            "type": "string",
32923            "uniqueItems": true
32924          },
32925          {
32926            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32927            "in": "query",
32928            "name": "resourceVersion",
32929            "type": "string",
32930            "uniqueItems": true
32931          },
32932          {
32933            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32934            "in": "query",
32935            "name": "resourceVersionMatch",
32936            "type": "string",
32937            "uniqueItems": true
32938          },
32939          {
32940            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32941            "in": "query",
32942            "name": "timeoutSeconds",
32943            "type": "integer",
32944            "uniqueItems": true
32945          }
32946        ],
32947        "produces": [
32948          "application/json",
32949          "application/yaml",
32950          "application/vnd.kubernetes.protobuf"
32951        ],
32952        "responses": {
32953          "200": {
32954            "description": "OK",
32955            "schema": {
32956              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
32957            }
32958          },
32959          "401": {
32960            "description": "Unauthorized"
32961          }
32962        },
32963        "schemes": [
32964          "https"
32965        ],
32966        "tags": [
32967          "core_v1"
32968        ],
32969        "x-kubernetes-action": "deletecollection",
32970        "x-kubernetes-group-version-kind": {
32971          "group": "",
32972          "kind": "PersistentVolume",
32973          "version": "v1"
32974        }
32975      },
32976      "get": {
32977        "consumes": [
32978          "*/*"
32979        ],
32980        "description": "list or watch objects of kind PersistentVolume",
32981        "operationId": "listCoreV1PersistentVolume",
32982        "parameters": [
32983          {
32984            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
32985            "in": "query",
32986            "name": "allowWatchBookmarks",
32987            "type": "boolean",
32988            "uniqueItems": true
32989          },
32990          {
32991            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32992            "in": "query",
32993            "name": "continue",
32994            "type": "string",
32995            "uniqueItems": true
32996          },
32997          {
32998            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32999            "in": "query",
33000            "name": "fieldSelector",
33001            "type": "string",
33002            "uniqueItems": true
33003          },
33004          {
33005            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33006            "in": "query",
33007            "name": "labelSelector",
33008            "type": "string",
33009            "uniqueItems": true
33010          },
33011          {
33012            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33013            "in": "query",
33014            "name": "limit",
33015            "type": "integer",
33016            "uniqueItems": true
33017          },
33018          {
33019            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33020            "in": "query",
33021            "name": "resourceVersion",
33022            "type": "string",
33023            "uniqueItems": true
33024          },
33025          {
33026            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33027            "in": "query",
33028            "name": "resourceVersionMatch",
33029            "type": "string",
33030            "uniqueItems": true
33031          },
33032          {
33033            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33034            "in": "query",
33035            "name": "timeoutSeconds",
33036            "type": "integer",
33037            "uniqueItems": true
33038          },
33039          {
33040            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33041            "in": "query",
33042            "name": "watch",
33043            "type": "boolean",
33044            "uniqueItems": true
33045          }
33046        ],
33047        "produces": [
33048          "application/json",
33049          "application/yaml",
33050          "application/vnd.kubernetes.protobuf",
33051          "application/json;stream=watch",
33052          "application/vnd.kubernetes.protobuf;stream=watch"
33053        ],
33054        "responses": {
33055          "200": {
33056            "description": "OK",
33057            "schema": {
33058              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeList"
33059            }
33060          },
33061          "401": {
33062            "description": "Unauthorized"
33063          }
33064        },
33065        "schemes": [
33066          "https"
33067        ],
33068        "tags": [
33069          "core_v1"
33070        ],
33071        "x-kubernetes-action": "list",
33072        "x-kubernetes-group-version-kind": {
33073          "group": "",
33074          "kind": "PersistentVolume",
33075          "version": "v1"
33076        }
33077      },
33078      "parameters": [
33079        {
33080          "description": "If 'true', then the output is pretty printed.",
33081          "in": "query",
33082          "name": "pretty",
33083          "type": "string",
33084          "uniqueItems": true
33085        }
33086      ],
33087      "post": {
33088        "consumes": [
33089          "*/*"
33090        ],
33091        "description": "create a PersistentVolume",
33092        "operationId": "createCoreV1PersistentVolume",
33093        "parameters": [
33094          {
33095            "in": "body",
33096            "name": "body",
33097            "required": true,
33098            "schema": {
33099              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33100            }
33101          },
33102          {
33103            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33104            "in": "query",
33105            "name": "dryRun",
33106            "type": "string",
33107            "uniqueItems": true
33108          },
33109          {
33110            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33111            "in": "query",
33112            "name": "fieldManager",
33113            "type": "string",
33114            "uniqueItems": true
33115          }
33116        ],
33117        "produces": [
33118          "application/json",
33119          "application/yaml",
33120          "application/vnd.kubernetes.protobuf"
33121        ],
33122        "responses": {
33123          "200": {
33124            "description": "OK",
33125            "schema": {
33126              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33127            }
33128          },
33129          "201": {
33130            "description": "Created",
33131            "schema": {
33132              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33133            }
33134          },
33135          "202": {
33136            "description": "Accepted",
33137            "schema": {
33138              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33139            }
33140          },
33141          "401": {
33142            "description": "Unauthorized"
33143          }
33144        },
33145        "schemes": [
33146          "https"
33147        ],
33148        "tags": [
33149          "core_v1"
33150        ],
33151        "x-kubernetes-action": "post",
33152        "x-kubernetes-group-version-kind": {
33153          "group": "",
33154          "kind": "PersistentVolume",
33155          "version": "v1"
33156        }
33157      }
33158    },
33159    "/api/v1/persistentvolumes/{name}": {
33160      "delete": {
33161        "consumes": [
33162          "*/*"
33163        ],
33164        "description": "delete a PersistentVolume",
33165        "operationId": "deleteCoreV1PersistentVolume",
33166        "parameters": [
33167          {
33168            "in": "body",
33169            "name": "body",
33170            "schema": {
33171              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
33172            }
33173          },
33174          {
33175            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33176            "in": "query",
33177            "name": "dryRun",
33178            "type": "string",
33179            "uniqueItems": true
33180          },
33181          {
33182            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
33183            "in": "query",
33184            "name": "gracePeriodSeconds",
33185            "type": "integer",
33186            "uniqueItems": true
33187          },
33188          {
33189            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
33190            "in": "query",
33191            "name": "orphanDependents",
33192            "type": "boolean",
33193            "uniqueItems": true
33194          },
33195          {
33196            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
33197            "in": "query",
33198            "name": "propagationPolicy",
33199            "type": "string",
33200            "uniqueItems": true
33201          }
33202        ],
33203        "produces": [
33204          "application/json",
33205          "application/yaml",
33206          "application/vnd.kubernetes.protobuf"
33207        ],
33208        "responses": {
33209          "200": {
33210            "description": "OK",
33211            "schema": {
33212              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33213            }
33214          },
33215          "202": {
33216            "description": "Accepted",
33217            "schema": {
33218              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33219            }
33220          },
33221          "401": {
33222            "description": "Unauthorized"
33223          }
33224        },
33225        "schemes": [
33226          "https"
33227        ],
33228        "tags": [
33229          "core_v1"
33230        ],
33231        "x-kubernetes-action": "delete",
33232        "x-kubernetes-group-version-kind": {
33233          "group": "",
33234          "kind": "PersistentVolume",
33235          "version": "v1"
33236        }
33237      },
33238      "get": {
33239        "consumes": [
33240          "*/*"
33241        ],
33242        "description": "read the specified PersistentVolume",
33243        "operationId": "readCoreV1PersistentVolume",
33244        "produces": [
33245          "application/json",
33246          "application/yaml",
33247          "application/vnd.kubernetes.protobuf"
33248        ],
33249        "responses": {
33250          "200": {
33251            "description": "OK",
33252            "schema": {
33253              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33254            }
33255          },
33256          "401": {
33257            "description": "Unauthorized"
33258          }
33259        },
33260        "schemes": [
33261          "https"
33262        ],
33263        "tags": [
33264          "core_v1"
33265        ],
33266        "x-kubernetes-action": "get",
33267        "x-kubernetes-group-version-kind": {
33268          "group": "",
33269          "kind": "PersistentVolume",
33270          "version": "v1"
33271        }
33272      },
33273      "parameters": [
33274        {
33275          "description": "name of the PersistentVolume",
33276          "in": "path",
33277          "name": "name",
33278          "required": true,
33279          "type": "string",
33280          "uniqueItems": true
33281        },
33282        {
33283          "description": "If 'true', then the output is pretty printed.",
33284          "in": "query",
33285          "name": "pretty",
33286          "type": "string",
33287          "uniqueItems": true
33288        }
33289      ],
33290      "patch": {
33291        "consumes": [
33292          "application/json-patch+json",
33293          "application/merge-patch+json",
33294          "application/strategic-merge-patch+json",
33295          "application/apply-patch+yaml"
33296        ],
33297        "description": "partially update the specified PersistentVolume",
33298        "operationId": "patchCoreV1PersistentVolume",
33299        "parameters": [
33300          {
33301            "in": "body",
33302            "name": "body",
33303            "required": true,
33304            "schema": {
33305              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
33306            }
33307          },
33308          {
33309            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33310            "in": "query",
33311            "name": "dryRun",
33312            "type": "string",
33313            "uniqueItems": true
33314          },
33315          {
33316            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
33317            "in": "query",
33318            "name": "fieldManager",
33319            "type": "string",
33320            "uniqueItems": true
33321          },
33322          {
33323            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
33324            "in": "query",
33325            "name": "force",
33326            "type": "boolean",
33327            "uniqueItems": true
33328          }
33329        ],
33330        "produces": [
33331          "application/json",
33332          "application/yaml",
33333          "application/vnd.kubernetes.protobuf"
33334        ],
33335        "responses": {
33336          "200": {
33337            "description": "OK",
33338            "schema": {
33339              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33340            }
33341          },
33342          "401": {
33343            "description": "Unauthorized"
33344          }
33345        },
33346        "schemes": [
33347          "https"
33348        ],
33349        "tags": [
33350          "core_v1"
33351        ],
33352        "x-kubernetes-action": "patch",
33353        "x-kubernetes-group-version-kind": {
33354          "group": "",
33355          "kind": "PersistentVolume",
33356          "version": "v1"
33357        }
33358      },
33359      "put": {
33360        "consumes": [
33361          "*/*"
33362        ],
33363        "description": "replace the specified PersistentVolume",
33364        "operationId": "replaceCoreV1PersistentVolume",
33365        "parameters": [
33366          {
33367            "in": "body",
33368            "name": "body",
33369            "required": true,
33370            "schema": {
33371              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33372            }
33373          },
33374          {
33375            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33376            "in": "query",
33377            "name": "dryRun",
33378            "type": "string",
33379            "uniqueItems": true
33380          },
33381          {
33382            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33383            "in": "query",
33384            "name": "fieldManager",
33385            "type": "string",
33386            "uniqueItems": true
33387          }
33388        ],
33389        "produces": [
33390          "application/json",
33391          "application/yaml",
33392          "application/vnd.kubernetes.protobuf"
33393        ],
33394        "responses": {
33395          "200": {
33396            "description": "OK",
33397            "schema": {
33398              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33399            }
33400          },
33401          "201": {
33402            "description": "Created",
33403            "schema": {
33404              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33405            }
33406          },
33407          "401": {
33408            "description": "Unauthorized"
33409          }
33410        },
33411        "schemes": [
33412          "https"
33413        ],
33414        "tags": [
33415          "core_v1"
33416        ],
33417        "x-kubernetes-action": "put",
33418        "x-kubernetes-group-version-kind": {
33419          "group": "",
33420          "kind": "PersistentVolume",
33421          "version": "v1"
33422        }
33423      }
33424    },
33425    "/api/v1/persistentvolumes/{name}/status": {
33426      "get": {
33427        "consumes": [
33428          "*/*"
33429        ],
33430        "description": "read status of the specified PersistentVolume",
33431        "operationId": "readCoreV1PersistentVolumeStatus",
33432        "produces": [
33433          "application/json",
33434          "application/yaml",
33435          "application/vnd.kubernetes.protobuf"
33436        ],
33437        "responses": {
33438          "200": {
33439            "description": "OK",
33440            "schema": {
33441              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33442            }
33443          },
33444          "401": {
33445            "description": "Unauthorized"
33446          }
33447        },
33448        "schemes": [
33449          "https"
33450        ],
33451        "tags": [
33452          "core_v1"
33453        ],
33454        "x-kubernetes-action": "get",
33455        "x-kubernetes-group-version-kind": {
33456          "group": "",
33457          "kind": "PersistentVolume",
33458          "version": "v1"
33459        }
33460      },
33461      "parameters": [
33462        {
33463          "description": "name of the PersistentVolume",
33464          "in": "path",
33465          "name": "name",
33466          "required": true,
33467          "type": "string",
33468          "uniqueItems": true
33469        },
33470        {
33471          "description": "If 'true', then the output is pretty printed.",
33472          "in": "query",
33473          "name": "pretty",
33474          "type": "string",
33475          "uniqueItems": true
33476        }
33477      ],
33478      "patch": {
33479        "consumes": [
33480          "application/json-patch+json",
33481          "application/merge-patch+json",
33482          "application/strategic-merge-patch+json",
33483          "application/apply-patch+yaml"
33484        ],
33485        "description": "partially update status of the specified PersistentVolume",
33486        "operationId": "patchCoreV1PersistentVolumeStatus",
33487        "parameters": [
33488          {
33489            "in": "body",
33490            "name": "body",
33491            "required": true,
33492            "schema": {
33493              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
33494            }
33495          },
33496          {
33497            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33498            "in": "query",
33499            "name": "dryRun",
33500            "type": "string",
33501            "uniqueItems": true
33502          },
33503          {
33504            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
33505            "in": "query",
33506            "name": "fieldManager",
33507            "type": "string",
33508            "uniqueItems": true
33509          },
33510          {
33511            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
33512            "in": "query",
33513            "name": "force",
33514            "type": "boolean",
33515            "uniqueItems": true
33516          }
33517        ],
33518        "produces": [
33519          "application/json",
33520          "application/yaml",
33521          "application/vnd.kubernetes.protobuf"
33522        ],
33523        "responses": {
33524          "200": {
33525            "description": "OK",
33526            "schema": {
33527              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33528            }
33529          },
33530          "401": {
33531            "description": "Unauthorized"
33532          }
33533        },
33534        "schemes": [
33535          "https"
33536        ],
33537        "tags": [
33538          "core_v1"
33539        ],
33540        "x-kubernetes-action": "patch",
33541        "x-kubernetes-group-version-kind": {
33542          "group": "",
33543          "kind": "PersistentVolume",
33544          "version": "v1"
33545        }
33546      },
33547      "put": {
33548        "consumes": [
33549          "*/*"
33550        ],
33551        "description": "replace status of the specified PersistentVolume",
33552        "operationId": "replaceCoreV1PersistentVolumeStatus",
33553        "parameters": [
33554          {
33555            "in": "body",
33556            "name": "body",
33557            "required": true,
33558            "schema": {
33559              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33560            }
33561          },
33562          {
33563            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
33564            "in": "query",
33565            "name": "dryRun",
33566            "type": "string",
33567            "uniqueItems": true
33568          },
33569          {
33570            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
33571            "in": "query",
33572            "name": "fieldManager",
33573            "type": "string",
33574            "uniqueItems": true
33575          }
33576        ],
33577        "produces": [
33578          "application/json",
33579          "application/yaml",
33580          "application/vnd.kubernetes.protobuf"
33581        ],
33582        "responses": {
33583          "200": {
33584            "description": "OK",
33585            "schema": {
33586              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33587            }
33588          },
33589          "201": {
33590            "description": "Created",
33591            "schema": {
33592              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
33593            }
33594          },
33595          "401": {
33596            "description": "Unauthorized"
33597          }
33598        },
33599        "schemes": [
33600          "https"
33601        ],
33602        "tags": [
33603          "core_v1"
33604        ],
33605        "x-kubernetes-action": "put",
33606        "x-kubernetes-group-version-kind": {
33607          "group": "",
33608          "kind": "PersistentVolume",
33609          "version": "v1"
33610        }
33611      }
33612    },
33613    "/api/v1/pods": {
33614      "get": {
33615        "consumes": [
33616          "*/*"
33617        ],
33618        "description": "list or watch objects of kind Pod",
33619        "operationId": "listCoreV1PodForAllNamespaces",
33620        "produces": [
33621          "application/json",
33622          "application/yaml",
33623          "application/vnd.kubernetes.protobuf",
33624          "application/json;stream=watch",
33625          "application/vnd.kubernetes.protobuf;stream=watch"
33626        ],
33627        "responses": {
33628          "200": {
33629            "description": "OK",
33630            "schema": {
33631              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
33632            }
33633          },
33634          "401": {
33635            "description": "Unauthorized"
33636          }
33637        },
33638        "schemes": [
33639          "https"
33640        ],
33641        "tags": [
33642          "core_v1"
33643        ],
33644        "x-kubernetes-action": "list",
33645        "x-kubernetes-group-version-kind": {
33646          "group": "",
33647          "kind": "Pod",
33648          "version": "v1"
33649        }
33650      },
33651      "parameters": [
33652        {
33653          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33654          "in": "query",
33655          "name": "allowWatchBookmarks",
33656          "type": "boolean",
33657          "uniqueItems": true
33658        },
33659        {
33660          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33661          "in": "query",
33662          "name": "continue",
33663          "type": "string",
33664          "uniqueItems": true
33665        },
33666        {
33667          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33668          "in": "query",
33669          "name": "fieldSelector",
33670          "type": "string",
33671          "uniqueItems": true
33672        },
33673        {
33674          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33675          "in": "query",
33676          "name": "labelSelector",
33677          "type": "string",
33678          "uniqueItems": true
33679        },
33680        {
33681          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33682          "in": "query",
33683          "name": "limit",
33684          "type": "integer",
33685          "uniqueItems": true
33686        },
33687        {
33688          "description": "If 'true', then the output is pretty printed.",
33689          "in": "query",
33690          "name": "pretty",
33691          "type": "string",
33692          "uniqueItems": true
33693        },
33694        {
33695          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33696          "in": "query",
33697          "name": "resourceVersion",
33698          "type": "string",
33699          "uniqueItems": true
33700        },
33701        {
33702          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33703          "in": "query",
33704          "name": "resourceVersionMatch",
33705          "type": "string",
33706          "uniqueItems": true
33707        },
33708        {
33709          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33710          "in": "query",
33711          "name": "timeoutSeconds",
33712          "type": "integer",
33713          "uniqueItems": true
33714        },
33715        {
33716          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33717          "in": "query",
33718          "name": "watch",
33719          "type": "boolean",
33720          "uniqueItems": true
33721        }
33722      ]
33723    },
33724    "/api/v1/podtemplates": {
33725      "get": {
33726        "consumes": [
33727          "*/*"
33728        ],
33729        "description": "list or watch objects of kind PodTemplate",
33730        "operationId": "listCoreV1PodTemplateForAllNamespaces",
33731        "produces": [
33732          "application/json",
33733          "application/yaml",
33734          "application/vnd.kubernetes.protobuf",
33735          "application/json;stream=watch",
33736          "application/vnd.kubernetes.protobuf;stream=watch"
33737        ],
33738        "responses": {
33739          "200": {
33740            "description": "OK",
33741            "schema": {
33742              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
33743            }
33744          },
33745          "401": {
33746            "description": "Unauthorized"
33747          }
33748        },
33749        "schemes": [
33750          "https"
33751        ],
33752        "tags": [
33753          "core_v1"
33754        ],
33755        "x-kubernetes-action": "list",
33756        "x-kubernetes-group-version-kind": {
33757          "group": "",
33758          "kind": "PodTemplate",
33759          "version": "v1"
33760        }
33761      },
33762      "parameters": [
33763        {
33764          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33765          "in": "query",
33766          "name": "allowWatchBookmarks",
33767          "type": "boolean",
33768          "uniqueItems": true
33769        },
33770        {
33771          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33772          "in": "query",
33773          "name": "continue",
33774          "type": "string",
33775          "uniqueItems": true
33776        },
33777        {
33778          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33779          "in": "query",
33780          "name": "fieldSelector",
33781          "type": "string",
33782          "uniqueItems": true
33783        },
33784        {
33785          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33786          "in": "query",
33787          "name": "labelSelector",
33788          "type": "string",
33789          "uniqueItems": true
33790        },
33791        {
33792          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33793          "in": "query",
33794          "name": "limit",
33795          "type": "integer",
33796          "uniqueItems": true
33797        },
33798        {
33799          "description": "If 'true', then the output is pretty printed.",
33800          "in": "query",
33801          "name": "pretty",
33802          "type": "string",
33803          "uniqueItems": true
33804        },
33805        {
33806          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33807          "in": "query",
33808          "name": "resourceVersion",
33809          "type": "string",
33810          "uniqueItems": true
33811        },
33812        {
33813          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33814          "in": "query",
33815          "name": "resourceVersionMatch",
33816          "type": "string",
33817          "uniqueItems": true
33818        },
33819        {
33820          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33821          "in": "query",
33822          "name": "timeoutSeconds",
33823          "type": "integer",
33824          "uniqueItems": true
33825        },
33826        {
33827          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33828          "in": "query",
33829          "name": "watch",
33830          "type": "boolean",
33831          "uniqueItems": true
33832        }
33833      ]
33834    },
33835    "/api/v1/replicationcontrollers": {
33836      "get": {
33837        "consumes": [
33838          "*/*"
33839        ],
33840        "description": "list or watch objects of kind ReplicationController",
33841        "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
33842        "produces": [
33843          "application/json",
33844          "application/yaml",
33845          "application/vnd.kubernetes.protobuf",
33846          "application/json;stream=watch",
33847          "application/vnd.kubernetes.protobuf;stream=watch"
33848        ],
33849        "responses": {
33850          "200": {
33851            "description": "OK",
33852            "schema": {
33853              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
33854            }
33855          },
33856          "401": {
33857            "description": "Unauthorized"
33858          }
33859        },
33860        "schemes": [
33861          "https"
33862        ],
33863        "tags": [
33864          "core_v1"
33865        ],
33866        "x-kubernetes-action": "list",
33867        "x-kubernetes-group-version-kind": {
33868          "group": "",
33869          "kind": "ReplicationController",
33870          "version": "v1"
33871        }
33872      },
33873      "parameters": [
33874        {
33875          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33876          "in": "query",
33877          "name": "allowWatchBookmarks",
33878          "type": "boolean",
33879          "uniqueItems": true
33880        },
33881        {
33882          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33883          "in": "query",
33884          "name": "continue",
33885          "type": "string",
33886          "uniqueItems": true
33887        },
33888        {
33889          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33890          "in": "query",
33891          "name": "fieldSelector",
33892          "type": "string",
33893          "uniqueItems": true
33894        },
33895        {
33896          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33897          "in": "query",
33898          "name": "labelSelector",
33899          "type": "string",
33900          "uniqueItems": true
33901        },
33902        {
33903          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33904          "in": "query",
33905          "name": "limit",
33906          "type": "integer",
33907          "uniqueItems": true
33908        },
33909        {
33910          "description": "If 'true', then the output is pretty printed.",
33911          "in": "query",
33912          "name": "pretty",
33913          "type": "string",
33914          "uniqueItems": true
33915        },
33916        {
33917          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33918          "in": "query",
33919          "name": "resourceVersion",
33920          "type": "string",
33921          "uniqueItems": true
33922        },
33923        {
33924          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33925          "in": "query",
33926          "name": "resourceVersionMatch",
33927          "type": "string",
33928          "uniqueItems": true
33929        },
33930        {
33931          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33932          "in": "query",
33933          "name": "timeoutSeconds",
33934          "type": "integer",
33935          "uniqueItems": true
33936        },
33937        {
33938          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33939          "in": "query",
33940          "name": "watch",
33941          "type": "boolean",
33942          "uniqueItems": true
33943        }
33944      ]
33945    },
33946    "/api/v1/resourcequotas": {
33947      "get": {
33948        "consumes": [
33949          "*/*"
33950        ],
33951        "description": "list or watch objects of kind ResourceQuota",
33952        "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
33953        "produces": [
33954          "application/json",
33955          "application/yaml",
33956          "application/vnd.kubernetes.protobuf",
33957          "application/json;stream=watch",
33958          "application/vnd.kubernetes.protobuf;stream=watch"
33959        ],
33960        "responses": {
33961          "200": {
33962            "description": "OK",
33963            "schema": {
33964              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
33965            }
33966          },
33967          "401": {
33968            "description": "Unauthorized"
33969          }
33970        },
33971        "schemes": [
33972          "https"
33973        ],
33974        "tags": [
33975          "core_v1"
33976        ],
33977        "x-kubernetes-action": "list",
33978        "x-kubernetes-group-version-kind": {
33979          "group": "",
33980          "kind": "ResourceQuota",
33981          "version": "v1"
33982        }
33983      },
33984      "parameters": [
33985        {
33986          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
33987          "in": "query",
33988          "name": "allowWatchBookmarks",
33989          "type": "boolean",
33990          "uniqueItems": true
33991        },
33992        {
33993          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33994          "in": "query",
33995          "name": "continue",
33996          "type": "string",
33997          "uniqueItems": true
33998        },
33999        {
34000          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34001          "in": "query",
34002          "name": "fieldSelector",
34003          "type": "string",
34004          "uniqueItems": true
34005        },
34006        {
34007          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34008          "in": "query",
34009          "name": "labelSelector",
34010          "type": "string",
34011          "uniqueItems": true
34012        },
34013        {
34014          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34015          "in": "query",
34016          "name": "limit",
34017          "type": "integer",
34018          "uniqueItems": true
34019        },
34020        {
34021          "description": "If 'true', then the output is pretty printed.",
34022          "in": "query",
34023          "name": "pretty",
34024          "type": "string",
34025          "uniqueItems": true
34026        },
34027        {
34028          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34029          "in": "query",
34030          "name": "resourceVersion",
34031          "type": "string",
34032          "uniqueItems": true
34033        },
34034        {
34035          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34036          "in": "query",
34037          "name": "resourceVersionMatch",
34038          "type": "string",
34039          "uniqueItems": true
34040        },
34041        {
34042          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34043          "in": "query",
34044          "name": "timeoutSeconds",
34045          "type": "integer",
34046          "uniqueItems": true
34047        },
34048        {
34049          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34050          "in": "query",
34051          "name": "watch",
34052          "type": "boolean",
34053          "uniqueItems": true
34054        }
34055      ]
34056    },
34057    "/api/v1/secrets": {
34058      "get": {
34059        "consumes": [
34060          "*/*"
34061        ],
34062        "description": "list or watch objects of kind Secret",
34063        "operationId": "listCoreV1SecretForAllNamespaces",
34064        "produces": [
34065          "application/json",
34066          "application/yaml",
34067          "application/vnd.kubernetes.protobuf",
34068          "application/json;stream=watch",
34069          "application/vnd.kubernetes.protobuf;stream=watch"
34070        ],
34071        "responses": {
34072          "200": {
34073            "description": "OK",
34074            "schema": {
34075              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
34076            }
34077          },
34078          "401": {
34079            "description": "Unauthorized"
34080          }
34081        },
34082        "schemes": [
34083          "https"
34084        ],
34085        "tags": [
34086          "core_v1"
34087        ],
34088        "x-kubernetes-action": "list",
34089        "x-kubernetes-group-version-kind": {
34090          "group": "",
34091          "kind": "Secret",
34092          "version": "v1"
34093        }
34094      },
34095      "parameters": [
34096        {
34097          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34098          "in": "query",
34099          "name": "allowWatchBookmarks",
34100          "type": "boolean",
34101          "uniqueItems": true
34102        },
34103        {
34104          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34105          "in": "query",
34106          "name": "continue",
34107          "type": "string",
34108          "uniqueItems": true
34109        },
34110        {
34111          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34112          "in": "query",
34113          "name": "fieldSelector",
34114          "type": "string",
34115          "uniqueItems": true
34116        },
34117        {
34118          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34119          "in": "query",
34120          "name": "labelSelector",
34121          "type": "string",
34122          "uniqueItems": true
34123        },
34124        {
34125          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34126          "in": "query",
34127          "name": "limit",
34128          "type": "integer",
34129          "uniqueItems": true
34130        },
34131        {
34132          "description": "If 'true', then the output is pretty printed.",
34133          "in": "query",
34134          "name": "pretty",
34135          "type": "string",
34136          "uniqueItems": true
34137        },
34138        {
34139          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34140          "in": "query",
34141          "name": "resourceVersion",
34142          "type": "string",
34143          "uniqueItems": true
34144        },
34145        {
34146          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34147          "in": "query",
34148          "name": "resourceVersionMatch",
34149          "type": "string",
34150          "uniqueItems": true
34151        },
34152        {
34153          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34154          "in": "query",
34155          "name": "timeoutSeconds",
34156          "type": "integer",
34157          "uniqueItems": true
34158        },
34159        {
34160          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34161          "in": "query",
34162          "name": "watch",
34163          "type": "boolean",
34164          "uniqueItems": true
34165        }
34166      ]
34167    },
34168    "/api/v1/serviceaccounts": {
34169      "get": {
34170        "consumes": [
34171          "*/*"
34172        ],
34173        "description": "list or watch objects of kind ServiceAccount",
34174        "operationId": "listCoreV1ServiceAccountForAllNamespaces",
34175        "produces": [
34176          "application/json",
34177          "application/yaml",
34178          "application/vnd.kubernetes.protobuf",
34179          "application/json;stream=watch",
34180          "application/vnd.kubernetes.protobuf;stream=watch"
34181        ],
34182        "responses": {
34183          "200": {
34184            "description": "OK",
34185            "schema": {
34186              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
34187            }
34188          },
34189          "401": {
34190            "description": "Unauthorized"
34191          }
34192        },
34193        "schemes": [
34194          "https"
34195        ],
34196        "tags": [
34197          "core_v1"
34198        ],
34199        "x-kubernetes-action": "list",
34200        "x-kubernetes-group-version-kind": {
34201          "group": "",
34202          "kind": "ServiceAccount",
34203          "version": "v1"
34204        }
34205      },
34206      "parameters": [
34207        {
34208          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34209          "in": "query",
34210          "name": "allowWatchBookmarks",
34211          "type": "boolean",
34212          "uniqueItems": true
34213        },
34214        {
34215          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34216          "in": "query",
34217          "name": "continue",
34218          "type": "string",
34219          "uniqueItems": true
34220        },
34221        {
34222          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34223          "in": "query",
34224          "name": "fieldSelector",
34225          "type": "string",
34226          "uniqueItems": true
34227        },
34228        {
34229          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34230          "in": "query",
34231          "name": "labelSelector",
34232          "type": "string",
34233          "uniqueItems": true
34234        },
34235        {
34236          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34237          "in": "query",
34238          "name": "limit",
34239          "type": "integer",
34240          "uniqueItems": true
34241        },
34242        {
34243          "description": "If 'true', then the output is pretty printed.",
34244          "in": "query",
34245          "name": "pretty",
34246          "type": "string",
34247          "uniqueItems": true
34248        },
34249        {
34250          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34251          "in": "query",
34252          "name": "resourceVersion",
34253          "type": "string",
34254          "uniqueItems": true
34255        },
34256        {
34257          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34258          "in": "query",
34259          "name": "resourceVersionMatch",
34260          "type": "string",
34261          "uniqueItems": true
34262        },
34263        {
34264          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34265          "in": "query",
34266          "name": "timeoutSeconds",
34267          "type": "integer",
34268          "uniqueItems": true
34269        },
34270        {
34271          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34272          "in": "query",
34273          "name": "watch",
34274          "type": "boolean",
34275          "uniqueItems": true
34276        }
34277      ]
34278    },
34279    "/api/v1/services": {
34280      "get": {
34281        "consumes": [
34282          "*/*"
34283        ],
34284        "description": "list or watch objects of kind Service",
34285        "operationId": "listCoreV1ServiceForAllNamespaces",
34286        "produces": [
34287          "application/json",
34288          "application/yaml",
34289          "application/vnd.kubernetes.protobuf",
34290          "application/json;stream=watch",
34291          "application/vnd.kubernetes.protobuf;stream=watch"
34292        ],
34293        "responses": {
34294          "200": {
34295            "description": "OK",
34296            "schema": {
34297              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
34298            }
34299          },
34300          "401": {
34301            "description": "Unauthorized"
34302          }
34303        },
34304        "schemes": [
34305          "https"
34306        ],
34307        "tags": [
34308          "core_v1"
34309        ],
34310        "x-kubernetes-action": "list",
34311        "x-kubernetes-group-version-kind": {
34312          "group": "",
34313          "kind": "Service",
34314          "version": "v1"
34315        }
34316      },
34317      "parameters": [
34318        {
34319          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34320          "in": "query",
34321          "name": "allowWatchBookmarks",
34322          "type": "boolean",
34323          "uniqueItems": true
34324        },
34325        {
34326          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34327          "in": "query",
34328          "name": "continue",
34329          "type": "string",
34330          "uniqueItems": true
34331        },
34332        {
34333          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34334          "in": "query",
34335          "name": "fieldSelector",
34336          "type": "string",
34337          "uniqueItems": true
34338        },
34339        {
34340          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34341          "in": "query",
34342          "name": "labelSelector",
34343          "type": "string",
34344          "uniqueItems": true
34345        },
34346        {
34347          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34348          "in": "query",
34349          "name": "limit",
34350          "type": "integer",
34351          "uniqueItems": true
34352        },
34353        {
34354          "description": "If 'true', then the output is pretty printed.",
34355          "in": "query",
34356          "name": "pretty",
34357          "type": "string",
34358          "uniqueItems": true
34359        },
34360        {
34361          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34362          "in": "query",
34363          "name": "resourceVersion",
34364          "type": "string",
34365          "uniqueItems": true
34366        },
34367        {
34368          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34369          "in": "query",
34370          "name": "resourceVersionMatch",
34371          "type": "string",
34372          "uniqueItems": true
34373        },
34374        {
34375          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34376          "in": "query",
34377          "name": "timeoutSeconds",
34378          "type": "integer",
34379          "uniqueItems": true
34380        },
34381        {
34382          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34383          "in": "query",
34384          "name": "watch",
34385          "type": "boolean",
34386          "uniqueItems": true
34387        }
34388      ]
34389    },
34390    "/api/v1/watch/configmaps": {
34391      "get": {
34392        "consumes": [
34393          "*/*"
34394        ],
34395        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
34396        "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
34397        "produces": [
34398          "application/json",
34399          "application/yaml",
34400          "application/vnd.kubernetes.protobuf",
34401          "application/json;stream=watch",
34402          "application/vnd.kubernetes.protobuf;stream=watch"
34403        ],
34404        "responses": {
34405          "200": {
34406            "description": "OK",
34407            "schema": {
34408              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34409            }
34410          },
34411          "401": {
34412            "description": "Unauthorized"
34413          }
34414        },
34415        "schemes": [
34416          "https"
34417        ],
34418        "tags": [
34419          "core_v1"
34420        ],
34421        "x-kubernetes-action": "watchlist",
34422        "x-kubernetes-group-version-kind": {
34423          "group": "",
34424          "kind": "ConfigMap",
34425          "version": "v1"
34426        }
34427      },
34428      "parameters": [
34429        {
34430          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34431          "in": "query",
34432          "name": "allowWatchBookmarks",
34433          "type": "boolean",
34434          "uniqueItems": true
34435        },
34436        {
34437          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34438          "in": "query",
34439          "name": "continue",
34440          "type": "string",
34441          "uniqueItems": true
34442        },
34443        {
34444          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34445          "in": "query",
34446          "name": "fieldSelector",
34447          "type": "string",
34448          "uniqueItems": true
34449        },
34450        {
34451          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34452          "in": "query",
34453          "name": "labelSelector",
34454          "type": "string",
34455          "uniqueItems": true
34456        },
34457        {
34458          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34459          "in": "query",
34460          "name": "limit",
34461          "type": "integer",
34462          "uniqueItems": true
34463        },
34464        {
34465          "description": "If 'true', then the output is pretty printed.",
34466          "in": "query",
34467          "name": "pretty",
34468          "type": "string",
34469          "uniqueItems": true
34470        },
34471        {
34472          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34473          "in": "query",
34474          "name": "resourceVersion",
34475          "type": "string",
34476          "uniqueItems": true
34477        },
34478        {
34479          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34480          "in": "query",
34481          "name": "resourceVersionMatch",
34482          "type": "string",
34483          "uniqueItems": true
34484        },
34485        {
34486          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34487          "in": "query",
34488          "name": "timeoutSeconds",
34489          "type": "integer",
34490          "uniqueItems": true
34491        },
34492        {
34493          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34494          "in": "query",
34495          "name": "watch",
34496          "type": "boolean",
34497          "uniqueItems": true
34498        }
34499      ]
34500    },
34501    "/api/v1/watch/endpoints": {
34502      "get": {
34503        "consumes": [
34504          "*/*"
34505        ],
34506        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
34507        "operationId": "watchCoreV1EndpointsListForAllNamespaces",
34508        "produces": [
34509          "application/json",
34510          "application/yaml",
34511          "application/vnd.kubernetes.protobuf",
34512          "application/json;stream=watch",
34513          "application/vnd.kubernetes.protobuf;stream=watch"
34514        ],
34515        "responses": {
34516          "200": {
34517            "description": "OK",
34518            "schema": {
34519              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34520            }
34521          },
34522          "401": {
34523            "description": "Unauthorized"
34524          }
34525        },
34526        "schemes": [
34527          "https"
34528        ],
34529        "tags": [
34530          "core_v1"
34531        ],
34532        "x-kubernetes-action": "watchlist",
34533        "x-kubernetes-group-version-kind": {
34534          "group": "",
34535          "kind": "Endpoints",
34536          "version": "v1"
34537        }
34538      },
34539      "parameters": [
34540        {
34541          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34542          "in": "query",
34543          "name": "allowWatchBookmarks",
34544          "type": "boolean",
34545          "uniqueItems": true
34546        },
34547        {
34548          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34549          "in": "query",
34550          "name": "continue",
34551          "type": "string",
34552          "uniqueItems": true
34553        },
34554        {
34555          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34556          "in": "query",
34557          "name": "fieldSelector",
34558          "type": "string",
34559          "uniqueItems": true
34560        },
34561        {
34562          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34563          "in": "query",
34564          "name": "labelSelector",
34565          "type": "string",
34566          "uniqueItems": true
34567        },
34568        {
34569          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34570          "in": "query",
34571          "name": "limit",
34572          "type": "integer",
34573          "uniqueItems": true
34574        },
34575        {
34576          "description": "If 'true', then the output is pretty printed.",
34577          "in": "query",
34578          "name": "pretty",
34579          "type": "string",
34580          "uniqueItems": true
34581        },
34582        {
34583          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34584          "in": "query",
34585          "name": "resourceVersion",
34586          "type": "string",
34587          "uniqueItems": true
34588        },
34589        {
34590          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34591          "in": "query",
34592          "name": "resourceVersionMatch",
34593          "type": "string",
34594          "uniqueItems": true
34595        },
34596        {
34597          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34598          "in": "query",
34599          "name": "timeoutSeconds",
34600          "type": "integer",
34601          "uniqueItems": true
34602        },
34603        {
34604          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34605          "in": "query",
34606          "name": "watch",
34607          "type": "boolean",
34608          "uniqueItems": true
34609        }
34610      ]
34611    },
34612    "/api/v1/watch/events": {
34613      "get": {
34614        "consumes": [
34615          "*/*"
34616        ],
34617        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
34618        "operationId": "watchCoreV1EventListForAllNamespaces",
34619        "produces": [
34620          "application/json",
34621          "application/yaml",
34622          "application/vnd.kubernetes.protobuf",
34623          "application/json;stream=watch",
34624          "application/vnd.kubernetes.protobuf;stream=watch"
34625        ],
34626        "responses": {
34627          "200": {
34628            "description": "OK",
34629            "schema": {
34630              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34631            }
34632          },
34633          "401": {
34634            "description": "Unauthorized"
34635          }
34636        },
34637        "schemes": [
34638          "https"
34639        ],
34640        "tags": [
34641          "core_v1"
34642        ],
34643        "x-kubernetes-action": "watchlist",
34644        "x-kubernetes-group-version-kind": {
34645          "group": "",
34646          "kind": "Event",
34647          "version": "v1"
34648        }
34649      },
34650      "parameters": [
34651        {
34652          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34653          "in": "query",
34654          "name": "allowWatchBookmarks",
34655          "type": "boolean",
34656          "uniqueItems": true
34657        },
34658        {
34659          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34660          "in": "query",
34661          "name": "continue",
34662          "type": "string",
34663          "uniqueItems": true
34664        },
34665        {
34666          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34667          "in": "query",
34668          "name": "fieldSelector",
34669          "type": "string",
34670          "uniqueItems": true
34671        },
34672        {
34673          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34674          "in": "query",
34675          "name": "labelSelector",
34676          "type": "string",
34677          "uniqueItems": true
34678        },
34679        {
34680          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34681          "in": "query",
34682          "name": "limit",
34683          "type": "integer",
34684          "uniqueItems": true
34685        },
34686        {
34687          "description": "If 'true', then the output is pretty printed.",
34688          "in": "query",
34689          "name": "pretty",
34690          "type": "string",
34691          "uniqueItems": true
34692        },
34693        {
34694          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34695          "in": "query",
34696          "name": "resourceVersion",
34697          "type": "string",
34698          "uniqueItems": true
34699        },
34700        {
34701          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34702          "in": "query",
34703          "name": "resourceVersionMatch",
34704          "type": "string",
34705          "uniqueItems": true
34706        },
34707        {
34708          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34709          "in": "query",
34710          "name": "timeoutSeconds",
34711          "type": "integer",
34712          "uniqueItems": true
34713        },
34714        {
34715          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34716          "in": "query",
34717          "name": "watch",
34718          "type": "boolean",
34719          "uniqueItems": true
34720        }
34721      ]
34722    },
34723    "/api/v1/watch/limitranges": {
34724      "get": {
34725        "consumes": [
34726          "*/*"
34727        ],
34728        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
34729        "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
34730        "produces": [
34731          "application/json",
34732          "application/yaml",
34733          "application/vnd.kubernetes.protobuf",
34734          "application/json;stream=watch",
34735          "application/vnd.kubernetes.protobuf;stream=watch"
34736        ],
34737        "responses": {
34738          "200": {
34739            "description": "OK",
34740            "schema": {
34741              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34742            }
34743          },
34744          "401": {
34745            "description": "Unauthorized"
34746          }
34747        },
34748        "schemes": [
34749          "https"
34750        ],
34751        "tags": [
34752          "core_v1"
34753        ],
34754        "x-kubernetes-action": "watchlist",
34755        "x-kubernetes-group-version-kind": {
34756          "group": "",
34757          "kind": "LimitRange",
34758          "version": "v1"
34759        }
34760      },
34761      "parameters": [
34762        {
34763          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34764          "in": "query",
34765          "name": "allowWatchBookmarks",
34766          "type": "boolean",
34767          "uniqueItems": true
34768        },
34769        {
34770          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34771          "in": "query",
34772          "name": "continue",
34773          "type": "string",
34774          "uniqueItems": true
34775        },
34776        {
34777          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34778          "in": "query",
34779          "name": "fieldSelector",
34780          "type": "string",
34781          "uniqueItems": true
34782        },
34783        {
34784          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34785          "in": "query",
34786          "name": "labelSelector",
34787          "type": "string",
34788          "uniqueItems": true
34789        },
34790        {
34791          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34792          "in": "query",
34793          "name": "limit",
34794          "type": "integer",
34795          "uniqueItems": true
34796        },
34797        {
34798          "description": "If 'true', then the output is pretty printed.",
34799          "in": "query",
34800          "name": "pretty",
34801          "type": "string",
34802          "uniqueItems": true
34803        },
34804        {
34805          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34806          "in": "query",
34807          "name": "resourceVersion",
34808          "type": "string",
34809          "uniqueItems": true
34810        },
34811        {
34812          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34813          "in": "query",
34814          "name": "resourceVersionMatch",
34815          "type": "string",
34816          "uniqueItems": true
34817        },
34818        {
34819          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34820          "in": "query",
34821          "name": "timeoutSeconds",
34822          "type": "integer",
34823          "uniqueItems": true
34824        },
34825        {
34826          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34827          "in": "query",
34828          "name": "watch",
34829          "type": "boolean",
34830          "uniqueItems": true
34831        }
34832      ]
34833    },
34834    "/api/v1/watch/namespaces": {
34835      "get": {
34836        "consumes": [
34837          "*/*"
34838        ],
34839        "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.",
34840        "operationId": "watchCoreV1NamespaceList",
34841        "produces": [
34842          "application/json",
34843          "application/yaml",
34844          "application/vnd.kubernetes.protobuf",
34845          "application/json;stream=watch",
34846          "application/vnd.kubernetes.protobuf;stream=watch"
34847        ],
34848        "responses": {
34849          "200": {
34850            "description": "OK",
34851            "schema": {
34852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34853            }
34854          },
34855          "401": {
34856            "description": "Unauthorized"
34857          }
34858        },
34859        "schemes": [
34860          "https"
34861        ],
34862        "tags": [
34863          "core_v1"
34864        ],
34865        "x-kubernetes-action": "watchlist",
34866        "x-kubernetes-group-version-kind": {
34867          "group": "",
34868          "kind": "Namespace",
34869          "version": "v1"
34870        }
34871      },
34872      "parameters": [
34873        {
34874          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34875          "in": "query",
34876          "name": "allowWatchBookmarks",
34877          "type": "boolean",
34878          "uniqueItems": true
34879        },
34880        {
34881          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34882          "in": "query",
34883          "name": "continue",
34884          "type": "string",
34885          "uniqueItems": true
34886        },
34887        {
34888          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34889          "in": "query",
34890          "name": "fieldSelector",
34891          "type": "string",
34892          "uniqueItems": true
34893        },
34894        {
34895          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34896          "in": "query",
34897          "name": "labelSelector",
34898          "type": "string",
34899          "uniqueItems": true
34900        },
34901        {
34902          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34903          "in": "query",
34904          "name": "limit",
34905          "type": "integer",
34906          "uniqueItems": true
34907        },
34908        {
34909          "description": "If 'true', then the output is pretty printed.",
34910          "in": "query",
34911          "name": "pretty",
34912          "type": "string",
34913          "uniqueItems": true
34914        },
34915        {
34916          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34917          "in": "query",
34918          "name": "resourceVersion",
34919          "type": "string",
34920          "uniqueItems": true
34921        },
34922        {
34923          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34924          "in": "query",
34925          "name": "resourceVersionMatch",
34926          "type": "string",
34927          "uniqueItems": true
34928        },
34929        {
34930          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34931          "in": "query",
34932          "name": "timeoutSeconds",
34933          "type": "integer",
34934          "uniqueItems": true
34935        },
34936        {
34937          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34938          "in": "query",
34939          "name": "watch",
34940          "type": "boolean",
34941          "uniqueItems": true
34942        }
34943      ]
34944    },
34945    "/api/v1/watch/namespaces/{namespace}/configmaps": {
34946      "get": {
34947        "consumes": [
34948          "*/*"
34949        ],
34950        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
34951        "operationId": "watchCoreV1NamespacedConfigMapList",
34952        "produces": [
34953          "application/json",
34954          "application/yaml",
34955          "application/vnd.kubernetes.protobuf",
34956          "application/json;stream=watch",
34957          "application/vnd.kubernetes.protobuf;stream=watch"
34958        ],
34959        "responses": {
34960          "200": {
34961            "description": "OK",
34962            "schema": {
34963              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34964            }
34965          },
34966          "401": {
34967            "description": "Unauthorized"
34968          }
34969        },
34970        "schemes": [
34971          "https"
34972        ],
34973        "tags": [
34974          "core_v1"
34975        ],
34976        "x-kubernetes-action": "watchlist",
34977        "x-kubernetes-group-version-kind": {
34978          "group": "",
34979          "kind": "ConfigMap",
34980          "version": "v1"
34981        }
34982      },
34983      "parameters": [
34984        {
34985          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
34986          "in": "query",
34987          "name": "allowWatchBookmarks",
34988          "type": "boolean",
34989          "uniqueItems": true
34990        },
34991        {
34992          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34993          "in": "query",
34994          "name": "continue",
34995          "type": "string",
34996          "uniqueItems": true
34997        },
34998        {
34999          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35000          "in": "query",
35001          "name": "fieldSelector",
35002          "type": "string",
35003          "uniqueItems": true
35004        },
35005        {
35006          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35007          "in": "query",
35008          "name": "labelSelector",
35009          "type": "string",
35010          "uniqueItems": true
35011        },
35012        {
35013          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35014          "in": "query",
35015          "name": "limit",
35016          "type": "integer",
35017          "uniqueItems": true
35018        },
35019        {
35020          "description": "object name and auth scope, such as for teams and projects",
35021          "in": "path",
35022          "name": "namespace",
35023          "required": true,
35024          "type": "string",
35025          "uniqueItems": true
35026        },
35027        {
35028          "description": "If 'true', then the output is pretty printed.",
35029          "in": "query",
35030          "name": "pretty",
35031          "type": "string",
35032          "uniqueItems": true
35033        },
35034        {
35035          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35036          "in": "query",
35037          "name": "resourceVersion",
35038          "type": "string",
35039          "uniqueItems": true
35040        },
35041        {
35042          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35043          "in": "query",
35044          "name": "resourceVersionMatch",
35045          "type": "string",
35046          "uniqueItems": true
35047        },
35048        {
35049          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35050          "in": "query",
35051          "name": "timeoutSeconds",
35052          "type": "integer",
35053          "uniqueItems": true
35054        },
35055        {
35056          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35057          "in": "query",
35058          "name": "watch",
35059          "type": "boolean",
35060          "uniqueItems": true
35061        }
35062      ]
35063    },
35064    "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
35065      "get": {
35066        "consumes": [
35067          "*/*"
35068        ],
35069        "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.",
35070        "operationId": "watchCoreV1NamespacedConfigMap",
35071        "produces": [
35072          "application/json",
35073          "application/yaml",
35074          "application/vnd.kubernetes.protobuf",
35075          "application/json;stream=watch",
35076          "application/vnd.kubernetes.protobuf;stream=watch"
35077        ],
35078        "responses": {
35079          "200": {
35080            "description": "OK",
35081            "schema": {
35082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35083            }
35084          },
35085          "401": {
35086            "description": "Unauthorized"
35087          }
35088        },
35089        "schemes": [
35090          "https"
35091        ],
35092        "tags": [
35093          "core_v1"
35094        ],
35095        "x-kubernetes-action": "watch",
35096        "x-kubernetes-group-version-kind": {
35097          "group": "",
35098          "kind": "ConfigMap",
35099          "version": "v1"
35100        }
35101      },
35102      "parameters": [
35103        {
35104          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35105          "in": "query",
35106          "name": "allowWatchBookmarks",
35107          "type": "boolean",
35108          "uniqueItems": true
35109        },
35110        {
35111          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35112          "in": "query",
35113          "name": "continue",
35114          "type": "string",
35115          "uniqueItems": true
35116        },
35117        {
35118          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35119          "in": "query",
35120          "name": "fieldSelector",
35121          "type": "string",
35122          "uniqueItems": true
35123        },
35124        {
35125          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35126          "in": "query",
35127          "name": "labelSelector",
35128          "type": "string",
35129          "uniqueItems": true
35130        },
35131        {
35132          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35133          "in": "query",
35134          "name": "limit",
35135          "type": "integer",
35136          "uniqueItems": true
35137        },
35138        {
35139          "description": "name of the ConfigMap",
35140          "in": "path",
35141          "name": "name",
35142          "required": true,
35143          "type": "string",
35144          "uniqueItems": true
35145        },
35146        {
35147          "description": "object name and auth scope, such as for teams and projects",
35148          "in": "path",
35149          "name": "namespace",
35150          "required": true,
35151          "type": "string",
35152          "uniqueItems": true
35153        },
35154        {
35155          "description": "If 'true', then the output is pretty printed.",
35156          "in": "query",
35157          "name": "pretty",
35158          "type": "string",
35159          "uniqueItems": true
35160        },
35161        {
35162          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35163          "in": "query",
35164          "name": "resourceVersion",
35165          "type": "string",
35166          "uniqueItems": true
35167        },
35168        {
35169          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35170          "in": "query",
35171          "name": "resourceVersionMatch",
35172          "type": "string",
35173          "uniqueItems": true
35174        },
35175        {
35176          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35177          "in": "query",
35178          "name": "timeoutSeconds",
35179          "type": "integer",
35180          "uniqueItems": true
35181        },
35182        {
35183          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35184          "in": "query",
35185          "name": "watch",
35186          "type": "boolean",
35187          "uniqueItems": true
35188        }
35189      ]
35190    },
35191    "/api/v1/watch/namespaces/{namespace}/endpoints": {
35192      "get": {
35193        "consumes": [
35194          "*/*"
35195        ],
35196        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
35197        "operationId": "watchCoreV1NamespacedEndpointsList",
35198        "produces": [
35199          "application/json",
35200          "application/yaml",
35201          "application/vnd.kubernetes.protobuf",
35202          "application/json;stream=watch",
35203          "application/vnd.kubernetes.protobuf;stream=watch"
35204        ],
35205        "responses": {
35206          "200": {
35207            "description": "OK",
35208            "schema": {
35209              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35210            }
35211          },
35212          "401": {
35213            "description": "Unauthorized"
35214          }
35215        },
35216        "schemes": [
35217          "https"
35218        ],
35219        "tags": [
35220          "core_v1"
35221        ],
35222        "x-kubernetes-action": "watchlist",
35223        "x-kubernetes-group-version-kind": {
35224          "group": "",
35225          "kind": "Endpoints",
35226          "version": "v1"
35227        }
35228      },
35229      "parameters": [
35230        {
35231          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35232          "in": "query",
35233          "name": "allowWatchBookmarks",
35234          "type": "boolean",
35235          "uniqueItems": true
35236        },
35237        {
35238          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35239          "in": "query",
35240          "name": "continue",
35241          "type": "string",
35242          "uniqueItems": true
35243        },
35244        {
35245          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35246          "in": "query",
35247          "name": "fieldSelector",
35248          "type": "string",
35249          "uniqueItems": true
35250        },
35251        {
35252          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35253          "in": "query",
35254          "name": "labelSelector",
35255          "type": "string",
35256          "uniqueItems": true
35257        },
35258        {
35259          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35260          "in": "query",
35261          "name": "limit",
35262          "type": "integer",
35263          "uniqueItems": true
35264        },
35265        {
35266          "description": "object name and auth scope, such as for teams and projects",
35267          "in": "path",
35268          "name": "namespace",
35269          "required": true,
35270          "type": "string",
35271          "uniqueItems": true
35272        },
35273        {
35274          "description": "If 'true', then the output is pretty printed.",
35275          "in": "query",
35276          "name": "pretty",
35277          "type": "string",
35278          "uniqueItems": true
35279        },
35280        {
35281          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35282          "in": "query",
35283          "name": "resourceVersion",
35284          "type": "string",
35285          "uniqueItems": true
35286        },
35287        {
35288          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35289          "in": "query",
35290          "name": "resourceVersionMatch",
35291          "type": "string",
35292          "uniqueItems": true
35293        },
35294        {
35295          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35296          "in": "query",
35297          "name": "timeoutSeconds",
35298          "type": "integer",
35299          "uniqueItems": true
35300        },
35301        {
35302          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35303          "in": "query",
35304          "name": "watch",
35305          "type": "boolean",
35306          "uniqueItems": true
35307        }
35308      ]
35309    },
35310    "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
35311      "get": {
35312        "consumes": [
35313          "*/*"
35314        ],
35315        "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.",
35316        "operationId": "watchCoreV1NamespacedEndpoints",
35317        "produces": [
35318          "application/json",
35319          "application/yaml",
35320          "application/vnd.kubernetes.protobuf",
35321          "application/json;stream=watch",
35322          "application/vnd.kubernetes.protobuf;stream=watch"
35323        ],
35324        "responses": {
35325          "200": {
35326            "description": "OK",
35327            "schema": {
35328              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35329            }
35330          },
35331          "401": {
35332            "description": "Unauthorized"
35333          }
35334        },
35335        "schemes": [
35336          "https"
35337        ],
35338        "tags": [
35339          "core_v1"
35340        ],
35341        "x-kubernetes-action": "watch",
35342        "x-kubernetes-group-version-kind": {
35343          "group": "",
35344          "kind": "Endpoints",
35345          "version": "v1"
35346        }
35347      },
35348      "parameters": [
35349        {
35350          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35351          "in": "query",
35352          "name": "allowWatchBookmarks",
35353          "type": "boolean",
35354          "uniqueItems": true
35355        },
35356        {
35357          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35358          "in": "query",
35359          "name": "continue",
35360          "type": "string",
35361          "uniqueItems": true
35362        },
35363        {
35364          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35365          "in": "query",
35366          "name": "fieldSelector",
35367          "type": "string",
35368          "uniqueItems": true
35369        },
35370        {
35371          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35372          "in": "query",
35373          "name": "labelSelector",
35374          "type": "string",
35375          "uniqueItems": true
35376        },
35377        {
35378          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35379          "in": "query",
35380          "name": "limit",
35381          "type": "integer",
35382          "uniqueItems": true
35383        },
35384        {
35385          "description": "name of the Endpoints",
35386          "in": "path",
35387          "name": "name",
35388          "required": true,
35389          "type": "string",
35390          "uniqueItems": true
35391        },
35392        {
35393          "description": "object name and auth scope, such as for teams and projects",
35394          "in": "path",
35395          "name": "namespace",
35396          "required": true,
35397          "type": "string",
35398          "uniqueItems": true
35399        },
35400        {
35401          "description": "If 'true', then the output is pretty printed.",
35402          "in": "query",
35403          "name": "pretty",
35404          "type": "string",
35405          "uniqueItems": true
35406        },
35407        {
35408          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35409          "in": "query",
35410          "name": "resourceVersion",
35411          "type": "string",
35412          "uniqueItems": true
35413        },
35414        {
35415          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35416          "in": "query",
35417          "name": "resourceVersionMatch",
35418          "type": "string",
35419          "uniqueItems": true
35420        },
35421        {
35422          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35423          "in": "query",
35424          "name": "timeoutSeconds",
35425          "type": "integer",
35426          "uniqueItems": true
35427        },
35428        {
35429          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35430          "in": "query",
35431          "name": "watch",
35432          "type": "boolean",
35433          "uniqueItems": true
35434        }
35435      ]
35436    },
35437    "/api/v1/watch/namespaces/{namespace}/events": {
35438      "get": {
35439        "consumes": [
35440          "*/*"
35441        ],
35442        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
35443        "operationId": "watchCoreV1NamespacedEventList",
35444        "produces": [
35445          "application/json",
35446          "application/yaml",
35447          "application/vnd.kubernetes.protobuf",
35448          "application/json;stream=watch",
35449          "application/vnd.kubernetes.protobuf;stream=watch"
35450        ],
35451        "responses": {
35452          "200": {
35453            "description": "OK",
35454            "schema": {
35455              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35456            }
35457          },
35458          "401": {
35459            "description": "Unauthorized"
35460          }
35461        },
35462        "schemes": [
35463          "https"
35464        ],
35465        "tags": [
35466          "core_v1"
35467        ],
35468        "x-kubernetes-action": "watchlist",
35469        "x-kubernetes-group-version-kind": {
35470          "group": "",
35471          "kind": "Event",
35472          "version": "v1"
35473        }
35474      },
35475      "parameters": [
35476        {
35477          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35478          "in": "query",
35479          "name": "allowWatchBookmarks",
35480          "type": "boolean",
35481          "uniqueItems": true
35482        },
35483        {
35484          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35485          "in": "query",
35486          "name": "continue",
35487          "type": "string",
35488          "uniqueItems": true
35489        },
35490        {
35491          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35492          "in": "query",
35493          "name": "fieldSelector",
35494          "type": "string",
35495          "uniqueItems": true
35496        },
35497        {
35498          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35499          "in": "query",
35500          "name": "labelSelector",
35501          "type": "string",
35502          "uniqueItems": true
35503        },
35504        {
35505          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35506          "in": "query",
35507          "name": "limit",
35508          "type": "integer",
35509          "uniqueItems": true
35510        },
35511        {
35512          "description": "object name and auth scope, such as for teams and projects",
35513          "in": "path",
35514          "name": "namespace",
35515          "required": true,
35516          "type": "string",
35517          "uniqueItems": true
35518        },
35519        {
35520          "description": "If 'true', then the output is pretty printed.",
35521          "in": "query",
35522          "name": "pretty",
35523          "type": "string",
35524          "uniqueItems": true
35525        },
35526        {
35527          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35528          "in": "query",
35529          "name": "resourceVersion",
35530          "type": "string",
35531          "uniqueItems": true
35532        },
35533        {
35534          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35535          "in": "query",
35536          "name": "resourceVersionMatch",
35537          "type": "string",
35538          "uniqueItems": true
35539        },
35540        {
35541          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35542          "in": "query",
35543          "name": "timeoutSeconds",
35544          "type": "integer",
35545          "uniqueItems": true
35546        },
35547        {
35548          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35549          "in": "query",
35550          "name": "watch",
35551          "type": "boolean",
35552          "uniqueItems": true
35553        }
35554      ]
35555    },
35556    "/api/v1/watch/namespaces/{namespace}/events/{name}": {
35557      "get": {
35558        "consumes": [
35559          "*/*"
35560        ],
35561        "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.",
35562        "operationId": "watchCoreV1NamespacedEvent",
35563        "produces": [
35564          "application/json",
35565          "application/yaml",
35566          "application/vnd.kubernetes.protobuf",
35567          "application/json;stream=watch",
35568          "application/vnd.kubernetes.protobuf;stream=watch"
35569        ],
35570        "responses": {
35571          "200": {
35572            "description": "OK",
35573            "schema": {
35574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35575            }
35576          },
35577          "401": {
35578            "description": "Unauthorized"
35579          }
35580        },
35581        "schemes": [
35582          "https"
35583        ],
35584        "tags": [
35585          "core_v1"
35586        ],
35587        "x-kubernetes-action": "watch",
35588        "x-kubernetes-group-version-kind": {
35589          "group": "",
35590          "kind": "Event",
35591          "version": "v1"
35592        }
35593      },
35594      "parameters": [
35595        {
35596          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35597          "in": "query",
35598          "name": "allowWatchBookmarks",
35599          "type": "boolean",
35600          "uniqueItems": true
35601        },
35602        {
35603          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35604          "in": "query",
35605          "name": "continue",
35606          "type": "string",
35607          "uniqueItems": true
35608        },
35609        {
35610          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35611          "in": "query",
35612          "name": "fieldSelector",
35613          "type": "string",
35614          "uniqueItems": true
35615        },
35616        {
35617          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35618          "in": "query",
35619          "name": "labelSelector",
35620          "type": "string",
35621          "uniqueItems": true
35622        },
35623        {
35624          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35625          "in": "query",
35626          "name": "limit",
35627          "type": "integer",
35628          "uniqueItems": true
35629        },
35630        {
35631          "description": "name of the Event",
35632          "in": "path",
35633          "name": "name",
35634          "required": true,
35635          "type": "string",
35636          "uniqueItems": true
35637        },
35638        {
35639          "description": "object name and auth scope, such as for teams and projects",
35640          "in": "path",
35641          "name": "namespace",
35642          "required": true,
35643          "type": "string",
35644          "uniqueItems": true
35645        },
35646        {
35647          "description": "If 'true', then the output is pretty printed.",
35648          "in": "query",
35649          "name": "pretty",
35650          "type": "string",
35651          "uniqueItems": true
35652        },
35653        {
35654          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35655          "in": "query",
35656          "name": "resourceVersion",
35657          "type": "string",
35658          "uniqueItems": true
35659        },
35660        {
35661          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35662          "in": "query",
35663          "name": "resourceVersionMatch",
35664          "type": "string",
35665          "uniqueItems": true
35666        },
35667        {
35668          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35669          "in": "query",
35670          "name": "timeoutSeconds",
35671          "type": "integer",
35672          "uniqueItems": true
35673        },
35674        {
35675          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35676          "in": "query",
35677          "name": "watch",
35678          "type": "boolean",
35679          "uniqueItems": true
35680        }
35681      ]
35682    },
35683    "/api/v1/watch/namespaces/{namespace}/limitranges": {
35684      "get": {
35685        "consumes": [
35686          "*/*"
35687        ],
35688        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
35689        "operationId": "watchCoreV1NamespacedLimitRangeList",
35690        "produces": [
35691          "application/json",
35692          "application/yaml",
35693          "application/vnd.kubernetes.protobuf",
35694          "application/json;stream=watch",
35695          "application/vnd.kubernetes.protobuf;stream=watch"
35696        ],
35697        "responses": {
35698          "200": {
35699            "description": "OK",
35700            "schema": {
35701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35702            }
35703          },
35704          "401": {
35705            "description": "Unauthorized"
35706          }
35707        },
35708        "schemes": [
35709          "https"
35710        ],
35711        "tags": [
35712          "core_v1"
35713        ],
35714        "x-kubernetes-action": "watchlist",
35715        "x-kubernetes-group-version-kind": {
35716          "group": "",
35717          "kind": "LimitRange",
35718          "version": "v1"
35719        }
35720      },
35721      "parameters": [
35722        {
35723          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35724          "in": "query",
35725          "name": "allowWatchBookmarks",
35726          "type": "boolean",
35727          "uniqueItems": true
35728        },
35729        {
35730          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35731          "in": "query",
35732          "name": "continue",
35733          "type": "string",
35734          "uniqueItems": true
35735        },
35736        {
35737          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35738          "in": "query",
35739          "name": "fieldSelector",
35740          "type": "string",
35741          "uniqueItems": true
35742        },
35743        {
35744          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35745          "in": "query",
35746          "name": "labelSelector",
35747          "type": "string",
35748          "uniqueItems": true
35749        },
35750        {
35751          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35752          "in": "query",
35753          "name": "limit",
35754          "type": "integer",
35755          "uniqueItems": true
35756        },
35757        {
35758          "description": "object name and auth scope, such as for teams and projects",
35759          "in": "path",
35760          "name": "namespace",
35761          "required": true,
35762          "type": "string",
35763          "uniqueItems": true
35764        },
35765        {
35766          "description": "If 'true', then the output is pretty printed.",
35767          "in": "query",
35768          "name": "pretty",
35769          "type": "string",
35770          "uniqueItems": true
35771        },
35772        {
35773          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35774          "in": "query",
35775          "name": "resourceVersion",
35776          "type": "string",
35777          "uniqueItems": true
35778        },
35779        {
35780          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35781          "in": "query",
35782          "name": "resourceVersionMatch",
35783          "type": "string",
35784          "uniqueItems": true
35785        },
35786        {
35787          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35788          "in": "query",
35789          "name": "timeoutSeconds",
35790          "type": "integer",
35791          "uniqueItems": true
35792        },
35793        {
35794          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35795          "in": "query",
35796          "name": "watch",
35797          "type": "boolean",
35798          "uniqueItems": true
35799        }
35800      ]
35801    },
35802    "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
35803      "get": {
35804        "consumes": [
35805          "*/*"
35806        ],
35807        "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.",
35808        "operationId": "watchCoreV1NamespacedLimitRange",
35809        "produces": [
35810          "application/json",
35811          "application/yaml",
35812          "application/vnd.kubernetes.protobuf",
35813          "application/json;stream=watch",
35814          "application/vnd.kubernetes.protobuf;stream=watch"
35815        ],
35816        "responses": {
35817          "200": {
35818            "description": "OK",
35819            "schema": {
35820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35821            }
35822          },
35823          "401": {
35824            "description": "Unauthorized"
35825          }
35826        },
35827        "schemes": [
35828          "https"
35829        ],
35830        "tags": [
35831          "core_v1"
35832        ],
35833        "x-kubernetes-action": "watch",
35834        "x-kubernetes-group-version-kind": {
35835          "group": "",
35836          "kind": "LimitRange",
35837          "version": "v1"
35838        }
35839      },
35840      "parameters": [
35841        {
35842          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35843          "in": "query",
35844          "name": "allowWatchBookmarks",
35845          "type": "boolean",
35846          "uniqueItems": true
35847        },
35848        {
35849          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35850          "in": "query",
35851          "name": "continue",
35852          "type": "string",
35853          "uniqueItems": true
35854        },
35855        {
35856          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35857          "in": "query",
35858          "name": "fieldSelector",
35859          "type": "string",
35860          "uniqueItems": true
35861        },
35862        {
35863          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35864          "in": "query",
35865          "name": "labelSelector",
35866          "type": "string",
35867          "uniqueItems": true
35868        },
35869        {
35870          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35871          "in": "query",
35872          "name": "limit",
35873          "type": "integer",
35874          "uniqueItems": true
35875        },
35876        {
35877          "description": "name of the LimitRange",
35878          "in": "path",
35879          "name": "name",
35880          "required": true,
35881          "type": "string",
35882          "uniqueItems": true
35883        },
35884        {
35885          "description": "object name and auth scope, such as for teams and projects",
35886          "in": "path",
35887          "name": "namespace",
35888          "required": true,
35889          "type": "string",
35890          "uniqueItems": true
35891        },
35892        {
35893          "description": "If 'true', then the output is pretty printed.",
35894          "in": "query",
35895          "name": "pretty",
35896          "type": "string",
35897          "uniqueItems": true
35898        },
35899        {
35900          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35901          "in": "query",
35902          "name": "resourceVersion",
35903          "type": "string",
35904          "uniqueItems": true
35905        },
35906        {
35907          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35908          "in": "query",
35909          "name": "resourceVersionMatch",
35910          "type": "string",
35911          "uniqueItems": true
35912        },
35913        {
35914          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35915          "in": "query",
35916          "name": "timeoutSeconds",
35917          "type": "integer",
35918          "uniqueItems": true
35919        },
35920        {
35921          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35922          "in": "query",
35923          "name": "watch",
35924          "type": "boolean",
35925          "uniqueItems": true
35926        }
35927      ]
35928    },
35929    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
35930      "get": {
35931        "consumes": [
35932          "*/*"
35933        ],
35934        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
35935        "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
35936        "produces": [
35937          "application/json",
35938          "application/yaml",
35939          "application/vnd.kubernetes.protobuf",
35940          "application/json;stream=watch",
35941          "application/vnd.kubernetes.protobuf;stream=watch"
35942        ],
35943        "responses": {
35944          "200": {
35945            "description": "OK",
35946            "schema": {
35947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35948            }
35949          },
35950          "401": {
35951            "description": "Unauthorized"
35952          }
35953        },
35954        "schemes": [
35955          "https"
35956        ],
35957        "tags": [
35958          "core_v1"
35959        ],
35960        "x-kubernetes-action": "watchlist",
35961        "x-kubernetes-group-version-kind": {
35962          "group": "",
35963          "kind": "PersistentVolumeClaim",
35964          "version": "v1"
35965        }
35966      },
35967      "parameters": [
35968        {
35969          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
35970          "in": "query",
35971          "name": "allowWatchBookmarks",
35972          "type": "boolean",
35973          "uniqueItems": true
35974        },
35975        {
35976          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35977          "in": "query",
35978          "name": "continue",
35979          "type": "string",
35980          "uniqueItems": true
35981        },
35982        {
35983          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35984          "in": "query",
35985          "name": "fieldSelector",
35986          "type": "string",
35987          "uniqueItems": true
35988        },
35989        {
35990          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35991          "in": "query",
35992          "name": "labelSelector",
35993          "type": "string",
35994          "uniqueItems": true
35995        },
35996        {
35997          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35998          "in": "query",
35999          "name": "limit",
36000          "type": "integer",
36001          "uniqueItems": true
36002        },
36003        {
36004          "description": "object name and auth scope, such as for teams and projects",
36005          "in": "path",
36006          "name": "namespace",
36007          "required": true,
36008          "type": "string",
36009          "uniqueItems": true
36010        },
36011        {
36012          "description": "If 'true', then the output is pretty printed.",
36013          "in": "query",
36014          "name": "pretty",
36015          "type": "string",
36016          "uniqueItems": true
36017        },
36018        {
36019          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36020          "in": "query",
36021          "name": "resourceVersion",
36022          "type": "string",
36023          "uniqueItems": true
36024        },
36025        {
36026          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36027          "in": "query",
36028          "name": "resourceVersionMatch",
36029          "type": "string",
36030          "uniqueItems": true
36031        },
36032        {
36033          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36034          "in": "query",
36035          "name": "timeoutSeconds",
36036          "type": "integer",
36037          "uniqueItems": true
36038        },
36039        {
36040          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36041          "in": "query",
36042          "name": "watch",
36043          "type": "boolean",
36044          "uniqueItems": true
36045        }
36046      ]
36047    },
36048    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
36049      "get": {
36050        "consumes": [
36051          "*/*"
36052        ],
36053        "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.",
36054        "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
36055        "produces": [
36056          "application/json",
36057          "application/yaml",
36058          "application/vnd.kubernetes.protobuf",
36059          "application/json;stream=watch",
36060          "application/vnd.kubernetes.protobuf;stream=watch"
36061        ],
36062        "responses": {
36063          "200": {
36064            "description": "OK",
36065            "schema": {
36066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36067            }
36068          },
36069          "401": {
36070            "description": "Unauthorized"
36071          }
36072        },
36073        "schemes": [
36074          "https"
36075        ],
36076        "tags": [
36077          "core_v1"
36078        ],
36079        "x-kubernetes-action": "watch",
36080        "x-kubernetes-group-version-kind": {
36081          "group": "",
36082          "kind": "PersistentVolumeClaim",
36083          "version": "v1"
36084        }
36085      },
36086      "parameters": [
36087        {
36088          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36089          "in": "query",
36090          "name": "allowWatchBookmarks",
36091          "type": "boolean",
36092          "uniqueItems": true
36093        },
36094        {
36095          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36096          "in": "query",
36097          "name": "continue",
36098          "type": "string",
36099          "uniqueItems": true
36100        },
36101        {
36102          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36103          "in": "query",
36104          "name": "fieldSelector",
36105          "type": "string",
36106          "uniqueItems": true
36107        },
36108        {
36109          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36110          "in": "query",
36111          "name": "labelSelector",
36112          "type": "string",
36113          "uniqueItems": true
36114        },
36115        {
36116          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36117          "in": "query",
36118          "name": "limit",
36119          "type": "integer",
36120          "uniqueItems": true
36121        },
36122        {
36123          "description": "name of the PersistentVolumeClaim",
36124          "in": "path",
36125          "name": "name",
36126          "required": true,
36127          "type": "string",
36128          "uniqueItems": true
36129        },
36130        {
36131          "description": "object name and auth scope, such as for teams and projects",
36132          "in": "path",
36133          "name": "namespace",
36134          "required": true,
36135          "type": "string",
36136          "uniqueItems": true
36137        },
36138        {
36139          "description": "If 'true', then the output is pretty printed.",
36140          "in": "query",
36141          "name": "pretty",
36142          "type": "string",
36143          "uniqueItems": true
36144        },
36145        {
36146          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36147          "in": "query",
36148          "name": "resourceVersion",
36149          "type": "string",
36150          "uniqueItems": true
36151        },
36152        {
36153          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36154          "in": "query",
36155          "name": "resourceVersionMatch",
36156          "type": "string",
36157          "uniqueItems": true
36158        },
36159        {
36160          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36161          "in": "query",
36162          "name": "timeoutSeconds",
36163          "type": "integer",
36164          "uniqueItems": true
36165        },
36166        {
36167          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36168          "in": "query",
36169          "name": "watch",
36170          "type": "boolean",
36171          "uniqueItems": true
36172        }
36173      ]
36174    },
36175    "/api/v1/watch/namespaces/{namespace}/pods": {
36176      "get": {
36177        "consumes": [
36178          "*/*"
36179        ],
36180        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
36181        "operationId": "watchCoreV1NamespacedPodList",
36182        "produces": [
36183          "application/json",
36184          "application/yaml",
36185          "application/vnd.kubernetes.protobuf",
36186          "application/json;stream=watch",
36187          "application/vnd.kubernetes.protobuf;stream=watch"
36188        ],
36189        "responses": {
36190          "200": {
36191            "description": "OK",
36192            "schema": {
36193              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36194            }
36195          },
36196          "401": {
36197            "description": "Unauthorized"
36198          }
36199        },
36200        "schemes": [
36201          "https"
36202        ],
36203        "tags": [
36204          "core_v1"
36205        ],
36206        "x-kubernetes-action": "watchlist",
36207        "x-kubernetes-group-version-kind": {
36208          "group": "",
36209          "kind": "Pod",
36210          "version": "v1"
36211        }
36212      },
36213      "parameters": [
36214        {
36215          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36216          "in": "query",
36217          "name": "allowWatchBookmarks",
36218          "type": "boolean",
36219          "uniqueItems": true
36220        },
36221        {
36222          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36223          "in": "query",
36224          "name": "continue",
36225          "type": "string",
36226          "uniqueItems": true
36227        },
36228        {
36229          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36230          "in": "query",
36231          "name": "fieldSelector",
36232          "type": "string",
36233          "uniqueItems": true
36234        },
36235        {
36236          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36237          "in": "query",
36238          "name": "labelSelector",
36239          "type": "string",
36240          "uniqueItems": true
36241        },
36242        {
36243          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36244          "in": "query",
36245          "name": "limit",
36246          "type": "integer",
36247          "uniqueItems": true
36248        },
36249        {
36250          "description": "object name and auth scope, such as for teams and projects",
36251          "in": "path",
36252          "name": "namespace",
36253          "required": true,
36254          "type": "string",
36255          "uniqueItems": true
36256        },
36257        {
36258          "description": "If 'true', then the output is pretty printed.",
36259          "in": "query",
36260          "name": "pretty",
36261          "type": "string",
36262          "uniqueItems": true
36263        },
36264        {
36265          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36266          "in": "query",
36267          "name": "resourceVersion",
36268          "type": "string",
36269          "uniqueItems": true
36270        },
36271        {
36272          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36273          "in": "query",
36274          "name": "resourceVersionMatch",
36275          "type": "string",
36276          "uniqueItems": true
36277        },
36278        {
36279          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36280          "in": "query",
36281          "name": "timeoutSeconds",
36282          "type": "integer",
36283          "uniqueItems": true
36284        },
36285        {
36286          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36287          "in": "query",
36288          "name": "watch",
36289          "type": "boolean",
36290          "uniqueItems": true
36291        }
36292      ]
36293    },
36294    "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
36295      "get": {
36296        "consumes": [
36297          "*/*"
36298        ],
36299        "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.",
36300        "operationId": "watchCoreV1NamespacedPod",
36301        "produces": [
36302          "application/json",
36303          "application/yaml",
36304          "application/vnd.kubernetes.protobuf",
36305          "application/json;stream=watch",
36306          "application/vnd.kubernetes.protobuf;stream=watch"
36307        ],
36308        "responses": {
36309          "200": {
36310            "description": "OK",
36311            "schema": {
36312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36313            }
36314          },
36315          "401": {
36316            "description": "Unauthorized"
36317          }
36318        },
36319        "schemes": [
36320          "https"
36321        ],
36322        "tags": [
36323          "core_v1"
36324        ],
36325        "x-kubernetes-action": "watch",
36326        "x-kubernetes-group-version-kind": {
36327          "group": "",
36328          "kind": "Pod",
36329          "version": "v1"
36330        }
36331      },
36332      "parameters": [
36333        {
36334          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36335          "in": "query",
36336          "name": "allowWatchBookmarks",
36337          "type": "boolean",
36338          "uniqueItems": true
36339        },
36340        {
36341          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36342          "in": "query",
36343          "name": "continue",
36344          "type": "string",
36345          "uniqueItems": true
36346        },
36347        {
36348          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36349          "in": "query",
36350          "name": "fieldSelector",
36351          "type": "string",
36352          "uniqueItems": true
36353        },
36354        {
36355          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36356          "in": "query",
36357          "name": "labelSelector",
36358          "type": "string",
36359          "uniqueItems": true
36360        },
36361        {
36362          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36363          "in": "query",
36364          "name": "limit",
36365          "type": "integer",
36366          "uniqueItems": true
36367        },
36368        {
36369          "description": "name of the Pod",
36370          "in": "path",
36371          "name": "name",
36372          "required": true,
36373          "type": "string",
36374          "uniqueItems": true
36375        },
36376        {
36377          "description": "object name and auth scope, such as for teams and projects",
36378          "in": "path",
36379          "name": "namespace",
36380          "required": true,
36381          "type": "string",
36382          "uniqueItems": true
36383        },
36384        {
36385          "description": "If 'true', then the output is pretty printed.",
36386          "in": "query",
36387          "name": "pretty",
36388          "type": "string",
36389          "uniqueItems": true
36390        },
36391        {
36392          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36393          "in": "query",
36394          "name": "resourceVersion",
36395          "type": "string",
36396          "uniqueItems": true
36397        },
36398        {
36399          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36400          "in": "query",
36401          "name": "resourceVersionMatch",
36402          "type": "string",
36403          "uniqueItems": true
36404        },
36405        {
36406          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36407          "in": "query",
36408          "name": "timeoutSeconds",
36409          "type": "integer",
36410          "uniqueItems": true
36411        },
36412        {
36413          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36414          "in": "query",
36415          "name": "watch",
36416          "type": "boolean",
36417          "uniqueItems": true
36418        }
36419      ]
36420    },
36421    "/api/v1/watch/namespaces/{namespace}/podtemplates": {
36422      "get": {
36423        "consumes": [
36424          "*/*"
36425        ],
36426        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
36427        "operationId": "watchCoreV1NamespacedPodTemplateList",
36428        "produces": [
36429          "application/json",
36430          "application/yaml",
36431          "application/vnd.kubernetes.protobuf",
36432          "application/json;stream=watch",
36433          "application/vnd.kubernetes.protobuf;stream=watch"
36434        ],
36435        "responses": {
36436          "200": {
36437            "description": "OK",
36438            "schema": {
36439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36440            }
36441          },
36442          "401": {
36443            "description": "Unauthorized"
36444          }
36445        },
36446        "schemes": [
36447          "https"
36448        ],
36449        "tags": [
36450          "core_v1"
36451        ],
36452        "x-kubernetes-action": "watchlist",
36453        "x-kubernetes-group-version-kind": {
36454          "group": "",
36455          "kind": "PodTemplate",
36456          "version": "v1"
36457        }
36458      },
36459      "parameters": [
36460        {
36461          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36462          "in": "query",
36463          "name": "allowWatchBookmarks",
36464          "type": "boolean",
36465          "uniqueItems": true
36466        },
36467        {
36468          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36469          "in": "query",
36470          "name": "continue",
36471          "type": "string",
36472          "uniqueItems": true
36473        },
36474        {
36475          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36476          "in": "query",
36477          "name": "fieldSelector",
36478          "type": "string",
36479          "uniqueItems": true
36480        },
36481        {
36482          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36483          "in": "query",
36484          "name": "labelSelector",
36485          "type": "string",
36486          "uniqueItems": true
36487        },
36488        {
36489          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36490          "in": "query",
36491          "name": "limit",
36492          "type": "integer",
36493          "uniqueItems": true
36494        },
36495        {
36496          "description": "object name and auth scope, such as for teams and projects",
36497          "in": "path",
36498          "name": "namespace",
36499          "required": true,
36500          "type": "string",
36501          "uniqueItems": true
36502        },
36503        {
36504          "description": "If 'true', then the output is pretty printed.",
36505          "in": "query",
36506          "name": "pretty",
36507          "type": "string",
36508          "uniqueItems": true
36509        },
36510        {
36511          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36512          "in": "query",
36513          "name": "resourceVersion",
36514          "type": "string",
36515          "uniqueItems": true
36516        },
36517        {
36518          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36519          "in": "query",
36520          "name": "resourceVersionMatch",
36521          "type": "string",
36522          "uniqueItems": true
36523        },
36524        {
36525          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36526          "in": "query",
36527          "name": "timeoutSeconds",
36528          "type": "integer",
36529          "uniqueItems": true
36530        },
36531        {
36532          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36533          "in": "query",
36534          "name": "watch",
36535          "type": "boolean",
36536          "uniqueItems": true
36537        }
36538      ]
36539    },
36540    "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
36541      "get": {
36542        "consumes": [
36543          "*/*"
36544        ],
36545        "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.",
36546        "operationId": "watchCoreV1NamespacedPodTemplate",
36547        "produces": [
36548          "application/json",
36549          "application/yaml",
36550          "application/vnd.kubernetes.protobuf",
36551          "application/json;stream=watch",
36552          "application/vnd.kubernetes.protobuf;stream=watch"
36553        ],
36554        "responses": {
36555          "200": {
36556            "description": "OK",
36557            "schema": {
36558              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36559            }
36560          },
36561          "401": {
36562            "description": "Unauthorized"
36563          }
36564        },
36565        "schemes": [
36566          "https"
36567        ],
36568        "tags": [
36569          "core_v1"
36570        ],
36571        "x-kubernetes-action": "watch",
36572        "x-kubernetes-group-version-kind": {
36573          "group": "",
36574          "kind": "PodTemplate",
36575          "version": "v1"
36576        }
36577      },
36578      "parameters": [
36579        {
36580          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36581          "in": "query",
36582          "name": "allowWatchBookmarks",
36583          "type": "boolean",
36584          "uniqueItems": true
36585        },
36586        {
36587          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36588          "in": "query",
36589          "name": "continue",
36590          "type": "string",
36591          "uniqueItems": true
36592        },
36593        {
36594          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36595          "in": "query",
36596          "name": "fieldSelector",
36597          "type": "string",
36598          "uniqueItems": true
36599        },
36600        {
36601          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36602          "in": "query",
36603          "name": "labelSelector",
36604          "type": "string",
36605          "uniqueItems": true
36606        },
36607        {
36608          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36609          "in": "query",
36610          "name": "limit",
36611          "type": "integer",
36612          "uniqueItems": true
36613        },
36614        {
36615          "description": "name of the PodTemplate",
36616          "in": "path",
36617          "name": "name",
36618          "required": true,
36619          "type": "string",
36620          "uniqueItems": true
36621        },
36622        {
36623          "description": "object name and auth scope, such as for teams and projects",
36624          "in": "path",
36625          "name": "namespace",
36626          "required": true,
36627          "type": "string",
36628          "uniqueItems": true
36629        },
36630        {
36631          "description": "If 'true', then the output is pretty printed.",
36632          "in": "query",
36633          "name": "pretty",
36634          "type": "string",
36635          "uniqueItems": true
36636        },
36637        {
36638          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36639          "in": "query",
36640          "name": "resourceVersion",
36641          "type": "string",
36642          "uniqueItems": true
36643        },
36644        {
36645          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36646          "in": "query",
36647          "name": "resourceVersionMatch",
36648          "type": "string",
36649          "uniqueItems": true
36650        },
36651        {
36652          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36653          "in": "query",
36654          "name": "timeoutSeconds",
36655          "type": "integer",
36656          "uniqueItems": true
36657        },
36658        {
36659          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36660          "in": "query",
36661          "name": "watch",
36662          "type": "boolean",
36663          "uniqueItems": true
36664        }
36665      ]
36666    },
36667    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
36668      "get": {
36669        "consumes": [
36670          "*/*"
36671        ],
36672        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
36673        "operationId": "watchCoreV1NamespacedReplicationControllerList",
36674        "produces": [
36675          "application/json",
36676          "application/yaml",
36677          "application/vnd.kubernetes.protobuf",
36678          "application/json;stream=watch",
36679          "application/vnd.kubernetes.protobuf;stream=watch"
36680        ],
36681        "responses": {
36682          "200": {
36683            "description": "OK",
36684            "schema": {
36685              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36686            }
36687          },
36688          "401": {
36689            "description": "Unauthorized"
36690          }
36691        },
36692        "schemes": [
36693          "https"
36694        ],
36695        "tags": [
36696          "core_v1"
36697        ],
36698        "x-kubernetes-action": "watchlist",
36699        "x-kubernetes-group-version-kind": {
36700          "group": "",
36701          "kind": "ReplicationController",
36702          "version": "v1"
36703        }
36704      },
36705      "parameters": [
36706        {
36707          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36708          "in": "query",
36709          "name": "allowWatchBookmarks",
36710          "type": "boolean",
36711          "uniqueItems": true
36712        },
36713        {
36714          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36715          "in": "query",
36716          "name": "continue",
36717          "type": "string",
36718          "uniqueItems": true
36719        },
36720        {
36721          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36722          "in": "query",
36723          "name": "fieldSelector",
36724          "type": "string",
36725          "uniqueItems": true
36726        },
36727        {
36728          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36729          "in": "query",
36730          "name": "labelSelector",
36731          "type": "string",
36732          "uniqueItems": true
36733        },
36734        {
36735          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36736          "in": "query",
36737          "name": "limit",
36738          "type": "integer",
36739          "uniqueItems": true
36740        },
36741        {
36742          "description": "object name and auth scope, such as for teams and projects",
36743          "in": "path",
36744          "name": "namespace",
36745          "required": true,
36746          "type": "string",
36747          "uniqueItems": true
36748        },
36749        {
36750          "description": "If 'true', then the output is pretty printed.",
36751          "in": "query",
36752          "name": "pretty",
36753          "type": "string",
36754          "uniqueItems": true
36755        },
36756        {
36757          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36758          "in": "query",
36759          "name": "resourceVersion",
36760          "type": "string",
36761          "uniqueItems": true
36762        },
36763        {
36764          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36765          "in": "query",
36766          "name": "resourceVersionMatch",
36767          "type": "string",
36768          "uniqueItems": true
36769        },
36770        {
36771          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36772          "in": "query",
36773          "name": "timeoutSeconds",
36774          "type": "integer",
36775          "uniqueItems": true
36776        },
36777        {
36778          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36779          "in": "query",
36780          "name": "watch",
36781          "type": "boolean",
36782          "uniqueItems": true
36783        }
36784      ]
36785    },
36786    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
36787      "get": {
36788        "consumes": [
36789          "*/*"
36790        ],
36791        "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.",
36792        "operationId": "watchCoreV1NamespacedReplicationController",
36793        "produces": [
36794          "application/json",
36795          "application/yaml",
36796          "application/vnd.kubernetes.protobuf",
36797          "application/json;stream=watch",
36798          "application/vnd.kubernetes.protobuf;stream=watch"
36799        ],
36800        "responses": {
36801          "200": {
36802            "description": "OK",
36803            "schema": {
36804              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36805            }
36806          },
36807          "401": {
36808            "description": "Unauthorized"
36809          }
36810        },
36811        "schemes": [
36812          "https"
36813        ],
36814        "tags": [
36815          "core_v1"
36816        ],
36817        "x-kubernetes-action": "watch",
36818        "x-kubernetes-group-version-kind": {
36819          "group": "",
36820          "kind": "ReplicationController",
36821          "version": "v1"
36822        }
36823      },
36824      "parameters": [
36825        {
36826          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36827          "in": "query",
36828          "name": "allowWatchBookmarks",
36829          "type": "boolean",
36830          "uniqueItems": true
36831        },
36832        {
36833          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36834          "in": "query",
36835          "name": "continue",
36836          "type": "string",
36837          "uniqueItems": true
36838        },
36839        {
36840          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36841          "in": "query",
36842          "name": "fieldSelector",
36843          "type": "string",
36844          "uniqueItems": true
36845        },
36846        {
36847          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36848          "in": "query",
36849          "name": "labelSelector",
36850          "type": "string",
36851          "uniqueItems": true
36852        },
36853        {
36854          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36855          "in": "query",
36856          "name": "limit",
36857          "type": "integer",
36858          "uniqueItems": true
36859        },
36860        {
36861          "description": "name of the ReplicationController",
36862          "in": "path",
36863          "name": "name",
36864          "required": true,
36865          "type": "string",
36866          "uniqueItems": true
36867        },
36868        {
36869          "description": "object name and auth scope, such as for teams and projects",
36870          "in": "path",
36871          "name": "namespace",
36872          "required": true,
36873          "type": "string",
36874          "uniqueItems": true
36875        },
36876        {
36877          "description": "If 'true', then the output is pretty printed.",
36878          "in": "query",
36879          "name": "pretty",
36880          "type": "string",
36881          "uniqueItems": true
36882        },
36883        {
36884          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36885          "in": "query",
36886          "name": "resourceVersion",
36887          "type": "string",
36888          "uniqueItems": true
36889        },
36890        {
36891          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36892          "in": "query",
36893          "name": "resourceVersionMatch",
36894          "type": "string",
36895          "uniqueItems": true
36896        },
36897        {
36898          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36899          "in": "query",
36900          "name": "timeoutSeconds",
36901          "type": "integer",
36902          "uniqueItems": true
36903        },
36904        {
36905          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36906          "in": "query",
36907          "name": "watch",
36908          "type": "boolean",
36909          "uniqueItems": true
36910        }
36911      ]
36912    },
36913    "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
36914      "get": {
36915        "consumes": [
36916          "*/*"
36917        ],
36918        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
36919        "operationId": "watchCoreV1NamespacedResourceQuotaList",
36920        "produces": [
36921          "application/json",
36922          "application/yaml",
36923          "application/vnd.kubernetes.protobuf",
36924          "application/json;stream=watch",
36925          "application/vnd.kubernetes.protobuf;stream=watch"
36926        ],
36927        "responses": {
36928          "200": {
36929            "description": "OK",
36930            "schema": {
36931              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36932            }
36933          },
36934          "401": {
36935            "description": "Unauthorized"
36936          }
36937        },
36938        "schemes": [
36939          "https"
36940        ],
36941        "tags": [
36942          "core_v1"
36943        ],
36944        "x-kubernetes-action": "watchlist",
36945        "x-kubernetes-group-version-kind": {
36946          "group": "",
36947          "kind": "ResourceQuota",
36948          "version": "v1"
36949        }
36950      },
36951      "parameters": [
36952        {
36953          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
36954          "in": "query",
36955          "name": "allowWatchBookmarks",
36956          "type": "boolean",
36957          "uniqueItems": true
36958        },
36959        {
36960          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36961          "in": "query",
36962          "name": "continue",
36963          "type": "string",
36964          "uniqueItems": true
36965        },
36966        {
36967          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36968          "in": "query",
36969          "name": "fieldSelector",
36970          "type": "string",
36971          "uniqueItems": true
36972        },
36973        {
36974          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36975          "in": "query",
36976          "name": "labelSelector",
36977          "type": "string",
36978          "uniqueItems": true
36979        },
36980        {
36981          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36982          "in": "query",
36983          "name": "limit",
36984          "type": "integer",
36985          "uniqueItems": true
36986        },
36987        {
36988          "description": "object name and auth scope, such as for teams and projects",
36989          "in": "path",
36990          "name": "namespace",
36991          "required": true,
36992          "type": "string",
36993          "uniqueItems": true
36994        },
36995        {
36996          "description": "If 'true', then the output is pretty printed.",
36997          "in": "query",
36998          "name": "pretty",
36999          "type": "string",
37000          "uniqueItems": true
37001        },
37002        {
37003          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37004          "in": "query",
37005          "name": "resourceVersion",
37006          "type": "string",
37007          "uniqueItems": true
37008        },
37009        {
37010          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37011          "in": "query",
37012          "name": "resourceVersionMatch",
37013          "type": "string",
37014          "uniqueItems": true
37015        },
37016        {
37017          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37018          "in": "query",
37019          "name": "timeoutSeconds",
37020          "type": "integer",
37021          "uniqueItems": true
37022        },
37023        {
37024          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37025          "in": "query",
37026          "name": "watch",
37027          "type": "boolean",
37028          "uniqueItems": true
37029        }
37030      ]
37031    },
37032    "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
37033      "get": {
37034        "consumes": [
37035          "*/*"
37036        ],
37037        "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.",
37038        "operationId": "watchCoreV1NamespacedResourceQuota",
37039        "produces": [
37040          "application/json",
37041          "application/yaml",
37042          "application/vnd.kubernetes.protobuf",
37043          "application/json;stream=watch",
37044          "application/vnd.kubernetes.protobuf;stream=watch"
37045        ],
37046        "responses": {
37047          "200": {
37048            "description": "OK",
37049            "schema": {
37050              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37051            }
37052          },
37053          "401": {
37054            "description": "Unauthorized"
37055          }
37056        },
37057        "schemes": [
37058          "https"
37059        ],
37060        "tags": [
37061          "core_v1"
37062        ],
37063        "x-kubernetes-action": "watch",
37064        "x-kubernetes-group-version-kind": {
37065          "group": "",
37066          "kind": "ResourceQuota",
37067          "version": "v1"
37068        }
37069      },
37070      "parameters": [
37071        {
37072          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37073          "in": "query",
37074          "name": "allowWatchBookmarks",
37075          "type": "boolean",
37076          "uniqueItems": true
37077        },
37078        {
37079          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37080          "in": "query",
37081          "name": "continue",
37082          "type": "string",
37083          "uniqueItems": true
37084        },
37085        {
37086          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37087          "in": "query",
37088          "name": "fieldSelector",
37089          "type": "string",
37090          "uniqueItems": true
37091        },
37092        {
37093          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37094          "in": "query",
37095          "name": "labelSelector",
37096          "type": "string",
37097          "uniqueItems": true
37098        },
37099        {
37100          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37101          "in": "query",
37102          "name": "limit",
37103          "type": "integer",
37104          "uniqueItems": true
37105        },
37106        {
37107          "description": "name of the ResourceQuota",
37108          "in": "path",
37109          "name": "name",
37110          "required": true,
37111          "type": "string",
37112          "uniqueItems": true
37113        },
37114        {
37115          "description": "object name and auth scope, such as for teams and projects",
37116          "in": "path",
37117          "name": "namespace",
37118          "required": true,
37119          "type": "string",
37120          "uniqueItems": true
37121        },
37122        {
37123          "description": "If 'true', then the output is pretty printed.",
37124          "in": "query",
37125          "name": "pretty",
37126          "type": "string",
37127          "uniqueItems": true
37128        },
37129        {
37130          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37131          "in": "query",
37132          "name": "resourceVersion",
37133          "type": "string",
37134          "uniqueItems": true
37135        },
37136        {
37137          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37138          "in": "query",
37139          "name": "resourceVersionMatch",
37140          "type": "string",
37141          "uniqueItems": true
37142        },
37143        {
37144          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37145          "in": "query",
37146          "name": "timeoutSeconds",
37147          "type": "integer",
37148          "uniqueItems": true
37149        },
37150        {
37151          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37152          "in": "query",
37153          "name": "watch",
37154          "type": "boolean",
37155          "uniqueItems": true
37156        }
37157      ]
37158    },
37159    "/api/v1/watch/namespaces/{namespace}/secrets": {
37160      "get": {
37161        "consumes": [
37162          "*/*"
37163        ],
37164        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
37165        "operationId": "watchCoreV1NamespacedSecretList",
37166        "produces": [
37167          "application/json",
37168          "application/yaml",
37169          "application/vnd.kubernetes.protobuf",
37170          "application/json;stream=watch",
37171          "application/vnd.kubernetes.protobuf;stream=watch"
37172        ],
37173        "responses": {
37174          "200": {
37175            "description": "OK",
37176            "schema": {
37177              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37178            }
37179          },
37180          "401": {
37181            "description": "Unauthorized"
37182          }
37183        },
37184        "schemes": [
37185          "https"
37186        ],
37187        "tags": [
37188          "core_v1"
37189        ],
37190        "x-kubernetes-action": "watchlist",
37191        "x-kubernetes-group-version-kind": {
37192          "group": "",
37193          "kind": "Secret",
37194          "version": "v1"
37195        }
37196      },
37197      "parameters": [
37198        {
37199          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37200          "in": "query",
37201          "name": "allowWatchBookmarks",
37202          "type": "boolean",
37203          "uniqueItems": true
37204        },
37205        {
37206          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37207          "in": "query",
37208          "name": "continue",
37209          "type": "string",
37210          "uniqueItems": true
37211        },
37212        {
37213          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37214          "in": "query",
37215          "name": "fieldSelector",
37216          "type": "string",
37217          "uniqueItems": true
37218        },
37219        {
37220          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37221          "in": "query",
37222          "name": "labelSelector",
37223          "type": "string",
37224          "uniqueItems": true
37225        },
37226        {
37227          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37228          "in": "query",
37229          "name": "limit",
37230          "type": "integer",
37231          "uniqueItems": true
37232        },
37233        {
37234          "description": "object name and auth scope, such as for teams and projects",
37235          "in": "path",
37236          "name": "namespace",
37237          "required": true,
37238          "type": "string",
37239          "uniqueItems": true
37240        },
37241        {
37242          "description": "If 'true', then the output is pretty printed.",
37243          "in": "query",
37244          "name": "pretty",
37245          "type": "string",
37246          "uniqueItems": true
37247        },
37248        {
37249          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37250          "in": "query",
37251          "name": "resourceVersion",
37252          "type": "string",
37253          "uniqueItems": true
37254        },
37255        {
37256          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37257          "in": "query",
37258          "name": "resourceVersionMatch",
37259          "type": "string",
37260          "uniqueItems": true
37261        },
37262        {
37263          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37264          "in": "query",
37265          "name": "timeoutSeconds",
37266          "type": "integer",
37267          "uniqueItems": true
37268        },
37269        {
37270          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37271          "in": "query",
37272          "name": "watch",
37273          "type": "boolean",
37274          "uniqueItems": true
37275        }
37276      ]
37277    },
37278    "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
37279      "get": {
37280        "consumes": [
37281          "*/*"
37282        ],
37283        "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.",
37284        "operationId": "watchCoreV1NamespacedSecret",
37285        "produces": [
37286          "application/json",
37287          "application/yaml",
37288          "application/vnd.kubernetes.protobuf",
37289          "application/json;stream=watch",
37290          "application/vnd.kubernetes.protobuf;stream=watch"
37291        ],
37292        "responses": {
37293          "200": {
37294            "description": "OK",
37295            "schema": {
37296              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37297            }
37298          },
37299          "401": {
37300            "description": "Unauthorized"
37301          }
37302        },
37303        "schemes": [
37304          "https"
37305        ],
37306        "tags": [
37307          "core_v1"
37308        ],
37309        "x-kubernetes-action": "watch",
37310        "x-kubernetes-group-version-kind": {
37311          "group": "",
37312          "kind": "Secret",
37313          "version": "v1"
37314        }
37315      },
37316      "parameters": [
37317        {
37318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37319          "in": "query",
37320          "name": "allowWatchBookmarks",
37321          "type": "boolean",
37322          "uniqueItems": true
37323        },
37324        {
37325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37326          "in": "query",
37327          "name": "continue",
37328          "type": "string",
37329          "uniqueItems": true
37330        },
37331        {
37332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37333          "in": "query",
37334          "name": "fieldSelector",
37335          "type": "string",
37336          "uniqueItems": true
37337        },
37338        {
37339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37340          "in": "query",
37341          "name": "labelSelector",
37342          "type": "string",
37343          "uniqueItems": true
37344        },
37345        {
37346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37347          "in": "query",
37348          "name": "limit",
37349          "type": "integer",
37350          "uniqueItems": true
37351        },
37352        {
37353          "description": "name of the Secret",
37354          "in": "path",
37355          "name": "name",
37356          "required": true,
37357          "type": "string",
37358          "uniqueItems": true
37359        },
37360        {
37361          "description": "object name and auth scope, such as for teams and projects",
37362          "in": "path",
37363          "name": "namespace",
37364          "required": true,
37365          "type": "string",
37366          "uniqueItems": true
37367        },
37368        {
37369          "description": "If 'true', then the output is pretty printed.",
37370          "in": "query",
37371          "name": "pretty",
37372          "type": "string",
37373          "uniqueItems": true
37374        },
37375        {
37376          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37377          "in": "query",
37378          "name": "resourceVersion",
37379          "type": "string",
37380          "uniqueItems": true
37381        },
37382        {
37383          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37384          "in": "query",
37385          "name": "resourceVersionMatch",
37386          "type": "string",
37387          "uniqueItems": true
37388        },
37389        {
37390          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37391          "in": "query",
37392          "name": "timeoutSeconds",
37393          "type": "integer",
37394          "uniqueItems": true
37395        },
37396        {
37397          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37398          "in": "query",
37399          "name": "watch",
37400          "type": "boolean",
37401          "uniqueItems": true
37402        }
37403      ]
37404    },
37405    "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
37406      "get": {
37407        "consumes": [
37408          "*/*"
37409        ],
37410        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
37411        "operationId": "watchCoreV1NamespacedServiceAccountList",
37412        "produces": [
37413          "application/json",
37414          "application/yaml",
37415          "application/vnd.kubernetes.protobuf",
37416          "application/json;stream=watch",
37417          "application/vnd.kubernetes.protobuf;stream=watch"
37418        ],
37419        "responses": {
37420          "200": {
37421            "description": "OK",
37422            "schema": {
37423              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37424            }
37425          },
37426          "401": {
37427            "description": "Unauthorized"
37428          }
37429        },
37430        "schemes": [
37431          "https"
37432        ],
37433        "tags": [
37434          "core_v1"
37435        ],
37436        "x-kubernetes-action": "watchlist",
37437        "x-kubernetes-group-version-kind": {
37438          "group": "",
37439          "kind": "ServiceAccount",
37440          "version": "v1"
37441        }
37442      },
37443      "parameters": [
37444        {
37445          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37446          "in": "query",
37447          "name": "allowWatchBookmarks",
37448          "type": "boolean",
37449          "uniqueItems": true
37450        },
37451        {
37452          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37453          "in": "query",
37454          "name": "continue",
37455          "type": "string",
37456          "uniqueItems": true
37457        },
37458        {
37459          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37460          "in": "query",
37461          "name": "fieldSelector",
37462          "type": "string",
37463          "uniqueItems": true
37464        },
37465        {
37466          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37467          "in": "query",
37468          "name": "labelSelector",
37469          "type": "string",
37470          "uniqueItems": true
37471        },
37472        {
37473          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37474          "in": "query",
37475          "name": "limit",
37476          "type": "integer",
37477          "uniqueItems": true
37478        },
37479        {
37480          "description": "object name and auth scope, such as for teams and projects",
37481          "in": "path",
37482          "name": "namespace",
37483          "required": true,
37484          "type": "string",
37485          "uniqueItems": true
37486        },
37487        {
37488          "description": "If 'true', then the output is pretty printed.",
37489          "in": "query",
37490          "name": "pretty",
37491          "type": "string",
37492          "uniqueItems": true
37493        },
37494        {
37495          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37496          "in": "query",
37497          "name": "resourceVersion",
37498          "type": "string",
37499          "uniqueItems": true
37500        },
37501        {
37502          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37503          "in": "query",
37504          "name": "resourceVersionMatch",
37505          "type": "string",
37506          "uniqueItems": true
37507        },
37508        {
37509          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37510          "in": "query",
37511          "name": "timeoutSeconds",
37512          "type": "integer",
37513          "uniqueItems": true
37514        },
37515        {
37516          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37517          "in": "query",
37518          "name": "watch",
37519          "type": "boolean",
37520          "uniqueItems": true
37521        }
37522      ]
37523    },
37524    "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
37525      "get": {
37526        "consumes": [
37527          "*/*"
37528        ],
37529        "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.",
37530        "operationId": "watchCoreV1NamespacedServiceAccount",
37531        "produces": [
37532          "application/json",
37533          "application/yaml",
37534          "application/vnd.kubernetes.protobuf",
37535          "application/json;stream=watch",
37536          "application/vnd.kubernetes.protobuf;stream=watch"
37537        ],
37538        "responses": {
37539          "200": {
37540            "description": "OK",
37541            "schema": {
37542              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37543            }
37544          },
37545          "401": {
37546            "description": "Unauthorized"
37547          }
37548        },
37549        "schemes": [
37550          "https"
37551        ],
37552        "tags": [
37553          "core_v1"
37554        ],
37555        "x-kubernetes-action": "watch",
37556        "x-kubernetes-group-version-kind": {
37557          "group": "",
37558          "kind": "ServiceAccount",
37559          "version": "v1"
37560        }
37561      },
37562      "parameters": [
37563        {
37564          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37565          "in": "query",
37566          "name": "allowWatchBookmarks",
37567          "type": "boolean",
37568          "uniqueItems": true
37569        },
37570        {
37571          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37572          "in": "query",
37573          "name": "continue",
37574          "type": "string",
37575          "uniqueItems": true
37576        },
37577        {
37578          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37579          "in": "query",
37580          "name": "fieldSelector",
37581          "type": "string",
37582          "uniqueItems": true
37583        },
37584        {
37585          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37586          "in": "query",
37587          "name": "labelSelector",
37588          "type": "string",
37589          "uniqueItems": true
37590        },
37591        {
37592          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37593          "in": "query",
37594          "name": "limit",
37595          "type": "integer",
37596          "uniqueItems": true
37597        },
37598        {
37599          "description": "name of the ServiceAccount",
37600          "in": "path",
37601          "name": "name",
37602          "required": true,
37603          "type": "string",
37604          "uniqueItems": true
37605        },
37606        {
37607          "description": "object name and auth scope, such as for teams and projects",
37608          "in": "path",
37609          "name": "namespace",
37610          "required": true,
37611          "type": "string",
37612          "uniqueItems": true
37613        },
37614        {
37615          "description": "If 'true', then the output is pretty printed.",
37616          "in": "query",
37617          "name": "pretty",
37618          "type": "string",
37619          "uniqueItems": true
37620        },
37621        {
37622          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37623          "in": "query",
37624          "name": "resourceVersion",
37625          "type": "string",
37626          "uniqueItems": true
37627        },
37628        {
37629          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37630          "in": "query",
37631          "name": "resourceVersionMatch",
37632          "type": "string",
37633          "uniqueItems": true
37634        },
37635        {
37636          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37637          "in": "query",
37638          "name": "timeoutSeconds",
37639          "type": "integer",
37640          "uniqueItems": true
37641        },
37642        {
37643          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37644          "in": "query",
37645          "name": "watch",
37646          "type": "boolean",
37647          "uniqueItems": true
37648        }
37649      ]
37650    },
37651    "/api/v1/watch/namespaces/{namespace}/services": {
37652      "get": {
37653        "consumes": [
37654          "*/*"
37655        ],
37656        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
37657        "operationId": "watchCoreV1NamespacedServiceList",
37658        "produces": [
37659          "application/json",
37660          "application/yaml",
37661          "application/vnd.kubernetes.protobuf",
37662          "application/json;stream=watch",
37663          "application/vnd.kubernetes.protobuf;stream=watch"
37664        ],
37665        "responses": {
37666          "200": {
37667            "description": "OK",
37668            "schema": {
37669              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37670            }
37671          },
37672          "401": {
37673            "description": "Unauthorized"
37674          }
37675        },
37676        "schemes": [
37677          "https"
37678        ],
37679        "tags": [
37680          "core_v1"
37681        ],
37682        "x-kubernetes-action": "watchlist",
37683        "x-kubernetes-group-version-kind": {
37684          "group": "",
37685          "kind": "Service",
37686          "version": "v1"
37687        }
37688      },
37689      "parameters": [
37690        {
37691          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37692          "in": "query",
37693          "name": "allowWatchBookmarks",
37694          "type": "boolean",
37695          "uniqueItems": true
37696        },
37697        {
37698          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37699          "in": "query",
37700          "name": "continue",
37701          "type": "string",
37702          "uniqueItems": true
37703        },
37704        {
37705          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37706          "in": "query",
37707          "name": "fieldSelector",
37708          "type": "string",
37709          "uniqueItems": true
37710        },
37711        {
37712          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37713          "in": "query",
37714          "name": "labelSelector",
37715          "type": "string",
37716          "uniqueItems": true
37717        },
37718        {
37719          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37720          "in": "query",
37721          "name": "limit",
37722          "type": "integer",
37723          "uniqueItems": true
37724        },
37725        {
37726          "description": "object name and auth scope, such as for teams and projects",
37727          "in": "path",
37728          "name": "namespace",
37729          "required": true,
37730          "type": "string",
37731          "uniqueItems": true
37732        },
37733        {
37734          "description": "If 'true', then the output is pretty printed.",
37735          "in": "query",
37736          "name": "pretty",
37737          "type": "string",
37738          "uniqueItems": true
37739        },
37740        {
37741          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37742          "in": "query",
37743          "name": "resourceVersion",
37744          "type": "string",
37745          "uniqueItems": true
37746        },
37747        {
37748          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37749          "in": "query",
37750          "name": "resourceVersionMatch",
37751          "type": "string",
37752          "uniqueItems": true
37753        },
37754        {
37755          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37756          "in": "query",
37757          "name": "timeoutSeconds",
37758          "type": "integer",
37759          "uniqueItems": true
37760        },
37761        {
37762          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37763          "in": "query",
37764          "name": "watch",
37765          "type": "boolean",
37766          "uniqueItems": true
37767        }
37768      ]
37769    },
37770    "/api/v1/watch/namespaces/{namespace}/services/{name}": {
37771      "get": {
37772        "consumes": [
37773          "*/*"
37774        ],
37775        "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.",
37776        "operationId": "watchCoreV1NamespacedService",
37777        "produces": [
37778          "application/json",
37779          "application/yaml",
37780          "application/vnd.kubernetes.protobuf",
37781          "application/json;stream=watch",
37782          "application/vnd.kubernetes.protobuf;stream=watch"
37783        ],
37784        "responses": {
37785          "200": {
37786            "description": "OK",
37787            "schema": {
37788              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37789            }
37790          },
37791          "401": {
37792            "description": "Unauthorized"
37793          }
37794        },
37795        "schemes": [
37796          "https"
37797        ],
37798        "tags": [
37799          "core_v1"
37800        ],
37801        "x-kubernetes-action": "watch",
37802        "x-kubernetes-group-version-kind": {
37803          "group": "",
37804          "kind": "Service",
37805          "version": "v1"
37806        }
37807      },
37808      "parameters": [
37809        {
37810          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37811          "in": "query",
37812          "name": "allowWatchBookmarks",
37813          "type": "boolean",
37814          "uniqueItems": true
37815        },
37816        {
37817          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37818          "in": "query",
37819          "name": "continue",
37820          "type": "string",
37821          "uniqueItems": true
37822        },
37823        {
37824          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37825          "in": "query",
37826          "name": "fieldSelector",
37827          "type": "string",
37828          "uniqueItems": true
37829        },
37830        {
37831          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37832          "in": "query",
37833          "name": "labelSelector",
37834          "type": "string",
37835          "uniqueItems": true
37836        },
37837        {
37838          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37839          "in": "query",
37840          "name": "limit",
37841          "type": "integer",
37842          "uniqueItems": true
37843        },
37844        {
37845          "description": "name of the Service",
37846          "in": "path",
37847          "name": "name",
37848          "required": true,
37849          "type": "string",
37850          "uniqueItems": true
37851        },
37852        {
37853          "description": "object name and auth scope, such as for teams and projects",
37854          "in": "path",
37855          "name": "namespace",
37856          "required": true,
37857          "type": "string",
37858          "uniqueItems": true
37859        },
37860        {
37861          "description": "If 'true', then the output is pretty printed.",
37862          "in": "query",
37863          "name": "pretty",
37864          "type": "string",
37865          "uniqueItems": true
37866        },
37867        {
37868          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37869          "in": "query",
37870          "name": "resourceVersion",
37871          "type": "string",
37872          "uniqueItems": true
37873        },
37874        {
37875          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37876          "in": "query",
37877          "name": "resourceVersionMatch",
37878          "type": "string",
37879          "uniqueItems": true
37880        },
37881        {
37882          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37883          "in": "query",
37884          "name": "timeoutSeconds",
37885          "type": "integer",
37886          "uniqueItems": true
37887        },
37888        {
37889          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37890          "in": "query",
37891          "name": "watch",
37892          "type": "boolean",
37893          "uniqueItems": true
37894        }
37895      ]
37896    },
37897    "/api/v1/watch/namespaces/{name}": {
37898      "get": {
37899        "consumes": [
37900          "*/*"
37901        ],
37902        "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.",
37903        "operationId": "watchCoreV1Namespace",
37904        "produces": [
37905          "application/json",
37906          "application/yaml",
37907          "application/vnd.kubernetes.protobuf",
37908          "application/json;stream=watch",
37909          "application/vnd.kubernetes.protobuf;stream=watch"
37910        ],
37911        "responses": {
37912          "200": {
37913            "description": "OK",
37914            "schema": {
37915              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37916            }
37917          },
37918          "401": {
37919            "description": "Unauthorized"
37920          }
37921        },
37922        "schemes": [
37923          "https"
37924        ],
37925        "tags": [
37926          "core_v1"
37927        ],
37928        "x-kubernetes-action": "watch",
37929        "x-kubernetes-group-version-kind": {
37930          "group": "",
37931          "kind": "Namespace",
37932          "version": "v1"
37933        }
37934      },
37935      "parameters": [
37936        {
37937          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
37938          "in": "query",
37939          "name": "allowWatchBookmarks",
37940          "type": "boolean",
37941          "uniqueItems": true
37942        },
37943        {
37944          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37945          "in": "query",
37946          "name": "continue",
37947          "type": "string",
37948          "uniqueItems": true
37949        },
37950        {
37951          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37952          "in": "query",
37953          "name": "fieldSelector",
37954          "type": "string",
37955          "uniqueItems": true
37956        },
37957        {
37958          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37959          "in": "query",
37960          "name": "labelSelector",
37961          "type": "string",
37962          "uniqueItems": true
37963        },
37964        {
37965          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37966          "in": "query",
37967          "name": "limit",
37968          "type": "integer",
37969          "uniqueItems": true
37970        },
37971        {
37972          "description": "name of the Namespace",
37973          "in": "path",
37974          "name": "name",
37975          "required": true,
37976          "type": "string",
37977          "uniqueItems": true
37978        },
37979        {
37980          "description": "If 'true', then the output is pretty printed.",
37981          "in": "query",
37982          "name": "pretty",
37983          "type": "string",
37984          "uniqueItems": true
37985        },
37986        {
37987          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37988          "in": "query",
37989          "name": "resourceVersion",
37990          "type": "string",
37991          "uniqueItems": true
37992        },
37993        {
37994          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37995          "in": "query",
37996          "name": "resourceVersionMatch",
37997          "type": "string",
37998          "uniqueItems": true
37999        },
38000        {
38001          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38002          "in": "query",
38003          "name": "timeoutSeconds",
38004          "type": "integer",
38005          "uniqueItems": true
38006        },
38007        {
38008          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38009          "in": "query",
38010          "name": "watch",
38011          "type": "boolean",
38012          "uniqueItems": true
38013        }
38014      ]
38015    },
38016    "/api/v1/watch/nodes": {
38017      "get": {
38018        "consumes": [
38019          "*/*"
38020        ],
38021        "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.",
38022        "operationId": "watchCoreV1NodeList",
38023        "produces": [
38024          "application/json",
38025          "application/yaml",
38026          "application/vnd.kubernetes.protobuf",
38027          "application/json;stream=watch",
38028          "application/vnd.kubernetes.protobuf;stream=watch"
38029        ],
38030        "responses": {
38031          "200": {
38032            "description": "OK",
38033            "schema": {
38034              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38035            }
38036          },
38037          "401": {
38038            "description": "Unauthorized"
38039          }
38040        },
38041        "schemes": [
38042          "https"
38043        ],
38044        "tags": [
38045          "core_v1"
38046        ],
38047        "x-kubernetes-action": "watchlist",
38048        "x-kubernetes-group-version-kind": {
38049          "group": "",
38050          "kind": "Node",
38051          "version": "v1"
38052        }
38053      },
38054      "parameters": [
38055        {
38056          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38057          "in": "query",
38058          "name": "allowWatchBookmarks",
38059          "type": "boolean",
38060          "uniqueItems": true
38061        },
38062        {
38063          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38064          "in": "query",
38065          "name": "continue",
38066          "type": "string",
38067          "uniqueItems": true
38068        },
38069        {
38070          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38071          "in": "query",
38072          "name": "fieldSelector",
38073          "type": "string",
38074          "uniqueItems": true
38075        },
38076        {
38077          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38078          "in": "query",
38079          "name": "labelSelector",
38080          "type": "string",
38081          "uniqueItems": true
38082        },
38083        {
38084          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38085          "in": "query",
38086          "name": "limit",
38087          "type": "integer",
38088          "uniqueItems": true
38089        },
38090        {
38091          "description": "If 'true', then the output is pretty printed.",
38092          "in": "query",
38093          "name": "pretty",
38094          "type": "string",
38095          "uniqueItems": true
38096        },
38097        {
38098          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38099          "in": "query",
38100          "name": "resourceVersion",
38101          "type": "string",
38102          "uniqueItems": true
38103        },
38104        {
38105          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38106          "in": "query",
38107          "name": "resourceVersionMatch",
38108          "type": "string",
38109          "uniqueItems": true
38110        },
38111        {
38112          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38113          "in": "query",
38114          "name": "timeoutSeconds",
38115          "type": "integer",
38116          "uniqueItems": true
38117        },
38118        {
38119          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38120          "in": "query",
38121          "name": "watch",
38122          "type": "boolean",
38123          "uniqueItems": true
38124        }
38125      ]
38126    },
38127    "/api/v1/watch/nodes/{name}": {
38128      "get": {
38129        "consumes": [
38130          "*/*"
38131        ],
38132        "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.",
38133        "operationId": "watchCoreV1Node",
38134        "produces": [
38135          "application/json",
38136          "application/yaml",
38137          "application/vnd.kubernetes.protobuf",
38138          "application/json;stream=watch",
38139          "application/vnd.kubernetes.protobuf;stream=watch"
38140        ],
38141        "responses": {
38142          "200": {
38143            "description": "OK",
38144            "schema": {
38145              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38146            }
38147          },
38148          "401": {
38149            "description": "Unauthorized"
38150          }
38151        },
38152        "schemes": [
38153          "https"
38154        ],
38155        "tags": [
38156          "core_v1"
38157        ],
38158        "x-kubernetes-action": "watch",
38159        "x-kubernetes-group-version-kind": {
38160          "group": "",
38161          "kind": "Node",
38162          "version": "v1"
38163        }
38164      },
38165      "parameters": [
38166        {
38167          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38168          "in": "query",
38169          "name": "allowWatchBookmarks",
38170          "type": "boolean",
38171          "uniqueItems": true
38172        },
38173        {
38174          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38175          "in": "query",
38176          "name": "continue",
38177          "type": "string",
38178          "uniqueItems": true
38179        },
38180        {
38181          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38182          "in": "query",
38183          "name": "fieldSelector",
38184          "type": "string",
38185          "uniqueItems": true
38186        },
38187        {
38188          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38189          "in": "query",
38190          "name": "labelSelector",
38191          "type": "string",
38192          "uniqueItems": true
38193        },
38194        {
38195          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38196          "in": "query",
38197          "name": "limit",
38198          "type": "integer",
38199          "uniqueItems": true
38200        },
38201        {
38202          "description": "name of the Node",
38203          "in": "path",
38204          "name": "name",
38205          "required": true,
38206          "type": "string",
38207          "uniqueItems": true
38208        },
38209        {
38210          "description": "If 'true', then the output is pretty printed.",
38211          "in": "query",
38212          "name": "pretty",
38213          "type": "string",
38214          "uniqueItems": true
38215        },
38216        {
38217          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38218          "in": "query",
38219          "name": "resourceVersion",
38220          "type": "string",
38221          "uniqueItems": true
38222        },
38223        {
38224          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38225          "in": "query",
38226          "name": "resourceVersionMatch",
38227          "type": "string",
38228          "uniqueItems": true
38229        },
38230        {
38231          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38232          "in": "query",
38233          "name": "timeoutSeconds",
38234          "type": "integer",
38235          "uniqueItems": true
38236        },
38237        {
38238          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38239          "in": "query",
38240          "name": "watch",
38241          "type": "boolean",
38242          "uniqueItems": true
38243        }
38244      ]
38245    },
38246    "/api/v1/watch/persistentvolumeclaims": {
38247      "get": {
38248        "consumes": [
38249          "*/*"
38250        ],
38251        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
38252        "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
38253        "produces": [
38254          "application/json",
38255          "application/yaml",
38256          "application/vnd.kubernetes.protobuf",
38257          "application/json;stream=watch",
38258          "application/vnd.kubernetes.protobuf;stream=watch"
38259        ],
38260        "responses": {
38261          "200": {
38262            "description": "OK",
38263            "schema": {
38264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38265            }
38266          },
38267          "401": {
38268            "description": "Unauthorized"
38269          }
38270        },
38271        "schemes": [
38272          "https"
38273        ],
38274        "tags": [
38275          "core_v1"
38276        ],
38277        "x-kubernetes-action": "watchlist",
38278        "x-kubernetes-group-version-kind": {
38279          "group": "",
38280          "kind": "PersistentVolumeClaim",
38281          "version": "v1"
38282        }
38283      },
38284      "parameters": [
38285        {
38286          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38287          "in": "query",
38288          "name": "allowWatchBookmarks",
38289          "type": "boolean",
38290          "uniqueItems": true
38291        },
38292        {
38293          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38294          "in": "query",
38295          "name": "continue",
38296          "type": "string",
38297          "uniqueItems": true
38298        },
38299        {
38300          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38301          "in": "query",
38302          "name": "fieldSelector",
38303          "type": "string",
38304          "uniqueItems": true
38305        },
38306        {
38307          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38308          "in": "query",
38309          "name": "labelSelector",
38310          "type": "string",
38311          "uniqueItems": true
38312        },
38313        {
38314          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38315          "in": "query",
38316          "name": "limit",
38317          "type": "integer",
38318          "uniqueItems": true
38319        },
38320        {
38321          "description": "If 'true', then the output is pretty printed.",
38322          "in": "query",
38323          "name": "pretty",
38324          "type": "string",
38325          "uniqueItems": true
38326        },
38327        {
38328          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38329          "in": "query",
38330          "name": "resourceVersion",
38331          "type": "string",
38332          "uniqueItems": true
38333        },
38334        {
38335          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38336          "in": "query",
38337          "name": "resourceVersionMatch",
38338          "type": "string",
38339          "uniqueItems": true
38340        },
38341        {
38342          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38343          "in": "query",
38344          "name": "timeoutSeconds",
38345          "type": "integer",
38346          "uniqueItems": true
38347        },
38348        {
38349          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38350          "in": "query",
38351          "name": "watch",
38352          "type": "boolean",
38353          "uniqueItems": true
38354        }
38355      ]
38356    },
38357    "/api/v1/watch/persistentvolumes": {
38358      "get": {
38359        "consumes": [
38360          "*/*"
38361        ],
38362        "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.",
38363        "operationId": "watchCoreV1PersistentVolumeList",
38364        "produces": [
38365          "application/json",
38366          "application/yaml",
38367          "application/vnd.kubernetes.protobuf",
38368          "application/json;stream=watch",
38369          "application/vnd.kubernetes.protobuf;stream=watch"
38370        ],
38371        "responses": {
38372          "200": {
38373            "description": "OK",
38374            "schema": {
38375              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38376            }
38377          },
38378          "401": {
38379            "description": "Unauthorized"
38380          }
38381        },
38382        "schemes": [
38383          "https"
38384        ],
38385        "tags": [
38386          "core_v1"
38387        ],
38388        "x-kubernetes-action": "watchlist",
38389        "x-kubernetes-group-version-kind": {
38390          "group": "",
38391          "kind": "PersistentVolume",
38392          "version": "v1"
38393        }
38394      },
38395      "parameters": [
38396        {
38397          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38398          "in": "query",
38399          "name": "allowWatchBookmarks",
38400          "type": "boolean",
38401          "uniqueItems": true
38402        },
38403        {
38404          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38405          "in": "query",
38406          "name": "continue",
38407          "type": "string",
38408          "uniqueItems": true
38409        },
38410        {
38411          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38412          "in": "query",
38413          "name": "fieldSelector",
38414          "type": "string",
38415          "uniqueItems": true
38416        },
38417        {
38418          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38419          "in": "query",
38420          "name": "labelSelector",
38421          "type": "string",
38422          "uniqueItems": true
38423        },
38424        {
38425          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38426          "in": "query",
38427          "name": "limit",
38428          "type": "integer",
38429          "uniqueItems": true
38430        },
38431        {
38432          "description": "If 'true', then the output is pretty printed.",
38433          "in": "query",
38434          "name": "pretty",
38435          "type": "string",
38436          "uniqueItems": true
38437        },
38438        {
38439          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38440          "in": "query",
38441          "name": "resourceVersion",
38442          "type": "string",
38443          "uniqueItems": true
38444        },
38445        {
38446          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38447          "in": "query",
38448          "name": "resourceVersionMatch",
38449          "type": "string",
38450          "uniqueItems": true
38451        },
38452        {
38453          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38454          "in": "query",
38455          "name": "timeoutSeconds",
38456          "type": "integer",
38457          "uniqueItems": true
38458        },
38459        {
38460          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38461          "in": "query",
38462          "name": "watch",
38463          "type": "boolean",
38464          "uniqueItems": true
38465        }
38466      ]
38467    },
38468    "/api/v1/watch/persistentvolumes/{name}": {
38469      "get": {
38470        "consumes": [
38471          "*/*"
38472        ],
38473        "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.",
38474        "operationId": "watchCoreV1PersistentVolume",
38475        "produces": [
38476          "application/json",
38477          "application/yaml",
38478          "application/vnd.kubernetes.protobuf",
38479          "application/json;stream=watch",
38480          "application/vnd.kubernetes.protobuf;stream=watch"
38481        ],
38482        "responses": {
38483          "200": {
38484            "description": "OK",
38485            "schema": {
38486              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38487            }
38488          },
38489          "401": {
38490            "description": "Unauthorized"
38491          }
38492        },
38493        "schemes": [
38494          "https"
38495        ],
38496        "tags": [
38497          "core_v1"
38498        ],
38499        "x-kubernetes-action": "watch",
38500        "x-kubernetes-group-version-kind": {
38501          "group": "",
38502          "kind": "PersistentVolume",
38503          "version": "v1"
38504        }
38505      },
38506      "parameters": [
38507        {
38508          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38509          "in": "query",
38510          "name": "allowWatchBookmarks",
38511          "type": "boolean",
38512          "uniqueItems": true
38513        },
38514        {
38515          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38516          "in": "query",
38517          "name": "continue",
38518          "type": "string",
38519          "uniqueItems": true
38520        },
38521        {
38522          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38523          "in": "query",
38524          "name": "fieldSelector",
38525          "type": "string",
38526          "uniqueItems": true
38527        },
38528        {
38529          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38530          "in": "query",
38531          "name": "labelSelector",
38532          "type": "string",
38533          "uniqueItems": true
38534        },
38535        {
38536          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38537          "in": "query",
38538          "name": "limit",
38539          "type": "integer",
38540          "uniqueItems": true
38541        },
38542        {
38543          "description": "name of the PersistentVolume",
38544          "in": "path",
38545          "name": "name",
38546          "required": true,
38547          "type": "string",
38548          "uniqueItems": true
38549        },
38550        {
38551          "description": "If 'true', then the output is pretty printed.",
38552          "in": "query",
38553          "name": "pretty",
38554          "type": "string",
38555          "uniqueItems": true
38556        },
38557        {
38558          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38559          "in": "query",
38560          "name": "resourceVersion",
38561          "type": "string",
38562          "uniqueItems": true
38563        },
38564        {
38565          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38566          "in": "query",
38567          "name": "resourceVersionMatch",
38568          "type": "string",
38569          "uniqueItems": true
38570        },
38571        {
38572          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38573          "in": "query",
38574          "name": "timeoutSeconds",
38575          "type": "integer",
38576          "uniqueItems": true
38577        },
38578        {
38579          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38580          "in": "query",
38581          "name": "watch",
38582          "type": "boolean",
38583          "uniqueItems": true
38584        }
38585      ]
38586    },
38587    "/api/v1/watch/pods": {
38588      "get": {
38589        "consumes": [
38590          "*/*"
38591        ],
38592        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
38593        "operationId": "watchCoreV1PodListForAllNamespaces",
38594        "produces": [
38595          "application/json",
38596          "application/yaml",
38597          "application/vnd.kubernetes.protobuf",
38598          "application/json;stream=watch",
38599          "application/vnd.kubernetes.protobuf;stream=watch"
38600        ],
38601        "responses": {
38602          "200": {
38603            "description": "OK",
38604            "schema": {
38605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38606            }
38607          },
38608          "401": {
38609            "description": "Unauthorized"
38610          }
38611        },
38612        "schemes": [
38613          "https"
38614        ],
38615        "tags": [
38616          "core_v1"
38617        ],
38618        "x-kubernetes-action": "watchlist",
38619        "x-kubernetes-group-version-kind": {
38620          "group": "",
38621          "kind": "Pod",
38622          "version": "v1"
38623        }
38624      },
38625      "parameters": [
38626        {
38627          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38628          "in": "query",
38629          "name": "allowWatchBookmarks",
38630          "type": "boolean",
38631          "uniqueItems": true
38632        },
38633        {
38634          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38635          "in": "query",
38636          "name": "continue",
38637          "type": "string",
38638          "uniqueItems": true
38639        },
38640        {
38641          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38642          "in": "query",
38643          "name": "fieldSelector",
38644          "type": "string",
38645          "uniqueItems": true
38646        },
38647        {
38648          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38649          "in": "query",
38650          "name": "labelSelector",
38651          "type": "string",
38652          "uniqueItems": true
38653        },
38654        {
38655          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38656          "in": "query",
38657          "name": "limit",
38658          "type": "integer",
38659          "uniqueItems": true
38660        },
38661        {
38662          "description": "If 'true', then the output is pretty printed.",
38663          "in": "query",
38664          "name": "pretty",
38665          "type": "string",
38666          "uniqueItems": true
38667        },
38668        {
38669          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38670          "in": "query",
38671          "name": "resourceVersion",
38672          "type": "string",
38673          "uniqueItems": true
38674        },
38675        {
38676          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38677          "in": "query",
38678          "name": "resourceVersionMatch",
38679          "type": "string",
38680          "uniqueItems": true
38681        },
38682        {
38683          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38684          "in": "query",
38685          "name": "timeoutSeconds",
38686          "type": "integer",
38687          "uniqueItems": true
38688        },
38689        {
38690          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38691          "in": "query",
38692          "name": "watch",
38693          "type": "boolean",
38694          "uniqueItems": true
38695        }
38696      ]
38697    },
38698    "/api/v1/watch/podtemplates": {
38699      "get": {
38700        "consumes": [
38701          "*/*"
38702        ],
38703        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
38704        "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
38705        "produces": [
38706          "application/json",
38707          "application/yaml",
38708          "application/vnd.kubernetes.protobuf",
38709          "application/json;stream=watch",
38710          "application/vnd.kubernetes.protobuf;stream=watch"
38711        ],
38712        "responses": {
38713          "200": {
38714            "description": "OK",
38715            "schema": {
38716              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38717            }
38718          },
38719          "401": {
38720            "description": "Unauthorized"
38721          }
38722        },
38723        "schemes": [
38724          "https"
38725        ],
38726        "tags": [
38727          "core_v1"
38728        ],
38729        "x-kubernetes-action": "watchlist",
38730        "x-kubernetes-group-version-kind": {
38731          "group": "",
38732          "kind": "PodTemplate",
38733          "version": "v1"
38734        }
38735      },
38736      "parameters": [
38737        {
38738          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38739          "in": "query",
38740          "name": "allowWatchBookmarks",
38741          "type": "boolean",
38742          "uniqueItems": true
38743        },
38744        {
38745          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38746          "in": "query",
38747          "name": "continue",
38748          "type": "string",
38749          "uniqueItems": true
38750        },
38751        {
38752          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38753          "in": "query",
38754          "name": "fieldSelector",
38755          "type": "string",
38756          "uniqueItems": true
38757        },
38758        {
38759          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38760          "in": "query",
38761          "name": "labelSelector",
38762          "type": "string",
38763          "uniqueItems": true
38764        },
38765        {
38766          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38767          "in": "query",
38768          "name": "limit",
38769          "type": "integer",
38770          "uniqueItems": true
38771        },
38772        {
38773          "description": "If 'true', then the output is pretty printed.",
38774          "in": "query",
38775          "name": "pretty",
38776          "type": "string",
38777          "uniqueItems": true
38778        },
38779        {
38780          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38781          "in": "query",
38782          "name": "resourceVersion",
38783          "type": "string",
38784          "uniqueItems": true
38785        },
38786        {
38787          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38788          "in": "query",
38789          "name": "resourceVersionMatch",
38790          "type": "string",
38791          "uniqueItems": true
38792        },
38793        {
38794          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38795          "in": "query",
38796          "name": "timeoutSeconds",
38797          "type": "integer",
38798          "uniqueItems": true
38799        },
38800        {
38801          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38802          "in": "query",
38803          "name": "watch",
38804          "type": "boolean",
38805          "uniqueItems": true
38806        }
38807      ]
38808    },
38809    "/api/v1/watch/replicationcontrollers": {
38810      "get": {
38811        "consumes": [
38812          "*/*"
38813        ],
38814        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
38815        "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
38816        "produces": [
38817          "application/json",
38818          "application/yaml",
38819          "application/vnd.kubernetes.protobuf",
38820          "application/json;stream=watch",
38821          "application/vnd.kubernetes.protobuf;stream=watch"
38822        ],
38823        "responses": {
38824          "200": {
38825            "description": "OK",
38826            "schema": {
38827              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38828            }
38829          },
38830          "401": {
38831            "description": "Unauthorized"
38832          }
38833        },
38834        "schemes": [
38835          "https"
38836        ],
38837        "tags": [
38838          "core_v1"
38839        ],
38840        "x-kubernetes-action": "watchlist",
38841        "x-kubernetes-group-version-kind": {
38842          "group": "",
38843          "kind": "ReplicationController",
38844          "version": "v1"
38845        }
38846      },
38847      "parameters": [
38848        {
38849          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38850          "in": "query",
38851          "name": "allowWatchBookmarks",
38852          "type": "boolean",
38853          "uniqueItems": true
38854        },
38855        {
38856          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38857          "in": "query",
38858          "name": "continue",
38859          "type": "string",
38860          "uniqueItems": true
38861        },
38862        {
38863          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38864          "in": "query",
38865          "name": "fieldSelector",
38866          "type": "string",
38867          "uniqueItems": true
38868        },
38869        {
38870          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38871          "in": "query",
38872          "name": "labelSelector",
38873          "type": "string",
38874          "uniqueItems": true
38875        },
38876        {
38877          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38878          "in": "query",
38879          "name": "limit",
38880          "type": "integer",
38881          "uniqueItems": true
38882        },
38883        {
38884          "description": "If 'true', then the output is pretty printed.",
38885          "in": "query",
38886          "name": "pretty",
38887          "type": "string",
38888          "uniqueItems": true
38889        },
38890        {
38891          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38892          "in": "query",
38893          "name": "resourceVersion",
38894          "type": "string",
38895          "uniqueItems": true
38896        },
38897        {
38898          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38899          "in": "query",
38900          "name": "resourceVersionMatch",
38901          "type": "string",
38902          "uniqueItems": true
38903        },
38904        {
38905          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38906          "in": "query",
38907          "name": "timeoutSeconds",
38908          "type": "integer",
38909          "uniqueItems": true
38910        },
38911        {
38912          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38913          "in": "query",
38914          "name": "watch",
38915          "type": "boolean",
38916          "uniqueItems": true
38917        }
38918      ]
38919    },
38920    "/api/v1/watch/resourcequotas": {
38921      "get": {
38922        "consumes": [
38923          "*/*"
38924        ],
38925        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
38926        "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
38927        "produces": [
38928          "application/json",
38929          "application/yaml",
38930          "application/vnd.kubernetes.protobuf",
38931          "application/json;stream=watch",
38932          "application/vnd.kubernetes.protobuf;stream=watch"
38933        ],
38934        "responses": {
38935          "200": {
38936            "description": "OK",
38937            "schema": {
38938              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38939            }
38940          },
38941          "401": {
38942            "description": "Unauthorized"
38943          }
38944        },
38945        "schemes": [
38946          "https"
38947        ],
38948        "tags": [
38949          "core_v1"
38950        ],
38951        "x-kubernetes-action": "watchlist",
38952        "x-kubernetes-group-version-kind": {
38953          "group": "",
38954          "kind": "ResourceQuota",
38955          "version": "v1"
38956        }
38957      },
38958      "parameters": [
38959        {
38960          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
38961          "in": "query",
38962          "name": "allowWatchBookmarks",
38963          "type": "boolean",
38964          "uniqueItems": true
38965        },
38966        {
38967          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38968          "in": "query",
38969          "name": "continue",
38970          "type": "string",
38971          "uniqueItems": true
38972        },
38973        {
38974          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38975          "in": "query",
38976          "name": "fieldSelector",
38977          "type": "string",
38978          "uniqueItems": true
38979        },
38980        {
38981          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38982          "in": "query",
38983          "name": "labelSelector",
38984          "type": "string",
38985          "uniqueItems": true
38986        },
38987        {
38988          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38989          "in": "query",
38990          "name": "limit",
38991          "type": "integer",
38992          "uniqueItems": true
38993        },
38994        {
38995          "description": "If 'true', then the output is pretty printed.",
38996          "in": "query",
38997          "name": "pretty",
38998          "type": "string",
38999          "uniqueItems": true
39000        },
39001        {
39002          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39003          "in": "query",
39004          "name": "resourceVersion",
39005          "type": "string",
39006          "uniqueItems": true
39007        },
39008        {
39009          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39010          "in": "query",
39011          "name": "resourceVersionMatch",
39012          "type": "string",
39013          "uniqueItems": true
39014        },
39015        {
39016          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39017          "in": "query",
39018          "name": "timeoutSeconds",
39019          "type": "integer",
39020          "uniqueItems": true
39021        },
39022        {
39023          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39024          "in": "query",
39025          "name": "watch",
39026          "type": "boolean",
39027          "uniqueItems": true
39028        }
39029      ]
39030    },
39031    "/api/v1/watch/secrets": {
39032      "get": {
39033        "consumes": [
39034          "*/*"
39035        ],
39036        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
39037        "operationId": "watchCoreV1SecretListForAllNamespaces",
39038        "produces": [
39039          "application/json",
39040          "application/yaml",
39041          "application/vnd.kubernetes.protobuf",
39042          "application/json;stream=watch",
39043          "application/vnd.kubernetes.protobuf;stream=watch"
39044        ],
39045        "responses": {
39046          "200": {
39047            "description": "OK",
39048            "schema": {
39049              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39050            }
39051          },
39052          "401": {
39053            "description": "Unauthorized"
39054          }
39055        },
39056        "schemes": [
39057          "https"
39058        ],
39059        "tags": [
39060          "core_v1"
39061        ],
39062        "x-kubernetes-action": "watchlist",
39063        "x-kubernetes-group-version-kind": {
39064          "group": "",
39065          "kind": "Secret",
39066          "version": "v1"
39067        }
39068      },
39069      "parameters": [
39070        {
39071          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39072          "in": "query",
39073          "name": "allowWatchBookmarks",
39074          "type": "boolean",
39075          "uniqueItems": true
39076        },
39077        {
39078          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39079          "in": "query",
39080          "name": "continue",
39081          "type": "string",
39082          "uniqueItems": true
39083        },
39084        {
39085          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39086          "in": "query",
39087          "name": "fieldSelector",
39088          "type": "string",
39089          "uniqueItems": true
39090        },
39091        {
39092          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39093          "in": "query",
39094          "name": "labelSelector",
39095          "type": "string",
39096          "uniqueItems": true
39097        },
39098        {
39099          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39100          "in": "query",
39101          "name": "limit",
39102          "type": "integer",
39103          "uniqueItems": true
39104        },
39105        {
39106          "description": "If 'true', then the output is pretty printed.",
39107          "in": "query",
39108          "name": "pretty",
39109          "type": "string",
39110          "uniqueItems": true
39111        },
39112        {
39113          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39114          "in": "query",
39115          "name": "resourceVersion",
39116          "type": "string",
39117          "uniqueItems": true
39118        },
39119        {
39120          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39121          "in": "query",
39122          "name": "resourceVersionMatch",
39123          "type": "string",
39124          "uniqueItems": true
39125        },
39126        {
39127          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39128          "in": "query",
39129          "name": "timeoutSeconds",
39130          "type": "integer",
39131          "uniqueItems": true
39132        },
39133        {
39134          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39135          "in": "query",
39136          "name": "watch",
39137          "type": "boolean",
39138          "uniqueItems": true
39139        }
39140      ]
39141    },
39142    "/api/v1/watch/serviceaccounts": {
39143      "get": {
39144        "consumes": [
39145          "*/*"
39146        ],
39147        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
39148        "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
39149        "produces": [
39150          "application/json",
39151          "application/yaml",
39152          "application/vnd.kubernetes.protobuf",
39153          "application/json;stream=watch",
39154          "application/vnd.kubernetes.protobuf;stream=watch"
39155        ],
39156        "responses": {
39157          "200": {
39158            "description": "OK",
39159            "schema": {
39160              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39161            }
39162          },
39163          "401": {
39164            "description": "Unauthorized"
39165          }
39166        },
39167        "schemes": [
39168          "https"
39169        ],
39170        "tags": [
39171          "core_v1"
39172        ],
39173        "x-kubernetes-action": "watchlist",
39174        "x-kubernetes-group-version-kind": {
39175          "group": "",
39176          "kind": "ServiceAccount",
39177          "version": "v1"
39178        }
39179      },
39180      "parameters": [
39181        {
39182          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39183          "in": "query",
39184          "name": "allowWatchBookmarks",
39185          "type": "boolean",
39186          "uniqueItems": true
39187        },
39188        {
39189          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39190          "in": "query",
39191          "name": "continue",
39192          "type": "string",
39193          "uniqueItems": true
39194        },
39195        {
39196          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39197          "in": "query",
39198          "name": "fieldSelector",
39199          "type": "string",
39200          "uniqueItems": true
39201        },
39202        {
39203          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39204          "in": "query",
39205          "name": "labelSelector",
39206          "type": "string",
39207          "uniqueItems": true
39208        },
39209        {
39210          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39211          "in": "query",
39212          "name": "limit",
39213          "type": "integer",
39214          "uniqueItems": true
39215        },
39216        {
39217          "description": "If 'true', then the output is pretty printed.",
39218          "in": "query",
39219          "name": "pretty",
39220          "type": "string",
39221          "uniqueItems": true
39222        },
39223        {
39224          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39225          "in": "query",
39226          "name": "resourceVersion",
39227          "type": "string",
39228          "uniqueItems": true
39229        },
39230        {
39231          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39232          "in": "query",
39233          "name": "resourceVersionMatch",
39234          "type": "string",
39235          "uniqueItems": true
39236        },
39237        {
39238          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39239          "in": "query",
39240          "name": "timeoutSeconds",
39241          "type": "integer",
39242          "uniqueItems": true
39243        },
39244        {
39245          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39246          "in": "query",
39247          "name": "watch",
39248          "type": "boolean",
39249          "uniqueItems": true
39250        }
39251      ]
39252    },
39253    "/api/v1/watch/services": {
39254      "get": {
39255        "consumes": [
39256          "*/*"
39257        ],
39258        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
39259        "operationId": "watchCoreV1ServiceListForAllNamespaces",
39260        "produces": [
39261          "application/json",
39262          "application/yaml",
39263          "application/vnd.kubernetes.protobuf",
39264          "application/json;stream=watch",
39265          "application/vnd.kubernetes.protobuf;stream=watch"
39266        ],
39267        "responses": {
39268          "200": {
39269            "description": "OK",
39270            "schema": {
39271              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39272            }
39273          },
39274          "401": {
39275            "description": "Unauthorized"
39276          }
39277        },
39278        "schemes": [
39279          "https"
39280        ],
39281        "tags": [
39282          "core_v1"
39283        ],
39284        "x-kubernetes-action": "watchlist",
39285        "x-kubernetes-group-version-kind": {
39286          "group": "",
39287          "kind": "Service",
39288          "version": "v1"
39289        }
39290      },
39291      "parameters": [
39292        {
39293          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39294          "in": "query",
39295          "name": "allowWatchBookmarks",
39296          "type": "boolean",
39297          "uniqueItems": true
39298        },
39299        {
39300          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39301          "in": "query",
39302          "name": "continue",
39303          "type": "string",
39304          "uniqueItems": true
39305        },
39306        {
39307          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39308          "in": "query",
39309          "name": "fieldSelector",
39310          "type": "string",
39311          "uniqueItems": true
39312        },
39313        {
39314          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39315          "in": "query",
39316          "name": "labelSelector",
39317          "type": "string",
39318          "uniqueItems": true
39319        },
39320        {
39321          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39322          "in": "query",
39323          "name": "limit",
39324          "type": "integer",
39325          "uniqueItems": true
39326        },
39327        {
39328          "description": "If 'true', then the output is pretty printed.",
39329          "in": "query",
39330          "name": "pretty",
39331          "type": "string",
39332          "uniqueItems": true
39333        },
39334        {
39335          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39336          "in": "query",
39337          "name": "resourceVersion",
39338          "type": "string",
39339          "uniqueItems": true
39340        },
39341        {
39342          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39343          "in": "query",
39344          "name": "resourceVersionMatch",
39345          "type": "string",
39346          "uniqueItems": true
39347        },
39348        {
39349          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39350          "in": "query",
39351          "name": "timeoutSeconds",
39352          "type": "integer",
39353          "uniqueItems": true
39354        },
39355        {
39356          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39357          "in": "query",
39358          "name": "watch",
39359          "type": "boolean",
39360          "uniqueItems": true
39361        }
39362      ]
39363    },
39364    "/apis/": {
39365      "get": {
39366        "consumes": [
39367          "application/json",
39368          "application/yaml",
39369          "application/vnd.kubernetes.protobuf"
39370        ],
39371        "description": "get available API versions",
39372        "operationId": "getAPIVersions",
39373        "produces": [
39374          "application/json",
39375          "application/yaml",
39376          "application/vnd.kubernetes.protobuf"
39377        ],
39378        "responses": {
39379          "200": {
39380            "description": "OK",
39381            "schema": {
39382              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList"
39383            }
39384          },
39385          "401": {
39386            "description": "Unauthorized"
39387          }
39388        },
39389        "schemes": [
39390          "https"
39391        ],
39392        "tags": [
39393          "apis"
39394        ]
39395      }
39396    },
39397    "/apis/admissionregistration.k8s.io/": {
39398      "get": {
39399        "consumes": [
39400          "application/json",
39401          "application/yaml",
39402          "application/vnd.kubernetes.protobuf"
39403        ],
39404        "description": "get information of a group",
39405        "operationId": "getAdmissionregistrationAPIGroup",
39406        "produces": [
39407          "application/json",
39408          "application/yaml",
39409          "application/vnd.kubernetes.protobuf"
39410        ],
39411        "responses": {
39412          "200": {
39413            "description": "OK",
39414            "schema": {
39415              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
39416            }
39417          },
39418          "401": {
39419            "description": "Unauthorized"
39420          }
39421        },
39422        "schemes": [
39423          "https"
39424        ],
39425        "tags": [
39426          "admissionregistration"
39427        ]
39428      }
39429    },
39430    "/apis/admissionregistration.k8s.io/v1/": {
39431      "get": {
39432        "consumes": [
39433          "application/json",
39434          "application/yaml",
39435          "application/vnd.kubernetes.protobuf"
39436        ],
39437        "description": "get available resources",
39438        "operationId": "getAdmissionregistrationV1APIResources",
39439        "produces": [
39440          "application/json",
39441          "application/yaml",
39442          "application/vnd.kubernetes.protobuf"
39443        ],
39444        "responses": {
39445          "200": {
39446            "description": "OK",
39447            "schema": {
39448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
39449            }
39450          },
39451          "401": {
39452            "description": "Unauthorized"
39453          }
39454        },
39455        "schemes": [
39456          "https"
39457        ],
39458        "tags": [
39459          "admissionregistration_v1"
39460        ]
39461      }
39462    },
39463    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations": {
39464      "delete": {
39465        "consumes": [
39466          "*/*"
39467        ],
39468        "description": "delete collection of MutatingWebhookConfiguration",
39469        "operationId": "deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration",
39470        "parameters": [
39471          {
39472            "in": "body",
39473            "name": "body",
39474            "schema": {
39475              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39476            }
39477          },
39478          {
39479            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39480            "in": "query",
39481            "name": "continue",
39482            "type": "string",
39483            "uniqueItems": true
39484          },
39485          {
39486            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39487            "in": "query",
39488            "name": "dryRun",
39489            "type": "string",
39490            "uniqueItems": true
39491          },
39492          {
39493            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39494            "in": "query",
39495            "name": "fieldSelector",
39496            "type": "string",
39497            "uniqueItems": true
39498          },
39499          {
39500            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39501            "in": "query",
39502            "name": "gracePeriodSeconds",
39503            "type": "integer",
39504            "uniqueItems": true
39505          },
39506          {
39507            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39508            "in": "query",
39509            "name": "labelSelector",
39510            "type": "string",
39511            "uniqueItems": true
39512          },
39513          {
39514            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39515            "in": "query",
39516            "name": "limit",
39517            "type": "integer",
39518            "uniqueItems": true
39519          },
39520          {
39521            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39522            "in": "query",
39523            "name": "orphanDependents",
39524            "type": "boolean",
39525            "uniqueItems": true
39526          },
39527          {
39528            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39529            "in": "query",
39530            "name": "propagationPolicy",
39531            "type": "string",
39532            "uniqueItems": true
39533          },
39534          {
39535            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39536            "in": "query",
39537            "name": "resourceVersion",
39538            "type": "string",
39539            "uniqueItems": true
39540          },
39541          {
39542            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39543            "in": "query",
39544            "name": "resourceVersionMatch",
39545            "type": "string",
39546            "uniqueItems": true
39547          },
39548          {
39549            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39550            "in": "query",
39551            "name": "timeoutSeconds",
39552            "type": "integer",
39553            "uniqueItems": true
39554          }
39555        ],
39556        "produces": [
39557          "application/json",
39558          "application/yaml",
39559          "application/vnd.kubernetes.protobuf"
39560        ],
39561        "responses": {
39562          "200": {
39563            "description": "OK",
39564            "schema": {
39565              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39566            }
39567          },
39568          "401": {
39569            "description": "Unauthorized"
39570          }
39571        },
39572        "schemes": [
39573          "https"
39574        ],
39575        "tags": [
39576          "admissionregistration_v1"
39577        ],
39578        "x-kubernetes-action": "deletecollection",
39579        "x-kubernetes-group-version-kind": {
39580          "group": "admissionregistration.k8s.io",
39581          "kind": "MutatingWebhookConfiguration",
39582          "version": "v1"
39583        }
39584      },
39585      "get": {
39586        "consumes": [
39587          "*/*"
39588        ],
39589        "description": "list or watch objects of kind MutatingWebhookConfiguration",
39590        "operationId": "listAdmissionregistrationV1MutatingWebhookConfiguration",
39591        "parameters": [
39592          {
39593            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
39594            "in": "query",
39595            "name": "allowWatchBookmarks",
39596            "type": "boolean",
39597            "uniqueItems": true
39598          },
39599          {
39600            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39601            "in": "query",
39602            "name": "continue",
39603            "type": "string",
39604            "uniqueItems": true
39605          },
39606          {
39607            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39608            "in": "query",
39609            "name": "fieldSelector",
39610            "type": "string",
39611            "uniqueItems": true
39612          },
39613          {
39614            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39615            "in": "query",
39616            "name": "labelSelector",
39617            "type": "string",
39618            "uniqueItems": true
39619          },
39620          {
39621            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39622            "in": "query",
39623            "name": "limit",
39624            "type": "integer",
39625            "uniqueItems": true
39626          },
39627          {
39628            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39629            "in": "query",
39630            "name": "resourceVersion",
39631            "type": "string",
39632            "uniqueItems": true
39633          },
39634          {
39635            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39636            "in": "query",
39637            "name": "resourceVersionMatch",
39638            "type": "string",
39639            "uniqueItems": true
39640          },
39641          {
39642            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39643            "in": "query",
39644            "name": "timeoutSeconds",
39645            "type": "integer",
39646            "uniqueItems": true
39647          },
39648          {
39649            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39650            "in": "query",
39651            "name": "watch",
39652            "type": "boolean",
39653            "uniqueItems": true
39654          }
39655        ],
39656        "produces": [
39657          "application/json",
39658          "application/yaml",
39659          "application/vnd.kubernetes.protobuf",
39660          "application/json;stream=watch",
39661          "application/vnd.kubernetes.protobuf;stream=watch"
39662        ],
39663        "responses": {
39664          "200": {
39665            "description": "OK",
39666            "schema": {
39667              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList"
39668            }
39669          },
39670          "401": {
39671            "description": "Unauthorized"
39672          }
39673        },
39674        "schemes": [
39675          "https"
39676        ],
39677        "tags": [
39678          "admissionregistration_v1"
39679        ],
39680        "x-kubernetes-action": "list",
39681        "x-kubernetes-group-version-kind": {
39682          "group": "admissionregistration.k8s.io",
39683          "kind": "MutatingWebhookConfiguration",
39684          "version": "v1"
39685        }
39686      },
39687      "parameters": [
39688        {
39689          "description": "If 'true', then the output is pretty printed.",
39690          "in": "query",
39691          "name": "pretty",
39692          "type": "string",
39693          "uniqueItems": true
39694        }
39695      ],
39696      "post": {
39697        "consumes": [
39698          "*/*"
39699        ],
39700        "description": "create a MutatingWebhookConfiguration",
39701        "operationId": "createAdmissionregistrationV1MutatingWebhookConfiguration",
39702        "parameters": [
39703          {
39704            "in": "body",
39705            "name": "body",
39706            "required": true,
39707            "schema": {
39708              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39709            }
39710          },
39711          {
39712            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39713            "in": "query",
39714            "name": "dryRun",
39715            "type": "string",
39716            "uniqueItems": true
39717          },
39718          {
39719            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39720            "in": "query",
39721            "name": "fieldManager",
39722            "type": "string",
39723            "uniqueItems": true
39724          }
39725        ],
39726        "produces": [
39727          "application/json",
39728          "application/yaml",
39729          "application/vnd.kubernetes.protobuf"
39730        ],
39731        "responses": {
39732          "200": {
39733            "description": "OK",
39734            "schema": {
39735              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39736            }
39737          },
39738          "201": {
39739            "description": "Created",
39740            "schema": {
39741              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39742            }
39743          },
39744          "202": {
39745            "description": "Accepted",
39746            "schema": {
39747              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39748            }
39749          },
39750          "401": {
39751            "description": "Unauthorized"
39752          }
39753        },
39754        "schemes": [
39755          "https"
39756        ],
39757        "tags": [
39758          "admissionregistration_v1"
39759        ],
39760        "x-kubernetes-action": "post",
39761        "x-kubernetes-group-version-kind": {
39762          "group": "admissionregistration.k8s.io",
39763          "kind": "MutatingWebhookConfiguration",
39764          "version": "v1"
39765        }
39766      }
39767    },
39768    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}": {
39769      "delete": {
39770        "consumes": [
39771          "*/*"
39772        ],
39773        "description": "delete a MutatingWebhookConfiguration",
39774        "operationId": "deleteAdmissionregistrationV1MutatingWebhookConfiguration",
39775        "parameters": [
39776          {
39777            "in": "body",
39778            "name": "body",
39779            "schema": {
39780              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39781            }
39782          },
39783          {
39784            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39785            "in": "query",
39786            "name": "dryRun",
39787            "type": "string",
39788            "uniqueItems": true
39789          },
39790          {
39791            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39792            "in": "query",
39793            "name": "gracePeriodSeconds",
39794            "type": "integer",
39795            "uniqueItems": true
39796          },
39797          {
39798            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39799            "in": "query",
39800            "name": "orphanDependents",
39801            "type": "boolean",
39802            "uniqueItems": true
39803          },
39804          {
39805            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39806            "in": "query",
39807            "name": "propagationPolicy",
39808            "type": "string",
39809            "uniqueItems": true
39810          }
39811        ],
39812        "produces": [
39813          "application/json",
39814          "application/yaml",
39815          "application/vnd.kubernetes.protobuf"
39816        ],
39817        "responses": {
39818          "200": {
39819            "description": "OK",
39820            "schema": {
39821              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39822            }
39823          },
39824          "202": {
39825            "description": "Accepted",
39826            "schema": {
39827              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39828            }
39829          },
39830          "401": {
39831            "description": "Unauthorized"
39832          }
39833        },
39834        "schemes": [
39835          "https"
39836        ],
39837        "tags": [
39838          "admissionregistration_v1"
39839        ],
39840        "x-kubernetes-action": "delete",
39841        "x-kubernetes-group-version-kind": {
39842          "group": "admissionregistration.k8s.io",
39843          "kind": "MutatingWebhookConfiguration",
39844          "version": "v1"
39845        }
39846      },
39847      "get": {
39848        "consumes": [
39849          "*/*"
39850        ],
39851        "description": "read the specified MutatingWebhookConfiguration",
39852        "operationId": "readAdmissionregistrationV1MutatingWebhookConfiguration",
39853        "produces": [
39854          "application/json",
39855          "application/yaml",
39856          "application/vnd.kubernetes.protobuf"
39857        ],
39858        "responses": {
39859          "200": {
39860            "description": "OK",
39861            "schema": {
39862              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39863            }
39864          },
39865          "401": {
39866            "description": "Unauthorized"
39867          }
39868        },
39869        "schemes": [
39870          "https"
39871        ],
39872        "tags": [
39873          "admissionregistration_v1"
39874        ],
39875        "x-kubernetes-action": "get",
39876        "x-kubernetes-group-version-kind": {
39877          "group": "admissionregistration.k8s.io",
39878          "kind": "MutatingWebhookConfiguration",
39879          "version": "v1"
39880        }
39881      },
39882      "parameters": [
39883        {
39884          "description": "name of the MutatingWebhookConfiguration",
39885          "in": "path",
39886          "name": "name",
39887          "required": true,
39888          "type": "string",
39889          "uniqueItems": true
39890        },
39891        {
39892          "description": "If 'true', then the output is pretty printed.",
39893          "in": "query",
39894          "name": "pretty",
39895          "type": "string",
39896          "uniqueItems": true
39897        }
39898      ],
39899      "patch": {
39900        "consumes": [
39901          "application/json-patch+json",
39902          "application/merge-patch+json",
39903          "application/strategic-merge-patch+json",
39904          "application/apply-patch+yaml"
39905        ],
39906        "description": "partially update the specified MutatingWebhookConfiguration",
39907        "operationId": "patchAdmissionregistrationV1MutatingWebhookConfiguration",
39908        "parameters": [
39909          {
39910            "in": "body",
39911            "name": "body",
39912            "required": true,
39913            "schema": {
39914              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
39915            }
39916          },
39917          {
39918            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39919            "in": "query",
39920            "name": "dryRun",
39921            "type": "string",
39922            "uniqueItems": true
39923          },
39924          {
39925            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
39926            "in": "query",
39927            "name": "fieldManager",
39928            "type": "string",
39929            "uniqueItems": true
39930          },
39931          {
39932            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
39933            "in": "query",
39934            "name": "force",
39935            "type": "boolean",
39936            "uniqueItems": true
39937          }
39938        ],
39939        "produces": [
39940          "application/json",
39941          "application/yaml",
39942          "application/vnd.kubernetes.protobuf"
39943        ],
39944        "responses": {
39945          "200": {
39946            "description": "OK",
39947            "schema": {
39948              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39949            }
39950          },
39951          "401": {
39952            "description": "Unauthorized"
39953          }
39954        },
39955        "schemes": [
39956          "https"
39957        ],
39958        "tags": [
39959          "admissionregistration_v1"
39960        ],
39961        "x-kubernetes-action": "patch",
39962        "x-kubernetes-group-version-kind": {
39963          "group": "admissionregistration.k8s.io",
39964          "kind": "MutatingWebhookConfiguration",
39965          "version": "v1"
39966        }
39967      },
39968      "put": {
39969        "consumes": [
39970          "*/*"
39971        ],
39972        "description": "replace the specified MutatingWebhookConfiguration",
39973        "operationId": "replaceAdmissionregistrationV1MutatingWebhookConfiguration",
39974        "parameters": [
39975          {
39976            "in": "body",
39977            "name": "body",
39978            "required": true,
39979            "schema": {
39980              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
39981            }
39982          },
39983          {
39984            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39985            "in": "query",
39986            "name": "dryRun",
39987            "type": "string",
39988            "uniqueItems": true
39989          },
39990          {
39991            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39992            "in": "query",
39993            "name": "fieldManager",
39994            "type": "string",
39995            "uniqueItems": true
39996          }
39997        ],
39998        "produces": [
39999          "application/json",
40000          "application/yaml",
40001          "application/vnd.kubernetes.protobuf"
40002        ],
40003        "responses": {
40004          "200": {
40005            "description": "OK",
40006            "schema": {
40007              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
40008            }
40009          },
40010          "201": {
40011            "description": "Created",
40012            "schema": {
40013              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
40014            }
40015          },
40016          "401": {
40017            "description": "Unauthorized"
40018          }
40019        },
40020        "schemes": [
40021          "https"
40022        ],
40023        "tags": [
40024          "admissionregistration_v1"
40025        ],
40026        "x-kubernetes-action": "put",
40027        "x-kubernetes-group-version-kind": {
40028          "group": "admissionregistration.k8s.io",
40029          "kind": "MutatingWebhookConfiguration",
40030          "version": "v1"
40031        }
40032      }
40033    },
40034    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations": {
40035      "delete": {
40036        "consumes": [
40037          "*/*"
40038        ],
40039        "description": "delete collection of ValidatingWebhookConfiguration",
40040        "operationId": "deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration",
40041        "parameters": [
40042          {
40043            "in": "body",
40044            "name": "body",
40045            "schema": {
40046              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40047            }
40048          },
40049          {
40050            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40051            "in": "query",
40052            "name": "continue",
40053            "type": "string",
40054            "uniqueItems": true
40055          },
40056          {
40057            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40058            "in": "query",
40059            "name": "dryRun",
40060            "type": "string",
40061            "uniqueItems": true
40062          },
40063          {
40064            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40065            "in": "query",
40066            "name": "fieldSelector",
40067            "type": "string",
40068            "uniqueItems": true
40069          },
40070          {
40071            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40072            "in": "query",
40073            "name": "gracePeriodSeconds",
40074            "type": "integer",
40075            "uniqueItems": true
40076          },
40077          {
40078            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40079            "in": "query",
40080            "name": "labelSelector",
40081            "type": "string",
40082            "uniqueItems": true
40083          },
40084          {
40085            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40086            "in": "query",
40087            "name": "limit",
40088            "type": "integer",
40089            "uniqueItems": true
40090          },
40091          {
40092            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40093            "in": "query",
40094            "name": "orphanDependents",
40095            "type": "boolean",
40096            "uniqueItems": true
40097          },
40098          {
40099            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40100            "in": "query",
40101            "name": "propagationPolicy",
40102            "type": "string",
40103            "uniqueItems": true
40104          },
40105          {
40106            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40107            "in": "query",
40108            "name": "resourceVersion",
40109            "type": "string",
40110            "uniqueItems": true
40111          },
40112          {
40113            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40114            "in": "query",
40115            "name": "resourceVersionMatch",
40116            "type": "string",
40117            "uniqueItems": true
40118          },
40119          {
40120            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40121            "in": "query",
40122            "name": "timeoutSeconds",
40123            "type": "integer",
40124            "uniqueItems": true
40125          }
40126        ],
40127        "produces": [
40128          "application/json",
40129          "application/yaml",
40130          "application/vnd.kubernetes.protobuf"
40131        ],
40132        "responses": {
40133          "200": {
40134            "description": "OK",
40135            "schema": {
40136              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40137            }
40138          },
40139          "401": {
40140            "description": "Unauthorized"
40141          }
40142        },
40143        "schemes": [
40144          "https"
40145        ],
40146        "tags": [
40147          "admissionregistration_v1"
40148        ],
40149        "x-kubernetes-action": "deletecollection",
40150        "x-kubernetes-group-version-kind": {
40151          "group": "admissionregistration.k8s.io",
40152          "kind": "ValidatingWebhookConfiguration",
40153          "version": "v1"
40154        }
40155      },
40156      "get": {
40157        "consumes": [
40158          "*/*"
40159        ],
40160        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
40161        "operationId": "listAdmissionregistrationV1ValidatingWebhookConfiguration",
40162        "parameters": [
40163          {
40164            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40165            "in": "query",
40166            "name": "allowWatchBookmarks",
40167            "type": "boolean",
40168            "uniqueItems": true
40169          },
40170          {
40171            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40172            "in": "query",
40173            "name": "continue",
40174            "type": "string",
40175            "uniqueItems": true
40176          },
40177          {
40178            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40179            "in": "query",
40180            "name": "fieldSelector",
40181            "type": "string",
40182            "uniqueItems": true
40183          },
40184          {
40185            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40186            "in": "query",
40187            "name": "labelSelector",
40188            "type": "string",
40189            "uniqueItems": true
40190          },
40191          {
40192            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40193            "in": "query",
40194            "name": "limit",
40195            "type": "integer",
40196            "uniqueItems": true
40197          },
40198          {
40199            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40200            "in": "query",
40201            "name": "resourceVersion",
40202            "type": "string",
40203            "uniqueItems": true
40204          },
40205          {
40206            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40207            "in": "query",
40208            "name": "resourceVersionMatch",
40209            "type": "string",
40210            "uniqueItems": true
40211          },
40212          {
40213            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40214            "in": "query",
40215            "name": "timeoutSeconds",
40216            "type": "integer",
40217            "uniqueItems": true
40218          },
40219          {
40220            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40221            "in": "query",
40222            "name": "watch",
40223            "type": "boolean",
40224            "uniqueItems": true
40225          }
40226        ],
40227        "produces": [
40228          "application/json",
40229          "application/yaml",
40230          "application/vnd.kubernetes.protobuf",
40231          "application/json;stream=watch",
40232          "application/vnd.kubernetes.protobuf;stream=watch"
40233        ],
40234        "responses": {
40235          "200": {
40236            "description": "OK",
40237            "schema": {
40238              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList"
40239            }
40240          },
40241          "401": {
40242            "description": "Unauthorized"
40243          }
40244        },
40245        "schemes": [
40246          "https"
40247        ],
40248        "tags": [
40249          "admissionregistration_v1"
40250        ],
40251        "x-kubernetes-action": "list",
40252        "x-kubernetes-group-version-kind": {
40253          "group": "admissionregistration.k8s.io",
40254          "kind": "ValidatingWebhookConfiguration",
40255          "version": "v1"
40256        }
40257      },
40258      "parameters": [
40259        {
40260          "description": "If 'true', then the output is pretty printed.",
40261          "in": "query",
40262          "name": "pretty",
40263          "type": "string",
40264          "uniqueItems": true
40265        }
40266      ],
40267      "post": {
40268        "consumes": [
40269          "*/*"
40270        ],
40271        "description": "create a ValidatingWebhookConfiguration",
40272        "operationId": "createAdmissionregistrationV1ValidatingWebhookConfiguration",
40273        "parameters": [
40274          {
40275            "in": "body",
40276            "name": "body",
40277            "required": true,
40278            "schema": {
40279              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40280            }
40281          },
40282          {
40283            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40284            "in": "query",
40285            "name": "dryRun",
40286            "type": "string",
40287            "uniqueItems": true
40288          },
40289          {
40290            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40291            "in": "query",
40292            "name": "fieldManager",
40293            "type": "string",
40294            "uniqueItems": true
40295          }
40296        ],
40297        "produces": [
40298          "application/json",
40299          "application/yaml",
40300          "application/vnd.kubernetes.protobuf"
40301        ],
40302        "responses": {
40303          "200": {
40304            "description": "OK",
40305            "schema": {
40306              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40307            }
40308          },
40309          "201": {
40310            "description": "Created",
40311            "schema": {
40312              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40313            }
40314          },
40315          "202": {
40316            "description": "Accepted",
40317            "schema": {
40318              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40319            }
40320          },
40321          "401": {
40322            "description": "Unauthorized"
40323          }
40324        },
40325        "schemes": [
40326          "https"
40327        ],
40328        "tags": [
40329          "admissionregistration_v1"
40330        ],
40331        "x-kubernetes-action": "post",
40332        "x-kubernetes-group-version-kind": {
40333          "group": "admissionregistration.k8s.io",
40334          "kind": "ValidatingWebhookConfiguration",
40335          "version": "v1"
40336        }
40337      }
40338    },
40339    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}": {
40340      "delete": {
40341        "consumes": [
40342          "*/*"
40343        ],
40344        "description": "delete a ValidatingWebhookConfiguration",
40345        "operationId": "deleteAdmissionregistrationV1ValidatingWebhookConfiguration",
40346        "parameters": [
40347          {
40348            "in": "body",
40349            "name": "body",
40350            "schema": {
40351              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40352            }
40353          },
40354          {
40355            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40356            "in": "query",
40357            "name": "dryRun",
40358            "type": "string",
40359            "uniqueItems": true
40360          },
40361          {
40362            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40363            "in": "query",
40364            "name": "gracePeriodSeconds",
40365            "type": "integer",
40366            "uniqueItems": true
40367          },
40368          {
40369            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40370            "in": "query",
40371            "name": "orphanDependents",
40372            "type": "boolean",
40373            "uniqueItems": true
40374          },
40375          {
40376            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40377            "in": "query",
40378            "name": "propagationPolicy",
40379            "type": "string",
40380            "uniqueItems": true
40381          }
40382        ],
40383        "produces": [
40384          "application/json",
40385          "application/yaml",
40386          "application/vnd.kubernetes.protobuf"
40387        ],
40388        "responses": {
40389          "200": {
40390            "description": "OK",
40391            "schema": {
40392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40393            }
40394          },
40395          "202": {
40396            "description": "Accepted",
40397            "schema": {
40398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40399            }
40400          },
40401          "401": {
40402            "description": "Unauthorized"
40403          }
40404        },
40405        "schemes": [
40406          "https"
40407        ],
40408        "tags": [
40409          "admissionregistration_v1"
40410        ],
40411        "x-kubernetes-action": "delete",
40412        "x-kubernetes-group-version-kind": {
40413          "group": "admissionregistration.k8s.io",
40414          "kind": "ValidatingWebhookConfiguration",
40415          "version": "v1"
40416        }
40417      },
40418      "get": {
40419        "consumes": [
40420          "*/*"
40421        ],
40422        "description": "read the specified ValidatingWebhookConfiguration",
40423        "operationId": "readAdmissionregistrationV1ValidatingWebhookConfiguration",
40424        "produces": [
40425          "application/json",
40426          "application/yaml",
40427          "application/vnd.kubernetes.protobuf"
40428        ],
40429        "responses": {
40430          "200": {
40431            "description": "OK",
40432            "schema": {
40433              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40434            }
40435          },
40436          "401": {
40437            "description": "Unauthorized"
40438          }
40439        },
40440        "schemes": [
40441          "https"
40442        ],
40443        "tags": [
40444          "admissionregistration_v1"
40445        ],
40446        "x-kubernetes-action": "get",
40447        "x-kubernetes-group-version-kind": {
40448          "group": "admissionregistration.k8s.io",
40449          "kind": "ValidatingWebhookConfiguration",
40450          "version": "v1"
40451        }
40452      },
40453      "parameters": [
40454        {
40455          "description": "name of the ValidatingWebhookConfiguration",
40456          "in": "path",
40457          "name": "name",
40458          "required": true,
40459          "type": "string",
40460          "uniqueItems": true
40461        },
40462        {
40463          "description": "If 'true', then the output is pretty printed.",
40464          "in": "query",
40465          "name": "pretty",
40466          "type": "string",
40467          "uniqueItems": true
40468        }
40469      ],
40470      "patch": {
40471        "consumes": [
40472          "application/json-patch+json",
40473          "application/merge-patch+json",
40474          "application/strategic-merge-patch+json",
40475          "application/apply-patch+yaml"
40476        ],
40477        "description": "partially update the specified ValidatingWebhookConfiguration",
40478        "operationId": "patchAdmissionregistrationV1ValidatingWebhookConfiguration",
40479        "parameters": [
40480          {
40481            "in": "body",
40482            "name": "body",
40483            "required": true,
40484            "schema": {
40485              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
40486            }
40487          },
40488          {
40489            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40490            "in": "query",
40491            "name": "dryRun",
40492            "type": "string",
40493            "uniqueItems": true
40494          },
40495          {
40496            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
40497            "in": "query",
40498            "name": "fieldManager",
40499            "type": "string",
40500            "uniqueItems": true
40501          },
40502          {
40503            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
40504            "in": "query",
40505            "name": "force",
40506            "type": "boolean",
40507            "uniqueItems": true
40508          }
40509        ],
40510        "produces": [
40511          "application/json",
40512          "application/yaml",
40513          "application/vnd.kubernetes.protobuf"
40514        ],
40515        "responses": {
40516          "200": {
40517            "description": "OK",
40518            "schema": {
40519              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40520            }
40521          },
40522          "401": {
40523            "description": "Unauthorized"
40524          }
40525        },
40526        "schemes": [
40527          "https"
40528        ],
40529        "tags": [
40530          "admissionregistration_v1"
40531        ],
40532        "x-kubernetes-action": "patch",
40533        "x-kubernetes-group-version-kind": {
40534          "group": "admissionregistration.k8s.io",
40535          "kind": "ValidatingWebhookConfiguration",
40536          "version": "v1"
40537        }
40538      },
40539      "put": {
40540        "consumes": [
40541          "*/*"
40542        ],
40543        "description": "replace the specified ValidatingWebhookConfiguration",
40544        "operationId": "replaceAdmissionregistrationV1ValidatingWebhookConfiguration",
40545        "parameters": [
40546          {
40547            "in": "body",
40548            "name": "body",
40549            "required": true,
40550            "schema": {
40551              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40552            }
40553          },
40554          {
40555            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40556            "in": "query",
40557            "name": "dryRun",
40558            "type": "string",
40559            "uniqueItems": true
40560          },
40561          {
40562            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40563            "in": "query",
40564            "name": "fieldManager",
40565            "type": "string",
40566            "uniqueItems": true
40567          }
40568        ],
40569        "produces": [
40570          "application/json",
40571          "application/yaml",
40572          "application/vnd.kubernetes.protobuf"
40573        ],
40574        "responses": {
40575          "200": {
40576            "description": "OK",
40577            "schema": {
40578              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40579            }
40580          },
40581          "201": {
40582            "description": "Created",
40583            "schema": {
40584              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
40585            }
40586          },
40587          "401": {
40588            "description": "Unauthorized"
40589          }
40590        },
40591        "schemes": [
40592          "https"
40593        ],
40594        "tags": [
40595          "admissionregistration_v1"
40596        ],
40597        "x-kubernetes-action": "put",
40598        "x-kubernetes-group-version-kind": {
40599          "group": "admissionregistration.k8s.io",
40600          "kind": "ValidatingWebhookConfiguration",
40601          "version": "v1"
40602        }
40603      }
40604    },
40605    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations": {
40606      "get": {
40607        "consumes": [
40608          "*/*"
40609        ],
40610        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
40611        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfigurationList",
40612        "produces": [
40613          "application/json",
40614          "application/yaml",
40615          "application/vnd.kubernetes.protobuf",
40616          "application/json;stream=watch",
40617          "application/vnd.kubernetes.protobuf;stream=watch"
40618        ],
40619        "responses": {
40620          "200": {
40621            "description": "OK",
40622            "schema": {
40623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40624            }
40625          },
40626          "401": {
40627            "description": "Unauthorized"
40628          }
40629        },
40630        "schemes": [
40631          "https"
40632        ],
40633        "tags": [
40634          "admissionregistration_v1"
40635        ],
40636        "x-kubernetes-action": "watchlist",
40637        "x-kubernetes-group-version-kind": {
40638          "group": "admissionregistration.k8s.io",
40639          "kind": "MutatingWebhookConfiguration",
40640          "version": "v1"
40641        }
40642      },
40643      "parameters": [
40644        {
40645          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40646          "in": "query",
40647          "name": "allowWatchBookmarks",
40648          "type": "boolean",
40649          "uniqueItems": true
40650        },
40651        {
40652          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40653          "in": "query",
40654          "name": "continue",
40655          "type": "string",
40656          "uniqueItems": true
40657        },
40658        {
40659          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40660          "in": "query",
40661          "name": "fieldSelector",
40662          "type": "string",
40663          "uniqueItems": true
40664        },
40665        {
40666          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40667          "in": "query",
40668          "name": "labelSelector",
40669          "type": "string",
40670          "uniqueItems": true
40671        },
40672        {
40673          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40674          "in": "query",
40675          "name": "limit",
40676          "type": "integer",
40677          "uniqueItems": true
40678        },
40679        {
40680          "description": "If 'true', then the output is pretty printed.",
40681          "in": "query",
40682          "name": "pretty",
40683          "type": "string",
40684          "uniqueItems": true
40685        },
40686        {
40687          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40688          "in": "query",
40689          "name": "resourceVersion",
40690          "type": "string",
40691          "uniqueItems": true
40692        },
40693        {
40694          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40695          "in": "query",
40696          "name": "resourceVersionMatch",
40697          "type": "string",
40698          "uniqueItems": true
40699        },
40700        {
40701          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40702          "in": "query",
40703          "name": "timeoutSeconds",
40704          "type": "integer",
40705          "uniqueItems": true
40706        },
40707        {
40708          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40709          "in": "query",
40710          "name": "watch",
40711          "type": "boolean",
40712          "uniqueItems": true
40713        }
40714      ]
40715    },
40716    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}": {
40717      "get": {
40718        "consumes": [
40719          "*/*"
40720        ],
40721        "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.",
40722        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfiguration",
40723        "produces": [
40724          "application/json",
40725          "application/yaml",
40726          "application/vnd.kubernetes.protobuf",
40727          "application/json;stream=watch",
40728          "application/vnd.kubernetes.protobuf;stream=watch"
40729        ],
40730        "responses": {
40731          "200": {
40732            "description": "OK",
40733            "schema": {
40734              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40735            }
40736          },
40737          "401": {
40738            "description": "Unauthorized"
40739          }
40740        },
40741        "schemes": [
40742          "https"
40743        ],
40744        "tags": [
40745          "admissionregistration_v1"
40746        ],
40747        "x-kubernetes-action": "watch",
40748        "x-kubernetes-group-version-kind": {
40749          "group": "admissionregistration.k8s.io",
40750          "kind": "MutatingWebhookConfiguration",
40751          "version": "v1"
40752        }
40753      },
40754      "parameters": [
40755        {
40756          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40757          "in": "query",
40758          "name": "allowWatchBookmarks",
40759          "type": "boolean",
40760          "uniqueItems": true
40761        },
40762        {
40763          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40764          "in": "query",
40765          "name": "continue",
40766          "type": "string",
40767          "uniqueItems": true
40768        },
40769        {
40770          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40771          "in": "query",
40772          "name": "fieldSelector",
40773          "type": "string",
40774          "uniqueItems": true
40775        },
40776        {
40777          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40778          "in": "query",
40779          "name": "labelSelector",
40780          "type": "string",
40781          "uniqueItems": true
40782        },
40783        {
40784          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40785          "in": "query",
40786          "name": "limit",
40787          "type": "integer",
40788          "uniqueItems": true
40789        },
40790        {
40791          "description": "name of the MutatingWebhookConfiguration",
40792          "in": "path",
40793          "name": "name",
40794          "required": true,
40795          "type": "string",
40796          "uniqueItems": true
40797        },
40798        {
40799          "description": "If 'true', then the output is pretty printed.",
40800          "in": "query",
40801          "name": "pretty",
40802          "type": "string",
40803          "uniqueItems": true
40804        },
40805        {
40806          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40807          "in": "query",
40808          "name": "resourceVersion",
40809          "type": "string",
40810          "uniqueItems": true
40811        },
40812        {
40813          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40814          "in": "query",
40815          "name": "resourceVersionMatch",
40816          "type": "string",
40817          "uniqueItems": true
40818        },
40819        {
40820          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40821          "in": "query",
40822          "name": "timeoutSeconds",
40823          "type": "integer",
40824          "uniqueItems": true
40825        },
40826        {
40827          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40828          "in": "query",
40829          "name": "watch",
40830          "type": "boolean",
40831          "uniqueItems": true
40832        }
40833      ]
40834    },
40835    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations": {
40836      "get": {
40837        "consumes": [
40838          "*/*"
40839        ],
40840        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
40841        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfigurationList",
40842        "produces": [
40843          "application/json",
40844          "application/yaml",
40845          "application/vnd.kubernetes.protobuf",
40846          "application/json;stream=watch",
40847          "application/vnd.kubernetes.protobuf;stream=watch"
40848        ],
40849        "responses": {
40850          "200": {
40851            "description": "OK",
40852            "schema": {
40853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40854            }
40855          },
40856          "401": {
40857            "description": "Unauthorized"
40858          }
40859        },
40860        "schemes": [
40861          "https"
40862        ],
40863        "tags": [
40864          "admissionregistration_v1"
40865        ],
40866        "x-kubernetes-action": "watchlist",
40867        "x-kubernetes-group-version-kind": {
40868          "group": "admissionregistration.k8s.io",
40869          "kind": "ValidatingWebhookConfiguration",
40870          "version": "v1"
40871        }
40872      },
40873      "parameters": [
40874        {
40875          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40876          "in": "query",
40877          "name": "allowWatchBookmarks",
40878          "type": "boolean",
40879          "uniqueItems": true
40880        },
40881        {
40882          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40883          "in": "query",
40884          "name": "continue",
40885          "type": "string",
40886          "uniqueItems": true
40887        },
40888        {
40889          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40890          "in": "query",
40891          "name": "fieldSelector",
40892          "type": "string",
40893          "uniqueItems": true
40894        },
40895        {
40896          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40897          "in": "query",
40898          "name": "labelSelector",
40899          "type": "string",
40900          "uniqueItems": true
40901        },
40902        {
40903          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40904          "in": "query",
40905          "name": "limit",
40906          "type": "integer",
40907          "uniqueItems": true
40908        },
40909        {
40910          "description": "If 'true', then the output is pretty printed.",
40911          "in": "query",
40912          "name": "pretty",
40913          "type": "string",
40914          "uniqueItems": true
40915        },
40916        {
40917          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40918          "in": "query",
40919          "name": "resourceVersion",
40920          "type": "string",
40921          "uniqueItems": true
40922        },
40923        {
40924          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40925          "in": "query",
40926          "name": "resourceVersionMatch",
40927          "type": "string",
40928          "uniqueItems": true
40929        },
40930        {
40931          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40932          "in": "query",
40933          "name": "timeoutSeconds",
40934          "type": "integer",
40935          "uniqueItems": true
40936        },
40937        {
40938          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40939          "in": "query",
40940          "name": "watch",
40941          "type": "boolean",
40942          "uniqueItems": true
40943        }
40944      ]
40945    },
40946    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}": {
40947      "get": {
40948        "consumes": [
40949          "*/*"
40950        ],
40951        "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.",
40952        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfiguration",
40953        "produces": [
40954          "application/json",
40955          "application/yaml",
40956          "application/vnd.kubernetes.protobuf",
40957          "application/json;stream=watch",
40958          "application/vnd.kubernetes.protobuf;stream=watch"
40959        ],
40960        "responses": {
40961          "200": {
40962            "description": "OK",
40963            "schema": {
40964              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40965            }
40966          },
40967          "401": {
40968            "description": "Unauthorized"
40969          }
40970        },
40971        "schemes": [
40972          "https"
40973        ],
40974        "tags": [
40975          "admissionregistration_v1"
40976        ],
40977        "x-kubernetes-action": "watch",
40978        "x-kubernetes-group-version-kind": {
40979          "group": "admissionregistration.k8s.io",
40980          "kind": "ValidatingWebhookConfiguration",
40981          "version": "v1"
40982        }
40983      },
40984      "parameters": [
40985        {
40986          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
40987          "in": "query",
40988          "name": "allowWatchBookmarks",
40989          "type": "boolean",
40990          "uniqueItems": true
40991        },
40992        {
40993          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40994          "in": "query",
40995          "name": "continue",
40996          "type": "string",
40997          "uniqueItems": true
40998        },
40999        {
41000          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41001          "in": "query",
41002          "name": "fieldSelector",
41003          "type": "string",
41004          "uniqueItems": true
41005        },
41006        {
41007          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41008          "in": "query",
41009          "name": "labelSelector",
41010          "type": "string",
41011          "uniqueItems": true
41012        },
41013        {
41014          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41015          "in": "query",
41016          "name": "limit",
41017          "type": "integer",
41018          "uniqueItems": true
41019        },
41020        {
41021          "description": "name of the ValidatingWebhookConfiguration",
41022          "in": "path",
41023          "name": "name",
41024          "required": true,
41025          "type": "string",
41026          "uniqueItems": true
41027        },
41028        {
41029          "description": "If 'true', then the output is pretty printed.",
41030          "in": "query",
41031          "name": "pretty",
41032          "type": "string",
41033          "uniqueItems": true
41034        },
41035        {
41036          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41037          "in": "query",
41038          "name": "resourceVersion",
41039          "type": "string",
41040          "uniqueItems": true
41041        },
41042        {
41043          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41044          "in": "query",
41045          "name": "resourceVersionMatch",
41046          "type": "string",
41047          "uniqueItems": true
41048        },
41049        {
41050          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41051          "in": "query",
41052          "name": "timeoutSeconds",
41053          "type": "integer",
41054          "uniqueItems": true
41055        },
41056        {
41057          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41058          "in": "query",
41059          "name": "watch",
41060          "type": "boolean",
41061          "uniqueItems": true
41062        }
41063      ]
41064    },
41065    "/apis/admissionregistration.k8s.io/v1beta1/": {
41066      "get": {
41067        "consumes": [
41068          "application/json",
41069          "application/yaml",
41070          "application/vnd.kubernetes.protobuf"
41071        ],
41072        "description": "get available resources",
41073        "operationId": "getAdmissionregistrationV1beta1APIResources",
41074        "produces": [
41075          "application/json",
41076          "application/yaml",
41077          "application/vnd.kubernetes.protobuf"
41078        ],
41079        "responses": {
41080          "200": {
41081            "description": "OK",
41082            "schema": {
41083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
41084            }
41085          },
41086          "401": {
41087            "description": "Unauthorized"
41088          }
41089        },
41090        "schemes": [
41091          "https"
41092        ],
41093        "tags": [
41094          "admissionregistration_v1beta1"
41095        ]
41096      }
41097    },
41098    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations": {
41099      "delete": {
41100        "consumes": [
41101          "*/*"
41102        ],
41103        "description": "delete collection of MutatingWebhookConfiguration",
41104        "operationId": "deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration",
41105        "parameters": [
41106          {
41107            "in": "body",
41108            "name": "body",
41109            "schema": {
41110              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41111            }
41112          },
41113          {
41114            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41115            "in": "query",
41116            "name": "continue",
41117            "type": "string",
41118            "uniqueItems": true
41119          },
41120          {
41121            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41122            "in": "query",
41123            "name": "dryRun",
41124            "type": "string",
41125            "uniqueItems": true
41126          },
41127          {
41128            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41129            "in": "query",
41130            "name": "fieldSelector",
41131            "type": "string",
41132            "uniqueItems": true
41133          },
41134          {
41135            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41136            "in": "query",
41137            "name": "gracePeriodSeconds",
41138            "type": "integer",
41139            "uniqueItems": true
41140          },
41141          {
41142            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41143            "in": "query",
41144            "name": "labelSelector",
41145            "type": "string",
41146            "uniqueItems": true
41147          },
41148          {
41149            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41150            "in": "query",
41151            "name": "limit",
41152            "type": "integer",
41153            "uniqueItems": true
41154          },
41155          {
41156            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41157            "in": "query",
41158            "name": "orphanDependents",
41159            "type": "boolean",
41160            "uniqueItems": true
41161          },
41162          {
41163            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41164            "in": "query",
41165            "name": "propagationPolicy",
41166            "type": "string",
41167            "uniqueItems": true
41168          },
41169          {
41170            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41171            "in": "query",
41172            "name": "resourceVersion",
41173            "type": "string",
41174            "uniqueItems": true
41175          },
41176          {
41177            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41178            "in": "query",
41179            "name": "resourceVersionMatch",
41180            "type": "string",
41181            "uniqueItems": true
41182          },
41183          {
41184            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41185            "in": "query",
41186            "name": "timeoutSeconds",
41187            "type": "integer",
41188            "uniqueItems": true
41189          }
41190        ],
41191        "produces": [
41192          "application/json",
41193          "application/yaml",
41194          "application/vnd.kubernetes.protobuf"
41195        ],
41196        "responses": {
41197          "200": {
41198            "description": "OK",
41199            "schema": {
41200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41201            }
41202          },
41203          "401": {
41204            "description": "Unauthorized"
41205          }
41206        },
41207        "schemes": [
41208          "https"
41209        ],
41210        "tags": [
41211          "admissionregistration_v1beta1"
41212        ],
41213        "x-kubernetes-action": "deletecollection",
41214        "x-kubernetes-group-version-kind": {
41215          "group": "admissionregistration.k8s.io",
41216          "kind": "MutatingWebhookConfiguration",
41217          "version": "v1beta1"
41218        }
41219      },
41220      "get": {
41221        "consumes": [
41222          "*/*"
41223        ],
41224        "description": "list or watch objects of kind MutatingWebhookConfiguration",
41225        "operationId": "listAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41226        "parameters": [
41227          {
41228            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
41229            "in": "query",
41230            "name": "allowWatchBookmarks",
41231            "type": "boolean",
41232            "uniqueItems": true
41233          },
41234          {
41235            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41236            "in": "query",
41237            "name": "continue",
41238            "type": "string",
41239            "uniqueItems": true
41240          },
41241          {
41242            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41243            "in": "query",
41244            "name": "fieldSelector",
41245            "type": "string",
41246            "uniqueItems": true
41247          },
41248          {
41249            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41250            "in": "query",
41251            "name": "labelSelector",
41252            "type": "string",
41253            "uniqueItems": true
41254          },
41255          {
41256            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41257            "in": "query",
41258            "name": "limit",
41259            "type": "integer",
41260            "uniqueItems": true
41261          },
41262          {
41263            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41264            "in": "query",
41265            "name": "resourceVersion",
41266            "type": "string",
41267            "uniqueItems": true
41268          },
41269          {
41270            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41271            "in": "query",
41272            "name": "resourceVersionMatch",
41273            "type": "string",
41274            "uniqueItems": true
41275          },
41276          {
41277            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41278            "in": "query",
41279            "name": "timeoutSeconds",
41280            "type": "integer",
41281            "uniqueItems": true
41282          },
41283          {
41284            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41285            "in": "query",
41286            "name": "watch",
41287            "type": "boolean",
41288            "uniqueItems": true
41289          }
41290        ],
41291        "produces": [
41292          "application/json",
41293          "application/yaml",
41294          "application/vnd.kubernetes.protobuf",
41295          "application/json;stream=watch",
41296          "application/vnd.kubernetes.protobuf;stream=watch"
41297        ],
41298        "responses": {
41299          "200": {
41300            "description": "OK",
41301            "schema": {
41302              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList"
41303            }
41304          },
41305          "401": {
41306            "description": "Unauthorized"
41307          }
41308        },
41309        "schemes": [
41310          "https"
41311        ],
41312        "tags": [
41313          "admissionregistration_v1beta1"
41314        ],
41315        "x-kubernetes-action": "list",
41316        "x-kubernetes-group-version-kind": {
41317          "group": "admissionregistration.k8s.io",
41318          "kind": "MutatingWebhookConfiguration",
41319          "version": "v1beta1"
41320        }
41321      },
41322      "parameters": [
41323        {
41324          "description": "If 'true', then the output is pretty printed.",
41325          "in": "query",
41326          "name": "pretty",
41327          "type": "string",
41328          "uniqueItems": true
41329        }
41330      ],
41331      "post": {
41332        "consumes": [
41333          "*/*"
41334        ],
41335        "description": "create a MutatingWebhookConfiguration",
41336        "operationId": "createAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41337        "parameters": [
41338          {
41339            "in": "body",
41340            "name": "body",
41341            "required": true,
41342            "schema": {
41343              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41344            }
41345          },
41346          {
41347            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41348            "in": "query",
41349            "name": "dryRun",
41350            "type": "string",
41351            "uniqueItems": true
41352          },
41353          {
41354            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41355            "in": "query",
41356            "name": "fieldManager",
41357            "type": "string",
41358            "uniqueItems": true
41359          }
41360        ],
41361        "produces": [
41362          "application/json",
41363          "application/yaml",
41364          "application/vnd.kubernetes.protobuf"
41365        ],
41366        "responses": {
41367          "200": {
41368            "description": "OK",
41369            "schema": {
41370              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41371            }
41372          },
41373          "201": {
41374            "description": "Created",
41375            "schema": {
41376              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41377            }
41378          },
41379          "202": {
41380            "description": "Accepted",
41381            "schema": {
41382              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41383            }
41384          },
41385          "401": {
41386            "description": "Unauthorized"
41387          }
41388        },
41389        "schemes": [
41390          "https"
41391        ],
41392        "tags": [
41393          "admissionregistration_v1beta1"
41394        ],
41395        "x-kubernetes-action": "post",
41396        "x-kubernetes-group-version-kind": {
41397          "group": "admissionregistration.k8s.io",
41398          "kind": "MutatingWebhookConfiguration",
41399          "version": "v1beta1"
41400        }
41401      }
41402    },
41403    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}": {
41404      "delete": {
41405        "consumes": [
41406          "*/*"
41407        ],
41408        "description": "delete a MutatingWebhookConfiguration",
41409        "operationId": "deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41410        "parameters": [
41411          {
41412            "in": "body",
41413            "name": "body",
41414            "schema": {
41415              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41416            }
41417          },
41418          {
41419            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41420            "in": "query",
41421            "name": "dryRun",
41422            "type": "string",
41423            "uniqueItems": true
41424          },
41425          {
41426            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41427            "in": "query",
41428            "name": "gracePeriodSeconds",
41429            "type": "integer",
41430            "uniqueItems": true
41431          },
41432          {
41433            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41434            "in": "query",
41435            "name": "orphanDependents",
41436            "type": "boolean",
41437            "uniqueItems": true
41438          },
41439          {
41440            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41441            "in": "query",
41442            "name": "propagationPolicy",
41443            "type": "string",
41444            "uniqueItems": true
41445          }
41446        ],
41447        "produces": [
41448          "application/json",
41449          "application/yaml",
41450          "application/vnd.kubernetes.protobuf"
41451        ],
41452        "responses": {
41453          "200": {
41454            "description": "OK",
41455            "schema": {
41456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41457            }
41458          },
41459          "202": {
41460            "description": "Accepted",
41461            "schema": {
41462              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41463            }
41464          },
41465          "401": {
41466            "description": "Unauthorized"
41467          }
41468        },
41469        "schemes": [
41470          "https"
41471        ],
41472        "tags": [
41473          "admissionregistration_v1beta1"
41474        ],
41475        "x-kubernetes-action": "delete",
41476        "x-kubernetes-group-version-kind": {
41477          "group": "admissionregistration.k8s.io",
41478          "kind": "MutatingWebhookConfiguration",
41479          "version": "v1beta1"
41480        }
41481      },
41482      "get": {
41483        "consumes": [
41484          "*/*"
41485        ],
41486        "description": "read the specified MutatingWebhookConfiguration",
41487        "operationId": "readAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41488        "produces": [
41489          "application/json",
41490          "application/yaml",
41491          "application/vnd.kubernetes.protobuf"
41492        ],
41493        "responses": {
41494          "200": {
41495            "description": "OK",
41496            "schema": {
41497              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41498            }
41499          },
41500          "401": {
41501            "description": "Unauthorized"
41502          }
41503        },
41504        "schemes": [
41505          "https"
41506        ],
41507        "tags": [
41508          "admissionregistration_v1beta1"
41509        ],
41510        "x-kubernetes-action": "get",
41511        "x-kubernetes-group-version-kind": {
41512          "group": "admissionregistration.k8s.io",
41513          "kind": "MutatingWebhookConfiguration",
41514          "version": "v1beta1"
41515        }
41516      },
41517      "parameters": [
41518        {
41519          "description": "name of the MutatingWebhookConfiguration",
41520          "in": "path",
41521          "name": "name",
41522          "required": true,
41523          "type": "string",
41524          "uniqueItems": true
41525        },
41526        {
41527          "description": "If 'true', then the output is pretty printed.",
41528          "in": "query",
41529          "name": "pretty",
41530          "type": "string",
41531          "uniqueItems": true
41532        }
41533      ],
41534      "patch": {
41535        "consumes": [
41536          "application/json-patch+json",
41537          "application/merge-patch+json",
41538          "application/strategic-merge-patch+json",
41539          "application/apply-patch+yaml"
41540        ],
41541        "description": "partially update the specified MutatingWebhookConfiguration",
41542        "operationId": "patchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41543        "parameters": [
41544          {
41545            "in": "body",
41546            "name": "body",
41547            "required": true,
41548            "schema": {
41549              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
41550            }
41551          },
41552          {
41553            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41554            "in": "query",
41555            "name": "dryRun",
41556            "type": "string",
41557            "uniqueItems": true
41558          },
41559          {
41560            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
41561            "in": "query",
41562            "name": "fieldManager",
41563            "type": "string",
41564            "uniqueItems": true
41565          },
41566          {
41567            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
41568            "in": "query",
41569            "name": "force",
41570            "type": "boolean",
41571            "uniqueItems": true
41572          }
41573        ],
41574        "produces": [
41575          "application/json",
41576          "application/yaml",
41577          "application/vnd.kubernetes.protobuf"
41578        ],
41579        "responses": {
41580          "200": {
41581            "description": "OK",
41582            "schema": {
41583              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41584            }
41585          },
41586          "401": {
41587            "description": "Unauthorized"
41588          }
41589        },
41590        "schemes": [
41591          "https"
41592        ],
41593        "tags": [
41594          "admissionregistration_v1beta1"
41595        ],
41596        "x-kubernetes-action": "patch",
41597        "x-kubernetes-group-version-kind": {
41598          "group": "admissionregistration.k8s.io",
41599          "kind": "MutatingWebhookConfiguration",
41600          "version": "v1beta1"
41601        }
41602      },
41603      "put": {
41604        "consumes": [
41605          "*/*"
41606        ],
41607        "description": "replace the specified MutatingWebhookConfiguration",
41608        "operationId": "replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41609        "parameters": [
41610          {
41611            "in": "body",
41612            "name": "body",
41613            "required": true,
41614            "schema": {
41615              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41616            }
41617          },
41618          {
41619            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41620            "in": "query",
41621            "name": "dryRun",
41622            "type": "string",
41623            "uniqueItems": true
41624          },
41625          {
41626            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41627            "in": "query",
41628            "name": "fieldManager",
41629            "type": "string",
41630            "uniqueItems": true
41631          }
41632        ],
41633        "produces": [
41634          "application/json",
41635          "application/yaml",
41636          "application/vnd.kubernetes.protobuf"
41637        ],
41638        "responses": {
41639          "200": {
41640            "description": "OK",
41641            "schema": {
41642              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41643            }
41644          },
41645          "201": {
41646            "description": "Created",
41647            "schema": {
41648              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
41649            }
41650          },
41651          "401": {
41652            "description": "Unauthorized"
41653          }
41654        },
41655        "schemes": [
41656          "https"
41657        ],
41658        "tags": [
41659          "admissionregistration_v1beta1"
41660        ],
41661        "x-kubernetes-action": "put",
41662        "x-kubernetes-group-version-kind": {
41663          "group": "admissionregistration.k8s.io",
41664          "kind": "MutatingWebhookConfiguration",
41665          "version": "v1beta1"
41666        }
41667      }
41668    },
41669    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations": {
41670      "delete": {
41671        "consumes": [
41672          "*/*"
41673        ],
41674        "description": "delete collection of ValidatingWebhookConfiguration",
41675        "operationId": "deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration",
41676        "parameters": [
41677          {
41678            "in": "body",
41679            "name": "body",
41680            "schema": {
41681              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41682            }
41683          },
41684          {
41685            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41686            "in": "query",
41687            "name": "continue",
41688            "type": "string",
41689            "uniqueItems": true
41690          },
41691          {
41692            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41693            "in": "query",
41694            "name": "dryRun",
41695            "type": "string",
41696            "uniqueItems": true
41697          },
41698          {
41699            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41700            "in": "query",
41701            "name": "fieldSelector",
41702            "type": "string",
41703            "uniqueItems": true
41704          },
41705          {
41706            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41707            "in": "query",
41708            "name": "gracePeriodSeconds",
41709            "type": "integer",
41710            "uniqueItems": true
41711          },
41712          {
41713            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41714            "in": "query",
41715            "name": "labelSelector",
41716            "type": "string",
41717            "uniqueItems": true
41718          },
41719          {
41720            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41721            "in": "query",
41722            "name": "limit",
41723            "type": "integer",
41724            "uniqueItems": true
41725          },
41726          {
41727            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41728            "in": "query",
41729            "name": "orphanDependents",
41730            "type": "boolean",
41731            "uniqueItems": true
41732          },
41733          {
41734            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41735            "in": "query",
41736            "name": "propagationPolicy",
41737            "type": "string",
41738            "uniqueItems": true
41739          },
41740          {
41741            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41742            "in": "query",
41743            "name": "resourceVersion",
41744            "type": "string",
41745            "uniqueItems": true
41746          },
41747          {
41748            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41749            "in": "query",
41750            "name": "resourceVersionMatch",
41751            "type": "string",
41752            "uniqueItems": true
41753          },
41754          {
41755            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41756            "in": "query",
41757            "name": "timeoutSeconds",
41758            "type": "integer",
41759            "uniqueItems": true
41760          }
41761        ],
41762        "produces": [
41763          "application/json",
41764          "application/yaml",
41765          "application/vnd.kubernetes.protobuf"
41766        ],
41767        "responses": {
41768          "200": {
41769            "description": "OK",
41770            "schema": {
41771              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41772            }
41773          },
41774          "401": {
41775            "description": "Unauthorized"
41776          }
41777        },
41778        "schemes": [
41779          "https"
41780        ],
41781        "tags": [
41782          "admissionregistration_v1beta1"
41783        ],
41784        "x-kubernetes-action": "deletecollection",
41785        "x-kubernetes-group-version-kind": {
41786          "group": "admissionregistration.k8s.io",
41787          "kind": "ValidatingWebhookConfiguration",
41788          "version": "v1beta1"
41789        }
41790      },
41791      "get": {
41792        "consumes": [
41793          "*/*"
41794        ],
41795        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
41796        "operationId": "listAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41797        "parameters": [
41798          {
41799            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
41800            "in": "query",
41801            "name": "allowWatchBookmarks",
41802            "type": "boolean",
41803            "uniqueItems": true
41804          },
41805          {
41806            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41807            "in": "query",
41808            "name": "continue",
41809            "type": "string",
41810            "uniqueItems": true
41811          },
41812          {
41813            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41814            "in": "query",
41815            "name": "fieldSelector",
41816            "type": "string",
41817            "uniqueItems": true
41818          },
41819          {
41820            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41821            "in": "query",
41822            "name": "labelSelector",
41823            "type": "string",
41824            "uniqueItems": true
41825          },
41826          {
41827            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41828            "in": "query",
41829            "name": "limit",
41830            "type": "integer",
41831            "uniqueItems": true
41832          },
41833          {
41834            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41835            "in": "query",
41836            "name": "resourceVersion",
41837            "type": "string",
41838            "uniqueItems": true
41839          },
41840          {
41841            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41842            "in": "query",
41843            "name": "resourceVersionMatch",
41844            "type": "string",
41845            "uniqueItems": true
41846          },
41847          {
41848            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41849            "in": "query",
41850            "name": "timeoutSeconds",
41851            "type": "integer",
41852            "uniqueItems": true
41853          },
41854          {
41855            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41856            "in": "query",
41857            "name": "watch",
41858            "type": "boolean",
41859            "uniqueItems": true
41860          }
41861        ],
41862        "produces": [
41863          "application/json",
41864          "application/yaml",
41865          "application/vnd.kubernetes.protobuf",
41866          "application/json;stream=watch",
41867          "application/vnd.kubernetes.protobuf;stream=watch"
41868        ],
41869        "responses": {
41870          "200": {
41871            "description": "OK",
41872            "schema": {
41873              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList"
41874            }
41875          },
41876          "401": {
41877            "description": "Unauthorized"
41878          }
41879        },
41880        "schemes": [
41881          "https"
41882        ],
41883        "tags": [
41884          "admissionregistration_v1beta1"
41885        ],
41886        "x-kubernetes-action": "list",
41887        "x-kubernetes-group-version-kind": {
41888          "group": "admissionregistration.k8s.io",
41889          "kind": "ValidatingWebhookConfiguration",
41890          "version": "v1beta1"
41891        }
41892      },
41893      "parameters": [
41894        {
41895          "description": "If 'true', then the output is pretty printed.",
41896          "in": "query",
41897          "name": "pretty",
41898          "type": "string",
41899          "uniqueItems": true
41900        }
41901      ],
41902      "post": {
41903        "consumes": [
41904          "*/*"
41905        ],
41906        "description": "create a ValidatingWebhookConfiguration",
41907        "operationId": "createAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41908        "parameters": [
41909          {
41910            "in": "body",
41911            "name": "body",
41912            "required": true,
41913            "schema": {
41914              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41915            }
41916          },
41917          {
41918            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41919            "in": "query",
41920            "name": "dryRun",
41921            "type": "string",
41922            "uniqueItems": true
41923          },
41924          {
41925            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41926            "in": "query",
41927            "name": "fieldManager",
41928            "type": "string",
41929            "uniqueItems": true
41930          }
41931        ],
41932        "produces": [
41933          "application/json",
41934          "application/yaml",
41935          "application/vnd.kubernetes.protobuf"
41936        ],
41937        "responses": {
41938          "200": {
41939            "description": "OK",
41940            "schema": {
41941              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41942            }
41943          },
41944          "201": {
41945            "description": "Created",
41946            "schema": {
41947              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41948            }
41949          },
41950          "202": {
41951            "description": "Accepted",
41952            "schema": {
41953              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41954            }
41955          },
41956          "401": {
41957            "description": "Unauthorized"
41958          }
41959        },
41960        "schemes": [
41961          "https"
41962        ],
41963        "tags": [
41964          "admissionregistration_v1beta1"
41965        ],
41966        "x-kubernetes-action": "post",
41967        "x-kubernetes-group-version-kind": {
41968          "group": "admissionregistration.k8s.io",
41969          "kind": "ValidatingWebhookConfiguration",
41970          "version": "v1beta1"
41971        }
41972      }
41973    },
41974    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}": {
41975      "delete": {
41976        "consumes": [
41977          "*/*"
41978        ],
41979        "description": "delete a ValidatingWebhookConfiguration",
41980        "operationId": "deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41981        "parameters": [
41982          {
41983            "in": "body",
41984            "name": "body",
41985            "schema": {
41986              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41987            }
41988          },
41989          {
41990            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41991            "in": "query",
41992            "name": "dryRun",
41993            "type": "string",
41994            "uniqueItems": true
41995          },
41996          {
41997            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41998            "in": "query",
41999            "name": "gracePeriodSeconds",
42000            "type": "integer",
42001            "uniqueItems": true
42002          },
42003          {
42004            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42005            "in": "query",
42006            "name": "orphanDependents",
42007            "type": "boolean",
42008            "uniqueItems": true
42009          },
42010          {
42011            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42012            "in": "query",
42013            "name": "propagationPolicy",
42014            "type": "string",
42015            "uniqueItems": true
42016          }
42017        ],
42018        "produces": [
42019          "application/json",
42020          "application/yaml",
42021          "application/vnd.kubernetes.protobuf"
42022        ],
42023        "responses": {
42024          "200": {
42025            "description": "OK",
42026            "schema": {
42027              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42028            }
42029          },
42030          "202": {
42031            "description": "Accepted",
42032            "schema": {
42033              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42034            }
42035          },
42036          "401": {
42037            "description": "Unauthorized"
42038          }
42039        },
42040        "schemes": [
42041          "https"
42042        ],
42043        "tags": [
42044          "admissionregistration_v1beta1"
42045        ],
42046        "x-kubernetes-action": "delete",
42047        "x-kubernetes-group-version-kind": {
42048          "group": "admissionregistration.k8s.io",
42049          "kind": "ValidatingWebhookConfiguration",
42050          "version": "v1beta1"
42051        }
42052      },
42053      "get": {
42054        "consumes": [
42055          "*/*"
42056        ],
42057        "description": "read the specified ValidatingWebhookConfiguration",
42058        "operationId": "readAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42059        "produces": [
42060          "application/json",
42061          "application/yaml",
42062          "application/vnd.kubernetes.protobuf"
42063        ],
42064        "responses": {
42065          "200": {
42066            "description": "OK",
42067            "schema": {
42068              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42069            }
42070          },
42071          "401": {
42072            "description": "Unauthorized"
42073          }
42074        },
42075        "schemes": [
42076          "https"
42077        ],
42078        "tags": [
42079          "admissionregistration_v1beta1"
42080        ],
42081        "x-kubernetes-action": "get",
42082        "x-kubernetes-group-version-kind": {
42083          "group": "admissionregistration.k8s.io",
42084          "kind": "ValidatingWebhookConfiguration",
42085          "version": "v1beta1"
42086        }
42087      },
42088      "parameters": [
42089        {
42090          "description": "name of the ValidatingWebhookConfiguration",
42091          "in": "path",
42092          "name": "name",
42093          "required": true,
42094          "type": "string",
42095          "uniqueItems": true
42096        },
42097        {
42098          "description": "If 'true', then the output is pretty printed.",
42099          "in": "query",
42100          "name": "pretty",
42101          "type": "string",
42102          "uniqueItems": true
42103        }
42104      ],
42105      "patch": {
42106        "consumes": [
42107          "application/json-patch+json",
42108          "application/merge-patch+json",
42109          "application/strategic-merge-patch+json",
42110          "application/apply-patch+yaml"
42111        ],
42112        "description": "partially update the specified ValidatingWebhookConfiguration",
42113        "operationId": "patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42114        "parameters": [
42115          {
42116            "in": "body",
42117            "name": "body",
42118            "required": true,
42119            "schema": {
42120              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42121            }
42122          },
42123          {
42124            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42125            "in": "query",
42126            "name": "dryRun",
42127            "type": "string",
42128            "uniqueItems": true
42129          },
42130          {
42131            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
42132            "in": "query",
42133            "name": "fieldManager",
42134            "type": "string",
42135            "uniqueItems": true
42136          },
42137          {
42138            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
42139            "in": "query",
42140            "name": "force",
42141            "type": "boolean",
42142            "uniqueItems": true
42143          }
42144        ],
42145        "produces": [
42146          "application/json",
42147          "application/yaml",
42148          "application/vnd.kubernetes.protobuf"
42149        ],
42150        "responses": {
42151          "200": {
42152            "description": "OK",
42153            "schema": {
42154              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42155            }
42156          },
42157          "401": {
42158            "description": "Unauthorized"
42159          }
42160        },
42161        "schemes": [
42162          "https"
42163        ],
42164        "tags": [
42165          "admissionregistration_v1beta1"
42166        ],
42167        "x-kubernetes-action": "patch",
42168        "x-kubernetes-group-version-kind": {
42169          "group": "admissionregistration.k8s.io",
42170          "kind": "ValidatingWebhookConfiguration",
42171          "version": "v1beta1"
42172        }
42173      },
42174      "put": {
42175        "consumes": [
42176          "*/*"
42177        ],
42178        "description": "replace the specified ValidatingWebhookConfiguration",
42179        "operationId": "replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42180        "parameters": [
42181          {
42182            "in": "body",
42183            "name": "body",
42184            "required": true,
42185            "schema": {
42186              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42187            }
42188          },
42189          {
42190            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42191            "in": "query",
42192            "name": "dryRun",
42193            "type": "string",
42194            "uniqueItems": true
42195          },
42196          {
42197            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42198            "in": "query",
42199            "name": "fieldManager",
42200            "type": "string",
42201            "uniqueItems": true
42202          }
42203        ],
42204        "produces": [
42205          "application/json",
42206          "application/yaml",
42207          "application/vnd.kubernetes.protobuf"
42208        ],
42209        "responses": {
42210          "200": {
42211            "description": "OK",
42212            "schema": {
42213              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42214            }
42215          },
42216          "201": {
42217            "description": "Created",
42218            "schema": {
42219              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
42220            }
42221          },
42222          "401": {
42223            "description": "Unauthorized"
42224          }
42225        },
42226        "schemes": [
42227          "https"
42228        ],
42229        "tags": [
42230          "admissionregistration_v1beta1"
42231        ],
42232        "x-kubernetes-action": "put",
42233        "x-kubernetes-group-version-kind": {
42234          "group": "admissionregistration.k8s.io",
42235          "kind": "ValidatingWebhookConfiguration",
42236          "version": "v1beta1"
42237        }
42238      }
42239    },
42240    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations": {
42241      "get": {
42242        "consumes": [
42243          "*/*"
42244        ],
42245        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
42246        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList",
42247        "produces": [
42248          "application/json",
42249          "application/yaml",
42250          "application/vnd.kubernetes.protobuf",
42251          "application/json;stream=watch",
42252          "application/vnd.kubernetes.protobuf;stream=watch"
42253        ],
42254        "responses": {
42255          "200": {
42256            "description": "OK",
42257            "schema": {
42258              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42259            }
42260          },
42261          "401": {
42262            "description": "Unauthorized"
42263          }
42264        },
42265        "schemes": [
42266          "https"
42267        ],
42268        "tags": [
42269          "admissionregistration_v1beta1"
42270        ],
42271        "x-kubernetes-action": "watchlist",
42272        "x-kubernetes-group-version-kind": {
42273          "group": "admissionregistration.k8s.io",
42274          "kind": "MutatingWebhookConfiguration",
42275          "version": "v1beta1"
42276        }
42277      },
42278      "parameters": [
42279        {
42280          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42281          "in": "query",
42282          "name": "allowWatchBookmarks",
42283          "type": "boolean",
42284          "uniqueItems": true
42285        },
42286        {
42287          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42288          "in": "query",
42289          "name": "continue",
42290          "type": "string",
42291          "uniqueItems": true
42292        },
42293        {
42294          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42295          "in": "query",
42296          "name": "fieldSelector",
42297          "type": "string",
42298          "uniqueItems": true
42299        },
42300        {
42301          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42302          "in": "query",
42303          "name": "labelSelector",
42304          "type": "string",
42305          "uniqueItems": true
42306        },
42307        {
42308          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42309          "in": "query",
42310          "name": "limit",
42311          "type": "integer",
42312          "uniqueItems": true
42313        },
42314        {
42315          "description": "If 'true', then the output is pretty printed.",
42316          "in": "query",
42317          "name": "pretty",
42318          "type": "string",
42319          "uniqueItems": true
42320        },
42321        {
42322          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42323          "in": "query",
42324          "name": "resourceVersion",
42325          "type": "string",
42326          "uniqueItems": true
42327        },
42328        {
42329          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42330          "in": "query",
42331          "name": "resourceVersionMatch",
42332          "type": "string",
42333          "uniqueItems": true
42334        },
42335        {
42336          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42337          "in": "query",
42338          "name": "timeoutSeconds",
42339          "type": "integer",
42340          "uniqueItems": true
42341        },
42342        {
42343          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42344          "in": "query",
42345          "name": "watch",
42346          "type": "boolean",
42347          "uniqueItems": true
42348        }
42349      ]
42350    },
42351    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{name}": {
42352      "get": {
42353        "consumes": [
42354          "*/*"
42355        ],
42356        "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.",
42357        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
42358        "produces": [
42359          "application/json",
42360          "application/yaml",
42361          "application/vnd.kubernetes.protobuf",
42362          "application/json;stream=watch",
42363          "application/vnd.kubernetes.protobuf;stream=watch"
42364        ],
42365        "responses": {
42366          "200": {
42367            "description": "OK",
42368            "schema": {
42369              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42370            }
42371          },
42372          "401": {
42373            "description": "Unauthorized"
42374          }
42375        },
42376        "schemes": [
42377          "https"
42378        ],
42379        "tags": [
42380          "admissionregistration_v1beta1"
42381        ],
42382        "x-kubernetes-action": "watch",
42383        "x-kubernetes-group-version-kind": {
42384          "group": "admissionregistration.k8s.io",
42385          "kind": "MutatingWebhookConfiguration",
42386          "version": "v1beta1"
42387        }
42388      },
42389      "parameters": [
42390        {
42391          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42392          "in": "query",
42393          "name": "allowWatchBookmarks",
42394          "type": "boolean",
42395          "uniqueItems": true
42396        },
42397        {
42398          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42399          "in": "query",
42400          "name": "continue",
42401          "type": "string",
42402          "uniqueItems": true
42403        },
42404        {
42405          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42406          "in": "query",
42407          "name": "fieldSelector",
42408          "type": "string",
42409          "uniqueItems": true
42410        },
42411        {
42412          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42413          "in": "query",
42414          "name": "labelSelector",
42415          "type": "string",
42416          "uniqueItems": true
42417        },
42418        {
42419          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42420          "in": "query",
42421          "name": "limit",
42422          "type": "integer",
42423          "uniqueItems": true
42424        },
42425        {
42426          "description": "name of the MutatingWebhookConfiguration",
42427          "in": "path",
42428          "name": "name",
42429          "required": true,
42430          "type": "string",
42431          "uniqueItems": true
42432        },
42433        {
42434          "description": "If 'true', then the output is pretty printed.",
42435          "in": "query",
42436          "name": "pretty",
42437          "type": "string",
42438          "uniqueItems": true
42439        },
42440        {
42441          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42442          "in": "query",
42443          "name": "resourceVersion",
42444          "type": "string",
42445          "uniqueItems": true
42446        },
42447        {
42448          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42449          "in": "query",
42450          "name": "resourceVersionMatch",
42451          "type": "string",
42452          "uniqueItems": true
42453        },
42454        {
42455          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42456          "in": "query",
42457          "name": "timeoutSeconds",
42458          "type": "integer",
42459          "uniqueItems": true
42460        },
42461        {
42462          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42463          "in": "query",
42464          "name": "watch",
42465          "type": "boolean",
42466          "uniqueItems": true
42467        }
42468      ]
42469    },
42470    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations": {
42471      "get": {
42472        "consumes": [
42473          "*/*"
42474        ],
42475        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
42476        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList",
42477        "produces": [
42478          "application/json",
42479          "application/yaml",
42480          "application/vnd.kubernetes.protobuf",
42481          "application/json;stream=watch",
42482          "application/vnd.kubernetes.protobuf;stream=watch"
42483        ],
42484        "responses": {
42485          "200": {
42486            "description": "OK",
42487            "schema": {
42488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42489            }
42490          },
42491          "401": {
42492            "description": "Unauthorized"
42493          }
42494        },
42495        "schemes": [
42496          "https"
42497        ],
42498        "tags": [
42499          "admissionregistration_v1beta1"
42500        ],
42501        "x-kubernetes-action": "watchlist",
42502        "x-kubernetes-group-version-kind": {
42503          "group": "admissionregistration.k8s.io",
42504          "kind": "ValidatingWebhookConfiguration",
42505          "version": "v1beta1"
42506        }
42507      },
42508      "parameters": [
42509        {
42510          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42511          "in": "query",
42512          "name": "allowWatchBookmarks",
42513          "type": "boolean",
42514          "uniqueItems": true
42515        },
42516        {
42517          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42518          "in": "query",
42519          "name": "continue",
42520          "type": "string",
42521          "uniqueItems": true
42522        },
42523        {
42524          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42525          "in": "query",
42526          "name": "fieldSelector",
42527          "type": "string",
42528          "uniqueItems": true
42529        },
42530        {
42531          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42532          "in": "query",
42533          "name": "labelSelector",
42534          "type": "string",
42535          "uniqueItems": true
42536        },
42537        {
42538          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42539          "in": "query",
42540          "name": "limit",
42541          "type": "integer",
42542          "uniqueItems": true
42543        },
42544        {
42545          "description": "If 'true', then the output is pretty printed.",
42546          "in": "query",
42547          "name": "pretty",
42548          "type": "string",
42549          "uniqueItems": true
42550        },
42551        {
42552          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42553          "in": "query",
42554          "name": "resourceVersion",
42555          "type": "string",
42556          "uniqueItems": true
42557        },
42558        {
42559          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42560          "in": "query",
42561          "name": "resourceVersionMatch",
42562          "type": "string",
42563          "uniqueItems": true
42564        },
42565        {
42566          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42567          "in": "query",
42568          "name": "timeoutSeconds",
42569          "type": "integer",
42570          "uniqueItems": true
42571        },
42572        {
42573          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42574          "in": "query",
42575          "name": "watch",
42576          "type": "boolean",
42577          "uniqueItems": true
42578        }
42579      ]
42580    },
42581    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{name}": {
42582      "get": {
42583        "consumes": [
42584          "*/*"
42585        ],
42586        "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.",
42587        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
42588        "produces": [
42589          "application/json",
42590          "application/yaml",
42591          "application/vnd.kubernetes.protobuf",
42592          "application/json;stream=watch",
42593          "application/vnd.kubernetes.protobuf;stream=watch"
42594        ],
42595        "responses": {
42596          "200": {
42597            "description": "OK",
42598            "schema": {
42599              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42600            }
42601          },
42602          "401": {
42603            "description": "Unauthorized"
42604          }
42605        },
42606        "schemes": [
42607          "https"
42608        ],
42609        "tags": [
42610          "admissionregistration_v1beta1"
42611        ],
42612        "x-kubernetes-action": "watch",
42613        "x-kubernetes-group-version-kind": {
42614          "group": "admissionregistration.k8s.io",
42615          "kind": "ValidatingWebhookConfiguration",
42616          "version": "v1beta1"
42617        }
42618      },
42619      "parameters": [
42620        {
42621          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42622          "in": "query",
42623          "name": "allowWatchBookmarks",
42624          "type": "boolean",
42625          "uniqueItems": true
42626        },
42627        {
42628          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42629          "in": "query",
42630          "name": "continue",
42631          "type": "string",
42632          "uniqueItems": true
42633        },
42634        {
42635          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42636          "in": "query",
42637          "name": "fieldSelector",
42638          "type": "string",
42639          "uniqueItems": true
42640        },
42641        {
42642          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42643          "in": "query",
42644          "name": "labelSelector",
42645          "type": "string",
42646          "uniqueItems": true
42647        },
42648        {
42649          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42650          "in": "query",
42651          "name": "limit",
42652          "type": "integer",
42653          "uniqueItems": true
42654        },
42655        {
42656          "description": "name of the ValidatingWebhookConfiguration",
42657          "in": "path",
42658          "name": "name",
42659          "required": true,
42660          "type": "string",
42661          "uniqueItems": true
42662        },
42663        {
42664          "description": "If 'true', then the output is pretty printed.",
42665          "in": "query",
42666          "name": "pretty",
42667          "type": "string",
42668          "uniqueItems": true
42669        },
42670        {
42671          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42672          "in": "query",
42673          "name": "resourceVersion",
42674          "type": "string",
42675          "uniqueItems": true
42676        },
42677        {
42678          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42679          "in": "query",
42680          "name": "resourceVersionMatch",
42681          "type": "string",
42682          "uniqueItems": true
42683        },
42684        {
42685          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42686          "in": "query",
42687          "name": "timeoutSeconds",
42688          "type": "integer",
42689          "uniqueItems": true
42690        },
42691        {
42692          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42693          "in": "query",
42694          "name": "watch",
42695          "type": "boolean",
42696          "uniqueItems": true
42697        }
42698      ]
42699    },
42700    "/apis/apiextensions.k8s.io/": {
42701      "get": {
42702        "consumes": [
42703          "application/json",
42704          "application/yaml",
42705          "application/vnd.kubernetes.protobuf"
42706        ],
42707        "description": "get information of a group",
42708        "operationId": "getApiextensionsAPIGroup",
42709        "produces": [
42710          "application/json",
42711          "application/yaml",
42712          "application/vnd.kubernetes.protobuf"
42713        ],
42714        "responses": {
42715          "200": {
42716            "description": "OK",
42717            "schema": {
42718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
42719            }
42720          },
42721          "401": {
42722            "description": "Unauthorized"
42723          }
42724        },
42725        "schemes": [
42726          "https"
42727        ],
42728        "tags": [
42729          "apiextensions"
42730        ]
42731      }
42732    },
42733    "/apis/apiextensions.k8s.io/v1/": {
42734      "get": {
42735        "consumes": [
42736          "application/json",
42737          "application/yaml",
42738          "application/vnd.kubernetes.protobuf"
42739        ],
42740        "description": "get available resources",
42741        "operationId": "getApiextensionsV1APIResources",
42742        "produces": [
42743          "application/json",
42744          "application/yaml",
42745          "application/vnd.kubernetes.protobuf"
42746        ],
42747        "responses": {
42748          "200": {
42749            "description": "OK",
42750            "schema": {
42751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
42752            }
42753          },
42754          "401": {
42755            "description": "Unauthorized"
42756          }
42757        },
42758        "schemes": [
42759          "https"
42760        ],
42761        "tags": [
42762          "apiextensions_v1"
42763        ]
42764      }
42765    },
42766    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions": {
42767      "delete": {
42768        "consumes": [
42769          "*/*"
42770        ],
42771        "description": "delete collection of CustomResourceDefinition",
42772        "operationId": "deleteApiextensionsV1CollectionCustomResourceDefinition",
42773        "parameters": [
42774          {
42775            "in": "body",
42776            "name": "body",
42777            "schema": {
42778              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42779            }
42780          },
42781          {
42782            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42783            "in": "query",
42784            "name": "continue",
42785            "type": "string",
42786            "uniqueItems": true
42787          },
42788          {
42789            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42790            "in": "query",
42791            "name": "dryRun",
42792            "type": "string",
42793            "uniqueItems": true
42794          },
42795          {
42796            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42797            "in": "query",
42798            "name": "fieldSelector",
42799            "type": "string",
42800            "uniqueItems": true
42801          },
42802          {
42803            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
42804            "in": "query",
42805            "name": "gracePeriodSeconds",
42806            "type": "integer",
42807            "uniqueItems": true
42808          },
42809          {
42810            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42811            "in": "query",
42812            "name": "labelSelector",
42813            "type": "string",
42814            "uniqueItems": true
42815          },
42816          {
42817            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42818            "in": "query",
42819            "name": "limit",
42820            "type": "integer",
42821            "uniqueItems": true
42822          },
42823          {
42824            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42825            "in": "query",
42826            "name": "orphanDependents",
42827            "type": "boolean",
42828            "uniqueItems": true
42829          },
42830          {
42831            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42832            "in": "query",
42833            "name": "propagationPolicy",
42834            "type": "string",
42835            "uniqueItems": true
42836          },
42837          {
42838            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42839            "in": "query",
42840            "name": "resourceVersion",
42841            "type": "string",
42842            "uniqueItems": true
42843          },
42844          {
42845            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42846            "in": "query",
42847            "name": "resourceVersionMatch",
42848            "type": "string",
42849            "uniqueItems": true
42850          },
42851          {
42852            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42853            "in": "query",
42854            "name": "timeoutSeconds",
42855            "type": "integer",
42856            "uniqueItems": true
42857          }
42858        ],
42859        "produces": [
42860          "application/json",
42861          "application/yaml",
42862          "application/vnd.kubernetes.protobuf"
42863        ],
42864        "responses": {
42865          "200": {
42866            "description": "OK",
42867            "schema": {
42868              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42869            }
42870          },
42871          "401": {
42872            "description": "Unauthorized"
42873          }
42874        },
42875        "schemes": [
42876          "https"
42877        ],
42878        "tags": [
42879          "apiextensions_v1"
42880        ],
42881        "x-kubernetes-action": "deletecollection",
42882        "x-kubernetes-group-version-kind": {
42883          "group": "apiextensions.k8s.io",
42884          "kind": "CustomResourceDefinition",
42885          "version": "v1"
42886        }
42887      },
42888      "get": {
42889        "consumes": [
42890          "*/*"
42891        ],
42892        "description": "list or watch objects of kind CustomResourceDefinition",
42893        "operationId": "listApiextensionsV1CustomResourceDefinition",
42894        "parameters": [
42895          {
42896            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
42897            "in": "query",
42898            "name": "allowWatchBookmarks",
42899            "type": "boolean",
42900            "uniqueItems": true
42901          },
42902          {
42903            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42904            "in": "query",
42905            "name": "continue",
42906            "type": "string",
42907            "uniqueItems": true
42908          },
42909          {
42910            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42911            "in": "query",
42912            "name": "fieldSelector",
42913            "type": "string",
42914            "uniqueItems": true
42915          },
42916          {
42917            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42918            "in": "query",
42919            "name": "labelSelector",
42920            "type": "string",
42921            "uniqueItems": true
42922          },
42923          {
42924            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42925            "in": "query",
42926            "name": "limit",
42927            "type": "integer",
42928            "uniqueItems": true
42929          },
42930          {
42931            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42932            "in": "query",
42933            "name": "resourceVersion",
42934            "type": "string",
42935            "uniqueItems": true
42936          },
42937          {
42938            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42939            "in": "query",
42940            "name": "resourceVersionMatch",
42941            "type": "string",
42942            "uniqueItems": true
42943          },
42944          {
42945            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42946            "in": "query",
42947            "name": "timeoutSeconds",
42948            "type": "integer",
42949            "uniqueItems": true
42950          },
42951          {
42952            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42953            "in": "query",
42954            "name": "watch",
42955            "type": "boolean",
42956            "uniqueItems": true
42957          }
42958        ],
42959        "produces": [
42960          "application/json",
42961          "application/yaml",
42962          "application/vnd.kubernetes.protobuf",
42963          "application/json;stream=watch",
42964          "application/vnd.kubernetes.protobuf;stream=watch"
42965        ],
42966        "responses": {
42967          "200": {
42968            "description": "OK",
42969            "schema": {
42970              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList"
42971            }
42972          },
42973          "401": {
42974            "description": "Unauthorized"
42975          }
42976        },
42977        "schemes": [
42978          "https"
42979        ],
42980        "tags": [
42981          "apiextensions_v1"
42982        ],
42983        "x-kubernetes-action": "list",
42984        "x-kubernetes-group-version-kind": {
42985          "group": "apiextensions.k8s.io",
42986          "kind": "CustomResourceDefinition",
42987          "version": "v1"
42988        }
42989      },
42990      "parameters": [
42991        {
42992          "description": "If 'true', then the output is pretty printed.",
42993          "in": "query",
42994          "name": "pretty",
42995          "type": "string",
42996          "uniqueItems": true
42997        }
42998      ],
42999      "post": {
43000        "consumes": [
43001          "*/*"
43002        ],
43003        "description": "create a CustomResourceDefinition",
43004        "operationId": "createApiextensionsV1CustomResourceDefinition",
43005        "parameters": [
43006          {
43007            "in": "body",
43008            "name": "body",
43009            "required": true,
43010            "schema": {
43011              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43012            }
43013          },
43014          {
43015            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43016            "in": "query",
43017            "name": "dryRun",
43018            "type": "string",
43019            "uniqueItems": true
43020          },
43021          {
43022            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43023            "in": "query",
43024            "name": "fieldManager",
43025            "type": "string",
43026            "uniqueItems": true
43027          }
43028        ],
43029        "produces": [
43030          "application/json",
43031          "application/yaml",
43032          "application/vnd.kubernetes.protobuf"
43033        ],
43034        "responses": {
43035          "200": {
43036            "description": "OK",
43037            "schema": {
43038              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43039            }
43040          },
43041          "201": {
43042            "description": "Created",
43043            "schema": {
43044              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43045            }
43046          },
43047          "202": {
43048            "description": "Accepted",
43049            "schema": {
43050              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43051            }
43052          },
43053          "401": {
43054            "description": "Unauthorized"
43055          }
43056        },
43057        "schemes": [
43058          "https"
43059        ],
43060        "tags": [
43061          "apiextensions_v1"
43062        ],
43063        "x-kubernetes-action": "post",
43064        "x-kubernetes-group-version-kind": {
43065          "group": "apiextensions.k8s.io",
43066          "kind": "CustomResourceDefinition",
43067          "version": "v1"
43068        }
43069      }
43070    },
43071    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}": {
43072      "delete": {
43073        "consumes": [
43074          "*/*"
43075        ],
43076        "description": "delete a CustomResourceDefinition",
43077        "operationId": "deleteApiextensionsV1CustomResourceDefinition",
43078        "parameters": [
43079          {
43080            "in": "body",
43081            "name": "body",
43082            "schema": {
43083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43084            }
43085          },
43086          {
43087            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43088            "in": "query",
43089            "name": "dryRun",
43090            "type": "string",
43091            "uniqueItems": true
43092          },
43093          {
43094            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43095            "in": "query",
43096            "name": "gracePeriodSeconds",
43097            "type": "integer",
43098            "uniqueItems": true
43099          },
43100          {
43101            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43102            "in": "query",
43103            "name": "orphanDependents",
43104            "type": "boolean",
43105            "uniqueItems": true
43106          },
43107          {
43108            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43109            "in": "query",
43110            "name": "propagationPolicy",
43111            "type": "string",
43112            "uniqueItems": true
43113          }
43114        ],
43115        "produces": [
43116          "application/json",
43117          "application/yaml",
43118          "application/vnd.kubernetes.protobuf"
43119        ],
43120        "responses": {
43121          "200": {
43122            "description": "OK",
43123            "schema": {
43124              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43125            }
43126          },
43127          "202": {
43128            "description": "Accepted",
43129            "schema": {
43130              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43131            }
43132          },
43133          "401": {
43134            "description": "Unauthorized"
43135          }
43136        },
43137        "schemes": [
43138          "https"
43139        ],
43140        "tags": [
43141          "apiextensions_v1"
43142        ],
43143        "x-kubernetes-action": "delete",
43144        "x-kubernetes-group-version-kind": {
43145          "group": "apiextensions.k8s.io",
43146          "kind": "CustomResourceDefinition",
43147          "version": "v1"
43148        }
43149      },
43150      "get": {
43151        "consumes": [
43152          "*/*"
43153        ],
43154        "description": "read the specified CustomResourceDefinition",
43155        "operationId": "readApiextensionsV1CustomResourceDefinition",
43156        "produces": [
43157          "application/json",
43158          "application/yaml",
43159          "application/vnd.kubernetes.protobuf"
43160        ],
43161        "responses": {
43162          "200": {
43163            "description": "OK",
43164            "schema": {
43165              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43166            }
43167          },
43168          "401": {
43169            "description": "Unauthorized"
43170          }
43171        },
43172        "schemes": [
43173          "https"
43174        ],
43175        "tags": [
43176          "apiextensions_v1"
43177        ],
43178        "x-kubernetes-action": "get",
43179        "x-kubernetes-group-version-kind": {
43180          "group": "apiextensions.k8s.io",
43181          "kind": "CustomResourceDefinition",
43182          "version": "v1"
43183        }
43184      },
43185      "parameters": [
43186        {
43187          "description": "name of the CustomResourceDefinition",
43188          "in": "path",
43189          "name": "name",
43190          "required": true,
43191          "type": "string",
43192          "uniqueItems": true
43193        },
43194        {
43195          "description": "If 'true', then the output is pretty printed.",
43196          "in": "query",
43197          "name": "pretty",
43198          "type": "string",
43199          "uniqueItems": true
43200        }
43201      ],
43202      "patch": {
43203        "consumes": [
43204          "application/json-patch+json",
43205          "application/merge-patch+json",
43206          "application/strategic-merge-patch+json",
43207          "application/apply-patch+yaml"
43208        ],
43209        "description": "partially update the specified CustomResourceDefinition",
43210        "operationId": "patchApiextensionsV1CustomResourceDefinition",
43211        "parameters": [
43212          {
43213            "in": "body",
43214            "name": "body",
43215            "required": true,
43216            "schema": {
43217              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43218            }
43219          },
43220          {
43221            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43222            "in": "query",
43223            "name": "dryRun",
43224            "type": "string",
43225            "uniqueItems": true
43226          },
43227          {
43228            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
43229            "in": "query",
43230            "name": "fieldManager",
43231            "type": "string",
43232            "uniqueItems": true
43233          },
43234          {
43235            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
43236            "in": "query",
43237            "name": "force",
43238            "type": "boolean",
43239            "uniqueItems": true
43240          }
43241        ],
43242        "produces": [
43243          "application/json",
43244          "application/yaml",
43245          "application/vnd.kubernetes.protobuf"
43246        ],
43247        "responses": {
43248          "200": {
43249            "description": "OK",
43250            "schema": {
43251              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43252            }
43253          },
43254          "401": {
43255            "description": "Unauthorized"
43256          }
43257        },
43258        "schemes": [
43259          "https"
43260        ],
43261        "tags": [
43262          "apiextensions_v1"
43263        ],
43264        "x-kubernetes-action": "patch",
43265        "x-kubernetes-group-version-kind": {
43266          "group": "apiextensions.k8s.io",
43267          "kind": "CustomResourceDefinition",
43268          "version": "v1"
43269        }
43270      },
43271      "put": {
43272        "consumes": [
43273          "*/*"
43274        ],
43275        "description": "replace the specified CustomResourceDefinition",
43276        "operationId": "replaceApiextensionsV1CustomResourceDefinition",
43277        "parameters": [
43278          {
43279            "in": "body",
43280            "name": "body",
43281            "required": true,
43282            "schema": {
43283              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43284            }
43285          },
43286          {
43287            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43288            "in": "query",
43289            "name": "dryRun",
43290            "type": "string",
43291            "uniqueItems": true
43292          },
43293          {
43294            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43295            "in": "query",
43296            "name": "fieldManager",
43297            "type": "string",
43298            "uniqueItems": true
43299          }
43300        ],
43301        "produces": [
43302          "application/json",
43303          "application/yaml",
43304          "application/vnd.kubernetes.protobuf"
43305        ],
43306        "responses": {
43307          "200": {
43308            "description": "OK",
43309            "schema": {
43310              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43311            }
43312          },
43313          "201": {
43314            "description": "Created",
43315            "schema": {
43316              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43317            }
43318          },
43319          "401": {
43320            "description": "Unauthorized"
43321          }
43322        },
43323        "schemes": [
43324          "https"
43325        ],
43326        "tags": [
43327          "apiextensions_v1"
43328        ],
43329        "x-kubernetes-action": "put",
43330        "x-kubernetes-group-version-kind": {
43331          "group": "apiextensions.k8s.io",
43332          "kind": "CustomResourceDefinition",
43333          "version": "v1"
43334        }
43335      }
43336    },
43337    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status": {
43338      "get": {
43339        "consumes": [
43340          "*/*"
43341        ],
43342        "description": "read status of the specified CustomResourceDefinition",
43343        "operationId": "readApiextensionsV1CustomResourceDefinitionStatus",
43344        "produces": [
43345          "application/json",
43346          "application/yaml",
43347          "application/vnd.kubernetes.protobuf"
43348        ],
43349        "responses": {
43350          "200": {
43351            "description": "OK",
43352            "schema": {
43353              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43354            }
43355          },
43356          "401": {
43357            "description": "Unauthorized"
43358          }
43359        },
43360        "schemes": [
43361          "https"
43362        ],
43363        "tags": [
43364          "apiextensions_v1"
43365        ],
43366        "x-kubernetes-action": "get",
43367        "x-kubernetes-group-version-kind": {
43368          "group": "apiextensions.k8s.io",
43369          "kind": "CustomResourceDefinition",
43370          "version": "v1"
43371        }
43372      },
43373      "parameters": [
43374        {
43375          "description": "name of the CustomResourceDefinition",
43376          "in": "path",
43377          "name": "name",
43378          "required": true,
43379          "type": "string",
43380          "uniqueItems": true
43381        },
43382        {
43383          "description": "If 'true', then the output is pretty printed.",
43384          "in": "query",
43385          "name": "pretty",
43386          "type": "string",
43387          "uniqueItems": true
43388        }
43389      ],
43390      "patch": {
43391        "consumes": [
43392          "application/json-patch+json",
43393          "application/merge-patch+json",
43394          "application/strategic-merge-patch+json",
43395          "application/apply-patch+yaml"
43396        ],
43397        "description": "partially update status of the specified CustomResourceDefinition",
43398        "operationId": "patchApiextensionsV1CustomResourceDefinitionStatus",
43399        "parameters": [
43400          {
43401            "in": "body",
43402            "name": "body",
43403            "required": true,
43404            "schema": {
43405              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43406            }
43407          },
43408          {
43409            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43410            "in": "query",
43411            "name": "dryRun",
43412            "type": "string",
43413            "uniqueItems": true
43414          },
43415          {
43416            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
43417            "in": "query",
43418            "name": "fieldManager",
43419            "type": "string",
43420            "uniqueItems": true
43421          },
43422          {
43423            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
43424            "in": "query",
43425            "name": "force",
43426            "type": "boolean",
43427            "uniqueItems": true
43428          }
43429        ],
43430        "produces": [
43431          "application/json",
43432          "application/yaml",
43433          "application/vnd.kubernetes.protobuf"
43434        ],
43435        "responses": {
43436          "200": {
43437            "description": "OK",
43438            "schema": {
43439              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43440            }
43441          },
43442          "401": {
43443            "description": "Unauthorized"
43444          }
43445        },
43446        "schemes": [
43447          "https"
43448        ],
43449        "tags": [
43450          "apiextensions_v1"
43451        ],
43452        "x-kubernetes-action": "patch",
43453        "x-kubernetes-group-version-kind": {
43454          "group": "apiextensions.k8s.io",
43455          "kind": "CustomResourceDefinition",
43456          "version": "v1"
43457        }
43458      },
43459      "put": {
43460        "consumes": [
43461          "*/*"
43462        ],
43463        "description": "replace status of the specified CustomResourceDefinition",
43464        "operationId": "replaceApiextensionsV1CustomResourceDefinitionStatus",
43465        "parameters": [
43466          {
43467            "in": "body",
43468            "name": "body",
43469            "required": true,
43470            "schema": {
43471              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43472            }
43473          },
43474          {
43475            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43476            "in": "query",
43477            "name": "dryRun",
43478            "type": "string",
43479            "uniqueItems": true
43480          },
43481          {
43482            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43483            "in": "query",
43484            "name": "fieldManager",
43485            "type": "string",
43486            "uniqueItems": true
43487          }
43488        ],
43489        "produces": [
43490          "application/json",
43491          "application/yaml",
43492          "application/vnd.kubernetes.protobuf"
43493        ],
43494        "responses": {
43495          "200": {
43496            "description": "OK",
43497            "schema": {
43498              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43499            }
43500          },
43501          "201": {
43502            "description": "Created",
43503            "schema": {
43504              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
43505            }
43506          },
43507          "401": {
43508            "description": "Unauthorized"
43509          }
43510        },
43511        "schemes": [
43512          "https"
43513        ],
43514        "tags": [
43515          "apiextensions_v1"
43516        ],
43517        "x-kubernetes-action": "put",
43518        "x-kubernetes-group-version-kind": {
43519          "group": "apiextensions.k8s.io",
43520          "kind": "CustomResourceDefinition",
43521          "version": "v1"
43522        }
43523      }
43524    },
43525    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions": {
43526      "get": {
43527        "consumes": [
43528          "*/*"
43529        ],
43530        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
43531        "operationId": "watchApiextensionsV1CustomResourceDefinitionList",
43532        "produces": [
43533          "application/json",
43534          "application/yaml",
43535          "application/vnd.kubernetes.protobuf",
43536          "application/json;stream=watch",
43537          "application/vnd.kubernetes.protobuf;stream=watch"
43538        ],
43539        "responses": {
43540          "200": {
43541            "description": "OK",
43542            "schema": {
43543              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43544            }
43545          },
43546          "401": {
43547            "description": "Unauthorized"
43548          }
43549        },
43550        "schemes": [
43551          "https"
43552        ],
43553        "tags": [
43554          "apiextensions_v1"
43555        ],
43556        "x-kubernetes-action": "watchlist",
43557        "x-kubernetes-group-version-kind": {
43558          "group": "apiextensions.k8s.io",
43559          "kind": "CustomResourceDefinition",
43560          "version": "v1"
43561        }
43562      },
43563      "parameters": [
43564        {
43565          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43566          "in": "query",
43567          "name": "allowWatchBookmarks",
43568          "type": "boolean",
43569          "uniqueItems": true
43570        },
43571        {
43572          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43573          "in": "query",
43574          "name": "continue",
43575          "type": "string",
43576          "uniqueItems": true
43577        },
43578        {
43579          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43580          "in": "query",
43581          "name": "fieldSelector",
43582          "type": "string",
43583          "uniqueItems": true
43584        },
43585        {
43586          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43587          "in": "query",
43588          "name": "labelSelector",
43589          "type": "string",
43590          "uniqueItems": true
43591        },
43592        {
43593          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43594          "in": "query",
43595          "name": "limit",
43596          "type": "integer",
43597          "uniqueItems": true
43598        },
43599        {
43600          "description": "If 'true', then the output is pretty printed.",
43601          "in": "query",
43602          "name": "pretty",
43603          "type": "string",
43604          "uniqueItems": true
43605        },
43606        {
43607          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43608          "in": "query",
43609          "name": "resourceVersion",
43610          "type": "string",
43611          "uniqueItems": true
43612        },
43613        {
43614          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43615          "in": "query",
43616          "name": "resourceVersionMatch",
43617          "type": "string",
43618          "uniqueItems": true
43619        },
43620        {
43621          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43622          "in": "query",
43623          "name": "timeoutSeconds",
43624          "type": "integer",
43625          "uniqueItems": true
43626        },
43627        {
43628          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43629          "in": "query",
43630          "name": "watch",
43631          "type": "boolean",
43632          "uniqueItems": true
43633        }
43634      ]
43635    },
43636    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/{name}": {
43637      "get": {
43638        "consumes": [
43639          "*/*"
43640        ],
43641        "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.",
43642        "operationId": "watchApiextensionsV1CustomResourceDefinition",
43643        "produces": [
43644          "application/json",
43645          "application/yaml",
43646          "application/vnd.kubernetes.protobuf",
43647          "application/json;stream=watch",
43648          "application/vnd.kubernetes.protobuf;stream=watch"
43649        ],
43650        "responses": {
43651          "200": {
43652            "description": "OK",
43653            "schema": {
43654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43655            }
43656          },
43657          "401": {
43658            "description": "Unauthorized"
43659          }
43660        },
43661        "schemes": [
43662          "https"
43663        ],
43664        "tags": [
43665          "apiextensions_v1"
43666        ],
43667        "x-kubernetes-action": "watch",
43668        "x-kubernetes-group-version-kind": {
43669          "group": "apiextensions.k8s.io",
43670          "kind": "CustomResourceDefinition",
43671          "version": "v1"
43672        }
43673      },
43674      "parameters": [
43675        {
43676          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43677          "in": "query",
43678          "name": "allowWatchBookmarks",
43679          "type": "boolean",
43680          "uniqueItems": true
43681        },
43682        {
43683          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43684          "in": "query",
43685          "name": "continue",
43686          "type": "string",
43687          "uniqueItems": true
43688        },
43689        {
43690          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43691          "in": "query",
43692          "name": "fieldSelector",
43693          "type": "string",
43694          "uniqueItems": true
43695        },
43696        {
43697          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43698          "in": "query",
43699          "name": "labelSelector",
43700          "type": "string",
43701          "uniqueItems": true
43702        },
43703        {
43704          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43705          "in": "query",
43706          "name": "limit",
43707          "type": "integer",
43708          "uniqueItems": true
43709        },
43710        {
43711          "description": "name of the CustomResourceDefinition",
43712          "in": "path",
43713          "name": "name",
43714          "required": true,
43715          "type": "string",
43716          "uniqueItems": true
43717        },
43718        {
43719          "description": "If 'true', then the output is pretty printed.",
43720          "in": "query",
43721          "name": "pretty",
43722          "type": "string",
43723          "uniqueItems": true
43724        },
43725        {
43726          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43727          "in": "query",
43728          "name": "resourceVersion",
43729          "type": "string",
43730          "uniqueItems": true
43731        },
43732        {
43733          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43734          "in": "query",
43735          "name": "resourceVersionMatch",
43736          "type": "string",
43737          "uniqueItems": true
43738        },
43739        {
43740          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43741          "in": "query",
43742          "name": "timeoutSeconds",
43743          "type": "integer",
43744          "uniqueItems": true
43745        },
43746        {
43747          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43748          "in": "query",
43749          "name": "watch",
43750          "type": "boolean",
43751          "uniqueItems": true
43752        }
43753      ]
43754    },
43755    "/apis/apiextensions.k8s.io/v1beta1/": {
43756      "get": {
43757        "consumes": [
43758          "application/json",
43759          "application/yaml",
43760          "application/vnd.kubernetes.protobuf"
43761        ],
43762        "description": "get available resources",
43763        "operationId": "getApiextensionsV1beta1APIResources",
43764        "produces": [
43765          "application/json",
43766          "application/yaml",
43767          "application/vnd.kubernetes.protobuf"
43768        ],
43769        "responses": {
43770          "200": {
43771            "description": "OK",
43772            "schema": {
43773              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
43774            }
43775          },
43776          "401": {
43777            "description": "Unauthorized"
43778          }
43779        },
43780        "schemes": [
43781          "https"
43782        ],
43783        "tags": [
43784          "apiextensions_v1beta1"
43785        ]
43786      }
43787    },
43788    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions": {
43789      "delete": {
43790        "consumes": [
43791          "*/*"
43792        ],
43793        "description": "delete collection of CustomResourceDefinition",
43794        "operationId": "deleteApiextensionsV1beta1CollectionCustomResourceDefinition",
43795        "parameters": [
43796          {
43797            "in": "body",
43798            "name": "body",
43799            "schema": {
43800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43801            }
43802          },
43803          {
43804            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43805            "in": "query",
43806            "name": "continue",
43807            "type": "string",
43808            "uniqueItems": true
43809          },
43810          {
43811            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43812            "in": "query",
43813            "name": "dryRun",
43814            "type": "string",
43815            "uniqueItems": true
43816          },
43817          {
43818            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43819            "in": "query",
43820            "name": "fieldSelector",
43821            "type": "string",
43822            "uniqueItems": true
43823          },
43824          {
43825            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43826            "in": "query",
43827            "name": "gracePeriodSeconds",
43828            "type": "integer",
43829            "uniqueItems": true
43830          },
43831          {
43832            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43833            "in": "query",
43834            "name": "labelSelector",
43835            "type": "string",
43836            "uniqueItems": true
43837          },
43838          {
43839            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43840            "in": "query",
43841            "name": "limit",
43842            "type": "integer",
43843            "uniqueItems": true
43844          },
43845          {
43846            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43847            "in": "query",
43848            "name": "orphanDependents",
43849            "type": "boolean",
43850            "uniqueItems": true
43851          },
43852          {
43853            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43854            "in": "query",
43855            "name": "propagationPolicy",
43856            "type": "string",
43857            "uniqueItems": true
43858          },
43859          {
43860            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43861            "in": "query",
43862            "name": "resourceVersion",
43863            "type": "string",
43864            "uniqueItems": true
43865          },
43866          {
43867            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43868            "in": "query",
43869            "name": "resourceVersionMatch",
43870            "type": "string",
43871            "uniqueItems": true
43872          },
43873          {
43874            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43875            "in": "query",
43876            "name": "timeoutSeconds",
43877            "type": "integer",
43878            "uniqueItems": true
43879          }
43880        ],
43881        "produces": [
43882          "application/json",
43883          "application/yaml",
43884          "application/vnd.kubernetes.protobuf"
43885        ],
43886        "responses": {
43887          "200": {
43888            "description": "OK",
43889            "schema": {
43890              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43891            }
43892          },
43893          "401": {
43894            "description": "Unauthorized"
43895          }
43896        },
43897        "schemes": [
43898          "https"
43899        ],
43900        "tags": [
43901          "apiextensions_v1beta1"
43902        ],
43903        "x-kubernetes-action": "deletecollection",
43904        "x-kubernetes-group-version-kind": {
43905          "group": "apiextensions.k8s.io",
43906          "kind": "CustomResourceDefinition",
43907          "version": "v1beta1"
43908        }
43909      },
43910      "get": {
43911        "consumes": [
43912          "*/*"
43913        ],
43914        "description": "list or watch objects of kind CustomResourceDefinition",
43915        "operationId": "listApiextensionsV1beta1CustomResourceDefinition",
43916        "parameters": [
43917          {
43918            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
43919            "in": "query",
43920            "name": "allowWatchBookmarks",
43921            "type": "boolean",
43922            "uniqueItems": true
43923          },
43924          {
43925            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43926            "in": "query",
43927            "name": "continue",
43928            "type": "string",
43929            "uniqueItems": true
43930          },
43931          {
43932            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43933            "in": "query",
43934            "name": "fieldSelector",
43935            "type": "string",
43936            "uniqueItems": true
43937          },
43938          {
43939            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43940            "in": "query",
43941            "name": "labelSelector",
43942            "type": "string",
43943            "uniqueItems": true
43944          },
43945          {
43946            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43947            "in": "query",
43948            "name": "limit",
43949            "type": "integer",
43950            "uniqueItems": true
43951          },
43952          {
43953            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43954            "in": "query",
43955            "name": "resourceVersion",
43956            "type": "string",
43957            "uniqueItems": true
43958          },
43959          {
43960            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43961            "in": "query",
43962            "name": "resourceVersionMatch",
43963            "type": "string",
43964            "uniqueItems": true
43965          },
43966          {
43967            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43968            "in": "query",
43969            "name": "timeoutSeconds",
43970            "type": "integer",
43971            "uniqueItems": true
43972          },
43973          {
43974            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43975            "in": "query",
43976            "name": "watch",
43977            "type": "boolean",
43978            "uniqueItems": true
43979          }
43980        ],
43981        "produces": [
43982          "application/json",
43983          "application/yaml",
43984          "application/vnd.kubernetes.protobuf",
43985          "application/json;stream=watch",
43986          "application/vnd.kubernetes.protobuf;stream=watch"
43987        ],
43988        "responses": {
43989          "200": {
43990            "description": "OK",
43991            "schema": {
43992              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList"
43993            }
43994          },
43995          "401": {
43996            "description": "Unauthorized"
43997          }
43998        },
43999        "schemes": [
44000          "https"
44001        ],
44002        "tags": [
44003          "apiextensions_v1beta1"
44004        ],
44005        "x-kubernetes-action": "list",
44006        "x-kubernetes-group-version-kind": {
44007          "group": "apiextensions.k8s.io",
44008          "kind": "CustomResourceDefinition",
44009          "version": "v1beta1"
44010        }
44011      },
44012      "parameters": [
44013        {
44014          "description": "If 'true', then the output is pretty printed.",
44015          "in": "query",
44016          "name": "pretty",
44017          "type": "string",
44018          "uniqueItems": true
44019        }
44020      ],
44021      "post": {
44022        "consumes": [
44023          "*/*"
44024        ],
44025        "description": "create a CustomResourceDefinition",
44026        "operationId": "createApiextensionsV1beta1CustomResourceDefinition",
44027        "parameters": [
44028          {
44029            "in": "body",
44030            "name": "body",
44031            "required": true,
44032            "schema": {
44033              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44034            }
44035          },
44036          {
44037            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44038            "in": "query",
44039            "name": "dryRun",
44040            "type": "string",
44041            "uniqueItems": true
44042          },
44043          {
44044            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44045            "in": "query",
44046            "name": "fieldManager",
44047            "type": "string",
44048            "uniqueItems": true
44049          }
44050        ],
44051        "produces": [
44052          "application/json",
44053          "application/yaml",
44054          "application/vnd.kubernetes.protobuf"
44055        ],
44056        "responses": {
44057          "200": {
44058            "description": "OK",
44059            "schema": {
44060              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44061            }
44062          },
44063          "201": {
44064            "description": "Created",
44065            "schema": {
44066              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44067            }
44068          },
44069          "202": {
44070            "description": "Accepted",
44071            "schema": {
44072              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44073            }
44074          },
44075          "401": {
44076            "description": "Unauthorized"
44077          }
44078        },
44079        "schemes": [
44080          "https"
44081        ],
44082        "tags": [
44083          "apiextensions_v1beta1"
44084        ],
44085        "x-kubernetes-action": "post",
44086        "x-kubernetes-group-version-kind": {
44087          "group": "apiextensions.k8s.io",
44088          "kind": "CustomResourceDefinition",
44089          "version": "v1beta1"
44090        }
44091      }
44092    },
44093    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}": {
44094      "delete": {
44095        "consumes": [
44096          "*/*"
44097        ],
44098        "description": "delete a CustomResourceDefinition",
44099        "operationId": "deleteApiextensionsV1beta1CustomResourceDefinition",
44100        "parameters": [
44101          {
44102            "in": "body",
44103            "name": "body",
44104            "schema": {
44105              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44106            }
44107          },
44108          {
44109            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44110            "in": "query",
44111            "name": "dryRun",
44112            "type": "string",
44113            "uniqueItems": true
44114          },
44115          {
44116            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
44117            "in": "query",
44118            "name": "gracePeriodSeconds",
44119            "type": "integer",
44120            "uniqueItems": true
44121          },
44122          {
44123            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
44124            "in": "query",
44125            "name": "orphanDependents",
44126            "type": "boolean",
44127            "uniqueItems": true
44128          },
44129          {
44130            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
44131            "in": "query",
44132            "name": "propagationPolicy",
44133            "type": "string",
44134            "uniqueItems": true
44135          }
44136        ],
44137        "produces": [
44138          "application/json",
44139          "application/yaml",
44140          "application/vnd.kubernetes.protobuf"
44141        ],
44142        "responses": {
44143          "200": {
44144            "description": "OK",
44145            "schema": {
44146              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44147            }
44148          },
44149          "202": {
44150            "description": "Accepted",
44151            "schema": {
44152              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44153            }
44154          },
44155          "401": {
44156            "description": "Unauthorized"
44157          }
44158        },
44159        "schemes": [
44160          "https"
44161        ],
44162        "tags": [
44163          "apiextensions_v1beta1"
44164        ],
44165        "x-kubernetes-action": "delete",
44166        "x-kubernetes-group-version-kind": {
44167          "group": "apiextensions.k8s.io",
44168          "kind": "CustomResourceDefinition",
44169          "version": "v1beta1"
44170        }
44171      },
44172      "get": {
44173        "consumes": [
44174          "*/*"
44175        ],
44176        "description": "read the specified CustomResourceDefinition",
44177        "operationId": "readApiextensionsV1beta1CustomResourceDefinition",
44178        "produces": [
44179          "application/json",
44180          "application/yaml",
44181          "application/vnd.kubernetes.protobuf"
44182        ],
44183        "responses": {
44184          "200": {
44185            "description": "OK",
44186            "schema": {
44187              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44188            }
44189          },
44190          "401": {
44191            "description": "Unauthorized"
44192          }
44193        },
44194        "schemes": [
44195          "https"
44196        ],
44197        "tags": [
44198          "apiextensions_v1beta1"
44199        ],
44200        "x-kubernetes-action": "get",
44201        "x-kubernetes-group-version-kind": {
44202          "group": "apiextensions.k8s.io",
44203          "kind": "CustomResourceDefinition",
44204          "version": "v1beta1"
44205        }
44206      },
44207      "parameters": [
44208        {
44209          "description": "name of the CustomResourceDefinition",
44210          "in": "path",
44211          "name": "name",
44212          "required": true,
44213          "type": "string",
44214          "uniqueItems": true
44215        },
44216        {
44217          "description": "If 'true', then the output is pretty printed.",
44218          "in": "query",
44219          "name": "pretty",
44220          "type": "string",
44221          "uniqueItems": true
44222        }
44223      ],
44224      "patch": {
44225        "consumes": [
44226          "application/json-patch+json",
44227          "application/merge-patch+json",
44228          "application/strategic-merge-patch+json",
44229          "application/apply-patch+yaml"
44230        ],
44231        "description": "partially update the specified CustomResourceDefinition",
44232        "operationId": "patchApiextensionsV1beta1CustomResourceDefinition",
44233        "parameters": [
44234          {
44235            "in": "body",
44236            "name": "body",
44237            "required": true,
44238            "schema": {
44239              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44240            }
44241          },
44242          {
44243            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44244            "in": "query",
44245            "name": "dryRun",
44246            "type": "string",
44247            "uniqueItems": true
44248          },
44249          {
44250            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
44251            "in": "query",
44252            "name": "fieldManager",
44253            "type": "string",
44254            "uniqueItems": true
44255          },
44256          {
44257            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
44258            "in": "query",
44259            "name": "force",
44260            "type": "boolean",
44261            "uniqueItems": true
44262          }
44263        ],
44264        "produces": [
44265          "application/json",
44266          "application/yaml",
44267          "application/vnd.kubernetes.protobuf"
44268        ],
44269        "responses": {
44270          "200": {
44271            "description": "OK",
44272            "schema": {
44273              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44274            }
44275          },
44276          "401": {
44277            "description": "Unauthorized"
44278          }
44279        },
44280        "schemes": [
44281          "https"
44282        ],
44283        "tags": [
44284          "apiextensions_v1beta1"
44285        ],
44286        "x-kubernetes-action": "patch",
44287        "x-kubernetes-group-version-kind": {
44288          "group": "apiextensions.k8s.io",
44289          "kind": "CustomResourceDefinition",
44290          "version": "v1beta1"
44291        }
44292      },
44293      "put": {
44294        "consumes": [
44295          "*/*"
44296        ],
44297        "description": "replace the specified CustomResourceDefinition",
44298        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinition",
44299        "parameters": [
44300          {
44301            "in": "body",
44302            "name": "body",
44303            "required": true,
44304            "schema": {
44305              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44306            }
44307          },
44308          {
44309            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44310            "in": "query",
44311            "name": "dryRun",
44312            "type": "string",
44313            "uniqueItems": true
44314          },
44315          {
44316            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44317            "in": "query",
44318            "name": "fieldManager",
44319            "type": "string",
44320            "uniqueItems": true
44321          }
44322        ],
44323        "produces": [
44324          "application/json",
44325          "application/yaml",
44326          "application/vnd.kubernetes.protobuf"
44327        ],
44328        "responses": {
44329          "200": {
44330            "description": "OK",
44331            "schema": {
44332              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44333            }
44334          },
44335          "201": {
44336            "description": "Created",
44337            "schema": {
44338              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44339            }
44340          },
44341          "401": {
44342            "description": "Unauthorized"
44343          }
44344        },
44345        "schemes": [
44346          "https"
44347        ],
44348        "tags": [
44349          "apiextensions_v1beta1"
44350        ],
44351        "x-kubernetes-action": "put",
44352        "x-kubernetes-group-version-kind": {
44353          "group": "apiextensions.k8s.io",
44354          "kind": "CustomResourceDefinition",
44355          "version": "v1beta1"
44356        }
44357      }
44358    },
44359    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status": {
44360      "get": {
44361        "consumes": [
44362          "*/*"
44363        ],
44364        "description": "read status of the specified CustomResourceDefinition",
44365        "operationId": "readApiextensionsV1beta1CustomResourceDefinitionStatus",
44366        "produces": [
44367          "application/json",
44368          "application/yaml",
44369          "application/vnd.kubernetes.protobuf"
44370        ],
44371        "responses": {
44372          "200": {
44373            "description": "OK",
44374            "schema": {
44375              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44376            }
44377          },
44378          "401": {
44379            "description": "Unauthorized"
44380          }
44381        },
44382        "schemes": [
44383          "https"
44384        ],
44385        "tags": [
44386          "apiextensions_v1beta1"
44387        ],
44388        "x-kubernetes-action": "get",
44389        "x-kubernetes-group-version-kind": {
44390          "group": "apiextensions.k8s.io",
44391          "kind": "CustomResourceDefinition",
44392          "version": "v1beta1"
44393        }
44394      },
44395      "parameters": [
44396        {
44397          "description": "name of the CustomResourceDefinition",
44398          "in": "path",
44399          "name": "name",
44400          "required": true,
44401          "type": "string",
44402          "uniqueItems": true
44403        },
44404        {
44405          "description": "If 'true', then the output is pretty printed.",
44406          "in": "query",
44407          "name": "pretty",
44408          "type": "string",
44409          "uniqueItems": true
44410        }
44411      ],
44412      "patch": {
44413        "consumes": [
44414          "application/json-patch+json",
44415          "application/merge-patch+json",
44416          "application/strategic-merge-patch+json",
44417          "application/apply-patch+yaml"
44418        ],
44419        "description": "partially update status of the specified CustomResourceDefinition",
44420        "operationId": "patchApiextensionsV1beta1CustomResourceDefinitionStatus",
44421        "parameters": [
44422          {
44423            "in": "body",
44424            "name": "body",
44425            "required": true,
44426            "schema": {
44427              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44428            }
44429          },
44430          {
44431            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44432            "in": "query",
44433            "name": "dryRun",
44434            "type": "string",
44435            "uniqueItems": true
44436          },
44437          {
44438            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
44439            "in": "query",
44440            "name": "fieldManager",
44441            "type": "string",
44442            "uniqueItems": true
44443          },
44444          {
44445            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
44446            "in": "query",
44447            "name": "force",
44448            "type": "boolean",
44449            "uniqueItems": true
44450          }
44451        ],
44452        "produces": [
44453          "application/json",
44454          "application/yaml",
44455          "application/vnd.kubernetes.protobuf"
44456        ],
44457        "responses": {
44458          "200": {
44459            "description": "OK",
44460            "schema": {
44461              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44462            }
44463          },
44464          "401": {
44465            "description": "Unauthorized"
44466          }
44467        },
44468        "schemes": [
44469          "https"
44470        ],
44471        "tags": [
44472          "apiextensions_v1beta1"
44473        ],
44474        "x-kubernetes-action": "patch",
44475        "x-kubernetes-group-version-kind": {
44476          "group": "apiextensions.k8s.io",
44477          "kind": "CustomResourceDefinition",
44478          "version": "v1beta1"
44479        }
44480      },
44481      "put": {
44482        "consumes": [
44483          "*/*"
44484        ],
44485        "description": "replace status of the specified CustomResourceDefinition",
44486        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinitionStatus",
44487        "parameters": [
44488          {
44489            "in": "body",
44490            "name": "body",
44491            "required": true,
44492            "schema": {
44493              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44494            }
44495          },
44496          {
44497            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44498            "in": "query",
44499            "name": "dryRun",
44500            "type": "string",
44501            "uniqueItems": true
44502          },
44503          {
44504            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44505            "in": "query",
44506            "name": "fieldManager",
44507            "type": "string",
44508            "uniqueItems": true
44509          }
44510        ],
44511        "produces": [
44512          "application/json",
44513          "application/yaml",
44514          "application/vnd.kubernetes.protobuf"
44515        ],
44516        "responses": {
44517          "200": {
44518            "description": "OK",
44519            "schema": {
44520              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44521            }
44522          },
44523          "201": {
44524            "description": "Created",
44525            "schema": {
44526              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
44527            }
44528          },
44529          "401": {
44530            "description": "Unauthorized"
44531          }
44532        },
44533        "schemes": [
44534          "https"
44535        ],
44536        "tags": [
44537          "apiextensions_v1beta1"
44538        ],
44539        "x-kubernetes-action": "put",
44540        "x-kubernetes-group-version-kind": {
44541          "group": "apiextensions.k8s.io",
44542          "kind": "CustomResourceDefinition",
44543          "version": "v1beta1"
44544        }
44545      }
44546    },
44547    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions": {
44548      "get": {
44549        "consumes": [
44550          "*/*"
44551        ],
44552        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
44553        "operationId": "watchApiextensionsV1beta1CustomResourceDefinitionList",
44554        "produces": [
44555          "application/json",
44556          "application/yaml",
44557          "application/vnd.kubernetes.protobuf",
44558          "application/json;stream=watch",
44559          "application/vnd.kubernetes.protobuf;stream=watch"
44560        ],
44561        "responses": {
44562          "200": {
44563            "description": "OK",
44564            "schema": {
44565              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44566            }
44567          },
44568          "401": {
44569            "description": "Unauthorized"
44570          }
44571        },
44572        "schemes": [
44573          "https"
44574        ],
44575        "tags": [
44576          "apiextensions_v1beta1"
44577        ],
44578        "x-kubernetes-action": "watchlist",
44579        "x-kubernetes-group-version-kind": {
44580          "group": "apiextensions.k8s.io",
44581          "kind": "CustomResourceDefinition",
44582          "version": "v1beta1"
44583        }
44584      },
44585      "parameters": [
44586        {
44587          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44588          "in": "query",
44589          "name": "allowWatchBookmarks",
44590          "type": "boolean",
44591          "uniqueItems": true
44592        },
44593        {
44594          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44595          "in": "query",
44596          "name": "continue",
44597          "type": "string",
44598          "uniqueItems": true
44599        },
44600        {
44601          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44602          "in": "query",
44603          "name": "fieldSelector",
44604          "type": "string",
44605          "uniqueItems": true
44606        },
44607        {
44608          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44609          "in": "query",
44610          "name": "labelSelector",
44611          "type": "string",
44612          "uniqueItems": true
44613        },
44614        {
44615          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44616          "in": "query",
44617          "name": "limit",
44618          "type": "integer",
44619          "uniqueItems": true
44620        },
44621        {
44622          "description": "If 'true', then the output is pretty printed.",
44623          "in": "query",
44624          "name": "pretty",
44625          "type": "string",
44626          "uniqueItems": true
44627        },
44628        {
44629          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44630          "in": "query",
44631          "name": "resourceVersion",
44632          "type": "string",
44633          "uniqueItems": true
44634        },
44635        {
44636          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44637          "in": "query",
44638          "name": "resourceVersionMatch",
44639          "type": "string",
44640          "uniqueItems": true
44641        },
44642        {
44643          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44644          "in": "query",
44645          "name": "timeoutSeconds",
44646          "type": "integer",
44647          "uniqueItems": true
44648        },
44649        {
44650          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44651          "in": "query",
44652          "name": "watch",
44653          "type": "boolean",
44654          "uniqueItems": true
44655        }
44656      ]
44657    },
44658    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}": {
44659      "get": {
44660        "consumes": [
44661          "*/*"
44662        ],
44663        "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.",
44664        "operationId": "watchApiextensionsV1beta1CustomResourceDefinition",
44665        "produces": [
44666          "application/json",
44667          "application/yaml",
44668          "application/vnd.kubernetes.protobuf",
44669          "application/json;stream=watch",
44670          "application/vnd.kubernetes.protobuf;stream=watch"
44671        ],
44672        "responses": {
44673          "200": {
44674            "description": "OK",
44675            "schema": {
44676              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44677            }
44678          },
44679          "401": {
44680            "description": "Unauthorized"
44681          }
44682        },
44683        "schemes": [
44684          "https"
44685        ],
44686        "tags": [
44687          "apiextensions_v1beta1"
44688        ],
44689        "x-kubernetes-action": "watch",
44690        "x-kubernetes-group-version-kind": {
44691          "group": "apiextensions.k8s.io",
44692          "kind": "CustomResourceDefinition",
44693          "version": "v1beta1"
44694        }
44695      },
44696      "parameters": [
44697        {
44698          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44699          "in": "query",
44700          "name": "allowWatchBookmarks",
44701          "type": "boolean",
44702          "uniqueItems": true
44703        },
44704        {
44705          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44706          "in": "query",
44707          "name": "continue",
44708          "type": "string",
44709          "uniqueItems": true
44710        },
44711        {
44712          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44713          "in": "query",
44714          "name": "fieldSelector",
44715          "type": "string",
44716          "uniqueItems": true
44717        },
44718        {
44719          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44720          "in": "query",
44721          "name": "labelSelector",
44722          "type": "string",
44723          "uniqueItems": true
44724        },
44725        {
44726          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44727          "in": "query",
44728          "name": "limit",
44729          "type": "integer",
44730          "uniqueItems": true
44731        },
44732        {
44733          "description": "name of the CustomResourceDefinition",
44734          "in": "path",
44735          "name": "name",
44736          "required": true,
44737          "type": "string",
44738          "uniqueItems": true
44739        },
44740        {
44741          "description": "If 'true', then the output is pretty printed.",
44742          "in": "query",
44743          "name": "pretty",
44744          "type": "string",
44745          "uniqueItems": true
44746        },
44747        {
44748          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44749          "in": "query",
44750          "name": "resourceVersion",
44751          "type": "string",
44752          "uniqueItems": true
44753        },
44754        {
44755          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44756          "in": "query",
44757          "name": "resourceVersionMatch",
44758          "type": "string",
44759          "uniqueItems": true
44760        },
44761        {
44762          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44763          "in": "query",
44764          "name": "timeoutSeconds",
44765          "type": "integer",
44766          "uniqueItems": true
44767        },
44768        {
44769          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44770          "in": "query",
44771          "name": "watch",
44772          "type": "boolean",
44773          "uniqueItems": true
44774        }
44775      ]
44776    },
44777    "/apis/apiregistration.k8s.io/": {
44778      "get": {
44779        "consumes": [
44780          "application/json",
44781          "application/yaml",
44782          "application/vnd.kubernetes.protobuf"
44783        ],
44784        "description": "get information of a group",
44785        "operationId": "getApiregistrationAPIGroup",
44786        "produces": [
44787          "application/json",
44788          "application/yaml",
44789          "application/vnd.kubernetes.protobuf"
44790        ],
44791        "responses": {
44792          "200": {
44793            "description": "OK",
44794            "schema": {
44795              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
44796            }
44797          },
44798          "401": {
44799            "description": "Unauthorized"
44800          }
44801        },
44802        "schemes": [
44803          "https"
44804        ],
44805        "tags": [
44806          "apiregistration"
44807        ]
44808      }
44809    },
44810    "/apis/apiregistration.k8s.io/v1/": {
44811      "get": {
44812        "consumes": [
44813          "application/json",
44814          "application/yaml",
44815          "application/vnd.kubernetes.protobuf"
44816        ],
44817        "description": "get available resources",
44818        "operationId": "getApiregistrationV1APIResources",
44819        "produces": [
44820          "application/json",
44821          "application/yaml",
44822          "application/vnd.kubernetes.protobuf"
44823        ],
44824        "responses": {
44825          "200": {
44826            "description": "OK",
44827            "schema": {
44828              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
44829            }
44830          },
44831          "401": {
44832            "description": "Unauthorized"
44833          }
44834        },
44835        "schemes": [
44836          "https"
44837        ],
44838        "tags": [
44839          "apiregistration_v1"
44840        ]
44841      }
44842    },
44843    "/apis/apiregistration.k8s.io/v1/apiservices": {
44844      "delete": {
44845        "consumes": [
44846          "*/*"
44847        ],
44848        "description": "delete collection of APIService",
44849        "operationId": "deleteApiregistrationV1CollectionAPIService",
44850        "parameters": [
44851          {
44852            "in": "body",
44853            "name": "body",
44854            "schema": {
44855              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44856            }
44857          },
44858          {
44859            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44860            "in": "query",
44861            "name": "continue",
44862            "type": "string",
44863            "uniqueItems": true
44864          },
44865          {
44866            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44867            "in": "query",
44868            "name": "dryRun",
44869            "type": "string",
44870            "uniqueItems": true
44871          },
44872          {
44873            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44874            "in": "query",
44875            "name": "fieldSelector",
44876            "type": "string",
44877            "uniqueItems": true
44878          },
44879          {
44880            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
44881            "in": "query",
44882            "name": "gracePeriodSeconds",
44883            "type": "integer",
44884            "uniqueItems": true
44885          },
44886          {
44887            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44888            "in": "query",
44889            "name": "labelSelector",
44890            "type": "string",
44891            "uniqueItems": true
44892          },
44893          {
44894            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44895            "in": "query",
44896            "name": "limit",
44897            "type": "integer",
44898            "uniqueItems": true
44899          },
44900          {
44901            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
44902            "in": "query",
44903            "name": "orphanDependents",
44904            "type": "boolean",
44905            "uniqueItems": true
44906          },
44907          {
44908            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
44909            "in": "query",
44910            "name": "propagationPolicy",
44911            "type": "string",
44912            "uniqueItems": true
44913          },
44914          {
44915            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44916            "in": "query",
44917            "name": "resourceVersion",
44918            "type": "string",
44919            "uniqueItems": true
44920          },
44921          {
44922            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44923            "in": "query",
44924            "name": "resourceVersionMatch",
44925            "type": "string",
44926            "uniqueItems": true
44927          },
44928          {
44929            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44930            "in": "query",
44931            "name": "timeoutSeconds",
44932            "type": "integer",
44933            "uniqueItems": true
44934          }
44935        ],
44936        "produces": [
44937          "application/json",
44938          "application/yaml",
44939          "application/vnd.kubernetes.protobuf"
44940        ],
44941        "responses": {
44942          "200": {
44943            "description": "OK",
44944            "schema": {
44945              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44946            }
44947          },
44948          "401": {
44949            "description": "Unauthorized"
44950          }
44951        },
44952        "schemes": [
44953          "https"
44954        ],
44955        "tags": [
44956          "apiregistration_v1"
44957        ],
44958        "x-kubernetes-action": "deletecollection",
44959        "x-kubernetes-group-version-kind": {
44960          "group": "apiregistration.k8s.io",
44961          "kind": "APIService",
44962          "version": "v1"
44963        }
44964      },
44965      "get": {
44966        "consumes": [
44967          "*/*"
44968        ],
44969        "description": "list or watch objects of kind APIService",
44970        "operationId": "listApiregistrationV1APIService",
44971        "parameters": [
44972          {
44973            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
44974            "in": "query",
44975            "name": "allowWatchBookmarks",
44976            "type": "boolean",
44977            "uniqueItems": true
44978          },
44979          {
44980            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44981            "in": "query",
44982            "name": "continue",
44983            "type": "string",
44984            "uniqueItems": true
44985          },
44986          {
44987            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44988            "in": "query",
44989            "name": "fieldSelector",
44990            "type": "string",
44991            "uniqueItems": true
44992          },
44993          {
44994            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44995            "in": "query",
44996            "name": "labelSelector",
44997            "type": "string",
44998            "uniqueItems": true
44999          },
45000          {
45001            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45002            "in": "query",
45003            "name": "limit",
45004            "type": "integer",
45005            "uniqueItems": true
45006          },
45007          {
45008            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45009            "in": "query",
45010            "name": "resourceVersion",
45011            "type": "string",
45012            "uniqueItems": true
45013          },
45014          {
45015            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45016            "in": "query",
45017            "name": "resourceVersionMatch",
45018            "type": "string",
45019            "uniqueItems": true
45020          },
45021          {
45022            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45023            "in": "query",
45024            "name": "timeoutSeconds",
45025            "type": "integer",
45026            "uniqueItems": true
45027          },
45028          {
45029            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45030            "in": "query",
45031            "name": "watch",
45032            "type": "boolean",
45033            "uniqueItems": true
45034          }
45035        ],
45036        "produces": [
45037          "application/json",
45038          "application/yaml",
45039          "application/vnd.kubernetes.protobuf",
45040          "application/json;stream=watch",
45041          "application/vnd.kubernetes.protobuf;stream=watch"
45042        ],
45043        "responses": {
45044          "200": {
45045            "description": "OK",
45046            "schema": {
45047              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList"
45048            }
45049          },
45050          "401": {
45051            "description": "Unauthorized"
45052          }
45053        },
45054        "schemes": [
45055          "https"
45056        ],
45057        "tags": [
45058          "apiregistration_v1"
45059        ],
45060        "x-kubernetes-action": "list",
45061        "x-kubernetes-group-version-kind": {
45062          "group": "apiregistration.k8s.io",
45063          "kind": "APIService",
45064          "version": "v1"
45065        }
45066      },
45067      "parameters": [
45068        {
45069          "description": "If 'true', then the output is pretty printed.",
45070          "in": "query",
45071          "name": "pretty",
45072          "type": "string",
45073          "uniqueItems": true
45074        }
45075      ],
45076      "post": {
45077        "consumes": [
45078          "*/*"
45079        ],
45080        "description": "create an APIService",
45081        "operationId": "createApiregistrationV1APIService",
45082        "parameters": [
45083          {
45084            "in": "body",
45085            "name": "body",
45086            "required": true,
45087            "schema": {
45088              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45089            }
45090          },
45091          {
45092            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45093            "in": "query",
45094            "name": "dryRun",
45095            "type": "string",
45096            "uniqueItems": true
45097          },
45098          {
45099            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45100            "in": "query",
45101            "name": "fieldManager",
45102            "type": "string",
45103            "uniqueItems": true
45104          }
45105        ],
45106        "produces": [
45107          "application/json",
45108          "application/yaml",
45109          "application/vnd.kubernetes.protobuf"
45110        ],
45111        "responses": {
45112          "200": {
45113            "description": "OK",
45114            "schema": {
45115              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45116            }
45117          },
45118          "201": {
45119            "description": "Created",
45120            "schema": {
45121              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45122            }
45123          },
45124          "202": {
45125            "description": "Accepted",
45126            "schema": {
45127              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45128            }
45129          },
45130          "401": {
45131            "description": "Unauthorized"
45132          }
45133        },
45134        "schemes": [
45135          "https"
45136        ],
45137        "tags": [
45138          "apiregistration_v1"
45139        ],
45140        "x-kubernetes-action": "post",
45141        "x-kubernetes-group-version-kind": {
45142          "group": "apiregistration.k8s.io",
45143          "kind": "APIService",
45144          "version": "v1"
45145        }
45146      }
45147    },
45148    "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
45149      "delete": {
45150        "consumes": [
45151          "*/*"
45152        ],
45153        "description": "delete an APIService",
45154        "operationId": "deleteApiregistrationV1APIService",
45155        "parameters": [
45156          {
45157            "in": "body",
45158            "name": "body",
45159            "schema": {
45160              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45161            }
45162          },
45163          {
45164            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45165            "in": "query",
45166            "name": "dryRun",
45167            "type": "string",
45168            "uniqueItems": true
45169          },
45170          {
45171            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
45172            "in": "query",
45173            "name": "gracePeriodSeconds",
45174            "type": "integer",
45175            "uniqueItems": true
45176          },
45177          {
45178            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
45179            "in": "query",
45180            "name": "orphanDependents",
45181            "type": "boolean",
45182            "uniqueItems": true
45183          },
45184          {
45185            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
45186            "in": "query",
45187            "name": "propagationPolicy",
45188            "type": "string",
45189            "uniqueItems": true
45190          }
45191        ],
45192        "produces": [
45193          "application/json",
45194          "application/yaml",
45195          "application/vnd.kubernetes.protobuf"
45196        ],
45197        "responses": {
45198          "200": {
45199            "description": "OK",
45200            "schema": {
45201              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45202            }
45203          },
45204          "202": {
45205            "description": "Accepted",
45206            "schema": {
45207              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45208            }
45209          },
45210          "401": {
45211            "description": "Unauthorized"
45212          }
45213        },
45214        "schemes": [
45215          "https"
45216        ],
45217        "tags": [
45218          "apiregistration_v1"
45219        ],
45220        "x-kubernetes-action": "delete",
45221        "x-kubernetes-group-version-kind": {
45222          "group": "apiregistration.k8s.io",
45223          "kind": "APIService",
45224          "version": "v1"
45225        }
45226      },
45227      "get": {
45228        "consumes": [
45229          "*/*"
45230        ],
45231        "description": "read the specified APIService",
45232        "operationId": "readApiregistrationV1APIService",
45233        "produces": [
45234          "application/json",
45235          "application/yaml",
45236          "application/vnd.kubernetes.protobuf"
45237        ],
45238        "responses": {
45239          "200": {
45240            "description": "OK",
45241            "schema": {
45242              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45243            }
45244          },
45245          "401": {
45246            "description": "Unauthorized"
45247          }
45248        },
45249        "schemes": [
45250          "https"
45251        ],
45252        "tags": [
45253          "apiregistration_v1"
45254        ],
45255        "x-kubernetes-action": "get",
45256        "x-kubernetes-group-version-kind": {
45257          "group": "apiregistration.k8s.io",
45258          "kind": "APIService",
45259          "version": "v1"
45260        }
45261      },
45262      "parameters": [
45263        {
45264          "description": "name of the APIService",
45265          "in": "path",
45266          "name": "name",
45267          "required": true,
45268          "type": "string",
45269          "uniqueItems": true
45270        },
45271        {
45272          "description": "If 'true', then the output is pretty printed.",
45273          "in": "query",
45274          "name": "pretty",
45275          "type": "string",
45276          "uniqueItems": true
45277        }
45278      ],
45279      "patch": {
45280        "consumes": [
45281          "application/json-patch+json",
45282          "application/merge-patch+json",
45283          "application/strategic-merge-patch+json",
45284          "application/apply-patch+yaml"
45285        ],
45286        "description": "partially update the specified APIService",
45287        "operationId": "patchApiregistrationV1APIService",
45288        "parameters": [
45289          {
45290            "in": "body",
45291            "name": "body",
45292            "required": true,
45293            "schema": {
45294              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
45295            }
45296          },
45297          {
45298            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45299            "in": "query",
45300            "name": "dryRun",
45301            "type": "string",
45302            "uniqueItems": true
45303          },
45304          {
45305            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
45306            "in": "query",
45307            "name": "fieldManager",
45308            "type": "string",
45309            "uniqueItems": true
45310          },
45311          {
45312            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
45313            "in": "query",
45314            "name": "force",
45315            "type": "boolean",
45316            "uniqueItems": true
45317          }
45318        ],
45319        "produces": [
45320          "application/json",
45321          "application/yaml",
45322          "application/vnd.kubernetes.protobuf"
45323        ],
45324        "responses": {
45325          "200": {
45326            "description": "OK",
45327            "schema": {
45328              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45329            }
45330          },
45331          "401": {
45332            "description": "Unauthorized"
45333          }
45334        },
45335        "schemes": [
45336          "https"
45337        ],
45338        "tags": [
45339          "apiregistration_v1"
45340        ],
45341        "x-kubernetes-action": "patch",
45342        "x-kubernetes-group-version-kind": {
45343          "group": "apiregistration.k8s.io",
45344          "kind": "APIService",
45345          "version": "v1"
45346        }
45347      },
45348      "put": {
45349        "consumes": [
45350          "*/*"
45351        ],
45352        "description": "replace the specified APIService",
45353        "operationId": "replaceApiregistrationV1APIService",
45354        "parameters": [
45355          {
45356            "in": "body",
45357            "name": "body",
45358            "required": true,
45359            "schema": {
45360              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45361            }
45362          },
45363          {
45364            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45365            "in": "query",
45366            "name": "dryRun",
45367            "type": "string",
45368            "uniqueItems": true
45369          },
45370          {
45371            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45372            "in": "query",
45373            "name": "fieldManager",
45374            "type": "string",
45375            "uniqueItems": true
45376          }
45377        ],
45378        "produces": [
45379          "application/json",
45380          "application/yaml",
45381          "application/vnd.kubernetes.protobuf"
45382        ],
45383        "responses": {
45384          "200": {
45385            "description": "OK",
45386            "schema": {
45387              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45388            }
45389          },
45390          "201": {
45391            "description": "Created",
45392            "schema": {
45393              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45394            }
45395          },
45396          "401": {
45397            "description": "Unauthorized"
45398          }
45399        },
45400        "schemes": [
45401          "https"
45402        ],
45403        "tags": [
45404          "apiregistration_v1"
45405        ],
45406        "x-kubernetes-action": "put",
45407        "x-kubernetes-group-version-kind": {
45408          "group": "apiregistration.k8s.io",
45409          "kind": "APIService",
45410          "version": "v1"
45411        }
45412      }
45413    },
45414    "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": {
45415      "get": {
45416        "consumes": [
45417          "*/*"
45418        ],
45419        "description": "read status of the specified APIService",
45420        "operationId": "readApiregistrationV1APIServiceStatus",
45421        "produces": [
45422          "application/json",
45423          "application/yaml",
45424          "application/vnd.kubernetes.protobuf"
45425        ],
45426        "responses": {
45427          "200": {
45428            "description": "OK",
45429            "schema": {
45430              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45431            }
45432          },
45433          "401": {
45434            "description": "Unauthorized"
45435          }
45436        },
45437        "schemes": [
45438          "https"
45439        ],
45440        "tags": [
45441          "apiregistration_v1"
45442        ],
45443        "x-kubernetes-action": "get",
45444        "x-kubernetes-group-version-kind": {
45445          "group": "apiregistration.k8s.io",
45446          "kind": "APIService",
45447          "version": "v1"
45448        }
45449      },
45450      "parameters": [
45451        {
45452          "description": "name of the APIService",
45453          "in": "path",
45454          "name": "name",
45455          "required": true,
45456          "type": "string",
45457          "uniqueItems": true
45458        },
45459        {
45460          "description": "If 'true', then the output is pretty printed.",
45461          "in": "query",
45462          "name": "pretty",
45463          "type": "string",
45464          "uniqueItems": true
45465        }
45466      ],
45467      "patch": {
45468        "consumes": [
45469          "application/json-patch+json",
45470          "application/merge-patch+json",
45471          "application/strategic-merge-patch+json",
45472          "application/apply-patch+yaml"
45473        ],
45474        "description": "partially update status of the specified APIService",
45475        "operationId": "patchApiregistrationV1APIServiceStatus",
45476        "parameters": [
45477          {
45478            "in": "body",
45479            "name": "body",
45480            "required": true,
45481            "schema": {
45482              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
45483            }
45484          },
45485          {
45486            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45487            "in": "query",
45488            "name": "dryRun",
45489            "type": "string",
45490            "uniqueItems": true
45491          },
45492          {
45493            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
45494            "in": "query",
45495            "name": "fieldManager",
45496            "type": "string",
45497            "uniqueItems": true
45498          },
45499          {
45500            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
45501            "in": "query",
45502            "name": "force",
45503            "type": "boolean",
45504            "uniqueItems": true
45505          }
45506        ],
45507        "produces": [
45508          "application/json",
45509          "application/yaml",
45510          "application/vnd.kubernetes.protobuf"
45511        ],
45512        "responses": {
45513          "200": {
45514            "description": "OK",
45515            "schema": {
45516              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45517            }
45518          },
45519          "401": {
45520            "description": "Unauthorized"
45521          }
45522        },
45523        "schemes": [
45524          "https"
45525        ],
45526        "tags": [
45527          "apiregistration_v1"
45528        ],
45529        "x-kubernetes-action": "patch",
45530        "x-kubernetes-group-version-kind": {
45531          "group": "apiregistration.k8s.io",
45532          "kind": "APIService",
45533          "version": "v1"
45534        }
45535      },
45536      "put": {
45537        "consumes": [
45538          "*/*"
45539        ],
45540        "description": "replace status of the specified APIService",
45541        "operationId": "replaceApiregistrationV1APIServiceStatus",
45542        "parameters": [
45543          {
45544            "in": "body",
45545            "name": "body",
45546            "required": true,
45547            "schema": {
45548              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45549            }
45550          },
45551          {
45552            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45553            "in": "query",
45554            "name": "dryRun",
45555            "type": "string",
45556            "uniqueItems": true
45557          },
45558          {
45559            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45560            "in": "query",
45561            "name": "fieldManager",
45562            "type": "string",
45563            "uniqueItems": true
45564          }
45565        ],
45566        "produces": [
45567          "application/json",
45568          "application/yaml",
45569          "application/vnd.kubernetes.protobuf"
45570        ],
45571        "responses": {
45572          "200": {
45573            "description": "OK",
45574            "schema": {
45575              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45576            }
45577          },
45578          "201": {
45579            "description": "Created",
45580            "schema": {
45581              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
45582            }
45583          },
45584          "401": {
45585            "description": "Unauthorized"
45586          }
45587        },
45588        "schemes": [
45589          "https"
45590        ],
45591        "tags": [
45592          "apiregistration_v1"
45593        ],
45594        "x-kubernetes-action": "put",
45595        "x-kubernetes-group-version-kind": {
45596          "group": "apiregistration.k8s.io",
45597          "kind": "APIService",
45598          "version": "v1"
45599        }
45600      }
45601    },
45602    "/apis/apiregistration.k8s.io/v1/watch/apiservices": {
45603      "get": {
45604        "consumes": [
45605          "*/*"
45606        ],
45607        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
45608        "operationId": "watchApiregistrationV1APIServiceList",
45609        "produces": [
45610          "application/json",
45611          "application/yaml",
45612          "application/vnd.kubernetes.protobuf",
45613          "application/json;stream=watch",
45614          "application/vnd.kubernetes.protobuf;stream=watch"
45615        ],
45616        "responses": {
45617          "200": {
45618            "description": "OK",
45619            "schema": {
45620              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45621            }
45622          },
45623          "401": {
45624            "description": "Unauthorized"
45625          }
45626        },
45627        "schemes": [
45628          "https"
45629        ],
45630        "tags": [
45631          "apiregistration_v1"
45632        ],
45633        "x-kubernetes-action": "watchlist",
45634        "x-kubernetes-group-version-kind": {
45635          "group": "apiregistration.k8s.io",
45636          "kind": "APIService",
45637          "version": "v1"
45638        }
45639      },
45640      "parameters": [
45641        {
45642          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45643          "in": "query",
45644          "name": "allowWatchBookmarks",
45645          "type": "boolean",
45646          "uniqueItems": true
45647        },
45648        {
45649          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45650          "in": "query",
45651          "name": "continue",
45652          "type": "string",
45653          "uniqueItems": true
45654        },
45655        {
45656          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45657          "in": "query",
45658          "name": "fieldSelector",
45659          "type": "string",
45660          "uniqueItems": true
45661        },
45662        {
45663          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45664          "in": "query",
45665          "name": "labelSelector",
45666          "type": "string",
45667          "uniqueItems": true
45668        },
45669        {
45670          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45671          "in": "query",
45672          "name": "limit",
45673          "type": "integer",
45674          "uniqueItems": true
45675        },
45676        {
45677          "description": "If 'true', then the output is pretty printed.",
45678          "in": "query",
45679          "name": "pretty",
45680          "type": "string",
45681          "uniqueItems": true
45682        },
45683        {
45684          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45685          "in": "query",
45686          "name": "resourceVersion",
45687          "type": "string",
45688          "uniqueItems": true
45689        },
45690        {
45691          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45692          "in": "query",
45693          "name": "resourceVersionMatch",
45694          "type": "string",
45695          "uniqueItems": true
45696        },
45697        {
45698          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45699          "in": "query",
45700          "name": "timeoutSeconds",
45701          "type": "integer",
45702          "uniqueItems": true
45703        },
45704        {
45705          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45706          "in": "query",
45707          "name": "watch",
45708          "type": "boolean",
45709          "uniqueItems": true
45710        }
45711      ]
45712    },
45713    "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": {
45714      "get": {
45715        "consumes": [
45716          "*/*"
45717        ],
45718        "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.",
45719        "operationId": "watchApiregistrationV1APIService",
45720        "produces": [
45721          "application/json",
45722          "application/yaml",
45723          "application/vnd.kubernetes.protobuf",
45724          "application/json;stream=watch",
45725          "application/vnd.kubernetes.protobuf;stream=watch"
45726        ],
45727        "responses": {
45728          "200": {
45729            "description": "OK",
45730            "schema": {
45731              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45732            }
45733          },
45734          "401": {
45735            "description": "Unauthorized"
45736          }
45737        },
45738        "schemes": [
45739          "https"
45740        ],
45741        "tags": [
45742          "apiregistration_v1"
45743        ],
45744        "x-kubernetes-action": "watch",
45745        "x-kubernetes-group-version-kind": {
45746          "group": "apiregistration.k8s.io",
45747          "kind": "APIService",
45748          "version": "v1"
45749        }
45750      },
45751      "parameters": [
45752        {
45753          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45754          "in": "query",
45755          "name": "allowWatchBookmarks",
45756          "type": "boolean",
45757          "uniqueItems": true
45758        },
45759        {
45760          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45761          "in": "query",
45762          "name": "continue",
45763          "type": "string",
45764          "uniqueItems": true
45765        },
45766        {
45767          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45768          "in": "query",
45769          "name": "fieldSelector",
45770          "type": "string",
45771          "uniqueItems": true
45772        },
45773        {
45774          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45775          "in": "query",
45776          "name": "labelSelector",
45777          "type": "string",
45778          "uniqueItems": true
45779        },
45780        {
45781          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45782          "in": "query",
45783          "name": "limit",
45784          "type": "integer",
45785          "uniqueItems": true
45786        },
45787        {
45788          "description": "name of the APIService",
45789          "in": "path",
45790          "name": "name",
45791          "required": true,
45792          "type": "string",
45793          "uniqueItems": true
45794        },
45795        {
45796          "description": "If 'true', then the output is pretty printed.",
45797          "in": "query",
45798          "name": "pretty",
45799          "type": "string",
45800          "uniqueItems": true
45801        },
45802        {
45803          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45804          "in": "query",
45805          "name": "resourceVersion",
45806          "type": "string",
45807          "uniqueItems": true
45808        },
45809        {
45810          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45811          "in": "query",
45812          "name": "resourceVersionMatch",
45813          "type": "string",
45814          "uniqueItems": true
45815        },
45816        {
45817          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45818          "in": "query",
45819          "name": "timeoutSeconds",
45820          "type": "integer",
45821          "uniqueItems": true
45822        },
45823        {
45824          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45825          "in": "query",
45826          "name": "watch",
45827          "type": "boolean",
45828          "uniqueItems": true
45829        }
45830      ]
45831    },
45832    "/apis/apiregistration.k8s.io/v1beta1/": {
45833      "get": {
45834        "consumes": [
45835          "application/json",
45836          "application/yaml",
45837          "application/vnd.kubernetes.protobuf"
45838        ],
45839        "description": "get available resources",
45840        "operationId": "getApiregistrationV1beta1APIResources",
45841        "produces": [
45842          "application/json",
45843          "application/yaml",
45844          "application/vnd.kubernetes.protobuf"
45845        ],
45846        "responses": {
45847          "200": {
45848            "description": "OK",
45849            "schema": {
45850              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
45851            }
45852          },
45853          "401": {
45854            "description": "Unauthorized"
45855          }
45856        },
45857        "schemes": [
45858          "https"
45859        ],
45860        "tags": [
45861          "apiregistration_v1beta1"
45862        ]
45863      }
45864    },
45865    "/apis/apiregistration.k8s.io/v1beta1/apiservices": {
45866      "delete": {
45867        "consumes": [
45868          "*/*"
45869        ],
45870        "description": "delete collection of APIService",
45871        "operationId": "deleteApiregistrationV1beta1CollectionAPIService",
45872        "parameters": [
45873          {
45874            "in": "body",
45875            "name": "body",
45876            "schema": {
45877              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45878            }
45879          },
45880          {
45881            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45882            "in": "query",
45883            "name": "continue",
45884            "type": "string",
45885            "uniqueItems": true
45886          },
45887          {
45888            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45889            "in": "query",
45890            "name": "dryRun",
45891            "type": "string",
45892            "uniqueItems": true
45893          },
45894          {
45895            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45896            "in": "query",
45897            "name": "fieldSelector",
45898            "type": "string",
45899            "uniqueItems": true
45900          },
45901          {
45902            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
45903            "in": "query",
45904            "name": "gracePeriodSeconds",
45905            "type": "integer",
45906            "uniqueItems": true
45907          },
45908          {
45909            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45910            "in": "query",
45911            "name": "labelSelector",
45912            "type": "string",
45913            "uniqueItems": true
45914          },
45915          {
45916            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45917            "in": "query",
45918            "name": "limit",
45919            "type": "integer",
45920            "uniqueItems": true
45921          },
45922          {
45923            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
45924            "in": "query",
45925            "name": "orphanDependents",
45926            "type": "boolean",
45927            "uniqueItems": true
45928          },
45929          {
45930            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
45931            "in": "query",
45932            "name": "propagationPolicy",
45933            "type": "string",
45934            "uniqueItems": true
45935          },
45936          {
45937            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45938            "in": "query",
45939            "name": "resourceVersion",
45940            "type": "string",
45941            "uniqueItems": true
45942          },
45943          {
45944            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45945            "in": "query",
45946            "name": "resourceVersionMatch",
45947            "type": "string",
45948            "uniqueItems": true
45949          },
45950          {
45951            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45952            "in": "query",
45953            "name": "timeoutSeconds",
45954            "type": "integer",
45955            "uniqueItems": true
45956          }
45957        ],
45958        "produces": [
45959          "application/json",
45960          "application/yaml",
45961          "application/vnd.kubernetes.protobuf"
45962        ],
45963        "responses": {
45964          "200": {
45965            "description": "OK",
45966            "schema": {
45967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45968            }
45969          },
45970          "401": {
45971            "description": "Unauthorized"
45972          }
45973        },
45974        "schemes": [
45975          "https"
45976        ],
45977        "tags": [
45978          "apiregistration_v1beta1"
45979        ],
45980        "x-kubernetes-action": "deletecollection",
45981        "x-kubernetes-group-version-kind": {
45982          "group": "apiregistration.k8s.io",
45983          "kind": "APIService",
45984          "version": "v1beta1"
45985        }
45986      },
45987      "get": {
45988        "consumes": [
45989          "*/*"
45990        ],
45991        "description": "list or watch objects of kind APIService",
45992        "operationId": "listApiregistrationV1beta1APIService",
45993        "parameters": [
45994          {
45995            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
45996            "in": "query",
45997            "name": "allowWatchBookmarks",
45998            "type": "boolean",
45999            "uniqueItems": true
46000          },
46001          {
46002            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46003            "in": "query",
46004            "name": "continue",
46005            "type": "string",
46006            "uniqueItems": true
46007          },
46008          {
46009            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46010            "in": "query",
46011            "name": "fieldSelector",
46012            "type": "string",
46013            "uniqueItems": true
46014          },
46015          {
46016            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46017            "in": "query",
46018            "name": "labelSelector",
46019            "type": "string",
46020            "uniqueItems": true
46021          },
46022          {
46023            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46024            "in": "query",
46025            "name": "limit",
46026            "type": "integer",
46027            "uniqueItems": true
46028          },
46029          {
46030            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46031            "in": "query",
46032            "name": "resourceVersion",
46033            "type": "string",
46034            "uniqueItems": true
46035          },
46036          {
46037            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46038            "in": "query",
46039            "name": "resourceVersionMatch",
46040            "type": "string",
46041            "uniqueItems": true
46042          },
46043          {
46044            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46045            "in": "query",
46046            "name": "timeoutSeconds",
46047            "type": "integer",
46048            "uniqueItems": true
46049          },
46050          {
46051            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46052            "in": "query",
46053            "name": "watch",
46054            "type": "boolean",
46055            "uniqueItems": true
46056          }
46057        ],
46058        "produces": [
46059          "application/json",
46060          "application/yaml",
46061          "application/vnd.kubernetes.protobuf",
46062          "application/json;stream=watch",
46063          "application/vnd.kubernetes.protobuf;stream=watch"
46064        ],
46065        "responses": {
46066          "200": {
46067            "description": "OK",
46068            "schema": {
46069              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList"
46070            }
46071          },
46072          "401": {
46073            "description": "Unauthorized"
46074          }
46075        },
46076        "schemes": [
46077          "https"
46078        ],
46079        "tags": [
46080          "apiregistration_v1beta1"
46081        ],
46082        "x-kubernetes-action": "list",
46083        "x-kubernetes-group-version-kind": {
46084          "group": "apiregistration.k8s.io",
46085          "kind": "APIService",
46086          "version": "v1beta1"
46087        }
46088      },
46089      "parameters": [
46090        {
46091          "description": "If 'true', then the output is pretty printed.",
46092          "in": "query",
46093          "name": "pretty",
46094          "type": "string",
46095          "uniqueItems": true
46096        }
46097      ],
46098      "post": {
46099        "consumes": [
46100          "*/*"
46101        ],
46102        "description": "create an APIService",
46103        "operationId": "createApiregistrationV1beta1APIService",
46104        "parameters": [
46105          {
46106            "in": "body",
46107            "name": "body",
46108            "required": true,
46109            "schema": {
46110              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46111            }
46112          },
46113          {
46114            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46115            "in": "query",
46116            "name": "dryRun",
46117            "type": "string",
46118            "uniqueItems": true
46119          },
46120          {
46121            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46122            "in": "query",
46123            "name": "fieldManager",
46124            "type": "string",
46125            "uniqueItems": true
46126          }
46127        ],
46128        "produces": [
46129          "application/json",
46130          "application/yaml",
46131          "application/vnd.kubernetes.protobuf"
46132        ],
46133        "responses": {
46134          "200": {
46135            "description": "OK",
46136            "schema": {
46137              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46138            }
46139          },
46140          "201": {
46141            "description": "Created",
46142            "schema": {
46143              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46144            }
46145          },
46146          "202": {
46147            "description": "Accepted",
46148            "schema": {
46149              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46150            }
46151          },
46152          "401": {
46153            "description": "Unauthorized"
46154          }
46155        },
46156        "schemes": [
46157          "https"
46158        ],
46159        "tags": [
46160          "apiregistration_v1beta1"
46161        ],
46162        "x-kubernetes-action": "post",
46163        "x-kubernetes-group-version-kind": {
46164          "group": "apiregistration.k8s.io",
46165          "kind": "APIService",
46166          "version": "v1beta1"
46167        }
46168      }
46169    },
46170    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}": {
46171      "delete": {
46172        "consumes": [
46173          "*/*"
46174        ],
46175        "description": "delete an APIService",
46176        "operationId": "deleteApiregistrationV1beta1APIService",
46177        "parameters": [
46178          {
46179            "in": "body",
46180            "name": "body",
46181            "schema": {
46182              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
46183            }
46184          },
46185          {
46186            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46187            "in": "query",
46188            "name": "dryRun",
46189            "type": "string",
46190            "uniqueItems": true
46191          },
46192          {
46193            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
46194            "in": "query",
46195            "name": "gracePeriodSeconds",
46196            "type": "integer",
46197            "uniqueItems": true
46198          },
46199          {
46200            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
46201            "in": "query",
46202            "name": "orphanDependents",
46203            "type": "boolean",
46204            "uniqueItems": true
46205          },
46206          {
46207            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
46208            "in": "query",
46209            "name": "propagationPolicy",
46210            "type": "string",
46211            "uniqueItems": true
46212          }
46213        ],
46214        "produces": [
46215          "application/json",
46216          "application/yaml",
46217          "application/vnd.kubernetes.protobuf"
46218        ],
46219        "responses": {
46220          "200": {
46221            "description": "OK",
46222            "schema": {
46223              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46224            }
46225          },
46226          "202": {
46227            "description": "Accepted",
46228            "schema": {
46229              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46230            }
46231          },
46232          "401": {
46233            "description": "Unauthorized"
46234          }
46235        },
46236        "schemes": [
46237          "https"
46238        ],
46239        "tags": [
46240          "apiregistration_v1beta1"
46241        ],
46242        "x-kubernetes-action": "delete",
46243        "x-kubernetes-group-version-kind": {
46244          "group": "apiregistration.k8s.io",
46245          "kind": "APIService",
46246          "version": "v1beta1"
46247        }
46248      },
46249      "get": {
46250        "consumes": [
46251          "*/*"
46252        ],
46253        "description": "read the specified APIService",
46254        "operationId": "readApiregistrationV1beta1APIService",
46255        "produces": [
46256          "application/json",
46257          "application/yaml",
46258          "application/vnd.kubernetes.protobuf"
46259        ],
46260        "responses": {
46261          "200": {
46262            "description": "OK",
46263            "schema": {
46264              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46265            }
46266          },
46267          "401": {
46268            "description": "Unauthorized"
46269          }
46270        },
46271        "schemes": [
46272          "https"
46273        ],
46274        "tags": [
46275          "apiregistration_v1beta1"
46276        ],
46277        "x-kubernetes-action": "get",
46278        "x-kubernetes-group-version-kind": {
46279          "group": "apiregistration.k8s.io",
46280          "kind": "APIService",
46281          "version": "v1beta1"
46282        }
46283      },
46284      "parameters": [
46285        {
46286          "description": "name of the APIService",
46287          "in": "path",
46288          "name": "name",
46289          "required": true,
46290          "type": "string",
46291          "uniqueItems": true
46292        },
46293        {
46294          "description": "If 'true', then the output is pretty printed.",
46295          "in": "query",
46296          "name": "pretty",
46297          "type": "string",
46298          "uniqueItems": true
46299        }
46300      ],
46301      "patch": {
46302        "consumes": [
46303          "application/json-patch+json",
46304          "application/merge-patch+json",
46305          "application/strategic-merge-patch+json",
46306          "application/apply-patch+yaml"
46307        ],
46308        "description": "partially update the specified APIService",
46309        "operationId": "patchApiregistrationV1beta1APIService",
46310        "parameters": [
46311          {
46312            "in": "body",
46313            "name": "body",
46314            "required": true,
46315            "schema": {
46316              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46317            }
46318          },
46319          {
46320            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46321            "in": "query",
46322            "name": "dryRun",
46323            "type": "string",
46324            "uniqueItems": true
46325          },
46326          {
46327            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
46328            "in": "query",
46329            "name": "fieldManager",
46330            "type": "string",
46331            "uniqueItems": true
46332          },
46333          {
46334            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
46335            "in": "query",
46336            "name": "force",
46337            "type": "boolean",
46338            "uniqueItems": true
46339          }
46340        ],
46341        "produces": [
46342          "application/json",
46343          "application/yaml",
46344          "application/vnd.kubernetes.protobuf"
46345        ],
46346        "responses": {
46347          "200": {
46348            "description": "OK",
46349            "schema": {
46350              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46351            }
46352          },
46353          "401": {
46354            "description": "Unauthorized"
46355          }
46356        },
46357        "schemes": [
46358          "https"
46359        ],
46360        "tags": [
46361          "apiregistration_v1beta1"
46362        ],
46363        "x-kubernetes-action": "patch",
46364        "x-kubernetes-group-version-kind": {
46365          "group": "apiregistration.k8s.io",
46366          "kind": "APIService",
46367          "version": "v1beta1"
46368        }
46369      },
46370      "put": {
46371        "consumes": [
46372          "*/*"
46373        ],
46374        "description": "replace the specified APIService",
46375        "operationId": "replaceApiregistrationV1beta1APIService",
46376        "parameters": [
46377          {
46378            "in": "body",
46379            "name": "body",
46380            "required": true,
46381            "schema": {
46382              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46383            }
46384          },
46385          {
46386            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46387            "in": "query",
46388            "name": "dryRun",
46389            "type": "string",
46390            "uniqueItems": true
46391          },
46392          {
46393            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46394            "in": "query",
46395            "name": "fieldManager",
46396            "type": "string",
46397            "uniqueItems": true
46398          }
46399        ],
46400        "produces": [
46401          "application/json",
46402          "application/yaml",
46403          "application/vnd.kubernetes.protobuf"
46404        ],
46405        "responses": {
46406          "200": {
46407            "description": "OK",
46408            "schema": {
46409              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46410            }
46411          },
46412          "201": {
46413            "description": "Created",
46414            "schema": {
46415              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46416            }
46417          },
46418          "401": {
46419            "description": "Unauthorized"
46420          }
46421        },
46422        "schemes": [
46423          "https"
46424        ],
46425        "tags": [
46426          "apiregistration_v1beta1"
46427        ],
46428        "x-kubernetes-action": "put",
46429        "x-kubernetes-group-version-kind": {
46430          "group": "apiregistration.k8s.io",
46431          "kind": "APIService",
46432          "version": "v1beta1"
46433        }
46434      }
46435    },
46436    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status": {
46437      "get": {
46438        "consumes": [
46439          "*/*"
46440        ],
46441        "description": "read status of the specified APIService",
46442        "operationId": "readApiregistrationV1beta1APIServiceStatus",
46443        "produces": [
46444          "application/json",
46445          "application/yaml",
46446          "application/vnd.kubernetes.protobuf"
46447        ],
46448        "responses": {
46449          "200": {
46450            "description": "OK",
46451            "schema": {
46452              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46453            }
46454          },
46455          "401": {
46456            "description": "Unauthorized"
46457          }
46458        },
46459        "schemes": [
46460          "https"
46461        ],
46462        "tags": [
46463          "apiregistration_v1beta1"
46464        ],
46465        "x-kubernetes-action": "get",
46466        "x-kubernetes-group-version-kind": {
46467          "group": "apiregistration.k8s.io",
46468          "kind": "APIService",
46469          "version": "v1beta1"
46470        }
46471      },
46472      "parameters": [
46473        {
46474          "description": "name of the APIService",
46475          "in": "path",
46476          "name": "name",
46477          "required": true,
46478          "type": "string",
46479          "uniqueItems": true
46480        },
46481        {
46482          "description": "If 'true', then the output is pretty printed.",
46483          "in": "query",
46484          "name": "pretty",
46485          "type": "string",
46486          "uniqueItems": true
46487        }
46488      ],
46489      "patch": {
46490        "consumes": [
46491          "application/json-patch+json",
46492          "application/merge-patch+json",
46493          "application/strategic-merge-patch+json",
46494          "application/apply-patch+yaml"
46495        ],
46496        "description": "partially update status of the specified APIService",
46497        "operationId": "patchApiregistrationV1beta1APIServiceStatus",
46498        "parameters": [
46499          {
46500            "in": "body",
46501            "name": "body",
46502            "required": true,
46503            "schema": {
46504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46505            }
46506          },
46507          {
46508            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46509            "in": "query",
46510            "name": "dryRun",
46511            "type": "string",
46512            "uniqueItems": true
46513          },
46514          {
46515            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
46516            "in": "query",
46517            "name": "fieldManager",
46518            "type": "string",
46519            "uniqueItems": true
46520          },
46521          {
46522            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
46523            "in": "query",
46524            "name": "force",
46525            "type": "boolean",
46526            "uniqueItems": true
46527          }
46528        ],
46529        "produces": [
46530          "application/json",
46531          "application/yaml",
46532          "application/vnd.kubernetes.protobuf"
46533        ],
46534        "responses": {
46535          "200": {
46536            "description": "OK",
46537            "schema": {
46538              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46539            }
46540          },
46541          "401": {
46542            "description": "Unauthorized"
46543          }
46544        },
46545        "schemes": [
46546          "https"
46547        ],
46548        "tags": [
46549          "apiregistration_v1beta1"
46550        ],
46551        "x-kubernetes-action": "patch",
46552        "x-kubernetes-group-version-kind": {
46553          "group": "apiregistration.k8s.io",
46554          "kind": "APIService",
46555          "version": "v1beta1"
46556        }
46557      },
46558      "put": {
46559        "consumes": [
46560          "*/*"
46561        ],
46562        "description": "replace status of the specified APIService",
46563        "operationId": "replaceApiregistrationV1beta1APIServiceStatus",
46564        "parameters": [
46565          {
46566            "in": "body",
46567            "name": "body",
46568            "required": true,
46569            "schema": {
46570              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46571            }
46572          },
46573          {
46574            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46575            "in": "query",
46576            "name": "dryRun",
46577            "type": "string",
46578            "uniqueItems": true
46579          },
46580          {
46581            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46582            "in": "query",
46583            "name": "fieldManager",
46584            "type": "string",
46585            "uniqueItems": true
46586          }
46587        ],
46588        "produces": [
46589          "application/json",
46590          "application/yaml",
46591          "application/vnd.kubernetes.protobuf"
46592        ],
46593        "responses": {
46594          "200": {
46595            "description": "OK",
46596            "schema": {
46597              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46598            }
46599          },
46600          "201": {
46601            "description": "Created",
46602            "schema": {
46603              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
46604            }
46605          },
46606          "401": {
46607            "description": "Unauthorized"
46608          }
46609        },
46610        "schemes": [
46611          "https"
46612        ],
46613        "tags": [
46614          "apiregistration_v1beta1"
46615        ],
46616        "x-kubernetes-action": "put",
46617        "x-kubernetes-group-version-kind": {
46618          "group": "apiregistration.k8s.io",
46619          "kind": "APIService",
46620          "version": "v1beta1"
46621        }
46622      }
46623    },
46624    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices": {
46625      "get": {
46626        "consumes": [
46627          "*/*"
46628        ],
46629        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
46630        "operationId": "watchApiregistrationV1beta1APIServiceList",
46631        "produces": [
46632          "application/json",
46633          "application/yaml",
46634          "application/vnd.kubernetes.protobuf",
46635          "application/json;stream=watch",
46636          "application/vnd.kubernetes.protobuf;stream=watch"
46637        ],
46638        "responses": {
46639          "200": {
46640            "description": "OK",
46641            "schema": {
46642              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46643            }
46644          },
46645          "401": {
46646            "description": "Unauthorized"
46647          }
46648        },
46649        "schemes": [
46650          "https"
46651        ],
46652        "tags": [
46653          "apiregistration_v1beta1"
46654        ],
46655        "x-kubernetes-action": "watchlist",
46656        "x-kubernetes-group-version-kind": {
46657          "group": "apiregistration.k8s.io",
46658          "kind": "APIService",
46659          "version": "v1beta1"
46660        }
46661      },
46662      "parameters": [
46663        {
46664          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46665          "in": "query",
46666          "name": "allowWatchBookmarks",
46667          "type": "boolean",
46668          "uniqueItems": true
46669        },
46670        {
46671          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46672          "in": "query",
46673          "name": "continue",
46674          "type": "string",
46675          "uniqueItems": true
46676        },
46677        {
46678          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46679          "in": "query",
46680          "name": "fieldSelector",
46681          "type": "string",
46682          "uniqueItems": true
46683        },
46684        {
46685          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46686          "in": "query",
46687          "name": "labelSelector",
46688          "type": "string",
46689          "uniqueItems": true
46690        },
46691        {
46692          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46693          "in": "query",
46694          "name": "limit",
46695          "type": "integer",
46696          "uniqueItems": true
46697        },
46698        {
46699          "description": "If 'true', then the output is pretty printed.",
46700          "in": "query",
46701          "name": "pretty",
46702          "type": "string",
46703          "uniqueItems": true
46704        },
46705        {
46706          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46707          "in": "query",
46708          "name": "resourceVersion",
46709          "type": "string",
46710          "uniqueItems": true
46711        },
46712        {
46713          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46714          "in": "query",
46715          "name": "resourceVersionMatch",
46716          "type": "string",
46717          "uniqueItems": true
46718        },
46719        {
46720          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46721          "in": "query",
46722          "name": "timeoutSeconds",
46723          "type": "integer",
46724          "uniqueItems": true
46725        },
46726        {
46727          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46728          "in": "query",
46729          "name": "watch",
46730          "type": "boolean",
46731          "uniqueItems": true
46732        }
46733      ]
46734    },
46735    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}": {
46736      "get": {
46737        "consumes": [
46738          "*/*"
46739        ],
46740        "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.",
46741        "operationId": "watchApiregistrationV1beta1APIService",
46742        "produces": [
46743          "application/json",
46744          "application/yaml",
46745          "application/vnd.kubernetes.protobuf",
46746          "application/json;stream=watch",
46747          "application/vnd.kubernetes.protobuf;stream=watch"
46748        ],
46749        "responses": {
46750          "200": {
46751            "description": "OK",
46752            "schema": {
46753              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46754            }
46755          },
46756          "401": {
46757            "description": "Unauthorized"
46758          }
46759        },
46760        "schemes": [
46761          "https"
46762        ],
46763        "tags": [
46764          "apiregistration_v1beta1"
46765        ],
46766        "x-kubernetes-action": "watch",
46767        "x-kubernetes-group-version-kind": {
46768          "group": "apiregistration.k8s.io",
46769          "kind": "APIService",
46770          "version": "v1beta1"
46771        }
46772      },
46773      "parameters": [
46774        {
46775          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46776          "in": "query",
46777          "name": "allowWatchBookmarks",
46778          "type": "boolean",
46779          "uniqueItems": true
46780        },
46781        {
46782          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46783          "in": "query",
46784          "name": "continue",
46785          "type": "string",
46786          "uniqueItems": true
46787        },
46788        {
46789          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46790          "in": "query",
46791          "name": "fieldSelector",
46792          "type": "string",
46793          "uniqueItems": true
46794        },
46795        {
46796          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46797          "in": "query",
46798          "name": "labelSelector",
46799          "type": "string",
46800          "uniqueItems": true
46801        },
46802        {
46803          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46804          "in": "query",
46805          "name": "limit",
46806          "type": "integer",
46807          "uniqueItems": true
46808        },
46809        {
46810          "description": "name of the APIService",
46811          "in": "path",
46812          "name": "name",
46813          "required": true,
46814          "type": "string",
46815          "uniqueItems": true
46816        },
46817        {
46818          "description": "If 'true', then the output is pretty printed.",
46819          "in": "query",
46820          "name": "pretty",
46821          "type": "string",
46822          "uniqueItems": true
46823        },
46824        {
46825          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46826          "in": "query",
46827          "name": "resourceVersion",
46828          "type": "string",
46829          "uniqueItems": true
46830        },
46831        {
46832          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46833          "in": "query",
46834          "name": "resourceVersionMatch",
46835          "type": "string",
46836          "uniqueItems": true
46837        },
46838        {
46839          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46840          "in": "query",
46841          "name": "timeoutSeconds",
46842          "type": "integer",
46843          "uniqueItems": true
46844        },
46845        {
46846          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46847          "in": "query",
46848          "name": "watch",
46849          "type": "boolean",
46850          "uniqueItems": true
46851        }
46852      ]
46853    },
46854    "/apis/apps/": {
46855      "get": {
46856        "consumes": [
46857          "application/json",
46858          "application/yaml",
46859          "application/vnd.kubernetes.protobuf"
46860        ],
46861        "description": "get information of a group",
46862        "operationId": "getAppsAPIGroup",
46863        "produces": [
46864          "application/json",
46865          "application/yaml",
46866          "application/vnd.kubernetes.protobuf"
46867        ],
46868        "responses": {
46869          "200": {
46870            "description": "OK",
46871            "schema": {
46872              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
46873            }
46874          },
46875          "401": {
46876            "description": "Unauthorized"
46877          }
46878        },
46879        "schemes": [
46880          "https"
46881        ],
46882        "tags": [
46883          "apps"
46884        ]
46885      }
46886    },
46887    "/apis/apps/v1/": {
46888      "get": {
46889        "consumes": [
46890          "application/json",
46891          "application/yaml",
46892          "application/vnd.kubernetes.protobuf"
46893        ],
46894        "description": "get available resources",
46895        "operationId": "getAppsV1APIResources",
46896        "produces": [
46897          "application/json",
46898          "application/yaml",
46899          "application/vnd.kubernetes.protobuf"
46900        ],
46901        "responses": {
46902          "200": {
46903            "description": "OK",
46904            "schema": {
46905              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
46906            }
46907          },
46908          "401": {
46909            "description": "Unauthorized"
46910          }
46911        },
46912        "schemes": [
46913          "https"
46914        ],
46915        "tags": [
46916          "apps_v1"
46917        ]
46918      }
46919    },
46920    "/apis/apps/v1/controllerrevisions": {
46921      "get": {
46922        "consumes": [
46923          "*/*"
46924        ],
46925        "description": "list or watch objects of kind ControllerRevision",
46926        "operationId": "listAppsV1ControllerRevisionForAllNamespaces",
46927        "produces": [
46928          "application/json",
46929          "application/yaml",
46930          "application/vnd.kubernetes.protobuf",
46931          "application/json;stream=watch",
46932          "application/vnd.kubernetes.protobuf;stream=watch"
46933        ],
46934        "responses": {
46935          "200": {
46936            "description": "OK",
46937            "schema": {
46938              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
46939            }
46940          },
46941          "401": {
46942            "description": "Unauthorized"
46943          }
46944        },
46945        "schemes": [
46946          "https"
46947        ],
46948        "tags": [
46949          "apps_v1"
46950        ],
46951        "x-kubernetes-action": "list",
46952        "x-kubernetes-group-version-kind": {
46953          "group": "apps",
46954          "kind": "ControllerRevision",
46955          "version": "v1"
46956        }
46957      },
46958      "parameters": [
46959        {
46960          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
46961          "in": "query",
46962          "name": "allowWatchBookmarks",
46963          "type": "boolean",
46964          "uniqueItems": true
46965        },
46966        {
46967          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46968          "in": "query",
46969          "name": "continue",
46970          "type": "string",
46971          "uniqueItems": true
46972        },
46973        {
46974          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46975          "in": "query",
46976          "name": "fieldSelector",
46977          "type": "string",
46978          "uniqueItems": true
46979        },
46980        {
46981          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46982          "in": "query",
46983          "name": "labelSelector",
46984          "type": "string",
46985          "uniqueItems": true
46986        },
46987        {
46988          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46989          "in": "query",
46990          "name": "limit",
46991          "type": "integer",
46992          "uniqueItems": true
46993        },
46994        {
46995          "description": "If 'true', then the output is pretty printed.",
46996          "in": "query",
46997          "name": "pretty",
46998          "type": "string",
46999          "uniqueItems": true
47000        },
47001        {
47002          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47003          "in": "query",
47004          "name": "resourceVersion",
47005          "type": "string",
47006          "uniqueItems": true
47007        },
47008        {
47009          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47010          "in": "query",
47011          "name": "resourceVersionMatch",
47012          "type": "string",
47013          "uniqueItems": true
47014        },
47015        {
47016          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47017          "in": "query",
47018          "name": "timeoutSeconds",
47019          "type": "integer",
47020          "uniqueItems": true
47021        },
47022        {
47023          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47024          "in": "query",
47025          "name": "watch",
47026          "type": "boolean",
47027          "uniqueItems": true
47028        }
47029      ]
47030    },
47031    "/apis/apps/v1/daemonsets": {
47032      "get": {
47033        "consumes": [
47034          "*/*"
47035        ],
47036        "description": "list or watch objects of kind DaemonSet",
47037        "operationId": "listAppsV1DaemonSetForAllNamespaces",
47038        "produces": [
47039          "application/json",
47040          "application/yaml",
47041          "application/vnd.kubernetes.protobuf",
47042          "application/json;stream=watch",
47043          "application/vnd.kubernetes.protobuf;stream=watch"
47044        ],
47045        "responses": {
47046          "200": {
47047            "description": "OK",
47048            "schema": {
47049              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
47050            }
47051          },
47052          "401": {
47053            "description": "Unauthorized"
47054          }
47055        },
47056        "schemes": [
47057          "https"
47058        ],
47059        "tags": [
47060          "apps_v1"
47061        ],
47062        "x-kubernetes-action": "list",
47063        "x-kubernetes-group-version-kind": {
47064          "group": "apps",
47065          "kind": "DaemonSet",
47066          "version": "v1"
47067        }
47068      },
47069      "parameters": [
47070        {
47071          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47072          "in": "query",
47073          "name": "allowWatchBookmarks",
47074          "type": "boolean",
47075          "uniqueItems": true
47076        },
47077        {
47078          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47079          "in": "query",
47080          "name": "continue",
47081          "type": "string",
47082          "uniqueItems": true
47083        },
47084        {
47085          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47086          "in": "query",
47087          "name": "fieldSelector",
47088          "type": "string",
47089          "uniqueItems": true
47090        },
47091        {
47092          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47093          "in": "query",
47094          "name": "labelSelector",
47095          "type": "string",
47096          "uniqueItems": true
47097        },
47098        {
47099          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47100          "in": "query",
47101          "name": "limit",
47102          "type": "integer",
47103          "uniqueItems": true
47104        },
47105        {
47106          "description": "If 'true', then the output is pretty printed.",
47107          "in": "query",
47108          "name": "pretty",
47109          "type": "string",
47110          "uniqueItems": true
47111        },
47112        {
47113          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47114          "in": "query",
47115          "name": "resourceVersion",
47116          "type": "string",
47117          "uniqueItems": true
47118        },
47119        {
47120          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47121          "in": "query",
47122          "name": "resourceVersionMatch",
47123          "type": "string",
47124          "uniqueItems": true
47125        },
47126        {
47127          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47128          "in": "query",
47129          "name": "timeoutSeconds",
47130          "type": "integer",
47131          "uniqueItems": true
47132        },
47133        {
47134          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47135          "in": "query",
47136          "name": "watch",
47137          "type": "boolean",
47138          "uniqueItems": true
47139        }
47140      ]
47141    },
47142    "/apis/apps/v1/deployments": {
47143      "get": {
47144        "consumes": [
47145          "*/*"
47146        ],
47147        "description": "list or watch objects of kind Deployment",
47148        "operationId": "listAppsV1DeploymentForAllNamespaces",
47149        "produces": [
47150          "application/json",
47151          "application/yaml",
47152          "application/vnd.kubernetes.protobuf",
47153          "application/json;stream=watch",
47154          "application/vnd.kubernetes.protobuf;stream=watch"
47155        ],
47156        "responses": {
47157          "200": {
47158            "description": "OK",
47159            "schema": {
47160              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
47161            }
47162          },
47163          "401": {
47164            "description": "Unauthorized"
47165          }
47166        },
47167        "schemes": [
47168          "https"
47169        ],
47170        "tags": [
47171          "apps_v1"
47172        ],
47173        "x-kubernetes-action": "list",
47174        "x-kubernetes-group-version-kind": {
47175          "group": "apps",
47176          "kind": "Deployment",
47177          "version": "v1"
47178        }
47179      },
47180      "parameters": [
47181        {
47182          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47183          "in": "query",
47184          "name": "allowWatchBookmarks",
47185          "type": "boolean",
47186          "uniqueItems": true
47187        },
47188        {
47189          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47190          "in": "query",
47191          "name": "continue",
47192          "type": "string",
47193          "uniqueItems": true
47194        },
47195        {
47196          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47197          "in": "query",
47198          "name": "fieldSelector",
47199          "type": "string",
47200          "uniqueItems": true
47201        },
47202        {
47203          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47204          "in": "query",
47205          "name": "labelSelector",
47206          "type": "string",
47207          "uniqueItems": true
47208        },
47209        {
47210          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47211          "in": "query",
47212          "name": "limit",
47213          "type": "integer",
47214          "uniqueItems": true
47215        },
47216        {
47217          "description": "If 'true', then the output is pretty printed.",
47218          "in": "query",
47219          "name": "pretty",
47220          "type": "string",
47221          "uniqueItems": true
47222        },
47223        {
47224          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47225          "in": "query",
47226          "name": "resourceVersion",
47227          "type": "string",
47228          "uniqueItems": true
47229        },
47230        {
47231          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47232          "in": "query",
47233          "name": "resourceVersionMatch",
47234          "type": "string",
47235          "uniqueItems": true
47236        },
47237        {
47238          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47239          "in": "query",
47240          "name": "timeoutSeconds",
47241          "type": "integer",
47242          "uniqueItems": true
47243        },
47244        {
47245          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47246          "in": "query",
47247          "name": "watch",
47248          "type": "boolean",
47249          "uniqueItems": true
47250        }
47251      ]
47252    },
47253    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": {
47254      "delete": {
47255        "consumes": [
47256          "*/*"
47257        ],
47258        "description": "delete collection of ControllerRevision",
47259        "operationId": "deleteAppsV1CollectionNamespacedControllerRevision",
47260        "parameters": [
47261          {
47262            "in": "body",
47263            "name": "body",
47264            "schema": {
47265              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47266            }
47267          },
47268          {
47269            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47270            "in": "query",
47271            "name": "continue",
47272            "type": "string",
47273            "uniqueItems": true
47274          },
47275          {
47276            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47277            "in": "query",
47278            "name": "dryRun",
47279            "type": "string",
47280            "uniqueItems": true
47281          },
47282          {
47283            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47284            "in": "query",
47285            "name": "fieldSelector",
47286            "type": "string",
47287            "uniqueItems": true
47288          },
47289          {
47290            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47291            "in": "query",
47292            "name": "gracePeriodSeconds",
47293            "type": "integer",
47294            "uniqueItems": true
47295          },
47296          {
47297            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47298            "in": "query",
47299            "name": "labelSelector",
47300            "type": "string",
47301            "uniqueItems": true
47302          },
47303          {
47304            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47305            "in": "query",
47306            "name": "limit",
47307            "type": "integer",
47308            "uniqueItems": true
47309          },
47310          {
47311            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47312            "in": "query",
47313            "name": "orphanDependents",
47314            "type": "boolean",
47315            "uniqueItems": true
47316          },
47317          {
47318            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47319            "in": "query",
47320            "name": "propagationPolicy",
47321            "type": "string",
47322            "uniqueItems": true
47323          },
47324          {
47325            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47326            "in": "query",
47327            "name": "resourceVersion",
47328            "type": "string",
47329            "uniqueItems": true
47330          },
47331          {
47332            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47333            "in": "query",
47334            "name": "resourceVersionMatch",
47335            "type": "string",
47336            "uniqueItems": true
47337          },
47338          {
47339            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47340            "in": "query",
47341            "name": "timeoutSeconds",
47342            "type": "integer",
47343            "uniqueItems": true
47344          }
47345        ],
47346        "produces": [
47347          "application/json",
47348          "application/yaml",
47349          "application/vnd.kubernetes.protobuf"
47350        ],
47351        "responses": {
47352          "200": {
47353            "description": "OK",
47354            "schema": {
47355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47356            }
47357          },
47358          "401": {
47359            "description": "Unauthorized"
47360          }
47361        },
47362        "schemes": [
47363          "https"
47364        ],
47365        "tags": [
47366          "apps_v1"
47367        ],
47368        "x-kubernetes-action": "deletecollection",
47369        "x-kubernetes-group-version-kind": {
47370          "group": "apps",
47371          "kind": "ControllerRevision",
47372          "version": "v1"
47373        }
47374      },
47375      "get": {
47376        "consumes": [
47377          "*/*"
47378        ],
47379        "description": "list or watch objects of kind ControllerRevision",
47380        "operationId": "listAppsV1NamespacedControllerRevision",
47381        "parameters": [
47382          {
47383            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47384            "in": "query",
47385            "name": "allowWatchBookmarks",
47386            "type": "boolean",
47387            "uniqueItems": true
47388          },
47389          {
47390            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47391            "in": "query",
47392            "name": "continue",
47393            "type": "string",
47394            "uniqueItems": true
47395          },
47396          {
47397            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47398            "in": "query",
47399            "name": "fieldSelector",
47400            "type": "string",
47401            "uniqueItems": true
47402          },
47403          {
47404            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47405            "in": "query",
47406            "name": "labelSelector",
47407            "type": "string",
47408            "uniqueItems": true
47409          },
47410          {
47411            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47412            "in": "query",
47413            "name": "limit",
47414            "type": "integer",
47415            "uniqueItems": true
47416          },
47417          {
47418            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47419            "in": "query",
47420            "name": "resourceVersion",
47421            "type": "string",
47422            "uniqueItems": true
47423          },
47424          {
47425            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47426            "in": "query",
47427            "name": "resourceVersionMatch",
47428            "type": "string",
47429            "uniqueItems": true
47430          },
47431          {
47432            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47433            "in": "query",
47434            "name": "timeoutSeconds",
47435            "type": "integer",
47436            "uniqueItems": true
47437          },
47438          {
47439            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47440            "in": "query",
47441            "name": "watch",
47442            "type": "boolean",
47443            "uniqueItems": true
47444          }
47445        ],
47446        "produces": [
47447          "application/json",
47448          "application/yaml",
47449          "application/vnd.kubernetes.protobuf",
47450          "application/json;stream=watch",
47451          "application/vnd.kubernetes.protobuf;stream=watch"
47452        ],
47453        "responses": {
47454          "200": {
47455            "description": "OK",
47456            "schema": {
47457              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
47458            }
47459          },
47460          "401": {
47461            "description": "Unauthorized"
47462          }
47463        },
47464        "schemes": [
47465          "https"
47466        ],
47467        "tags": [
47468          "apps_v1"
47469        ],
47470        "x-kubernetes-action": "list",
47471        "x-kubernetes-group-version-kind": {
47472          "group": "apps",
47473          "kind": "ControllerRevision",
47474          "version": "v1"
47475        }
47476      },
47477      "parameters": [
47478        {
47479          "description": "object name and auth scope, such as for teams and projects",
47480          "in": "path",
47481          "name": "namespace",
47482          "required": true,
47483          "type": "string",
47484          "uniqueItems": true
47485        },
47486        {
47487          "description": "If 'true', then the output is pretty printed.",
47488          "in": "query",
47489          "name": "pretty",
47490          "type": "string",
47491          "uniqueItems": true
47492        }
47493      ],
47494      "post": {
47495        "consumes": [
47496          "*/*"
47497        ],
47498        "description": "create a ControllerRevision",
47499        "operationId": "createAppsV1NamespacedControllerRevision",
47500        "parameters": [
47501          {
47502            "in": "body",
47503            "name": "body",
47504            "required": true,
47505            "schema": {
47506              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47507            }
47508          },
47509          {
47510            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47511            "in": "query",
47512            "name": "dryRun",
47513            "type": "string",
47514            "uniqueItems": true
47515          },
47516          {
47517            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47518            "in": "query",
47519            "name": "fieldManager",
47520            "type": "string",
47521            "uniqueItems": true
47522          }
47523        ],
47524        "produces": [
47525          "application/json",
47526          "application/yaml",
47527          "application/vnd.kubernetes.protobuf"
47528        ],
47529        "responses": {
47530          "200": {
47531            "description": "OK",
47532            "schema": {
47533              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47534            }
47535          },
47536          "201": {
47537            "description": "Created",
47538            "schema": {
47539              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47540            }
47541          },
47542          "202": {
47543            "description": "Accepted",
47544            "schema": {
47545              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47546            }
47547          },
47548          "401": {
47549            "description": "Unauthorized"
47550          }
47551        },
47552        "schemes": [
47553          "https"
47554        ],
47555        "tags": [
47556          "apps_v1"
47557        ],
47558        "x-kubernetes-action": "post",
47559        "x-kubernetes-group-version-kind": {
47560          "group": "apps",
47561          "kind": "ControllerRevision",
47562          "version": "v1"
47563        }
47564      }
47565    },
47566    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": {
47567      "delete": {
47568        "consumes": [
47569          "*/*"
47570        ],
47571        "description": "delete a ControllerRevision",
47572        "operationId": "deleteAppsV1NamespacedControllerRevision",
47573        "parameters": [
47574          {
47575            "in": "body",
47576            "name": "body",
47577            "schema": {
47578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47579            }
47580          },
47581          {
47582            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47583            "in": "query",
47584            "name": "dryRun",
47585            "type": "string",
47586            "uniqueItems": true
47587          },
47588          {
47589            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47590            "in": "query",
47591            "name": "gracePeriodSeconds",
47592            "type": "integer",
47593            "uniqueItems": true
47594          },
47595          {
47596            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47597            "in": "query",
47598            "name": "orphanDependents",
47599            "type": "boolean",
47600            "uniqueItems": true
47601          },
47602          {
47603            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47604            "in": "query",
47605            "name": "propagationPolicy",
47606            "type": "string",
47607            "uniqueItems": true
47608          }
47609        ],
47610        "produces": [
47611          "application/json",
47612          "application/yaml",
47613          "application/vnd.kubernetes.protobuf"
47614        ],
47615        "responses": {
47616          "200": {
47617            "description": "OK",
47618            "schema": {
47619              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47620            }
47621          },
47622          "202": {
47623            "description": "Accepted",
47624            "schema": {
47625              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47626            }
47627          },
47628          "401": {
47629            "description": "Unauthorized"
47630          }
47631        },
47632        "schemes": [
47633          "https"
47634        ],
47635        "tags": [
47636          "apps_v1"
47637        ],
47638        "x-kubernetes-action": "delete",
47639        "x-kubernetes-group-version-kind": {
47640          "group": "apps",
47641          "kind": "ControllerRevision",
47642          "version": "v1"
47643        }
47644      },
47645      "get": {
47646        "consumes": [
47647          "*/*"
47648        ],
47649        "description": "read the specified ControllerRevision",
47650        "operationId": "readAppsV1NamespacedControllerRevision",
47651        "produces": [
47652          "application/json",
47653          "application/yaml",
47654          "application/vnd.kubernetes.protobuf"
47655        ],
47656        "responses": {
47657          "200": {
47658            "description": "OK",
47659            "schema": {
47660              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47661            }
47662          },
47663          "401": {
47664            "description": "Unauthorized"
47665          }
47666        },
47667        "schemes": [
47668          "https"
47669        ],
47670        "tags": [
47671          "apps_v1"
47672        ],
47673        "x-kubernetes-action": "get",
47674        "x-kubernetes-group-version-kind": {
47675          "group": "apps",
47676          "kind": "ControllerRevision",
47677          "version": "v1"
47678        }
47679      },
47680      "parameters": [
47681        {
47682          "description": "name of the ControllerRevision",
47683          "in": "path",
47684          "name": "name",
47685          "required": true,
47686          "type": "string",
47687          "uniqueItems": true
47688        },
47689        {
47690          "description": "object name and auth scope, such as for teams and projects",
47691          "in": "path",
47692          "name": "namespace",
47693          "required": true,
47694          "type": "string",
47695          "uniqueItems": true
47696        },
47697        {
47698          "description": "If 'true', then the output is pretty printed.",
47699          "in": "query",
47700          "name": "pretty",
47701          "type": "string",
47702          "uniqueItems": true
47703        }
47704      ],
47705      "patch": {
47706        "consumes": [
47707          "application/json-patch+json",
47708          "application/merge-patch+json",
47709          "application/strategic-merge-patch+json",
47710          "application/apply-patch+yaml"
47711        ],
47712        "description": "partially update the specified ControllerRevision",
47713        "operationId": "patchAppsV1NamespacedControllerRevision",
47714        "parameters": [
47715          {
47716            "in": "body",
47717            "name": "body",
47718            "required": true,
47719            "schema": {
47720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
47721            }
47722          },
47723          {
47724            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47725            "in": "query",
47726            "name": "dryRun",
47727            "type": "string",
47728            "uniqueItems": true
47729          },
47730          {
47731            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
47732            "in": "query",
47733            "name": "fieldManager",
47734            "type": "string",
47735            "uniqueItems": true
47736          },
47737          {
47738            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
47739            "in": "query",
47740            "name": "force",
47741            "type": "boolean",
47742            "uniqueItems": true
47743          }
47744        ],
47745        "produces": [
47746          "application/json",
47747          "application/yaml",
47748          "application/vnd.kubernetes.protobuf"
47749        ],
47750        "responses": {
47751          "200": {
47752            "description": "OK",
47753            "schema": {
47754              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47755            }
47756          },
47757          "401": {
47758            "description": "Unauthorized"
47759          }
47760        },
47761        "schemes": [
47762          "https"
47763        ],
47764        "tags": [
47765          "apps_v1"
47766        ],
47767        "x-kubernetes-action": "patch",
47768        "x-kubernetes-group-version-kind": {
47769          "group": "apps",
47770          "kind": "ControllerRevision",
47771          "version": "v1"
47772        }
47773      },
47774      "put": {
47775        "consumes": [
47776          "*/*"
47777        ],
47778        "description": "replace the specified ControllerRevision",
47779        "operationId": "replaceAppsV1NamespacedControllerRevision",
47780        "parameters": [
47781          {
47782            "in": "body",
47783            "name": "body",
47784            "required": true,
47785            "schema": {
47786              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47787            }
47788          },
47789          {
47790            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47791            "in": "query",
47792            "name": "dryRun",
47793            "type": "string",
47794            "uniqueItems": true
47795          },
47796          {
47797            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47798            "in": "query",
47799            "name": "fieldManager",
47800            "type": "string",
47801            "uniqueItems": true
47802          }
47803        ],
47804        "produces": [
47805          "application/json",
47806          "application/yaml",
47807          "application/vnd.kubernetes.protobuf"
47808        ],
47809        "responses": {
47810          "200": {
47811            "description": "OK",
47812            "schema": {
47813              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47814            }
47815          },
47816          "201": {
47817            "description": "Created",
47818            "schema": {
47819              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
47820            }
47821          },
47822          "401": {
47823            "description": "Unauthorized"
47824          }
47825        },
47826        "schemes": [
47827          "https"
47828        ],
47829        "tags": [
47830          "apps_v1"
47831        ],
47832        "x-kubernetes-action": "put",
47833        "x-kubernetes-group-version-kind": {
47834          "group": "apps",
47835          "kind": "ControllerRevision",
47836          "version": "v1"
47837        }
47838      }
47839    },
47840    "/apis/apps/v1/namespaces/{namespace}/daemonsets": {
47841      "delete": {
47842        "consumes": [
47843          "*/*"
47844        ],
47845        "description": "delete collection of DaemonSet",
47846        "operationId": "deleteAppsV1CollectionNamespacedDaemonSet",
47847        "parameters": [
47848          {
47849            "in": "body",
47850            "name": "body",
47851            "schema": {
47852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47853            }
47854          },
47855          {
47856            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47857            "in": "query",
47858            "name": "continue",
47859            "type": "string",
47860            "uniqueItems": true
47861          },
47862          {
47863            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47864            "in": "query",
47865            "name": "dryRun",
47866            "type": "string",
47867            "uniqueItems": true
47868          },
47869          {
47870            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47871            "in": "query",
47872            "name": "fieldSelector",
47873            "type": "string",
47874            "uniqueItems": true
47875          },
47876          {
47877            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47878            "in": "query",
47879            "name": "gracePeriodSeconds",
47880            "type": "integer",
47881            "uniqueItems": true
47882          },
47883          {
47884            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47885            "in": "query",
47886            "name": "labelSelector",
47887            "type": "string",
47888            "uniqueItems": true
47889          },
47890          {
47891            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47892            "in": "query",
47893            "name": "limit",
47894            "type": "integer",
47895            "uniqueItems": true
47896          },
47897          {
47898            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47899            "in": "query",
47900            "name": "orphanDependents",
47901            "type": "boolean",
47902            "uniqueItems": true
47903          },
47904          {
47905            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47906            "in": "query",
47907            "name": "propagationPolicy",
47908            "type": "string",
47909            "uniqueItems": true
47910          },
47911          {
47912            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47913            "in": "query",
47914            "name": "resourceVersion",
47915            "type": "string",
47916            "uniqueItems": true
47917          },
47918          {
47919            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47920            "in": "query",
47921            "name": "resourceVersionMatch",
47922            "type": "string",
47923            "uniqueItems": true
47924          },
47925          {
47926            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47927            "in": "query",
47928            "name": "timeoutSeconds",
47929            "type": "integer",
47930            "uniqueItems": true
47931          }
47932        ],
47933        "produces": [
47934          "application/json",
47935          "application/yaml",
47936          "application/vnd.kubernetes.protobuf"
47937        ],
47938        "responses": {
47939          "200": {
47940            "description": "OK",
47941            "schema": {
47942              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47943            }
47944          },
47945          "401": {
47946            "description": "Unauthorized"
47947          }
47948        },
47949        "schemes": [
47950          "https"
47951        ],
47952        "tags": [
47953          "apps_v1"
47954        ],
47955        "x-kubernetes-action": "deletecollection",
47956        "x-kubernetes-group-version-kind": {
47957          "group": "apps",
47958          "kind": "DaemonSet",
47959          "version": "v1"
47960        }
47961      },
47962      "get": {
47963        "consumes": [
47964          "*/*"
47965        ],
47966        "description": "list or watch objects of kind DaemonSet",
47967        "operationId": "listAppsV1NamespacedDaemonSet",
47968        "parameters": [
47969          {
47970            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
47971            "in": "query",
47972            "name": "allowWatchBookmarks",
47973            "type": "boolean",
47974            "uniqueItems": true
47975          },
47976          {
47977            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47978            "in": "query",
47979            "name": "continue",
47980            "type": "string",
47981            "uniqueItems": true
47982          },
47983          {
47984            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47985            "in": "query",
47986            "name": "fieldSelector",
47987            "type": "string",
47988            "uniqueItems": true
47989          },
47990          {
47991            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47992            "in": "query",
47993            "name": "labelSelector",
47994            "type": "string",
47995            "uniqueItems": true
47996          },
47997          {
47998            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47999            "in": "query",
48000            "name": "limit",
48001            "type": "integer",
48002            "uniqueItems": true
48003          },
48004          {
48005            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48006            "in": "query",
48007            "name": "resourceVersion",
48008            "type": "string",
48009            "uniqueItems": true
48010          },
48011          {
48012            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48013            "in": "query",
48014            "name": "resourceVersionMatch",
48015            "type": "string",
48016            "uniqueItems": true
48017          },
48018          {
48019            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48020            "in": "query",
48021            "name": "timeoutSeconds",
48022            "type": "integer",
48023            "uniqueItems": true
48024          },
48025          {
48026            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48027            "in": "query",
48028            "name": "watch",
48029            "type": "boolean",
48030            "uniqueItems": true
48031          }
48032        ],
48033        "produces": [
48034          "application/json",
48035          "application/yaml",
48036          "application/vnd.kubernetes.protobuf",
48037          "application/json;stream=watch",
48038          "application/vnd.kubernetes.protobuf;stream=watch"
48039        ],
48040        "responses": {
48041          "200": {
48042            "description": "OK",
48043            "schema": {
48044              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
48045            }
48046          },
48047          "401": {
48048            "description": "Unauthorized"
48049          }
48050        },
48051        "schemes": [
48052          "https"
48053        ],
48054        "tags": [
48055          "apps_v1"
48056        ],
48057        "x-kubernetes-action": "list",
48058        "x-kubernetes-group-version-kind": {
48059          "group": "apps",
48060          "kind": "DaemonSet",
48061          "version": "v1"
48062        }
48063      },
48064      "parameters": [
48065        {
48066          "description": "object name and auth scope, such as for teams and projects",
48067          "in": "path",
48068          "name": "namespace",
48069          "required": true,
48070          "type": "string",
48071          "uniqueItems": true
48072        },
48073        {
48074          "description": "If 'true', then the output is pretty printed.",
48075          "in": "query",
48076          "name": "pretty",
48077          "type": "string",
48078          "uniqueItems": true
48079        }
48080      ],
48081      "post": {
48082        "consumes": [
48083          "*/*"
48084        ],
48085        "description": "create a DaemonSet",
48086        "operationId": "createAppsV1NamespacedDaemonSet",
48087        "parameters": [
48088          {
48089            "in": "body",
48090            "name": "body",
48091            "required": true,
48092            "schema": {
48093              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48094            }
48095          },
48096          {
48097            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48098            "in": "query",
48099            "name": "dryRun",
48100            "type": "string",
48101            "uniqueItems": true
48102          },
48103          {
48104            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48105            "in": "query",
48106            "name": "fieldManager",
48107            "type": "string",
48108            "uniqueItems": true
48109          }
48110        ],
48111        "produces": [
48112          "application/json",
48113          "application/yaml",
48114          "application/vnd.kubernetes.protobuf"
48115        ],
48116        "responses": {
48117          "200": {
48118            "description": "OK",
48119            "schema": {
48120              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48121            }
48122          },
48123          "201": {
48124            "description": "Created",
48125            "schema": {
48126              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48127            }
48128          },
48129          "202": {
48130            "description": "Accepted",
48131            "schema": {
48132              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48133            }
48134          },
48135          "401": {
48136            "description": "Unauthorized"
48137          }
48138        },
48139        "schemes": [
48140          "https"
48141        ],
48142        "tags": [
48143          "apps_v1"
48144        ],
48145        "x-kubernetes-action": "post",
48146        "x-kubernetes-group-version-kind": {
48147          "group": "apps",
48148          "kind": "DaemonSet",
48149          "version": "v1"
48150        }
48151      }
48152    },
48153    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": {
48154      "delete": {
48155        "consumes": [
48156          "*/*"
48157        ],
48158        "description": "delete a DaemonSet",
48159        "operationId": "deleteAppsV1NamespacedDaemonSet",
48160        "parameters": [
48161          {
48162            "in": "body",
48163            "name": "body",
48164            "schema": {
48165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48166            }
48167          },
48168          {
48169            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48170            "in": "query",
48171            "name": "dryRun",
48172            "type": "string",
48173            "uniqueItems": true
48174          },
48175          {
48176            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48177            "in": "query",
48178            "name": "gracePeriodSeconds",
48179            "type": "integer",
48180            "uniqueItems": true
48181          },
48182          {
48183            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48184            "in": "query",
48185            "name": "orphanDependents",
48186            "type": "boolean",
48187            "uniqueItems": true
48188          },
48189          {
48190            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48191            "in": "query",
48192            "name": "propagationPolicy",
48193            "type": "string",
48194            "uniqueItems": true
48195          }
48196        ],
48197        "produces": [
48198          "application/json",
48199          "application/yaml",
48200          "application/vnd.kubernetes.protobuf"
48201        ],
48202        "responses": {
48203          "200": {
48204            "description": "OK",
48205            "schema": {
48206              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48207            }
48208          },
48209          "202": {
48210            "description": "Accepted",
48211            "schema": {
48212              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48213            }
48214          },
48215          "401": {
48216            "description": "Unauthorized"
48217          }
48218        },
48219        "schemes": [
48220          "https"
48221        ],
48222        "tags": [
48223          "apps_v1"
48224        ],
48225        "x-kubernetes-action": "delete",
48226        "x-kubernetes-group-version-kind": {
48227          "group": "apps",
48228          "kind": "DaemonSet",
48229          "version": "v1"
48230        }
48231      },
48232      "get": {
48233        "consumes": [
48234          "*/*"
48235        ],
48236        "description": "read the specified DaemonSet",
48237        "operationId": "readAppsV1NamespacedDaemonSet",
48238        "produces": [
48239          "application/json",
48240          "application/yaml",
48241          "application/vnd.kubernetes.protobuf"
48242        ],
48243        "responses": {
48244          "200": {
48245            "description": "OK",
48246            "schema": {
48247              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48248            }
48249          },
48250          "401": {
48251            "description": "Unauthorized"
48252          }
48253        },
48254        "schemes": [
48255          "https"
48256        ],
48257        "tags": [
48258          "apps_v1"
48259        ],
48260        "x-kubernetes-action": "get",
48261        "x-kubernetes-group-version-kind": {
48262          "group": "apps",
48263          "kind": "DaemonSet",
48264          "version": "v1"
48265        }
48266      },
48267      "parameters": [
48268        {
48269          "description": "name of the DaemonSet",
48270          "in": "path",
48271          "name": "name",
48272          "required": true,
48273          "type": "string",
48274          "uniqueItems": true
48275        },
48276        {
48277          "description": "object name and auth scope, such as for teams and projects",
48278          "in": "path",
48279          "name": "namespace",
48280          "required": true,
48281          "type": "string",
48282          "uniqueItems": true
48283        },
48284        {
48285          "description": "If 'true', then the output is pretty printed.",
48286          "in": "query",
48287          "name": "pretty",
48288          "type": "string",
48289          "uniqueItems": true
48290        }
48291      ],
48292      "patch": {
48293        "consumes": [
48294          "application/json-patch+json",
48295          "application/merge-patch+json",
48296          "application/strategic-merge-patch+json",
48297          "application/apply-patch+yaml"
48298        ],
48299        "description": "partially update the specified DaemonSet",
48300        "operationId": "patchAppsV1NamespacedDaemonSet",
48301        "parameters": [
48302          {
48303            "in": "body",
48304            "name": "body",
48305            "required": true,
48306            "schema": {
48307              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48308            }
48309          },
48310          {
48311            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48312            "in": "query",
48313            "name": "dryRun",
48314            "type": "string",
48315            "uniqueItems": true
48316          },
48317          {
48318            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
48319            "in": "query",
48320            "name": "fieldManager",
48321            "type": "string",
48322            "uniqueItems": true
48323          },
48324          {
48325            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
48326            "in": "query",
48327            "name": "force",
48328            "type": "boolean",
48329            "uniqueItems": true
48330          }
48331        ],
48332        "produces": [
48333          "application/json",
48334          "application/yaml",
48335          "application/vnd.kubernetes.protobuf"
48336        ],
48337        "responses": {
48338          "200": {
48339            "description": "OK",
48340            "schema": {
48341              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48342            }
48343          },
48344          "401": {
48345            "description": "Unauthorized"
48346          }
48347        },
48348        "schemes": [
48349          "https"
48350        ],
48351        "tags": [
48352          "apps_v1"
48353        ],
48354        "x-kubernetes-action": "patch",
48355        "x-kubernetes-group-version-kind": {
48356          "group": "apps",
48357          "kind": "DaemonSet",
48358          "version": "v1"
48359        }
48360      },
48361      "put": {
48362        "consumes": [
48363          "*/*"
48364        ],
48365        "description": "replace the specified DaemonSet",
48366        "operationId": "replaceAppsV1NamespacedDaemonSet",
48367        "parameters": [
48368          {
48369            "in": "body",
48370            "name": "body",
48371            "required": true,
48372            "schema": {
48373              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48374            }
48375          },
48376          {
48377            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48378            "in": "query",
48379            "name": "dryRun",
48380            "type": "string",
48381            "uniqueItems": true
48382          },
48383          {
48384            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48385            "in": "query",
48386            "name": "fieldManager",
48387            "type": "string",
48388            "uniqueItems": true
48389          }
48390        ],
48391        "produces": [
48392          "application/json",
48393          "application/yaml",
48394          "application/vnd.kubernetes.protobuf"
48395        ],
48396        "responses": {
48397          "200": {
48398            "description": "OK",
48399            "schema": {
48400              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48401            }
48402          },
48403          "201": {
48404            "description": "Created",
48405            "schema": {
48406              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48407            }
48408          },
48409          "401": {
48410            "description": "Unauthorized"
48411          }
48412        },
48413        "schemes": [
48414          "https"
48415        ],
48416        "tags": [
48417          "apps_v1"
48418        ],
48419        "x-kubernetes-action": "put",
48420        "x-kubernetes-group-version-kind": {
48421          "group": "apps",
48422          "kind": "DaemonSet",
48423          "version": "v1"
48424        }
48425      }
48426    },
48427    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": {
48428      "get": {
48429        "consumes": [
48430          "*/*"
48431        ],
48432        "description": "read status of the specified DaemonSet",
48433        "operationId": "readAppsV1NamespacedDaemonSetStatus",
48434        "produces": [
48435          "application/json",
48436          "application/yaml",
48437          "application/vnd.kubernetes.protobuf"
48438        ],
48439        "responses": {
48440          "200": {
48441            "description": "OK",
48442            "schema": {
48443              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48444            }
48445          },
48446          "401": {
48447            "description": "Unauthorized"
48448          }
48449        },
48450        "schemes": [
48451          "https"
48452        ],
48453        "tags": [
48454          "apps_v1"
48455        ],
48456        "x-kubernetes-action": "get",
48457        "x-kubernetes-group-version-kind": {
48458          "group": "apps",
48459          "kind": "DaemonSet",
48460          "version": "v1"
48461        }
48462      },
48463      "parameters": [
48464        {
48465          "description": "name of the DaemonSet",
48466          "in": "path",
48467          "name": "name",
48468          "required": true,
48469          "type": "string",
48470          "uniqueItems": true
48471        },
48472        {
48473          "description": "object name and auth scope, such as for teams and projects",
48474          "in": "path",
48475          "name": "namespace",
48476          "required": true,
48477          "type": "string",
48478          "uniqueItems": true
48479        },
48480        {
48481          "description": "If 'true', then the output is pretty printed.",
48482          "in": "query",
48483          "name": "pretty",
48484          "type": "string",
48485          "uniqueItems": true
48486        }
48487      ],
48488      "patch": {
48489        "consumes": [
48490          "application/json-patch+json",
48491          "application/merge-patch+json",
48492          "application/strategic-merge-patch+json",
48493          "application/apply-patch+yaml"
48494        ],
48495        "description": "partially update status of the specified DaemonSet",
48496        "operationId": "patchAppsV1NamespacedDaemonSetStatus",
48497        "parameters": [
48498          {
48499            "in": "body",
48500            "name": "body",
48501            "required": true,
48502            "schema": {
48503              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48504            }
48505          },
48506          {
48507            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48508            "in": "query",
48509            "name": "dryRun",
48510            "type": "string",
48511            "uniqueItems": true
48512          },
48513          {
48514            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
48515            "in": "query",
48516            "name": "fieldManager",
48517            "type": "string",
48518            "uniqueItems": true
48519          },
48520          {
48521            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
48522            "in": "query",
48523            "name": "force",
48524            "type": "boolean",
48525            "uniqueItems": true
48526          }
48527        ],
48528        "produces": [
48529          "application/json",
48530          "application/yaml",
48531          "application/vnd.kubernetes.protobuf"
48532        ],
48533        "responses": {
48534          "200": {
48535            "description": "OK",
48536            "schema": {
48537              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48538            }
48539          },
48540          "401": {
48541            "description": "Unauthorized"
48542          }
48543        },
48544        "schemes": [
48545          "https"
48546        ],
48547        "tags": [
48548          "apps_v1"
48549        ],
48550        "x-kubernetes-action": "patch",
48551        "x-kubernetes-group-version-kind": {
48552          "group": "apps",
48553          "kind": "DaemonSet",
48554          "version": "v1"
48555        }
48556      },
48557      "put": {
48558        "consumes": [
48559          "*/*"
48560        ],
48561        "description": "replace status of the specified DaemonSet",
48562        "operationId": "replaceAppsV1NamespacedDaemonSetStatus",
48563        "parameters": [
48564          {
48565            "in": "body",
48566            "name": "body",
48567            "required": true,
48568            "schema": {
48569              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48570            }
48571          },
48572          {
48573            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48574            "in": "query",
48575            "name": "dryRun",
48576            "type": "string",
48577            "uniqueItems": true
48578          },
48579          {
48580            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48581            "in": "query",
48582            "name": "fieldManager",
48583            "type": "string",
48584            "uniqueItems": true
48585          }
48586        ],
48587        "produces": [
48588          "application/json",
48589          "application/yaml",
48590          "application/vnd.kubernetes.protobuf"
48591        ],
48592        "responses": {
48593          "200": {
48594            "description": "OK",
48595            "schema": {
48596              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48597            }
48598          },
48599          "201": {
48600            "description": "Created",
48601            "schema": {
48602              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
48603            }
48604          },
48605          "401": {
48606            "description": "Unauthorized"
48607          }
48608        },
48609        "schemes": [
48610          "https"
48611        ],
48612        "tags": [
48613          "apps_v1"
48614        ],
48615        "x-kubernetes-action": "put",
48616        "x-kubernetes-group-version-kind": {
48617          "group": "apps",
48618          "kind": "DaemonSet",
48619          "version": "v1"
48620        }
48621      }
48622    },
48623    "/apis/apps/v1/namespaces/{namespace}/deployments": {
48624      "delete": {
48625        "consumes": [
48626          "*/*"
48627        ],
48628        "description": "delete collection of Deployment",
48629        "operationId": "deleteAppsV1CollectionNamespacedDeployment",
48630        "parameters": [
48631          {
48632            "in": "body",
48633            "name": "body",
48634            "schema": {
48635              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48636            }
48637          },
48638          {
48639            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48640            "in": "query",
48641            "name": "continue",
48642            "type": "string",
48643            "uniqueItems": true
48644          },
48645          {
48646            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48647            "in": "query",
48648            "name": "dryRun",
48649            "type": "string",
48650            "uniqueItems": true
48651          },
48652          {
48653            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48654            "in": "query",
48655            "name": "fieldSelector",
48656            "type": "string",
48657            "uniqueItems": true
48658          },
48659          {
48660            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48661            "in": "query",
48662            "name": "gracePeriodSeconds",
48663            "type": "integer",
48664            "uniqueItems": true
48665          },
48666          {
48667            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48668            "in": "query",
48669            "name": "labelSelector",
48670            "type": "string",
48671            "uniqueItems": true
48672          },
48673          {
48674            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48675            "in": "query",
48676            "name": "limit",
48677            "type": "integer",
48678            "uniqueItems": true
48679          },
48680          {
48681            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48682            "in": "query",
48683            "name": "orphanDependents",
48684            "type": "boolean",
48685            "uniqueItems": true
48686          },
48687          {
48688            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48689            "in": "query",
48690            "name": "propagationPolicy",
48691            "type": "string",
48692            "uniqueItems": true
48693          },
48694          {
48695            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48696            "in": "query",
48697            "name": "resourceVersion",
48698            "type": "string",
48699            "uniqueItems": true
48700          },
48701          {
48702            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48703            "in": "query",
48704            "name": "resourceVersionMatch",
48705            "type": "string",
48706            "uniqueItems": true
48707          },
48708          {
48709            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48710            "in": "query",
48711            "name": "timeoutSeconds",
48712            "type": "integer",
48713            "uniqueItems": true
48714          }
48715        ],
48716        "produces": [
48717          "application/json",
48718          "application/yaml",
48719          "application/vnd.kubernetes.protobuf"
48720        ],
48721        "responses": {
48722          "200": {
48723            "description": "OK",
48724            "schema": {
48725              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48726            }
48727          },
48728          "401": {
48729            "description": "Unauthorized"
48730          }
48731        },
48732        "schemes": [
48733          "https"
48734        ],
48735        "tags": [
48736          "apps_v1"
48737        ],
48738        "x-kubernetes-action": "deletecollection",
48739        "x-kubernetes-group-version-kind": {
48740          "group": "apps",
48741          "kind": "Deployment",
48742          "version": "v1"
48743        }
48744      },
48745      "get": {
48746        "consumes": [
48747          "*/*"
48748        ],
48749        "description": "list or watch objects of kind Deployment",
48750        "operationId": "listAppsV1NamespacedDeployment",
48751        "parameters": [
48752          {
48753            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
48754            "in": "query",
48755            "name": "allowWatchBookmarks",
48756            "type": "boolean",
48757            "uniqueItems": true
48758          },
48759          {
48760            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48761            "in": "query",
48762            "name": "continue",
48763            "type": "string",
48764            "uniqueItems": true
48765          },
48766          {
48767            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48768            "in": "query",
48769            "name": "fieldSelector",
48770            "type": "string",
48771            "uniqueItems": true
48772          },
48773          {
48774            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48775            "in": "query",
48776            "name": "labelSelector",
48777            "type": "string",
48778            "uniqueItems": true
48779          },
48780          {
48781            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48782            "in": "query",
48783            "name": "limit",
48784            "type": "integer",
48785            "uniqueItems": true
48786          },
48787          {
48788            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48789            "in": "query",
48790            "name": "resourceVersion",
48791            "type": "string",
48792            "uniqueItems": true
48793          },
48794          {
48795            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48796            "in": "query",
48797            "name": "resourceVersionMatch",
48798            "type": "string",
48799            "uniqueItems": true
48800          },
48801          {
48802            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48803            "in": "query",
48804            "name": "timeoutSeconds",
48805            "type": "integer",
48806            "uniqueItems": true
48807          },
48808          {
48809            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48810            "in": "query",
48811            "name": "watch",
48812            "type": "boolean",
48813            "uniqueItems": true
48814          }
48815        ],
48816        "produces": [
48817          "application/json",
48818          "application/yaml",
48819          "application/vnd.kubernetes.protobuf",
48820          "application/json;stream=watch",
48821          "application/vnd.kubernetes.protobuf;stream=watch"
48822        ],
48823        "responses": {
48824          "200": {
48825            "description": "OK",
48826            "schema": {
48827              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
48828            }
48829          },
48830          "401": {
48831            "description": "Unauthorized"
48832          }
48833        },
48834        "schemes": [
48835          "https"
48836        ],
48837        "tags": [
48838          "apps_v1"
48839        ],
48840        "x-kubernetes-action": "list",
48841        "x-kubernetes-group-version-kind": {
48842          "group": "apps",
48843          "kind": "Deployment",
48844          "version": "v1"
48845        }
48846      },
48847      "parameters": [
48848        {
48849          "description": "object name and auth scope, such as for teams and projects",
48850          "in": "path",
48851          "name": "namespace",
48852          "required": true,
48853          "type": "string",
48854          "uniqueItems": true
48855        },
48856        {
48857          "description": "If 'true', then the output is pretty printed.",
48858          "in": "query",
48859          "name": "pretty",
48860          "type": "string",
48861          "uniqueItems": true
48862        }
48863      ],
48864      "post": {
48865        "consumes": [
48866          "*/*"
48867        ],
48868        "description": "create a Deployment",
48869        "operationId": "createAppsV1NamespacedDeployment",
48870        "parameters": [
48871          {
48872            "in": "body",
48873            "name": "body",
48874            "required": true,
48875            "schema": {
48876              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48877            }
48878          },
48879          {
48880            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48881            "in": "query",
48882            "name": "dryRun",
48883            "type": "string",
48884            "uniqueItems": true
48885          },
48886          {
48887            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48888            "in": "query",
48889            "name": "fieldManager",
48890            "type": "string",
48891            "uniqueItems": true
48892          }
48893        ],
48894        "produces": [
48895          "application/json",
48896          "application/yaml",
48897          "application/vnd.kubernetes.protobuf"
48898        ],
48899        "responses": {
48900          "200": {
48901            "description": "OK",
48902            "schema": {
48903              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48904            }
48905          },
48906          "201": {
48907            "description": "Created",
48908            "schema": {
48909              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48910            }
48911          },
48912          "202": {
48913            "description": "Accepted",
48914            "schema": {
48915              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
48916            }
48917          },
48918          "401": {
48919            "description": "Unauthorized"
48920          }
48921        },
48922        "schemes": [
48923          "https"
48924        ],
48925        "tags": [
48926          "apps_v1"
48927        ],
48928        "x-kubernetes-action": "post",
48929        "x-kubernetes-group-version-kind": {
48930          "group": "apps",
48931          "kind": "Deployment",
48932          "version": "v1"
48933        }
48934      }
48935    },
48936    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": {
48937      "delete": {
48938        "consumes": [
48939          "*/*"
48940        ],
48941        "description": "delete a Deployment",
48942        "operationId": "deleteAppsV1NamespacedDeployment",
48943        "parameters": [
48944          {
48945            "in": "body",
48946            "name": "body",
48947            "schema": {
48948              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48949            }
48950          },
48951          {
48952            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48953            "in": "query",
48954            "name": "dryRun",
48955            "type": "string",
48956            "uniqueItems": true
48957          },
48958          {
48959            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48960            "in": "query",
48961            "name": "gracePeriodSeconds",
48962            "type": "integer",
48963            "uniqueItems": true
48964          },
48965          {
48966            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48967            "in": "query",
48968            "name": "orphanDependents",
48969            "type": "boolean",
48970            "uniqueItems": true
48971          },
48972          {
48973            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48974            "in": "query",
48975            "name": "propagationPolicy",
48976            "type": "string",
48977            "uniqueItems": true
48978          }
48979        ],
48980        "produces": [
48981          "application/json",
48982          "application/yaml",
48983          "application/vnd.kubernetes.protobuf"
48984        ],
48985        "responses": {
48986          "200": {
48987            "description": "OK",
48988            "schema": {
48989              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48990            }
48991          },
48992          "202": {
48993            "description": "Accepted",
48994            "schema": {
48995              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48996            }
48997          },
48998          "401": {
48999            "description": "Unauthorized"
49000          }
49001        },
49002        "schemes": [
49003          "https"
49004        ],
49005        "tags": [
49006          "apps_v1"
49007        ],
49008        "x-kubernetes-action": "delete",
49009        "x-kubernetes-group-version-kind": {
49010          "group": "apps",
49011          "kind": "Deployment",
49012          "version": "v1"
49013        }
49014      },
49015      "get": {
49016        "consumes": [
49017          "*/*"
49018        ],
49019        "description": "read the specified Deployment",
49020        "operationId": "readAppsV1NamespacedDeployment",
49021        "produces": [
49022          "application/json",
49023          "application/yaml",
49024          "application/vnd.kubernetes.protobuf"
49025        ],
49026        "responses": {
49027          "200": {
49028            "description": "OK",
49029            "schema": {
49030              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49031            }
49032          },
49033          "401": {
49034            "description": "Unauthorized"
49035          }
49036        },
49037        "schemes": [
49038          "https"
49039        ],
49040        "tags": [
49041          "apps_v1"
49042        ],
49043        "x-kubernetes-action": "get",
49044        "x-kubernetes-group-version-kind": {
49045          "group": "apps",
49046          "kind": "Deployment",
49047          "version": "v1"
49048        }
49049      },
49050      "parameters": [
49051        {
49052          "description": "name of the Deployment",
49053          "in": "path",
49054          "name": "name",
49055          "required": true,
49056          "type": "string",
49057          "uniqueItems": true
49058        },
49059        {
49060          "description": "object name and auth scope, such as for teams and projects",
49061          "in": "path",
49062          "name": "namespace",
49063          "required": true,
49064          "type": "string",
49065          "uniqueItems": true
49066        },
49067        {
49068          "description": "If 'true', then the output is pretty printed.",
49069          "in": "query",
49070          "name": "pretty",
49071          "type": "string",
49072          "uniqueItems": true
49073        }
49074      ],
49075      "patch": {
49076        "consumes": [
49077          "application/json-patch+json",
49078          "application/merge-patch+json",
49079          "application/strategic-merge-patch+json",
49080          "application/apply-patch+yaml"
49081        ],
49082        "description": "partially update the specified Deployment",
49083        "operationId": "patchAppsV1NamespacedDeployment",
49084        "parameters": [
49085          {
49086            "in": "body",
49087            "name": "body",
49088            "required": true,
49089            "schema": {
49090              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49091            }
49092          },
49093          {
49094            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49095            "in": "query",
49096            "name": "dryRun",
49097            "type": "string",
49098            "uniqueItems": true
49099          },
49100          {
49101            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
49102            "in": "query",
49103            "name": "fieldManager",
49104            "type": "string",
49105            "uniqueItems": true
49106          },
49107          {
49108            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
49109            "in": "query",
49110            "name": "force",
49111            "type": "boolean",
49112            "uniqueItems": true
49113          }
49114        ],
49115        "produces": [
49116          "application/json",
49117          "application/yaml",
49118          "application/vnd.kubernetes.protobuf"
49119        ],
49120        "responses": {
49121          "200": {
49122            "description": "OK",
49123            "schema": {
49124              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49125            }
49126          },
49127          "401": {
49128            "description": "Unauthorized"
49129          }
49130        },
49131        "schemes": [
49132          "https"
49133        ],
49134        "tags": [
49135          "apps_v1"
49136        ],
49137        "x-kubernetes-action": "patch",
49138        "x-kubernetes-group-version-kind": {
49139          "group": "apps",
49140          "kind": "Deployment",
49141          "version": "v1"
49142        }
49143      },
49144      "put": {
49145        "consumes": [
49146          "*/*"
49147        ],
49148        "description": "replace the specified Deployment",
49149        "operationId": "replaceAppsV1NamespacedDeployment",
49150        "parameters": [
49151          {
49152            "in": "body",
49153            "name": "body",
49154            "required": true,
49155            "schema": {
49156              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49157            }
49158          },
49159          {
49160            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49161            "in": "query",
49162            "name": "dryRun",
49163            "type": "string",
49164            "uniqueItems": true
49165          },
49166          {
49167            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49168            "in": "query",
49169            "name": "fieldManager",
49170            "type": "string",
49171            "uniqueItems": true
49172          }
49173        ],
49174        "produces": [
49175          "application/json",
49176          "application/yaml",
49177          "application/vnd.kubernetes.protobuf"
49178        ],
49179        "responses": {
49180          "200": {
49181            "description": "OK",
49182            "schema": {
49183              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49184            }
49185          },
49186          "201": {
49187            "description": "Created",
49188            "schema": {
49189              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49190            }
49191          },
49192          "401": {
49193            "description": "Unauthorized"
49194          }
49195        },
49196        "schemes": [
49197          "https"
49198        ],
49199        "tags": [
49200          "apps_v1"
49201        ],
49202        "x-kubernetes-action": "put",
49203        "x-kubernetes-group-version-kind": {
49204          "group": "apps",
49205          "kind": "Deployment",
49206          "version": "v1"
49207        }
49208      }
49209    },
49210    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": {
49211      "get": {
49212        "consumes": [
49213          "*/*"
49214        ],
49215        "description": "read scale of the specified Deployment",
49216        "operationId": "readAppsV1NamespacedDeploymentScale",
49217        "produces": [
49218          "application/json",
49219          "application/yaml",
49220          "application/vnd.kubernetes.protobuf"
49221        ],
49222        "responses": {
49223          "200": {
49224            "description": "OK",
49225            "schema": {
49226              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49227            }
49228          },
49229          "401": {
49230            "description": "Unauthorized"
49231          }
49232        },
49233        "schemes": [
49234          "https"
49235        ],
49236        "tags": [
49237          "apps_v1"
49238        ],
49239        "x-kubernetes-action": "get",
49240        "x-kubernetes-group-version-kind": {
49241          "group": "autoscaling",
49242          "kind": "Scale",
49243          "version": "v1"
49244        }
49245      },
49246      "parameters": [
49247        {
49248          "description": "name of the Scale",
49249          "in": "path",
49250          "name": "name",
49251          "required": true,
49252          "type": "string",
49253          "uniqueItems": true
49254        },
49255        {
49256          "description": "object name and auth scope, such as for teams and projects",
49257          "in": "path",
49258          "name": "namespace",
49259          "required": true,
49260          "type": "string",
49261          "uniqueItems": true
49262        },
49263        {
49264          "description": "If 'true', then the output is pretty printed.",
49265          "in": "query",
49266          "name": "pretty",
49267          "type": "string",
49268          "uniqueItems": true
49269        }
49270      ],
49271      "patch": {
49272        "consumes": [
49273          "application/json-patch+json",
49274          "application/merge-patch+json",
49275          "application/strategic-merge-patch+json",
49276          "application/apply-patch+yaml"
49277        ],
49278        "description": "partially update scale of the specified Deployment",
49279        "operationId": "patchAppsV1NamespacedDeploymentScale",
49280        "parameters": [
49281          {
49282            "in": "body",
49283            "name": "body",
49284            "required": true,
49285            "schema": {
49286              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49287            }
49288          },
49289          {
49290            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49291            "in": "query",
49292            "name": "dryRun",
49293            "type": "string",
49294            "uniqueItems": true
49295          },
49296          {
49297            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
49298            "in": "query",
49299            "name": "fieldManager",
49300            "type": "string",
49301            "uniqueItems": true
49302          },
49303          {
49304            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
49305            "in": "query",
49306            "name": "force",
49307            "type": "boolean",
49308            "uniqueItems": true
49309          }
49310        ],
49311        "produces": [
49312          "application/json",
49313          "application/yaml",
49314          "application/vnd.kubernetes.protobuf"
49315        ],
49316        "responses": {
49317          "200": {
49318            "description": "OK",
49319            "schema": {
49320              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49321            }
49322          },
49323          "401": {
49324            "description": "Unauthorized"
49325          }
49326        },
49327        "schemes": [
49328          "https"
49329        ],
49330        "tags": [
49331          "apps_v1"
49332        ],
49333        "x-kubernetes-action": "patch",
49334        "x-kubernetes-group-version-kind": {
49335          "group": "autoscaling",
49336          "kind": "Scale",
49337          "version": "v1"
49338        }
49339      },
49340      "put": {
49341        "consumes": [
49342          "*/*"
49343        ],
49344        "description": "replace scale of the specified Deployment",
49345        "operationId": "replaceAppsV1NamespacedDeploymentScale",
49346        "parameters": [
49347          {
49348            "in": "body",
49349            "name": "body",
49350            "required": true,
49351            "schema": {
49352              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49353            }
49354          },
49355          {
49356            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49357            "in": "query",
49358            "name": "dryRun",
49359            "type": "string",
49360            "uniqueItems": true
49361          },
49362          {
49363            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49364            "in": "query",
49365            "name": "fieldManager",
49366            "type": "string",
49367            "uniqueItems": true
49368          }
49369        ],
49370        "produces": [
49371          "application/json",
49372          "application/yaml",
49373          "application/vnd.kubernetes.protobuf"
49374        ],
49375        "responses": {
49376          "200": {
49377            "description": "OK",
49378            "schema": {
49379              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49380            }
49381          },
49382          "201": {
49383            "description": "Created",
49384            "schema": {
49385              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49386            }
49387          },
49388          "401": {
49389            "description": "Unauthorized"
49390          }
49391        },
49392        "schemes": [
49393          "https"
49394        ],
49395        "tags": [
49396          "apps_v1"
49397        ],
49398        "x-kubernetes-action": "put",
49399        "x-kubernetes-group-version-kind": {
49400          "group": "autoscaling",
49401          "kind": "Scale",
49402          "version": "v1"
49403        }
49404      }
49405    },
49406    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": {
49407      "get": {
49408        "consumes": [
49409          "*/*"
49410        ],
49411        "description": "read status of the specified Deployment",
49412        "operationId": "readAppsV1NamespacedDeploymentStatus",
49413        "produces": [
49414          "application/json",
49415          "application/yaml",
49416          "application/vnd.kubernetes.protobuf"
49417        ],
49418        "responses": {
49419          "200": {
49420            "description": "OK",
49421            "schema": {
49422              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49423            }
49424          },
49425          "401": {
49426            "description": "Unauthorized"
49427          }
49428        },
49429        "schemes": [
49430          "https"
49431        ],
49432        "tags": [
49433          "apps_v1"
49434        ],
49435        "x-kubernetes-action": "get",
49436        "x-kubernetes-group-version-kind": {
49437          "group": "apps",
49438          "kind": "Deployment",
49439          "version": "v1"
49440        }
49441      },
49442      "parameters": [
49443        {
49444          "description": "name of the Deployment",
49445          "in": "path",
49446          "name": "name",
49447          "required": true,
49448          "type": "string",
49449          "uniqueItems": true
49450        },
49451        {
49452          "description": "object name and auth scope, such as for teams and projects",
49453          "in": "path",
49454          "name": "namespace",
49455          "required": true,
49456          "type": "string",
49457          "uniqueItems": true
49458        },
49459        {
49460          "description": "If 'true', then the output is pretty printed.",
49461          "in": "query",
49462          "name": "pretty",
49463          "type": "string",
49464          "uniqueItems": true
49465        }
49466      ],
49467      "patch": {
49468        "consumes": [
49469          "application/json-patch+json",
49470          "application/merge-patch+json",
49471          "application/strategic-merge-patch+json",
49472          "application/apply-patch+yaml"
49473        ],
49474        "description": "partially update status of the specified Deployment",
49475        "operationId": "patchAppsV1NamespacedDeploymentStatus",
49476        "parameters": [
49477          {
49478            "in": "body",
49479            "name": "body",
49480            "required": true,
49481            "schema": {
49482              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49483            }
49484          },
49485          {
49486            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49487            "in": "query",
49488            "name": "dryRun",
49489            "type": "string",
49490            "uniqueItems": true
49491          },
49492          {
49493            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
49494            "in": "query",
49495            "name": "fieldManager",
49496            "type": "string",
49497            "uniqueItems": true
49498          },
49499          {
49500            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
49501            "in": "query",
49502            "name": "force",
49503            "type": "boolean",
49504            "uniqueItems": true
49505          }
49506        ],
49507        "produces": [
49508          "application/json",
49509          "application/yaml",
49510          "application/vnd.kubernetes.protobuf"
49511        ],
49512        "responses": {
49513          "200": {
49514            "description": "OK",
49515            "schema": {
49516              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49517            }
49518          },
49519          "401": {
49520            "description": "Unauthorized"
49521          }
49522        },
49523        "schemes": [
49524          "https"
49525        ],
49526        "tags": [
49527          "apps_v1"
49528        ],
49529        "x-kubernetes-action": "patch",
49530        "x-kubernetes-group-version-kind": {
49531          "group": "apps",
49532          "kind": "Deployment",
49533          "version": "v1"
49534        }
49535      },
49536      "put": {
49537        "consumes": [
49538          "*/*"
49539        ],
49540        "description": "replace status of the specified Deployment",
49541        "operationId": "replaceAppsV1NamespacedDeploymentStatus",
49542        "parameters": [
49543          {
49544            "in": "body",
49545            "name": "body",
49546            "required": true,
49547            "schema": {
49548              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49549            }
49550          },
49551          {
49552            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49553            "in": "query",
49554            "name": "dryRun",
49555            "type": "string",
49556            "uniqueItems": true
49557          },
49558          {
49559            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49560            "in": "query",
49561            "name": "fieldManager",
49562            "type": "string",
49563            "uniqueItems": true
49564          }
49565        ],
49566        "produces": [
49567          "application/json",
49568          "application/yaml",
49569          "application/vnd.kubernetes.protobuf"
49570        ],
49571        "responses": {
49572          "200": {
49573            "description": "OK",
49574            "schema": {
49575              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49576            }
49577          },
49578          "201": {
49579            "description": "Created",
49580            "schema": {
49581              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
49582            }
49583          },
49584          "401": {
49585            "description": "Unauthorized"
49586          }
49587        },
49588        "schemes": [
49589          "https"
49590        ],
49591        "tags": [
49592          "apps_v1"
49593        ],
49594        "x-kubernetes-action": "put",
49595        "x-kubernetes-group-version-kind": {
49596          "group": "apps",
49597          "kind": "Deployment",
49598          "version": "v1"
49599        }
49600      }
49601    },
49602    "/apis/apps/v1/namespaces/{namespace}/replicasets": {
49603      "delete": {
49604        "consumes": [
49605          "*/*"
49606        ],
49607        "description": "delete collection of ReplicaSet",
49608        "operationId": "deleteAppsV1CollectionNamespacedReplicaSet",
49609        "parameters": [
49610          {
49611            "in": "body",
49612            "name": "body",
49613            "schema": {
49614              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
49615            }
49616          },
49617          {
49618            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49619            "in": "query",
49620            "name": "continue",
49621            "type": "string",
49622            "uniqueItems": true
49623          },
49624          {
49625            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49626            "in": "query",
49627            "name": "dryRun",
49628            "type": "string",
49629            "uniqueItems": true
49630          },
49631          {
49632            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49633            "in": "query",
49634            "name": "fieldSelector",
49635            "type": "string",
49636            "uniqueItems": true
49637          },
49638          {
49639            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
49640            "in": "query",
49641            "name": "gracePeriodSeconds",
49642            "type": "integer",
49643            "uniqueItems": true
49644          },
49645          {
49646            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49647            "in": "query",
49648            "name": "labelSelector",
49649            "type": "string",
49650            "uniqueItems": true
49651          },
49652          {
49653            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49654            "in": "query",
49655            "name": "limit",
49656            "type": "integer",
49657            "uniqueItems": true
49658          },
49659          {
49660            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
49661            "in": "query",
49662            "name": "orphanDependents",
49663            "type": "boolean",
49664            "uniqueItems": true
49665          },
49666          {
49667            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
49668            "in": "query",
49669            "name": "propagationPolicy",
49670            "type": "string",
49671            "uniqueItems": true
49672          },
49673          {
49674            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49675            "in": "query",
49676            "name": "resourceVersion",
49677            "type": "string",
49678            "uniqueItems": true
49679          },
49680          {
49681            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49682            "in": "query",
49683            "name": "resourceVersionMatch",
49684            "type": "string",
49685            "uniqueItems": true
49686          },
49687          {
49688            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49689            "in": "query",
49690            "name": "timeoutSeconds",
49691            "type": "integer",
49692            "uniqueItems": true
49693          }
49694        ],
49695        "produces": [
49696          "application/json",
49697          "application/yaml",
49698          "application/vnd.kubernetes.protobuf"
49699        ],
49700        "responses": {
49701          "200": {
49702            "description": "OK",
49703            "schema": {
49704              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49705            }
49706          },
49707          "401": {
49708            "description": "Unauthorized"
49709          }
49710        },
49711        "schemes": [
49712          "https"
49713        ],
49714        "tags": [
49715          "apps_v1"
49716        ],
49717        "x-kubernetes-action": "deletecollection",
49718        "x-kubernetes-group-version-kind": {
49719          "group": "apps",
49720          "kind": "ReplicaSet",
49721          "version": "v1"
49722        }
49723      },
49724      "get": {
49725        "consumes": [
49726          "*/*"
49727        ],
49728        "description": "list or watch objects of kind ReplicaSet",
49729        "operationId": "listAppsV1NamespacedReplicaSet",
49730        "parameters": [
49731          {
49732            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
49733            "in": "query",
49734            "name": "allowWatchBookmarks",
49735            "type": "boolean",
49736            "uniqueItems": true
49737          },
49738          {
49739            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49740            "in": "query",
49741            "name": "continue",
49742            "type": "string",
49743            "uniqueItems": true
49744          },
49745          {
49746            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49747            "in": "query",
49748            "name": "fieldSelector",
49749            "type": "string",
49750            "uniqueItems": true
49751          },
49752          {
49753            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49754            "in": "query",
49755            "name": "labelSelector",
49756            "type": "string",
49757            "uniqueItems": true
49758          },
49759          {
49760            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49761            "in": "query",
49762            "name": "limit",
49763            "type": "integer",
49764            "uniqueItems": true
49765          },
49766          {
49767            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49768            "in": "query",
49769            "name": "resourceVersion",
49770            "type": "string",
49771            "uniqueItems": true
49772          },
49773          {
49774            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49775            "in": "query",
49776            "name": "resourceVersionMatch",
49777            "type": "string",
49778            "uniqueItems": true
49779          },
49780          {
49781            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49782            "in": "query",
49783            "name": "timeoutSeconds",
49784            "type": "integer",
49785            "uniqueItems": true
49786          },
49787          {
49788            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49789            "in": "query",
49790            "name": "watch",
49791            "type": "boolean",
49792            "uniqueItems": true
49793          }
49794        ],
49795        "produces": [
49796          "application/json",
49797          "application/yaml",
49798          "application/vnd.kubernetes.protobuf",
49799          "application/json;stream=watch",
49800          "application/vnd.kubernetes.protobuf;stream=watch"
49801        ],
49802        "responses": {
49803          "200": {
49804            "description": "OK",
49805            "schema": {
49806              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
49807            }
49808          },
49809          "401": {
49810            "description": "Unauthorized"
49811          }
49812        },
49813        "schemes": [
49814          "https"
49815        ],
49816        "tags": [
49817          "apps_v1"
49818        ],
49819        "x-kubernetes-action": "list",
49820        "x-kubernetes-group-version-kind": {
49821          "group": "apps",
49822          "kind": "ReplicaSet",
49823          "version": "v1"
49824        }
49825      },
49826      "parameters": [
49827        {
49828          "description": "object name and auth scope, such as for teams and projects",
49829          "in": "path",
49830          "name": "namespace",
49831          "required": true,
49832          "type": "string",
49833          "uniqueItems": true
49834        },
49835        {
49836          "description": "If 'true', then the output is pretty printed.",
49837          "in": "query",
49838          "name": "pretty",
49839          "type": "string",
49840          "uniqueItems": true
49841        }
49842      ],
49843      "post": {
49844        "consumes": [
49845          "*/*"
49846        ],
49847        "description": "create a ReplicaSet",
49848        "operationId": "createAppsV1NamespacedReplicaSet",
49849        "parameters": [
49850          {
49851            "in": "body",
49852            "name": "body",
49853            "required": true,
49854            "schema": {
49855              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49856            }
49857          },
49858          {
49859            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49860            "in": "query",
49861            "name": "dryRun",
49862            "type": "string",
49863            "uniqueItems": true
49864          },
49865          {
49866            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49867            "in": "query",
49868            "name": "fieldManager",
49869            "type": "string",
49870            "uniqueItems": true
49871          }
49872        ],
49873        "produces": [
49874          "application/json",
49875          "application/yaml",
49876          "application/vnd.kubernetes.protobuf"
49877        ],
49878        "responses": {
49879          "200": {
49880            "description": "OK",
49881            "schema": {
49882              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49883            }
49884          },
49885          "201": {
49886            "description": "Created",
49887            "schema": {
49888              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49889            }
49890          },
49891          "202": {
49892            "description": "Accepted",
49893            "schema": {
49894              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
49895            }
49896          },
49897          "401": {
49898            "description": "Unauthorized"
49899          }
49900        },
49901        "schemes": [
49902          "https"
49903        ],
49904        "tags": [
49905          "apps_v1"
49906        ],
49907        "x-kubernetes-action": "post",
49908        "x-kubernetes-group-version-kind": {
49909          "group": "apps",
49910          "kind": "ReplicaSet",
49911          "version": "v1"
49912        }
49913      }
49914    },
49915    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": {
49916      "delete": {
49917        "consumes": [
49918          "*/*"
49919        ],
49920        "description": "delete a ReplicaSet",
49921        "operationId": "deleteAppsV1NamespacedReplicaSet",
49922        "parameters": [
49923          {
49924            "in": "body",
49925            "name": "body",
49926            "schema": {
49927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
49928            }
49929          },
49930          {
49931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49932            "in": "query",
49933            "name": "dryRun",
49934            "type": "string",
49935            "uniqueItems": true
49936          },
49937          {
49938            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
49939            "in": "query",
49940            "name": "gracePeriodSeconds",
49941            "type": "integer",
49942            "uniqueItems": true
49943          },
49944          {
49945            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
49946            "in": "query",
49947            "name": "orphanDependents",
49948            "type": "boolean",
49949            "uniqueItems": true
49950          },
49951          {
49952            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
49953            "in": "query",
49954            "name": "propagationPolicy",
49955            "type": "string",
49956            "uniqueItems": true
49957          }
49958        ],
49959        "produces": [
49960          "application/json",
49961          "application/yaml",
49962          "application/vnd.kubernetes.protobuf"
49963        ],
49964        "responses": {
49965          "200": {
49966            "description": "OK",
49967            "schema": {
49968              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49969            }
49970          },
49971          "202": {
49972            "description": "Accepted",
49973            "schema": {
49974              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49975            }
49976          },
49977          "401": {
49978            "description": "Unauthorized"
49979          }
49980        },
49981        "schemes": [
49982          "https"
49983        ],
49984        "tags": [
49985          "apps_v1"
49986        ],
49987        "x-kubernetes-action": "delete",
49988        "x-kubernetes-group-version-kind": {
49989          "group": "apps",
49990          "kind": "ReplicaSet",
49991          "version": "v1"
49992        }
49993      },
49994      "get": {
49995        "consumes": [
49996          "*/*"
49997        ],
49998        "description": "read the specified ReplicaSet",
49999        "operationId": "readAppsV1NamespacedReplicaSet",
50000        "produces": [
50001          "application/json",
50002          "application/yaml",
50003          "application/vnd.kubernetes.protobuf"
50004        ],
50005        "responses": {
50006          "200": {
50007            "description": "OK",
50008            "schema": {
50009              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50010            }
50011          },
50012          "401": {
50013            "description": "Unauthorized"
50014          }
50015        },
50016        "schemes": [
50017          "https"
50018        ],
50019        "tags": [
50020          "apps_v1"
50021        ],
50022        "x-kubernetes-action": "get",
50023        "x-kubernetes-group-version-kind": {
50024          "group": "apps",
50025          "kind": "ReplicaSet",
50026          "version": "v1"
50027        }
50028      },
50029      "parameters": [
50030        {
50031          "description": "name of the ReplicaSet",
50032          "in": "path",
50033          "name": "name",
50034          "required": true,
50035          "type": "string",
50036          "uniqueItems": true
50037        },
50038        {
50039          "description": "object name and auth scope, such as for teams and projects",
50040          "in": "path",
50041          "name": "namespace",
50042          "required": true,
50043          "type": "string",
50044          "uniqueItems": true
50045        },
50046        {
50047          "description": "If 'true', then the output is pretty printed.",
50048          "in": "query",
50049          "name": "pretty",
50050          "type": "string",
50051          "uniqueItems": true
50052        }
50053      ],
50054      "patch": {
50055        "consumes": [
50056          "application/json-patch+json",
50057          "application/merge-patch+json",
50058          "application/strategic-merge-patch+json",
50059          "application/apply-patch+yaml"
50060        ],
50061        "description": "partially update the specified ReplicaSet",
50062        "operationId": "patchAppsV1NamespacedReplicaSet",
50063        "parameters": [
50064          {
50065            "in": "body",
50066            "name": "body",
50067            "required": true,
50068            "schema": {
50069              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50070            }
50071          },
50072          {
50073            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50074            "in": "query",
50075            "name": "dryRun",
50076            "type": "string",
50077            "uniqueItems": true
50078          },
50079          {
50080            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
50081            "in": "query",
50082            "name": "fieldManager",
50083            "type": "string",
50084            "uniqueItems": true
50085          },
50086          {
50087            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
50088            "in": "query",
50089            "name": "force",
50090            "type": "boolean",
50091            "uniqueItems": true
50092          }
50093        ],
50094        "produces": [
50095          "application/json",
50096          "application/yaml",
50097          "application/vnd.kubernetes.protobuf"
50098        ],
50099        "responses": {
50100          "200": {
50101            "description": "OK",
50102            "schema": {
50103              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50104            }
50105          },
50106          "401": {
50107            "description": "Unauthorized"
50108          }
50109        },
50110        "schemes": [
50111          "https"
50112        ],
50113        "tags": [
50114          "apps_v1"
50115        ],
50116        "x-kubernetes-action": "patch",
50117        "x-kubernetes-group-version-kind": {
50118          "group": "apps",
50119          "kind": "ReplicaSet",
50120          "version": "v1"
50121        }
50122      },
50123      "put": {
50124        "consumes": [
50125          "*/*"
50126        ],
50127        "description": "replace the specified ReplicaSet",
50128        "operationId": "replaceAppsV1NamespacedReplicaSet",
50129        "parameters": [
50130          {
50131            "in": "body",
50132            "name": "body",
50133            "required": true,
50134            "schema": {
50135              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50136            }
50137          },
50138          {
50139            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50140            "in": "query",
50141            "name": "dryRun",
50142            "type": "string",
50143            "uniqueItems": true
50144          },
50145          {
50146            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50147            "in": "query",
50148            "name": "fieldManager",
50149            "type": "string",
50150            "uniqueItems": true
50151          }
50152        ],
50153        "produces": [
50154          "application/json",
50155          "application/yaml",
50156          "application/vnd.kubernetes.protobuf"
50157        ],
50158        "responses": {
50159          "200": {
50160            "description": "OK",
50161            "schema": {
50162              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50163            }
50164          },
50165          "201": {
50166            "description": "Created",
50167            "schema": {
50168              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50169            }
50170          },
50171          "401": {
50172            "description": "Unauthorized"
50173          }
50174        },
50175        "schemes": [
50176          "https"
50177        ],
50178        "tags": [
50179          "apps_v1"
50180        ],
50181        "x-kubernetes-action": "put",
50182        "x-kubernetes-group-version-kind": {
50183          "group": "apps",
50184          "kind": "ReplicaSet",
50185          "version": "v1"
50186        }
50187      }
50188    },
50189    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": {
50190      "get": {
50191        "consumes": [
50192          "*/*"
50193        ],
50194        "description": "read scale of the specified ReplicaSet",
50195        "operationId": "readAppsV1NamespacedReplicaSetScale",
50196        "produces": [
50197          "application/json",
50198          "application/yaml",
50199          "application/vnd.kubernetes.protobuf"
50200        ],
50201        "responses": {
50202          "200": {
50203            "description": "OK",
50204            "schema": {
50205              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50206            }
50207          },
50208          "401": {
50209            "description": "Unauthorized"
50210          }
50211        },
50212        "schemes": [
50213          "https"
50214        ],
50215        "tags": [
50216          "apps_v1"
50217        ],
50218        "x-kubernetes-action": "get",
50219        "x-kubernetes-group-version-kind": {
50220          "group": "autoscaling",
50221          "kind": "Scale",
50222          "version": "v1"
50223        }
50224      },
50225      "parameters": [
50226        {
50227          "description": "name of the Scale",
50228          "in": "path",
50229          "name": "name",
50230          "required": true,
50231          "type": "string",
50232          "uniqueItems": true
50233        },
50234        {
50235          "description": "object name and auth scope, such as for teams and projects",
50236          "in": "path",
50237          "name": "namespace",
50238          "required": true,
50239          "type": "string",
50240          "uniqueItems": true
50241        },
50242        {
50243          "description": "If 'true', then the output is pretty printed.",
50244          "in": "query",
50245          "name": "pretty",
50246          "type": "string",
50247          "uniqueItems": true
50248        }
50249      ],
50250      "patch": {
50251        "consumes": [
50252          "application/json-patch+json",
50253          "application/merge-patch+json",
50254          "application/strategic-merge-patch+json",
50255          "application/apply-patch+yaml"
50256        ],
50257        "description": "partially update scale of the specified ReplicaSet",
50258        "operationId": "patchAppsV1NamespacedReplicaSetScale",
50259        "parameters": [
50260          {
50261            "in": "body",
50262            "name": "body",
50263            "required": true,
50264            "schema": {
50265              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50266            }
50267          },
50268          {
50269            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50270            "in": "query",
50271            "name": "dryRun",
50272            "type": "string",
50273            "uniqueItems": true
50274          },
50275          {
50276            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
50277            "in": "query",
50278            "name": "fieldManager",
50279            "type": "string",
50280            "uniqueItems": true
50281          },
50282          {
50283            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
50284            "in": "query",
50285            "name": "force",
50286            "type": "boolean",
50287            "uniqueItems": true
50288          }
50289        ],
50290        "produces": [
50291          "application/json",
50292          "application/yaml",
50293          "application/vnd.kubernetes.protobuf"
50294        ],
50295        "responses": {
50296          "200": {
50297            "description": "OK",
50298            "schema": {
50299              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50300            }
50301          },
50302          "401": {
50303            "description": "Unauthorized"
50304          }
50305        },
50306        "schemes": [
50307          "https"
50308        ],
50309        "tags": [
50310          "apps_v1"
50311        ],
50312        "x-kubernetes-action": "patch",
50313        "x-kubernetes-group-version-kind": {
50314          "group": "autoscaling",
50315          "kind": "Scale",
50316          "version": "v1"
50317        }
50318      },
50319      "put": {
50320        "consumes": [
50321          "*/*"
50322        ],
50323        "description": "replace scale of the specified ReplicaSet",
50324        "operationId": "replaceAppsV1NamespacedReplicaSetScale",
50325        "parameters": [
50326          {
50327            "in": "body",
50328            "name": "body",
50329            "required": true,
50330            "schema": {
50331              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50332            }
50333          },
50334          {
50335            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50336            "in": "query",
50337            "name": "dryRun",
50338            "type": "string",
50339            "uniqueItems": true
50340          },
50341          {
50342            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50343            "in": "query",
50344            "name": "fieldManager",
50345            "type": "string",
50346            "uniqueItems": true
50347          }
50348        ],
50349        "produces": [
50350          "application/json",
50351          "application/yaml",
50352          "application/vnd.kubernetes.protobuf"
50353        ],
50354        "responses": {
50355          "200": {
50356            "description": "OK",
50357            "schema": {
50358              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50359            }
50360          },
50361          "201": {
50362            "description": "Created",
50363            "schema": {
50364              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
50365            }
50366          },
50367          "401": {
50368            "description": "Unauthorized"
50369          }
50370        },
50371        "schemes": [
50372          "https"
50373        ],
50374        "tags": [
50375          "apps_v1"
50376        ],
50377        "x-kubernetes-action": "put",
50378        "x-kubernetes-group-version-kind": {
50379          "group": "autoscaling",
50380          "kind": "Scale",
50381          "version": "v1"
50382        }
50383      }
50384    },
50385    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": {
50386      "get": {
50387        "consumes": [
50388          "*/*"
50389        ],
50390        "description": "read status of the specified ReplicaSet",
50391        "operationId": "readAppsV1NamespacedReplicaSetStatus",
50392        "produces": [
50393          "application/json",
50394          "application/yaml",
50395          "application/vnd.kubernetes.protobuf"
50396        ],
50397        "responses": {
50398          "200": {
50399            "description": "OK",
50400            "schema": {
50401              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50402            }
50403          },
50404          "401": {
50405            "description": "Unauthorized"
50406          }
50407        },
50408        "schemes": [
50409          "https"
50410        ],
50411        "tags": [
50412          "apps_v1"
50413        ],
50414        "x-kubernetes-action": "get",
50415        "x-kubernetes-group-version-kind": {
50416          "group": "apps",
50417          "kind": "ReplicaSet",
50418          "version": "v1"
50419        }
50420      },
50421      "parameters": [
50422        {
50423          "description": "name of the ReplicaSet",
50424          "in": "path",
50425          "name": "name",
50426          "required": true,
50427          "type": "string",
50428          "uniqueItems": true
50429        },
50430        {
50431          "description": "object name and auth scope, such as for teams and projects",
50432          "in": "path",
50433          "name": "namespace",
50434          "required": true,
50435          "type": "string",
50436          "uniqueItems": true
50437        },
50438        {
50439          "description": "If 'true', then the output is pretty printed.",
50440          "in": "query",
50441          "name": "pretty",
50442          "type": "string",
50443          "uniqueItems": true
50444        }
50445      ],
50446      "patch": {
50447        "consumes": [
50448          "application/json-patch+json",
50449          "application/merge-patch+json",
50450          "application/strategic-merge-patch+json",
50451          "application/apply-patch+yaml"
50452        ],
50453        "description": "partially update status of the specified ReplicaSet",
50454        "operationId": "patchAppsV1NamespacedReplicaSetStatus",
50455        "parameters": [
50456          {
50457            "in": "body",
50458            "name": "body",
50459            "required": true,
50460            "schema": {
50461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50462            }
50463          },
50464          {
50465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50466            "in": "query",
50467            "name": "dryRun",
50468            "type": "string",
50469            "uniqueItems": true
50470          },
50471          {
50472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
50473            "in": "query",
50474            "name": "fieldManager",
50475            "type": "string",
50476            "uniqueItems": true
50477          },
50478          {
50479            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
50480            "in": "query",
50481            "name": "force",
50482            "type": "boolean",
50483            "uniqueItems": true
50484          }
50485        ],
50486        "produces": [
50487          "application/json",
50488          "application/yaml",
50489          "application/vnd.kubernetes.protobuf"
50490        ],
50491        "responses": {
50492          "200": {
50493            "description": "OK",
50494            "schema": {
50495              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50496            }
50497          },
50498          "401": {
50499            "description": "Unauthorized"
50500          }
50501        },
50502        "schemes": [
50503          "https"
50504        ],
50505        "tags": [
50506          "apps_v1"
50507        ],
50508        "x-kubernetes-action": "patch",
50509        "x-kubernetes-group-version-kind": {
50510          "group": "apps",
50511          "kind": "ReplicaSet",
50512          "version": "v1"
50513        }
50514      },
50515      "put": {
50516        "consumes": [
50517          "*/*"
50518        ],
50519        "description": "replace status of the specified ReplicaSet",
50520        "operationId": "replaceAppsV1NamespacedReplicaSetStatus",
50521        "parameters": [
50522          {
50523            "in": "body",
50524            "name": "body",
50525            "required": true,
50526            "schema": {
50527              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50528            }
50529          },
50530          {
50531            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50532            "in": "query",
50533            "name": "dryRun",
50534            "type": "string",
50535            "uniqueItems": true
50536          },
50537          {
50538            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50539            "in": "query",
50540            "name": "fieldManager",
50541            "type": "string",
50542            "uniqueItems": true
50543          }
50544        ],
50545        "produces": [
50546          "application/json",
50547          "application/yaml",
50548          "application/vnd.kubernetes.protobuf"
50549        ],
50550        "responses": {
50551          "200": {
50552            "description": "OK",
50553            "schema": {
50554              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50555            }
50556          },
50557          "201": {
50558            "description": "Created",
50559            "schema": {
50560              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
50561            }
50562          },
50563          "401": {
50564            "description": "Unauthorized"
50565          }
50566        },
50567        "schemes": [
50568          "https"
50569        ],
50570        "tags": [
50571          "apps_v1"
50572        ],
50573        "x-kubernetes-action": "put",
50574        "x-kubernetes-group-version-kind": {
50575          "group": "apps",
50576          "kind": "ReplicaSet",
50577          "version": "v1"
50578        }
50579      }
50580    },
50581    "/apis/apps/v1/namespaces/{namespace}/statefulsets": {
50582      "delete": {
50583        "consumes": [
50584          "*/*"
50585        ],
50586        "description": "delete collection of StatefulSet",
50587        "operationId": "deleteAppsV1CollectionNamespacedStatefulSet",
50588        "parameters": [
50589          {
50590            "in": "body",
50591            "name": "body",
50592            "schema": {
50593              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50594            }
50595          },
50596          {
50597            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50598            "in": "query",
50599            "name": "continue",
50600            "type": "string",
50601            "uniqueItems": true
50602          },
50603          {
50604            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50605            "in": "query",
50606            "name": "dryRun",
50607            "type": "string",
50608            "uniqueItems": true
50609          },
50610          {
50611            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50612            "in": "query",
50613            "name": "fieldSelector",
50614            "type": "string",
50615            "uniqueItems": true
50616          },
50617          {
50618            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50619            "in": "query",
50620            "name": "gracePeriodSeconds",
50621            "type": "integer",
50622            "uniqueItems": true
50623          },
50624          {
50625            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50626            "in": "query",
50627            "name": "labelSelector",
50628            "type": "string",
50629            "uniqueItems": true
50630          },
50631          {
50632            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50633            "in": "query",
50634            "name": "limit",
50635            "type": "integer",
50636            "uniqueItems": true
50637          },
50638          {
50639            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50640            "in": "query",
50641            "name": "orphanDependents",
50642            "type": "boolean",
50643            "uniqueItems": true
50644          },
50645          {
50646            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50647            "in": "query",
50648            "name": "propagationPolicy",
50649            "type": "string",
50650            "uniqueItems": true
50651          },
50652          {
50653            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50654            "in": "query",
50655            "name": "resourceVersion",
50656            "type": "string",
50657            "uniqueItems": true
50658          },
50659          {
50660            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50661            "in": "query",
50662            "name": "resourceVersionMatch",
50663            "type": "string",
50664            "uniqueItems": true
50665          },
50666          {
50667            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50668            "in": "query",
50669            "name": "timeoutSeconds",
50670            "type": "integer",
50671            "uniqueItems": true
50672          }
50673        ],
50674        "produces": [
50675          "application/json",
50676          "application/yaml",
50677          "application/vnd.kubernetes.protobuf"
50678        ],
50679        "responses": {
50680          "200": {
50681            "description": "OK",
50682            "schema": {
50683              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50684            }
50685          },
50686          "401": {
50687            "description": "Unauthorized"
50688          }
50689        },
50690        "schemes": [
50691          "https"
50692        ],
50693        "tags": [
50694          "apps_v1"
50695        ],
50696        "x-kubernetes-action": "deletecollection",
50697        "x-kubernetes-group-version-kind": {
50698          "group": "apps",
50699          "kind": "StatefulSet",
50700          "version": "v1"
50701        }
50702      },
50703      "get": {
50704        "consumes": [
50705          "*/*"
50706        ],
50707        "description": "list or watch objects of kind StatefulSet",
50708        "operationId": "listAppsV1NamespacedStatefulSet",
50709        "parameters": [
50710          {
50711            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
50712            "in": "query",
50713            "name": "allowWatchBookmarks",
50714            "type": "boolean",
50715            "uniqueItems": true
50716          },
50717          {
50718            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50719            "in": "query",
50720            "name": "continue",
50721            "type": "string",
50722            "uniqueItems": true
50723          },
50724          {
50725            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50726            "in": "query",
50727            "name": "fieldSelector",
50728            "type": "string",
50729            "uniqueItems": true
50730          },
50731          {
50732            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50733            "in": "query",
50734            "name": "labelSelector",
50735            "type": "string",
50736            "uniqueItems": true
50737          },
50738          {
50739            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50740            "in": "query",
50741            "name": "limit",
50742            "type": "integer",
50743            "uniqueItems": true
50744          },
50745          {
50746            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50747            "in": "query",
50748            "name": "resourceVersion",
50749            "type": "string",
50750            "uniqueItems": true
50751          },
50752          {
50753            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50754            "in": "query",
50755            "name": "resourceVersionMatch",
50756            "type": "string",
50757            "uniqueItems": true
50758          },
50759          {
50760            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50761            "in": "query",
50762            "name": "timeoutSeconds",
50763            "type": "integer",
50764            "uniqueItems": true
50765          },
50766          {
50767            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50768            "in": "query",
50769            "name": "watch",
50770            "type": "boolean",
50771            "uniqueItems": true
50772          }
50773        ],
50774        "produces": [
50775          "application/json",
50776          "application/yaml",
50777          "application/vnd.kubernetes.protobuf",
50778          "application/json;stream=watch",
50779          "application/vnd.kubernetes.protobuf;stream=watch"
50780        ],
50781        "responses": {
50782          "200": {
50783            "description": "OK",
50784            "schema": {
50785              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
50786            }
50787          },
50788          "401": {
50789            "description": "Unauthorized"
50790          }
50791        },
50792        "schemes": [
50793          "https"
50794        ],
50795        "tags": [
50796          "apps_v1"
50797        ],
50798        "x-kubernetes-action": "list",
50799        "x-kubernetes-group-version-kind": {
50800          "group": "apps",
50801          "kind": "StatefulSet",
50802          "version": "v1"
50803        }
50804      },
50805      "parameters": [
50806        {
50807          "description": "object name and auth scope, such as for teams and projects",
50808          "in": "path",
50809          "name": "namespace",
50810          "required": true,
50811          "type": "string",
50812          "uniqueItems": true
50813        },
50814        {
50815          "description": "If 'true', then the output is pretty printed.",
50816          "in": "query",
50817          "name": "pretty",
50818          "type": "string",
50819          "uniqueItems": true
50820        }
50821      ],
50822      "post": {
50823        "consumes": [
50824          "*/*"
50825        ],
50826        "description": "create a StatefulSet",
50827        "operationId": "createAppsV1NamespacedStatefulSet",
50828        "parameters": [
50829          {
50830            "in": "body",
50831            "name": "body",
50832            "required": true,
50833            "schema": {
50834              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50835            }
50836          },
50837          {
50838            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50839            "in": "query",
50840            "name": "dryRun",
50841            "type": "string",
50842            "uniqueItems": true
50843          },
50844          {
50845            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50846            "in": "query",
50847            "name": "fieldManager",
50848            "type": "string",
50849            "uniqueItems": true
50850          }
50851        ],
50852        "produces": [
50853          "application/json",
50854          "application/yaml",
50855          "application/vnd.kubernetes.protobuf"
50856        ],
50857        "responses": {
50858          "200": {
50859            "description": "OK",
50860            "schema": {
50861              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50862            }
50863          },
50864          "201": {
50865            "description": "Created",
50866            "schema": {
50867              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50868            }
50869          },
50870          "202": {
50871            "description": "Accepted",
50872            "schema": {
50873              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50874            }
50875          },
50876          "401": {
50877            "description": "Unauthorized"
50878          }
50879        },
50880        "schemes": [
50881          "https"
50882        ],
50883        "tags": [
50884          "apps_v1"
50885        ],
50886        "x-kubernetes-action": "post",
50887        "x-kubernetes-group-version-kind": {
50888          "group": "apps",
50889          "kind": "StatefulSet",
50890          "version": "v1"
50891        }
50892      }
50893    },
50894    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": {
50895      "delete": {
50896        "consumes": [
50897          "*/*"
50898        ],
50899        "description": "delete a StatefulSet",
50900        "operationId": "deleteAppsV1NamespacedStatefulSet",
50901        "parameters": [
50902          {
50903            "in": "body",
50904            "name": "body",
50905            "schema": {
50906              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50907            }
50908          },
50909          {
50910            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50911            "in": "query",
50912            "name": "dryRun",
50913            "type": "string",
50914            "uniqueItems": true
50915          },
50916          {
50917            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50918            "in": "query",
50919            "name": "gracePeriodSeconds",
50920            "type": "integer",
50921            "uniqueItems": true
50922          },
50923          {
50924            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50925            "in": "query",
50926            "name": "orphanDependents",
50927            "type": "boolean",
50928            "uniqueItems": true
50929          },
50930          {
50931            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50932            "in": "query",
50933            "name": "propagationPolicy",
50934            "type": "string",
50935            "uniqueItems": true
50936          }
50937        ],
50938        "produces": [
50939          "application/json",
50940          "application/yaml",
50941          "application/vnd.kubernetes.protobuf"
50942        ],
50943        "responses": {
50944          "200": {
50945            "description": "OK",
50946            "schema": {
50947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50948            }
50949          },
50950          "202": {
50951            "description": "Accepted",
50952            "schema": {
50953              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50954            }
50955          },
50956          "401": {
50957            "description": "Unauthorized"
50958          }
50959        },
50960        "schemes": [
50961          "https"
50962        ],
50963        "tags": [
50964          "apps_v1"
50965        ],
50966        "x-kubernetes-action": "delete",
50967        "x-kubernetes-group-version-kind": {
50968          "group": "apps",
50969          "kind": "StatefulSet",
50970          "version": "v1"
50971        }
50972      },
50973      "get": {
50974        "consumes": [
50975          "*/*"
50976        ],
50977        "description": "read the specified StatefulSet",
50978        "operationId": "readAppsV1NamespacedStatefulSet",
50979        "produces": [
50980          "application/json",
50981          "application/yaml",
50982          "application/vnd.kubernetes.protobuf"
50983        ],
50984        "responses": {
50985          "200": {
50986            "description": "OK",
50987            "schema": {
50988              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
50989            }
50990          },
50991          "401": {
50992            "description": "Unauthorized"
50993          }
50994        },
50995        "schemes": [
50996          "https"
50997        ],
50998        "tags": [
50999          "apps_v1"
51000        ],
51001        "x-kubernetes-action": "get",
51002        "x-kubernetes-group-version-kind": {
51003          "group": "apps",
51004          "kind": "StatefulSet",
51005          "version": "v1"
51006        }
51007      },
51008      "parameters": [
51009        {
51010          "description": "name of the StatefulSet",
51011          "in": "path",
51012          "name": "name",
51013          "required": true,
51014          "type": "string",
51015          "uniqueItems": true
51016        },
51017        {
51018          "description": "object name and auth scope, such as for teams and projects",
51019          "in": "path",
51020          "name": "namespace",
51021          "required": true,
51022          "type": "string",
51023          "uniqueItems": true
51024        },
51025        {
51026          "description": "If 'true', then the output is pretty printed.",
51027          "in": "query",
51028          "name": "pretty",
51029          "type": "string",
51030          "uniqueItems": true
51031        }
51032      ],
51033      "patch": {
51034        "consumes": [
51035          "application/json-patch+json",
51036          "application/merge-patch+json",
51037          "application/strategic-merge-patch+json",
51038          "application/apply-patch+yaml"
51039        ],
51040        "description": "partially update the specified StatefulSet",
51041        "operationId": "patchAppsV1NamespacedStatefulSet",
51042        "parameters": [
51043          {
51044            "in": "body",
51045            "name": "body",
51046            "required": true,
51047            "schema": {
51048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51049            }
51050          },
51051          {
51052            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51053            "in": "query",
51054            "name": "dryRun",
51055            "type": "string",
51056            "uniqueItems": true
51057          },
51058          {
51059            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
51060            "in": "query",
51061            "name": "fieldManager",
51062            "type": "string",
51063            "uniqueItems": true
51064          },
51065          {
51066            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
51067            "in": "query",
51068            "name": "force",
51069            "type": "boolean",
51070            "uniqueItems": true
51071          }
51072        ],
51073        "produces": [
51074          "application/json",
51075          "application/yaml",
51076          "application/vnd.kubernetes.protobuf"
51077        ],
51078        "responses": {
51079          "200": {
51080            "description": "OK",
51081            "schema": {
51082              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51083            }
51084          },
51085          "401": {
51086            "description": "Unauthorized"
51087          }
51088        },
51089        "schemes": [
51090          "https"
51091        ],
51092        "tags": [
51093          "apps_v1"
51094        ],
51095        "x-kubernetes-action": "patch",
51096        "x-kubernetes-group-version-kind": {
51097          "group": "apps",
51098          "kind": "StatefulSet",
51099          "version": "v1"
51100        }
51101      },
51102      "put": {
51103        "consumes": [
51104          "*/*"
51105        ],
51106        "description": "replace the specified StatefulSet",
51107        "operationId": "replaceAppsV1NamespacedStatefulSet",
51108        "parameters": [
51109          {
51110            "in": "body",
51111            "name": "body",
51112            "required": true,
51113            "schema": {
51114              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51115            }
51116          },
51117          {
51118            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51119            "in": "query",
51120            "name": "dryRun",
51121            "type": "string",
51122            "uniqueItems": true
51123          },
51124          {
51125            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51126            "in": "query",
51127            "name": "fieldManager",
51128            "type": "string",
51129            "uniqueItems": true
51130          }
51131        ],
51132        "produces": [
51133          "application/json",
51134          "application/yaml",
51135          "application/vnd.kubernetes.protobuf"
51136        ],
51137        "responses": {
51138          "200": {
51139            "description": "OK",
51140            "schema": {
51141              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51142            }
51143          },
51144          "201": {
51145            "description": "Created",
51146            "schema": {
51147              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51148            }
51149          },
51150          "401": {
51151            "description": "Unauthorized"
51152          }
51153        },
51154        "schemes": [
51155          "https"
51156        ],
51157        "tags": [
51158          "apps_v1"
51159        ],
51160        "x-kubernetes-action": "put",
51161        "x-kubernetes-group-version-kind": {
51162          "group": "apps",
51163          "kind": "StatefulSet",
51164          "version": "v1"
51165        }
51166      }
51167    },
51168    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": {
51169      "get": {
51170        "consumes": [
51171          "*/*"
51172        ],
51173        "description": "read scale of the specified StatefulSet",
51174        "operationId": "readAppsV1NamespacedStatefulSetScale",
51175        "produces": [
51176          "application/json",
51177          "application/yaml",
51178          "application/vnd.kubernetes.protobuf"
51179        ],
51180        "responses": {
51181          "200": {
51182            "description": "OK",
51183            "schema": {
51184              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51185            }
51186          },
51187          "401": {
51188            "description": "Unauthorized"
51189          }
51190        },
51191        "schemes": [
51192          "https"
51193        ],
51194        "tags": [
51195          "apps_v1"
51196        ],
51197        "x-kubernetes-action": "get",
51198        "x-kubernetes-group-version-kind": {
51199          "group": "autoscaling",
51200          "kind": "Scale",
51201          "version": "v1"
51202        }
51203      },
51204      "parameters": [
51205        {
51206          "description": "name of the Scale",
51207          "in": "path",
51208          "name": "name",
51209          "required": true,
51210          "type": "string",
51211          "uniqueItems": true
51212        },
51213        {
51214          "description": "object name and auth scope, such as for teams and projects",
51215          "in": "path",
51216          "name": "namespace",
51217          "required": true,
51218          "type": "string",
51219          "uniqueItems": true
51220        },
51221        {
51222          "description": "If 'true', then the output is pretty printed.",
51223          "in": "query",
51224          "name": "pretty",
51225          "type": "string",
51226          "uniqueItems": true
51227        }
51228      ],
51229      "patch": {
51230        "consumes": [
51231          "application/json-patch+json",
51232          "application/merge-patch+json",
51233          "application/strategic-merge-patch+json",
51234          "application/apply-patch+yaml"
51235        ],
51236        "description": "partially update scale of the specified StatefulSet",
51237        "operationId": "patchAppsV1NamespacedStatefulSetScale",
51238        "parameters": [
51239          {
51240            "in": "body",
51241            "name": "body",
51242            "required": true,
51243            "schema": {
51244              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51245            }
51246          },
51247          {
51248            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51249            "in": "query",
51250            "name": "dryRun",
51251            "type": "string",
51252            "uniqueItems": true
51253          },
51254          {
51255            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
51256            "in": "query",
51257            "name": "fieldManager",
51258            "type": "string",
51259            "uniqueItems": true
51260          },
51261          {
51262            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
51263            "in": "query",
51264            "name": "force",
51265            "type": "boolean",
51266            "uniqueItems": true
51267          }
51268        ],
51269        "produces": [
51270          "application/json",
51271          "application/yaml",
51272          "application/vnd.kubernetes.protobuf"
51273        ],
51274        "responses": {
51275          "200": {
51276            "description": "OK",
51277            "schema": {
51278              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51279            }
51280          },
51281          "401": {
51282            "description": "Unauthorized"
51283          }
51284        },
51285        "schemes": [
51286          "https"
51287        ],
51288        "tags": [
51289          "apps_v1"
51290        ],
51291        "x-kubernetes-action": "patch",
51292        "x-kubernetes-group-version-kind": {
51293          "group": "autoscaling",
51294          "kind": "Scale",
51295          "version": "v1"
51296        }
51297      },
51298      "put": {
51299        "consumes": [
51300          "*/*"
51301        ],
51302        "description": "replace scale of the specified StatefulSet",
51303        "operationId": "replaceAppsV1NamespacedStatefulSetScale",
51304        "parameters": [
51305          {
51306            "in": "body",
51307            "name": "body",
51308            "required": true,
51309            "schema": {
51310              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51311            }
51312          },
51313          {
51314            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51315            "in": "query",
51316            "name": "dryRun",
51317            "type": "string",
51318            "uniqueItems": true
51319          },
51320          {
51321            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51322            "in": "query",
51323            "name": "fieldManager",
51324            "type": "string",
51325            "uniqueItems": true
51326          }
51327        ],
51328        "produces": [
51329          "application/json",
51330          "application/yaml",
51331          "application/vnd.kubernetes.protobuf"
51332        ],
51333        "responses": {
51334          "200": {
51335            "description": "OK",
51336            "schema": {
51337              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51338            }
51339          },
51340          "201": {
51341            "description": "Created",
51342            "schema": {
51343              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
51344            }
51345          },
51346          "401": {
51347            "description": "Unauthorized"
51348          }
51349        },
51350        "schemes": [
51351          "https"
51352        ],
51353        "tags": [
51354          "apps_v1"
51355        ],
51356        "x-kubernetes-action": "put",
51357        "x-kubernetes-group-version-kind": {
51358          "group": "autoscaling",
51359          "kind": "Scale",
51360          "version": "v1"
51361        }
51362      }
51363    },
51364    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": {
51365      "get": {
51366        "consumes": [
51367          "*/*"
51368        ],
51369        "description": "read status of the specified StatefulSet",
51370        "operationId": "readAppsV1NamespacedStatefulSetStatus",
51371        "produces": [
51372          "application/json",
51373          "application/yaml",
51374          "application/vnd.kubernetes.protobuf"
51375        ],
51376        "responses": {
51377          "200": {
51378            "description": "OK",
51379            "schema": {
51380              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51381            }
51382          },
51383          "401": {
51384            "description": "Unauthorized"
51385          }
51386        },
51387        "schemes": [
51388          "https"
51389        ],
51390        "tags": [
51391          "apps_v1"
51392        ],
51393        "x-kubernetes-action": "get",
51394        "x-kubernetes-group-version-kind": {
51395          "group": "apps",
51396          "kind": "StatefulSet",
51397          "version": "v1"
51398        }
51399      },
51400      "parameters": [
51401        {
51402          "description": "name of the StatefulSet",
51403          "in": "path",
51404          "name": "name",
51405          "required": true,
51406          "type": "string",
51407          "uniqueItems": true
51408        },
51409        {
51410          "description": "object name and auth scope, such as for teams and projects",
51411          "in": "path",
51412          "name": "namespace",
51413          "required": true,
51414          "type": "string",
51415          "uniqueItems": true
51416        },
51417        {
51418          "description": "If 'true', then the output is pretty printed.",
51419          "in": "query",
51420          "name": "pretty",
51421          "type": "string",
51422          "uniqueItems": true
51423        }
51424      ],
51425      "patch": {
51426        "consumes": [
51427          "application/json-patch+json",
51428          "application/merge-patch+json",
51429          "application/strategic-merge-patch+json",
51430          "application/apply-patch+yaml"
51431        ],
51432        "description": "partially update status of the specified StatefulSet",
51433        "operationId": "patchAppsV1NamespacedStatefulSetStatus",
51434        "parameters": [
51435          {
51436            "in": "body",
51437            "name": "body",
51438            "required": true,
51439            "schema": {
51440              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
51441            }
51442          },
51443          {
51444            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51445            "in": "query",
51446            "name": "dryRun",
51447            "type": "string",
51448            "uniqueItems": true
51449          },
51450          {
51451            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
51452            "in": "query",
51453            "name": "fieldManager",
51454            "type": "string",
51455            "uniqueItems": true
51456          },
51457          {
51458            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
51459            "in": "query",
51460            "name": "force",
51461            "type": "boolean",
51462            "uniqueItems": true
51463          }
51464        ],
51465        "produces": [
51466          "application/json",
51467          "application/yaml",
51468          "application/vnd.kubernetes.protobuf"
51469        ],
51470        "responses": {
51471          "200": {
51472            "description": "OK",
51473            "schema": {
51474              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51475            }
51476          },
51477          "401": {
51478            "description": "Unauthorized"
51479          }
51480        },
51481        "schemes": [
51482          "https"
51483        ],
51484        "tags": [
51485          "apps_v1"
51486        ],
51487        "x-kubernetes-action": "patch",
51488        "x-kubernetes-group-version-kind": {
51489          "group": "apps",
51490          "kind": "StatefulSet",
51491          "version": "v1"
51492        }
51493      },
51494      "put": {
51495        "consumes": [
51496          "*/*"
51497        ],
51498        "description": "replace status of the specified StatefulSet",
51499        "operationId": "replaceAppsV1NamespacedStatefulSetStatus",
51500        "parameters": [
51501          {
51502            "in": "body",
51503            "name": "body",
51504            "required": true,
51505            "schema": {
51506              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51507            }
51508          },
51509          {
51510            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51511            "in": "query",
51512            "name": "dryRun",
51513            "type": "string",
51514            "uniqueItems": true
51515          },
51516          {
51517            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51518            "in": "query",
51519            "name": "fieldManager",
51520            "type": "string",
51521            "uniqueItems": true
51522          }
51523        ],
51524        "produces": [
51525          "application/json",
51526          "application/yaml",
51527          "application/vnd.kubernetes.protobuf"
51528        ],
51529        "responses": {
51530          "200": {
51531            "description": "OK",
51532            "schema": {
51533              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51534            }
51535          },
51536          "201": {
51537            "description": "Created",
51538            "schema": {
51539              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
51540            }
51541          },
51542          "401": {
51543            "description": "Unauthorized"
51544          }
51545        },
51546        "schemes": [
51547          "https"
51548        ],
51549        "tags": [
51550          "apps_v1"
51551        ],
51552        "x-kubernetes-action": "put",
51553        "x-kubernetes-group-version-kind": {
51554          "group": "apps",
51555          "kind": "StatefulSet",
51556          "version": "v1"
51557        }
51558      }
51559    },
51560    "/apis/apps/v1/replicasets": {
51561      "get": {
51562        "consumes": [
51563          "*/*"
51564        ],
51565        "description": "list or watch objects of kind ReplicaSet",
51566        "operationId": "listAppsV1ReplicaSetForAllNamespaces",
51567        "produces": [
51568          "application/json",
51569          "application/yaml",
51570          "application/vnd.kubernetes.protobuf",
51571          "application/json;stream=watch",
51572          "application/vnd.kubernetes.protobuf;stream=watch"
51573        ],
51574        "responses": {
51575          "200": {
51576            "description": "OK",
51577            "schema": {
51578              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
51579            }
51580          },
51581          "401": {
51582            "description": "Unauthorized"
51583          }
51584        },
51585        "schemes": [
51586          "https"
51587        ],
51588        "tags": [
51589          "apps_v1"
51590        ],
51591        "x-kubernetes-action": "list",
51592        "x-kubernetes-group-version-kind": {
51593          "group": "apps",
51594          "kind": "ReplicaSet",
51595          "version": "v1"
51596        }
51597      },
51598      "parameters": [
51599        {
51600          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51601          "in": "query",
51602          "name": "allowWatchBookmarks",
51603          "type": "boolean",
51604          "uniqueItems": true
51605        },
51606        {
51607          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51608          "in": "query",
51609          "name": "continue",
51610          "type": "string",
51611          "uniqueItems": true
51612        },
51613        {
51614          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51615          "in": "query",
51616          "name": "fieldSelector",
51617          "type": "string",
51618          "uniqueItems": true
51619        },
51620        {
51621          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51622          "in": "query",
51623          "name": "labelSelector",
51624          "type": "string",
51625          "uniqueItems": true
51626        },
51627        {
51628          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51629          "in": "query",
51630          "name": "limit",
51631          "type": "integer",
51632          "uniqueItems": true
51633        },
51634        {
51635          "description": "If 'true', then the output is pretty printed.",
51636          "in": "query",
51637          "name": "pretty",
51638          "type": "string",
51639          "uniqueItems": true
51640        },
51641        {
51642          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51643          "in": "query",
51644          "name": "resourceVersion",
51645          "type": "string",
51646          "uniqueItems": true
51647        },
51648        {
51649          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51650          "in": "query",
51651          "name": "resourceVersionMatch",
51652          "type": "string",
51653          "uniqueItems": true
51654        },
51655        {
51656          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51657          "in": "query",
51658          "name": "timeoutSeconds",
51659          "type": "integer",
51660          "uniqueItems": true
51661        },
51662        {
51663          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51664          "in": "query",
51665          "name": "watch",
51666          "type": "boolean",
51667          "uniqueItems": true
51668        }
51669      ]
51670    },
51671    "/apis/apps/v1/statefulsets": {
51672      "get": {
51673        "consumes": [
51674          "*/*"
51675        ],
51676        "description": "list or watch objects of kind StatefulSet",
51677        "operationId": "listAppsV1StatefulSetForAllNamespaces",
51678        "produces": [
51679          "application/json",
51680          "application/yaml",
51681          "application/vnd.kubernetes.protobuf",
51682          "application/json;stream=watch",
51683          "application/vnd.kubernetes.protobuf;stream=watch"
51684        ],
51685        "responses": {
51686          "200": {
51687            "description": "OK",
51688            "schema": {
51689              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
51690            }
51691          },
51692          "401": {
51693            "description": "Unauthorized"
51694          }
51695        },
51696        "schemes": [
51697          "https"
51698        ],
51699        "tags": [
51700          "apps_v1"
51701        ],
51702        "x-kubernetes-action": "list",
51703        "x-kubernetes-group-version-kind": {
51704          "group": "apps",
51705          "kind": "StatefulSet",
51706          "version": "v1"
51707        }
51708      },
51709      "parameters": [
51710        {
51711          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51712          "in": "query",
51713          "name": "allowWatchBookmarks",
51714          "type": "boolean",
51715          "uniqueItems": true
51716        },
51717        {
51718          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51719          "in": "query",
51720          "name": "continue",
51721          "type": "string",
51722          "uniqueItems": true
51723        },
51724        {
51725          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51726          "in": "query",
51727          "name": "fieldSelector",
51728          "type": "string",
51729          "uniqueItems": true
51730        },
51731        {
51732          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51733          "in": "query",
51734          "name": "labelSelector",
51735          "type": "string",
51736          "uniqueItems": true
51737        },
51738        {
51739          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51740          "in": "query",
51741          "name": "limit",
51742          "type": "integer",
51743          "uniqueItems": true
51744        },
51745        {
51746          "description": "If 'true', then the output is pretty printed.",
51747          "in": "query",
51748          "name": "pretty",
51749          "type": "string",
51750          "uniqueItems": true
51751        },
51752        {
51753          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51754          "in": "query",
51755          "name": "resourceVersion",
51756          "type": "string",
51757          "uniqueItems": true
51758        },
51759        {
51760          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51761          "in": "query",
51762          "name": "resourceVersionMatch",
51763          "type": "string",
51764          "uniqueItems": true
51765        },
51766        {
51767          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51768          "in": "query",
51769          "name": "timeoutSeconds",
51770          "type": "integer",
51771          "uniqueItems": true
51772        },
51773        {
51774          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51775          "in": "query",
51776          "name": "watch",
51777          "type": "boolean",
51778          "uniqueItems": true
51779        }
51780      ]
51781    },
51782    "/apis/apps/v1/watch/controllerrevisions": {
51783      "get": {
51784        "consumes": [
51785          "*/*"
51786        ],
51787        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
51788        "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces",
51789        "produces": [
51790          "application/json",
51791          "application/yaml",
51792          "application/vnd.kubernetes.protobuf",
51793          "application/json;stream=watch",
51794          "application/vnd.kubernetes.protobuf;stream=watch"
51795        ],
51796        "responses": {
51797          "200": {
51798            "description": "OK",
51799            "schema": {
51800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51801            }
51802          },
51803          "401": {
51804            "description": "Unauthorized"
51805          }
51806        },
51807        "schemes": [
51808          "https"
51809        ],
51810        "tags": [
51811          "apps_v1"
51812        ],
51813        "x-kubernetes-action": "watchlist",
51814        "x-kubernetes-group-version-kind": {
51815          "group": "apps",
51816          "kind": "ControllerRevision",
51817          "version": "v1"
51818        }
51819      },
51820      "parameters": [
51821        {
51822          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51823          "in": "query",
51824          "name": "allowWatchBookmarks",
51825          "type": "boolean",
51826          "uniqueItems": true
51827        },
51828        {
51829          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51830          "in": "query",
51831          "name": "continue",
51832          "type": "string",
51833          "uniqueItems": true
51834        },
51835        {
51836          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51837          "in": "query",
51838          "name": "fieldSelector",
51839          "type": "string",
51840          "uniqueItems": true
51841        },
51842        {
51843          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51844          "in": "query",
51845          "name": "labelSelector",
51846          "type": "string",
51847          "uniqueItems": true
51848        },
51849        {
51850          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51851          "in": "query",
51852          "name": "limit",
51853          "type": "integer",
51854          "uniqueItems": true
51855        },
51856        {
51857          "description": "If 'true', then the output is pretty printed.",
51858          "in": "query",
51859          "name": "pretty",
51860          "type": "string",
51861          "uniqueItems": true
51862        },
51863        {
51864          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51865          "in": "query",
51866          "name": "resourceVersion",
51867          "type": "string",
51868          "uniqueItems": true
51869        },
51870        {
51871          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51872          "in": "query",
51873          "name": "resourceVersionMatch",
51874          "type": "string",
51875          "uniqueItems": true
51876        },
51877        {
51878          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51879          "in": "query",
51880          "name": "timeoutSeconds",
51881          "type": "integer",
51882          "uniqueItems": true
51883        },
51884        {
51885          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51886          "in": "query",
51887          "name": "watch",
51888          "type": "boolean",
51889          "uniqueItems": true
51890        }
51891      ]
51892    },
51893    "/apis/apps/v1/watch/daemonsets": {
51894      "get": {
51895        "consumes": [
51896          "*/*"
51897        ],
51898        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
51899        "operationId": "watchAppsV1DaemonSetListForAllNamespaces",
51900        "produces": [
51901          "application/json",
51902          "application/yaml",
51903          "application/vnd.kubernetes.protobuf",
51904          "application/json;stream=watch",
51905          "application/vnd.kubernetes.protobuf;stream=watch"
51906        ],
51907        "responses": {
51908          "200": {
51909            "description": "OK",
51910            "schema": {
51911              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51912            }
51913          },
51914          "401": {
51915            "description": "Unauthorized"
51916          }
51917        },
51918        "schemes": [
51919          "https"
51920        ],
51921        "tags": [
51922          "apps_v1"
51923        ],
51924        "x-kubernetes-action": "watchlist",
51925        "x-kubernetes-group-version-kind": {
51926          "group": "apps",
51927          "kind": "DaemonSet",
51928          "version": "v1"
51929        }
51930      },
51931      "parameters": [
51932        {
51933          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
51934          "in": "query",
51935          "name": "allowWatchBookmarks",
51936          "type": "boolean",
51937          "uniqueItems": true
51938        },
51939        {
51940          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51941          "in": "query",
51942          "name": "continue",
51943          "type": "string",
51944          "uniqueItems": true
51945        },
51946        {
51947          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51948          "in": "query",
51949          "name": "fieldSelector",
51950          "type": "string",
51951          "uniqueItems": true
51952        },
51953        {
51954          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51955          "in": "query",
51956          "name": "labelSelector",
51957          "type": "string",
51958          "uniqueItems": true
51959        },
51960        {
51961          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51962          "in": "query",
51963          "name": "limit",
51964          "type": "integer",
51965          "uniqueItems": true
51966        },
51967        {
51968          "description": "If 'true', then the output is pretty printed.",
51969          "in": "query",
51970          "name": "pretty",
51971          "type": "string",
51972          "uniqueItems": true
51973        },
51974        {
51975          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51976          "in": "query",
51977          "name": "resourceVersion",
51978          "type": "string",
51979          "uniqueItems": true
51980        },
51981        {
51982          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51983          "in": "query",
51984          "name": "resourceVersionMatch",
51985          "type": "string",
51986          "uniqueItems": true
51987        },
51988        {
51989          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51990          "in": "query",
51991          "name": "timeoutSeconds",
51992          "type": "integer",
51993          "uniqueItems": true
51994        },
51995        {
51996          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51997          "in": "query",
51998          "name": "watch",
51999          "type": "boolean",
52000          "uniqueItems": true
52001        }
52002      ]
52003    },
52004    "/apis/apps/v1/watch/deployments": {
52005      "get": {
52006        "consumes": [
52007          "*/*"
52008        ],
52009        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
52010        "operationId": "watchAppsV1DeploymentListForAllNamespaces",
52011        "produces": [
52012          "application/json",
52013          "application/yaml",
52014          "application/vnd.kubernetes.protobuf",
52015          "application/json;stream=watch",
52016          "application/vnd.kubernetes.protobuf;stream=watch"
52017        ],
52018        "responses": {
52019          "200": {
52020            "description": "OK",
52021            "schema": {
52022              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52023            }
52024          },
52025          "401": {
52026            "description": "Unauthorized"
52027          }
52028        },
52029        "schemes": [
52030          "https"
52031        ],
52032        "tags": [
52033          "apps_v1"
52034        ],
52035        "x-kubernetes-action": "watchlist",
52036        "x-kubernetes-group-version-kind": {
52037          "group": "apps",
52038          "kind": "Deployment",
52039          "version": "v1"
52040        }
52041      },
52042      "parameters": [
52043        {
52044          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52045          "in": "query",
52046          "name": "allowWatchBookmarks",
52047          "type": "boolean",
52048          "uniqueItems": true
52049        },
52050        {
52051          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52052          "in": "query",
52053          "name": "continue",
52054          "type": "string",
52055          "uniqueItems": true
52056        },
52057        {
52058          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52059          "in": "query",
52060          "name": "fieldSelector",
52061          "type": "string",
52062          "uniqueItems": true
52063        },
52064        {
52065          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52066          "in": "query",
52067          "name": "labelSelector",
52068          "type": "string",
52069          "uniqueItems": true
52070        },
52071        {
52072          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52073          "in": "query",
52074          "name": "limit",
52075          "type": "integer",
52076          "uniqueItems": true
52077        },
52078        {
52079          "description": "If 'true', then the output is pretty printed.",
52080          "in": "query",
52081          "name": "pretty",
52082          "type": "string",
52083          "uniqueItems": true
52084        },
52085        {
52086          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52087          "in": "query",
52088          "name": "resourceVersion",
52089          "type": "string",
52090          "uniqueItems": true
52091        },
52092        {
52093          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52094          "in": "query",
52095          "name": "resourceVersionMatch",
52096          "type": "string",
52097          "uniqueItems": true
52098        },
52099        {
52100          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52101          "in": "query",
52102          "name": "timeoutSeconds",
52103          "type": "integer",
52104          "uniqueItems": true
52105        },
52106        {
52107          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52108          "in": "query",
52109          "name": "watch",
52110          "type": "boolean",
52111          "uniqueItems": true
52112        }
52113      ]
52114    },
52115    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": {
52116      "get": {
52117        "consumes": [
52118          "*/*"
52119        ],
52120        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
52121        "operationId": "watchAppsV1NamespacedControllerRevisionList",
52122        "produces": [
52123          "application/json",
52124          "application/yaml",
52125          "application/vnd.kubernetes.protobuf",
52126          "application/json;stream=watch",
52127          "application/vnd.kubernetes.protobuf;stream=watch"
52128        ],
52129        "responses": {
52130          "200": {
52131            "description": "OK",
52132            "schema": {
52133              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52134            }
52135          },
52136          "401": {
52137            "description": "Unauthorized"
52138          }
52139        },
52140        "schemes": [
52141          "https"
52142        ],
52143        "tags": [
52144          "apps_v1"
52145        ],
52146        "x-kubernetes-action": "watchlist",
52147        "x-kubernetes-group-version-kind": {
52148          "group": "apps",
52149          "kind": "ControllerRevision",
52150          "version": "v1"
52151        }
52152      },
52153      "parameters": [
52154        {
52155          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52156          "in": "query",
52157          "name": "allowWatchBookmarks",
52158          "type": "boolean",
52159          "uniqueItems": true
52160        },
52161        {
52162          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52163          "in": "query",
52164          "name": "continue",
52165          "type": "string",
52166          "uniqueItems": true
52167        },
52168        {
52169          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52170          "in": "query",
52171          "name": "fieldSelector",
52172          "type": "string",
52173          "uniqueItems": true
52174        },
52175        {
52176          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52177          "in": "query",
52178          "name": "labelSelector",
52179          "type": "string",
52180          "uniqueItems": true
52181        },
52182        {
52183          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52184          "in": "query",
52185          "name": "limit",
52186          "type": "integer",
52187          "uniqueItems": true
52188        },
52189        {
52190          "description": "object name and auth scope, such as for teams and projects",
52191          "in": "path",
52192          "name": "namespace",
52193          "required": true,
52194          "type": "string",
52195          "uniqueItems": true
52196        },
52197        {
52198          "description": "If 'true', then the output is pretty printed.",
52199          "in": "query",
52200          "name": "pretty",
52201          "type": "string",
52202          "uniqueItems": true
52203        },
52204        {
52205          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52206          "in": "query",
52207          "name": "resourceVersion",
52208          "type": "string",
52209          "uniqueItems": true
52210        },
52211        {
52212          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52213          "in": "query",
52214          "name": "resourceVersionMatch",
52215          "type": "string",
52216          "uniqueItems": true
52217        },
52218        {
52219          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52220          "in": "query",
52221          "name": "timeoutSeconds",
52222          "type": "integer",
52223          "uniqueItems": true
52224        },
52225        {
52226          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52227          "in": "query",
52228          "name": "watch",
52229          "type": "boolean",
52230          "uniqueItems": true
52231        }
52232      ]
52233    },
52234    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": {
52235      "get": {
52236        "consumes": [
52237          "*/*"
52238        ],
52239        "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.",
52240        "operationId": "watchAppsV1NamespacedControllerRevision",
52241        "produces": [
52242          "application/json",
52243          "application/yaml",
52244          "application/vnd.kubernetes.protobuf",
52245          "application/json;stream=watch",
52246          "application/vnd.kubernetes.protobuf;stream=watch"
52247        ],
52248        "responses": {
52249          "200": {
52250            "description": "OK",
52251            "schema": {
52252              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52253            }
52254          },
52255          "401": {
52256            "description": "Unauthorized"
52257          }
52258        },
52259        "schemes": [
52260          "https"
52261        ],
52262        "tags": [
52263          "apps_v1"
52264        ],
52265        "x-kubernetes-action": "watch",
52266        "x-kubernetes-group-version-kind": {
52267          "group": "apps",
52268          "kind": "ControllerRevision",
52269          "version": "v1"
52270        }
52271      },
52272      "parameters": [
52273        {
52274          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52275          "in": "query",
52276          "name": "allowWatchBookmarks",
52277          "type": "boolean",
52278          "uniqueItems": true
52279        },
52280        {
52281          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52282          "in": "query",
52283          "name": "continue",
52284          "type": "string",
52285          "uniqueItems": true
52286        },
52287        {
52288          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52289          "in": "query",
52290          "name": "fieldSelector",
52291          "type": "string",
52292          "uniqueItems": true
52293        },
52294        {
52295          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52296          "in": "query",
52297          "name": "labelSelector",
52298          "type": "string",
52299          "uniqueItems": true
52300        },
52301        {
52302          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52303          "in": "query",
52304          "name": "limit",
52305          "type": "integer",
52306          "uniqueItems": true
52307        },
52308        {
52309          "description": "name of the ControllerRevision",
52310          "in": "path",
52311          "name": "name",
52312          "required": true,
52313          "type": "string",
52314          "uniqueItems": true
52315        },
52316        {
52317          "description": "object name and auth scope, such as for teams and projects",
52318          "in": "path",
52319          "name": "namespace",
52320          "required": true,
52321          "type": "string",
52322          "uniqueItems": true
52323        },
52324        {
52325          "description": "If 'true', then the output is pretty printed.",
52326          "in": "query",
52327          "name": "pretty",
52328          "type": "string",
52329          "uniqueItems": true
52330        },
52331        {
52332          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52333          "in": "query",
52334          "name": "resourceVersion",
52335          "type": "string",
52336          "uniqueItems": true
52337        },
52338        {
52339          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52340          "in": "query",
52341          "name": "resourceVersionMatch",
52342          "type": "string",
52343          "uniqueItems": true
52344        },
52345        {
52346          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52347          "in": "query",
52348          "name": "timeoutSeconds",
52349          "type": "integer",
52350          "uniqueItems": true
52351        },
52352        {
52353          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52354          "in": "query",
52355          "name": "watch",
52356          "type": "boolean",
52357          "uniqueItems": true
52358        }
52359      ]
52360    },
52361    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": {
52362      "get": {
52363        "consumes": [
52364          "*/*"
52365        ],
52366        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
52367        "operationId": "watchAppsV1NamespacedDaemonSetList",
52368        "produces": [
52369          "application/json",
52370          "application/yaml",
52371          "application/vnd.kubernetes.protobuf",
52372          "application/json;stream=watch",
52373          "application/vnd.kubernetes.protobuf;stream=watch"
52374        ],
52375        "responses": {
52376          "200": {
52377            "description": "OK",
52378            "schema": {
52379              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52380            }
52381          },
52382          "401": {
52383            "description": "Unauthorized"
52384          }
52385        },
52386        "schemes": [
52387          "https"
52388        ],
52389        "tags": [
52390          "apps_v1"
52391        ],
52392        "x-kubernetes-action": "watchlist",
52393        "x-kubernetes-group-version-kind": {
52394          "group": "apps",
52395          "kind": "DaemonSet",
52396          "version": "v1"
52397        }
52398      },
52399      "parameters": [
52400        {
52401          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52402          "in": "query",
52403          "name": "allowWatchBookmarks",
52404          "type": "boolean",
52405          "uniqueItems": true
52406        },
52407        {
52408          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52409          "in": "query",
52410          "name": "continue",
52411          "type": "string",
52412          "uniqueItems": true
52413        },
52414        {
52415          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52416          "in": "query",
52417          "name": "fieldSelector",
52418          "type": "string",
52419          "uniqueItems": true
52420        },
52421        {
52422          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52423          "in": "query",
52424          "name": "labelSelector",
52425          "type": "string",
52426          "uniqueItems": true
52427        },
52428        {
52429          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52430          "in": "query",
52431          "name": "limit",
52432          "type": "integer",
52433          "uniqueItems": true
52434        },
52435        {
52436          "description": "object name and auth scope, such as for teams and projects",
52437          "in": "path",
52438          "name": "namespace",
52439          "required": true,
52440          "type": "string",
52441          "uniqueItems": true
52442        },
52443        {
52444          "description": "If 'true', then the output is pretty printed.",
52445          "in": "query",
52446          "name": "pretty",
52447          "type": "string",
52448          "uniqueItems": true
52449        },
52450        {
52451          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52452          "in": "query",
52453          "name": "resourceVersion",
52454          "type": "string",
52455          "uniqueItems": true
52456        },
52457        {
52458          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52459          "in": "query",
52460          "name": "resourceVersionMatch",
52461          "type": "string",
52462          "uniqueItems": true
52463        },
52464        {
52465          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52466          "in": "query",
52467          "name": "timeoutSeconds",
52468          "type": "integer",
52469          "uniqueItems": true
52470        },
52471        {
52472          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52473          "in": "query",
52474          "name": "watch",
52475          "type": "boolean",
52476          "uniqueItems": true
52477        }
52478      ]
52479    },
52480    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": {
52481      "get": {
52482        "consumes": [
52483          "*/*"
52484        ],
52485        "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.",
52486        "operationId": "watchAppsV1NamespacedDaemonSet",
52487        "produces": [
52488          "application/json",
52489          "application/yaml",
52490          "application/vnd.kubernetes.protobuf",
52491          "application/json;stream=watch",
52492          "application/vnd.kubernetes.protobuf;stream=watch"
52493        ],
52494        "responses": {
52495          "200": {
52496            "description": "OK",
52497            "schema": {
52498              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52499            }
52500          },
52501          "401": {
52502            "description": "Unauthorized"
52503          }
52504        },
52505        "schemes": [
52506          "https"
52507        ],
52508        "tags": [
52509          "apps_v1"
52510        ],
52511        "x-kubernetes-action": "watch",
52512        "x-kubernetes-group-version-kind": {
52513          "group": "apps",
52514          "kind": "DaemonSet",
52515          "version": "v1"
52516        }
52517      },
52518      "parameters": [
52519        {
52520          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52521          "in": "query",
52522          "name": "allowWatchBookmarks",
52523          "type": "boolean",
52524          "uniqueItems": true
52525        },
52526        {
52527          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52528          "in": "query",
52529          "name": "continue",
52530          "type": "string",
52531          "uniqueItems": true
52532        },
52533        {
52534          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52535          "in": "query",
52536          "name": "fieldSelector",
52537          "type": "string",
52538          "uniqueItems": true
52539        },
52540        {
52541          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52542          "in": "query",
52543          "name": "labelSelector",
52544          "type": "string",
52545          "uniqueItems": true
52546        },
52547        {
52548          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52549          "in": "query",
52550          "name": "limit",
52551          "type": "integer",
52552          "uniqueItems": true
52553        },
52554        {
52555          "description": "name of the DaemonSet",
52556          "in": "path",
52557          "name": "name",
52558          "required": true,
52559          "type": "string",
52560          "uniqueItems": true
52561        },
52562        {
52563          "description": "object name and auth scope, such as for teams and projects",
52564          "in": "path",
52565          "name": "namespace",
52566          "required": true,
52567          "type": "string",
52568          "uniqueItems": true
52569        },
52570        {
52571          "description": "If 'true', then the output is pretty printed.",
52572          "in": "query",
52573          "name": "pretty",
52574          "type": "string",
52575          "uniqueItems": true
52576        },
52577        {
52578          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52579          "in": "query",
52580          "name": "resourceVersion",
52581          "type": "string",
52582          "uniqueItems": true
52583        },
52584        {
52585          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52586          "in": "query",
52587          "name": "resourceVersionMatch",
52588          "type": "string",
52589          "uniqueItems": true
52590        },
52591        {
52592          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52593          "in": "query",
52594          "name": "timeoutSeconds",
52595          "type": "integer",
52596          "uniqueItems": true
52597        },
52598        {
52599          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52600          "in": "query",
52601          "name": "watch",
52602          "type": "boolean",
52603          "uniqueItems": true
52604        }
52605      ]
52606    },
52607    "/apis/apps/v1/watch/namespaces/{namespace}/deployments": {
52608      "get": {
52609        "consumes": [
52610          "*/*"
52611        ],
52612        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
52613        "operationId": "watchAppsV1NamespacedDeploymentList",
52614        "produces": [
52615          "application/json",
52616          "application/yaml",
52617          "application/vnd.kubernetes.protobuf",
52618          "application/json;stream=watch",
52619          "application/vnd.kubernetes.protobuf;stream=watch"
52620        ],
52621        "responses": {
52622          "200": {
52623            "description": "OK",
52624            "schema": {
52625              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52626            }
52627          },
52628          "401": {
52629            "description": "Unauthorized"
52630          }
52631        },
52632        "schemes": [
52633          "https"
52634        ],
52635        "tags": [
52636          "apps_v1"
52637        ],
52638        "x-kubernetes-action": "watchlist",
52639        "x-kubernetes-group-version-kind": {
52640          "group": "apps",
52641          "kind": "Deployment",
52642          "version": "v1"
52643        }
52644      },
52645      "parameters": [
52646        {
52647          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52648          "in": "query",
52649          "name": "allowWatchBookmarks",
52650          "type": "boolean",
52651          "uniqueItems": true
52652        },
52653        {
52654          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52655          "in": "query",
52656          "name": "continue",
52657          "type": "string",
52658          "uniqueItems": true
52659        },
52660        {
52661          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52662          "in": "query",
52663          "name": "fieldSelector",
52664          "type": "string",
52665          "uniqueItems": true
52666        },
52667        {
52668          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52669          "in": "query",
52670          "name": "labelSelector",
52671          "type": "string",
52672          "uniqueItems": true
52673        },
52674        {
52675          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52676          "in": "query",
52677          "name": "limit",
52678          "type": "integer",
52679          "uniqueItems": true
52680        },
52681        {
52682          "description": "object name and auth scope, such as for teams and projects",
52683          "in": "path",
52684          "name": "namespace",
52685          "required": true,
52686          "type": "string",
52687          "uniqueItems": true
52688        },
52689        {
52690          "description": "If 'true', then the output is pretty printed.",
52691          "in": "query",
52692          "name": "pretty",
52693          "type": "string",
52694          "uniqueItems": true
52695        },
52696        {
52697          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52698          "in": "query",
52699          "name": "resourceVersion",
52700          "type": "string",
52701          "uniqueItems": true
52702        },
52703        {
52704          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52705          "in": "query",
52706          "name": "resourceVersionMatch",
52707          "type": "string",
52708          "uniqueItems": true
52709        },
52710        {
52711          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52712          "in": "query",
52713          "name": "timeoutSeconds",
52714          "type": "integer",
52715          "uniqueItems": true
52716        },
52717        {
52718          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52719          "in": "query",
52720          "name": "watch",
52721          "type": "boolean",
52722          "uniqueItems": true
52723        }
52724      ]
52725    },
52726    "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": {
52727      "get": {
52728        "consumes": [
52729          "*/*"
52730        ],
52731        "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.",
52732        "operationId": "watchAppsV1NamespacedDeployment",
52733        "produces": [
52734          "application/json",
52735          "application/yaml",
52736          "application/vnd.kubernetes.protobuf",
52737          "application/json;stream=watch",
52738          "application/vnd.kubernetes.protobuf;stream=watch"
52739        ],
52740        "responses": {
52741          "200": {
52742            "description": "OK",
52743            "schema": {
52744              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52745            }
52746          },
52747          "401": {
52748            "description": "Unauthorized"
52749          }
52750        },
52751        "schemes": [
52752          "https"
52753        ],
52754        "tags": [
52755          "apps_v1"
52756        ],
52757        "x-kubernetes-action": "watch",
52758        "x-kubernetes-group-version-kind": {
52759          "group": "apps",
52760          "kind": "Deployment",
52761          "version": "v1"
52762        }
52763      },
52764      "parameters": [
52765        {
52766          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52767          "in": "query",
52768          "name": "allowWatchBookmarks",
52769          "type": "boolean",
52770          "uniqueItems": true
52771        },
52772        {
52773          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52774          "in": "query",
52775          "name": "continue",
52776          "type": "string",
52777          "uniqueItems": true
52778        },
52779        {
52780          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52781          "in": "query",
52782          "name": "fieldSelector",
52783          "type": "string",
52784          "uniqueItems": true
52785        },
52786        {
52787          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52788          "in": "query",
52789          "name": "labelSelector",
52790          "type": "string",
52791          "uniqueItems": true
52792        },
52793        {
52794          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52795          "in": "query",
52796          "name": "limit",
52797          "type": "integer",
52798          "uniqueItems": true
52799        },
52800        {
52801          "description": "name of the Deployment",
52802          "in": "path",
52803          "name": "name",
52804          "required": true,
52805          "type": "string",
52806          "uniqueItems": true
52807        },
52808        {
52809          "description": "object name and auth scope, such as for teams and projects",
52810          "in": "path",
52811          "name": "namespace",
52812          "required": true,
52813          "type": "string",
52814          "uniqueItems": true
52815        },
52816        {
52817          "description": "If 'true', then the output is pretty printed.",
52818          "in": "query",
52819          "name": "pretty",
52820          "type": "string",
52821          "uniqueItems": true
52822        },
52823        {
52824          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52825          "in": "query",
52826          "name": "resourceVersion",
52827          "type": "string",
52828          "uniqueItems": true
52829        },
52830        {
52831          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52832          "in": "query",
52833          "name": "resourceVersionMatch",
52834          "type": "string",
52835          "uniqueItems": true
52836        },
52837        {
52838          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52839          "in": "query",
52840          "name": "timeoutSeconds",
52841          "type": "integer",
52842          "uniqueItems": true
52843        },
52844        {
52845          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52846          "in": "query",
52847          "name": "watch",
52848          "type": "boolean",
52849          "uniqueItems": true
52850        }
52851      ]
52852    },
52853    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": {
52854      "get": {
52855        "consumes": [
52856          "*/*"
52857        ],
52858        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
52859        "operationId": "watchAppsV1NamespacedReplicaSetList",
52860        "produces": [
52861          "application/json",
52862          "application/yaml",
52863          "application/vnd.kubernetes.protobuf",
52864          "application/json;stream=watch",
52865          "application/vnd.kubernetes.protobuf;stream=watch"
52866        ],
52867        "responses": {
52868          "200": {
52869            "description": "OK",
52870            "schema": {
52871              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52872            }
52873          },
52874          "401": {
52875            "description": "Unauthorized"
52876          }
52877        },
52878        "schemes": [
52879          "https"
52880        ],
52881        "tags": [
52882          "apps_v1"
52883        ],
52884        "x-kubernetes-action": "watchlist",
52885        "x-kubernetes-group-version-kind": {
52886          "group": "apps",
52887          "kind": "ReplicaSet",
52888          "version": "v1"
52889        }
52890      },
52891      "parameters": [
52892        {
52893          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52894          "in": "query",
52895          "name": "allowWatchBookmarks",
52896          "type": "boolean",
52897          "uniqueItems": true
52898        },
52899        {
52900          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52901          "in": "query",
52902          "name": "continue",
52903          "type": "string",
52904          "uniqueItems": true
52905        },
52906        {
52907          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52908          "in": "query",
52909          "name": "fieldSelector",
52910          "type": "string",
52911          "uniqueItems": true
52912        },
52913        {
52914          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52915          "in": "query",
52916          "name": "labelSelector",
52917          "type": "string",
52918          "uniqueItems": true
52919        },
52920        {
52921          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52922          "in": "query",
52923          "name": "limit",
52924          "type": "integer",
52925          "uniqueItems": true
52926        },
52927        {
52928          "description": "object name and auth scope, such as for teams and projects",
52929          "in": "path",
52930          "name": "namespace",
52931          "required": true,
52932          "type": "string",
52933          "uniqueItems": true
52934        },
52935        {
52936          "description": "If 'true', then the output is pretty printed.",
52937          "in": "query",
52938          "name": "pretty",
52939          "type": "string",
52940          "uniqueItems": true
52941        },
52942        {
52943          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52944          "in": "query",
52945          "name": "resourceVersion",
52946          "type": "string",
52947          "uniqueItems": true
52948        },
52949        {
52950          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52951          "in": "query",
52952          "name": "resourceVersionMatch",
52953          "type": "string",
52954          "uniqueItems": true
52955        },
52956        {
52957          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52958          "in": "query",
52959          "name": "timeoutSeconds",
52960          "type": "integer",
52961          "uniqueItems": true
52962        },
52963        {
52964          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52965          "in": "query",
52966          "name": "watch",
52967          "type": "boolean",
52968          "uniqueItems": true
52969        }
52970      ]
52971    },
52972    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": {
52973      "get": {
52974        "consumes": [
52975          "*/*"
52976        ],
52977        "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.",
52978        "operationId": "watchAppsV1NamespacedReplicaSet",
52979        "produces": [
52980          "application/json",
52981          "application/yaml",
52982          "application/vnd.kubernetes.protobuf",
52983          "application/json;stream=watch",
52984          "application/vnd.kubernetes.protobuf;stream=watch"
52985        ],
52986        "responses": {
52987          "200": {
52988            "description": "OK",
52989            "schema": {
52990              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
52991            }
52992          },
52993          "401": {
52994            "description": "Unauthorized"
52995          }
52996        },
52997        "schemes": [
52998          "https"
52999        ],
53000        "tags": [
53001          "apps_v1"
53002        ],
53003        "x-kubernetes-action": "watch",
53004        "x-kubernetes-group-version-kind": {
53005          "group": "apps",
53006          "kind": "ReplicaSet",
53007          "version": "v1"
53008        }
53009      },
53010      "parameters": [
53011        {
53012          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53013          "in": "query",
53014          "name": "allowWatchBookmarks",
53015          "type": "boolean",
53016          "uniqueItems": true
53017        },
53018        {
53019          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53020          "in": "query",
53021          "name": "continue",
53022          "type": "string",
53023          "uniqueItems": true
53024        },
53025        {
53026          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53027          "in": "query",
53028          "name": "fieldSelector",
53029          "type": "string",
53030          "uniqueItems": true
53031        },
53032        {
53033          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53034          "in": "query",
53035          "name": "labelSelector",
53036          "type": "string",
53037          "uniqueItems": true
53038        },
53039        {
53040          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53041          "in": "query",
53042          "name": "limit",
53043          "type": "integer",
53044          "uniqueItems": true
53045        },
53046        {
53047          "description": "name of the ReplicaSet",
53048          "in": "path",
53049          "name": "name",
53050          "required": true,
53051          "type": "string",
53052          "uniqueItems": true
53053        },
53054        {
53055          "description": "object name and auth scope, such as for teams and projects",
53056          "in": "path",
53057          "name": "namespace",
53058          "required": true,
53059          "type": "string",
53060          "uniqueItems": true
53061        },
53062        {
53063          "description": "If 'true', then the output is pretty printed.",
53064          "in": "query",
53065          "name": "pretty",
53066          "type": "string",
53067          "uniqueItems": true
53068        },
53069        {
53070          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53071          "in": "query",
53072          "name": "resourceVersion",
53073          "type": "string",
53074          "uniqueItems": true
53075        },
53076        {
53077          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53078          "in": "query",
53079          "name": "resourceVersionMatch",
53080          "type": "string",
53081          "uniqueItems": true
53082        },
53083        {
53084          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53085          "in": "query",
53086          "name": "timeoutSeconds",
53087          "type": "integer",
53088          "uniqueItems": true
53089        },
53090        {
53091          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53092          "in": "query",
53093          "name": "watch",
53094          "type": "boolean",
53095          "uniqueItems": true
53096        }
53097      ]
53098    },
53099    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": {
53100      "get": {
53101        "consumes": [
53102          "*/*"
53103        ],
53104        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
53105        "operationId": "watchAppsV1NamespacedStatefulSetList",
53106        "produces": [
53107          "application/json",
53108          "application/yaml",
53109          "application/vnd.kubernetes.protobuf",
53110          "application/json;stream=watch",
53111          "application/vnd.kubernetes.protobuf;stream=watch"
53112        ],
53113        "responses": {
53114          "200": {
53115            "description": "OK",
53116            "schema": {
53117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53118            }
53119          },
53120          "401": {
53121            "description": "Unauthorized"
53122          }
53123        },
53124        "schemes": [
53125          "https"
53126        ],
53127        "tags": [
53128          "apps_v1"
53129        ],
53130        "x-kubernetes-action": "watchlist",
53131        "x-kubernetes-group-version-kind": {
53132          "group": "apps",
53133          "kind": "StatefulSet",
53134          "version": "v1"
53135        }
53136      },
53137      "parameters": [
53138        {
53139          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53140          "in": "query",
53141          "name": "allowWatchBookmarks",
53142          "type": "boolean",
53143          "uniqueItems": true
53144        },
53145        {
53146          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53147          "in": "query",
53148          "name": "continue",
53149          "type": "string",
53150          "uniqueItems": true
53151        },
53152        {
53153          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53154          "in": "query",
53155          "name": "fieldSelector",
53156          "type": "string",
53157          "uniqueItems": true
53158        },
53159        {
53160          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53161          "in": "query",
53162          "name": "labelSelector",
53163          "type": "string",
53164          "uniqueItems": true
53165        },
53166        {
53167          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53168          "in": "query",
53169          "name": "limit",
53170          "type": "integer",
53171          "uniqueItems": true
53172        },
53173        {
53174          "description": "object name and auth scope, such as for teams and projects",
53175          "in": "path",
53176          "name": "namespace",
53177          "required": true,
53178          "type": "string",
53179          "uniqueItems": true
53180        },
53181        {
53182          "description": "If 'true', then the output is pretty printed.",
53183          "in": "query",
53184          "name": "pretty",
53185          "type": "string",
53186          "uniqueItems": true
53187        },
53188        {
53189          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53190          "in": "query",
53191          "name": "resourceVersion",
53192          "type": "string",
53193          "uniqueItems": true
53194        },
53195        {
53196          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53197          "in": "query",
53198          "name": "resourceVersionMatch",
53199          "type": "string",
53200          "uniqueItems": true
53201        },
53202        {
53203          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53204          "in": "query",
53205          "name": "timeoutSeconds",
53206          "type": "integer",
53207          "uniqueItems": true
53208        },
53209        {
53210          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53211          "in": "query",
53212          "name": "watch",
53213          "type": "boolean",
53214          "uniqueItems": true
53215        }
53216      ]
53217    },
53218    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": {
53219      "get": {
53220        "consumes": [
53221          "*/*"
53222        ],
53223        "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.",
53224        "operationId": "watchAppsV1NamespacedStatefulSet",
53225        "produces": [
53226          "application/json",
53227          "application/yaml",
53228          "application/vnd.kubernetes.protobuf",
53229          "application/json;stream=watch",
53230          "application/vnd.kubernetes.protobuf;stream=watch"
53231        ],
53232        "responses": {
53233          "200": {
53234            "description": "OK",
53235            "schema": {
53236              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53237            }
53238          },
53239          "401": {
53240            "description": "Unauthorized"
53241          }
53242        },
53243        "schemes": [
53244          "https"
53245        ],
53246        "tags": [
53247          "apps_v1"
53248        ],
53249        "x-kubernetes-action": "watch",
53250        "x-kubernetes-group-version-kind": {
53251          "group": "apps",
53252          "kind": "StatefulSet",
53253          "version": "v1"
53254        }
53255      },
53256      "parameters": [
53257        {
53258          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53259          "in": "query",
53260          "name": "allowWatchBookmarks",
53261          "type": "boolean",
53262          "uniqueItems": true
53263        },
53264        {
53265          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53266          "in": "query",
53267          "name": "continue",
53268          "type": "string",
53269          "uniqueItems": true
53270        },
53271        {
53272          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53273          "in": "query",
53274          "name": "fieldSelector",
53275          "type": "string",
53276          "uniqueItems": true
53277        },
53278        {
53279          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53280          "in": "query",
53281          "name": "labelSelector",
53282          "type": "string",
53283          "uniqueItems": true
53284        },
53285        {
53286          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53287          "in": "query",
53288          "name": "limit",
53289          "type": "integer",
53290          "uniqueItems": true
53291        },
53292        {
53293          "description": "name of the StatefulSet",
53294          "in": "path",
53295          "name": "name",
53296          "required": true,
53297          "type": "string",
53298          "uniqueItems": true
53299        },
53300        {
53301          "description": "object name and auth scope, such as for teams and projects",
53302          "in": "path",
53303          "name": "namespace",
53304          "required": true,
53305          "type": "string",
53306          "uniqueItems": true
53307        },
53308        {
53309          "description": "If 'true', then the output is pretty printed.",
53310          "in": "query",
53311          "name": "pretty",
53312          "type": "string",
53313          "uniqueItems": true
53314        },
53315        {
53316          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53317          "in": "query",
53318          "name": "resourceVersion",
53319          "type": "string",
53320          "uniqueItems": true
53321        },
53322        {
53323          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53324          "in": "query",
53325          "name": "resourceVersionMatch",
53326          "type": "string",
53327          "uniqueItems": true
53328        },
53329        {
53330          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53331          "in": "query",
53332          "name": "timeoutSeconds",
53333          "type": "integer",
53334          "uniqueItems": true
53335        },
53336        {
53337          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53338          "in": "query",
53339          "name": "watch",
53340          "type": "boolean",
53341          "uniqueItems": true
53342        }
53343      ]
53344    },
53345    "/apis/apps/v1/watch/replicasets": {
53346      "get": {
53347        "consumes": [
53348          "*/*"
53349        ],
53350        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
53351        "operationId": "watchAppsV1ReplicaSetListForAllNamespaces",
53352        "produces": [
53353          "application/json",
53354          "application/yaml",
53355          "application/vnd.kubernetes.protobuf",
53356          "application/json;stream=watch",
53357          "application/vnd.kubernetes.protobuf;stream=watch"
53358        ],
53359        "responses": {
53360          "200": {
53361            "description": "OK",
53362            "schema": {
53363              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53364            }
53365          },
53366          "401": {
53367            "description": "Unauthorized"
53368          }
53369        },
53370        "schemes": [
53371          "https"
53372        ],
53373        "tags": [
53374          "apps_v1"
53375        ],
53376        "x-kubernetes-action": "watchlist",
53377        "x-kubernetes-group-version-kind": {
53378          "group": "apps",
53379          "kind": "ReplicaSet",
53380          "version": "v1"
53381        }
53382      },
53383      "parameters": [
53384        {
53385          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53386          "in": "query",
53387          "name": "allowWatchBookmarks",
53388          "type": "boolean",
53389          "uniqueItems": true
53390        },
53391        {
53392          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53393          "in": "query",
53394          "name": "continue",
53395          "type": "string",
53396          "uniqueItems": true
53397        },
53398        {
53399          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53400          "in": "query",
53401          "name": "fieldSelector",
53402          "type": "string",
53403          "uniqueItems": true
53404        },
53405        {
53406          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53407          "in": "query",
53408          "name": "labelSelector",
53409          "type": "string",
53410          "uniqueItems": true
53411        },
53412        {
53413          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53414          "in": "query",
53415          "name": "limit",
53416          "type": "integer",
53417          "uniqueItems": true
53418        },
53419        {
53420          "description": "If 'true', then the output is pretty printed.",
53421          "in": "query",
53422          "name": "pretty",
53423          "type": "string",
53424          "uniqueItems": true
53425        },
53426        {
53427          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53428          "in": "query",
53429          "name": "resourceVersion",
53430          "type": "string",
53431          "uniqueItems": true
53432        },
53433        {
53434          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53435          "in": "query",
53436          "name": "resourceVersionMatch",
53437          "type": "string",
53438          "uniqueItems": true
53439        },
53440        {
53441          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53442          "in": "query",
53443          "name": "timeoutSeconds",
53444          "type": "integer",
53445          "uniqueItems": true
53446        },
53447        {
53448          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53449          "in": "query",
53450          "name": "watch",
53451          "type": "boolean",
53452          "uniqueItems": true
53453        }
53454      ]
53455    },
53456    "/apis/apps/v1/watch/statefulsets": {
53457      "get": {
53458        "consumes": [
53459          "*/*"
53460        ],
53461        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
53462        "operationId": "watchAppsV1StatefulSetListForAllNamespaces",
53463        "produces": [
53464          "application/json",
53465          "application/yaml",
53466          "application/vnd.kubernetes.protobuf",
53467          "application/json;stream=watch",
53468          "application/vnd.kubernetes.protobuf;stream=watch"
53469        ],
53470        "responses": {
53471          "200": {
53472            "description": "OK",
53473            "schema": {
53474              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53475            }
53476          },
53477          "401": {
53478            "description": "Unauthorized"
53479          }
53480        },
53481        "schemes": [
53482          "https"
53483        ],
53484        "tags": [
53485          "apps_v1"
53486        ],
53487        "x-kubernetes-action": "watchlist",
53488        "x-kubernetes-group-version-kind": {
53489          "group": "apps",
53490          "kind": "StatefulSet",
53491          "version": "v1"
53492        }
53493      },
53494      "parameters": [
53495        {
53496          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
53497          "in": "query",
53498          "name": "allowWatchBookmarks",
53499          "type": "boolean",
53500          "uniqueItems": true
53501        },
53502        {
53503          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53504          "in": "query",
53505          "name": "continue",
53506          "type": "string",
53507          "uniqueItems": true
53508        },
53509        {
53510          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53511          "in": "query",
53512          "name": "fieldSelector",
53513          "type": "string",
53514          "uniqueItems": true
53515        },
53516        {
53517          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53518          "in": "query",
53519          "name": "labelSelector",
53520          "type": "string",
53521          "uniqueItems": true
53522        },
53523        {
53524          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53525          "in": "query",
53526          "name": "limit",
53527          "type": "integer",
53528          "uniqueItems": true
53529        },
53530        {
53531          "description": "If 'true', then the output is pretty printed.",
53532          "in": "query",
53533          "name": "pretty",
53534          "type": "string",
53535          "uniqueItems": true
53536        },
53537        {
53538          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53539          "in": "query",
53540          "name": "resourceVersion",
53541          "type": "string",
53542          "uniqueItems": true
53543        },
53544        {
53545          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53546          "in": "query",
53547          "name": "resourceVersionMatch",
53548          "type": "string",
53549          "uniqueItems": true
53550        },
53551        {
53552          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53553          "in": "query",
53554          "name": "timeoutSeconds",
53555          "type": "integer",
53556          "uniqueItems": true
53557        },
53558        {
53559          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53560          "in": "query",
53561          "name": "watch",
53562          "type": "boolean",
53563          "uniqueItems": true
53564        }
53565      ]
53566    },
53567    "/apis/authentication.k8s.io/": {
53568      "get": {
53569        "consumes": [
53570          "application/json",
53571          "application/yaml",
53572          "application/vnd.kubernetes.protobuf"
53573        ],
53574        "description": "get information of a group",
53575        "operationId": "getAuthenticationAPIGroup",
53576        "produces": [
53577          "application/json",
53578          "application/yaml",
53579          "application/vnd.kubernetes.protobuf"
53580        ],
53581        "responses": {
53582          "200": {
53583            "description": "OK",
53584            "schema": {
53585              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
53586            }
53587          },
53588          "401": {
53589            "description": "Unauthorized"
53590          }
53591        },
53592        "schemes": [
53593          "https"
53594        ],
53595        "tags": [
53596          "authentication"
53597        ]
53598      }
53599    },
53600    "/apis/authentication.k8s.io/v1/": {
53601      "get": {
53602        "consumes": [
53603          "application/json",
53604          "application/yaml",
53605          "application/vnd.kubernetes.protobuf"
53606        ],
53607        "description": "get available resources",
53608        "operationId": "getAuthenticationV1APIResources",
53609        "produces": [
53610          "application/json",
53611          "application/yaml",
53612          "application/vnd.kubernetes.protobuf"
53613        ],
53614        "responses": {
53615          "200": {
53616            "description": "OK",
53617            "schema": {
53618              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53619            }
53620          },
53621          "401": {
53622            "description": "Unauthorized"
53623          }
53624        },
53625        "schemes": [
53626          "https"
53627        ],
53628        "tags": [
53629          "authentication_v1"
53630        ]
53631      }
53632    },
53633    "/apis/authentication.k8s.io/v1/tokenreviews": {
53634      "parameters": [
53635        {
53636          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53637          "in": "query",
53638          "name": "dryRun",
53639          "type": "string",
53640          "uniqueItems": true
53641        },
53642        {
53643          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53644          "in": "query",
53645          "name": "fieldManager",
53646          "type": "string",
53647          "uniqueItems": true
53648        },
53649        {
53650          "description": "If 'true', then the output is pretty printed.",
53651          "in": "query",
53652          "name": "pretty",
53653          "type": "string",
53654          "uniqueItems": true
53655        }
53656      ],
53657      "post": {
53658        "consumes": [
53659          "*/*"
53660        ],
53661        "description": "create a TokenReview",
53662        "operationId": "createAuthenticationV1TokenReview",
53663        "parameters": [
53664          {
53665            "in": "body",
53666            "name": "body",
53667            "required": true,
53668            "schema": {
53669              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53670            }
53671          }
53672        ],
53673        "produces": [
53674          "application/json",
53675          "application/yaml",
53676          "application/vnd.kubernetes.protobuf"
53677        ],
53678        "responses": {
53679          "200": {
53680            "description": "OK",
53681            "schema": {
53682              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53683            }
53684          },
53685          "201": {
53686            "description": "Created",
53687            "schema": {
53688              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53689            }
53690          },
53691          "202": {
53692            "description": "Accepted",
53693            "schema": {
53694              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
53695            }
53696          },
53697          "401": {
53698            "description": "Unauthorized"
53699          }
53700        },
53701        "schemes": [
53702          "https"
53703        ],
53704        "tags": [
53705          "authentication_v1"
53706        ],
53707        "x-kubernetes-action": "post",
53708        "x-kubernetes-group-version-kind": {
53709          "group": "authentication.k8s.io",
53710          "kind": "TokenReview",
53711          "version": "v1"
53712        }
53713      }
53714    },
53715    "/apis/authentication.k8s.io/v1beta1/": {
53716      "get": {
53717        "consumes": [
53718          "application/json",
53719          "application/yaml",
53720          "application/vnd.kubernetes.protobuf"
53721        ],
53722        "description": "get available resources",
53723        "operationId": "getAuthenticationV1beta1APIResources",
53724        "produces": [
53725          "application/json",
53726          "application/yaml",
53727          "application/vnd.kubernetes.protobuf"
53728        ],
53729        "responses": {
53730          "200": {
53731            "description": "OK",
53732            "schema": {
53733              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53734            }
53735          },
53736          "401": {
53737            "description": "Unauthorized"
53738          }
53739        },
53740        "schemes": [
53741          "https"
53742        ],
53743        "tags": [
53744          "authentication_v1beta1"
53745        ]
53746      }
53747    },
53748    "/apis/authentication.k8s.io/v1beta1/tokenreviews": {
53749      "parameters": [
53750        {
53751          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53752          "in": "query",
53753          "name": "dryRun",
53754          "type": "string",
53755          "uniqueItems": true
53756        },
53757        {
53758          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53759          "in": "query",
53760          "name": "fieldManager",
53761          "type": "string",
53762          "uniqueItems": true
53763        },
53764        {
53765          "description": "If 'true', then the output is pretty printed.",
53766          "in": "query",
53767          "name": "pretty",
53768          "type": "string",
53769          "uniqueItems": true
53770        }
53771      ],
53772      "post": {
53773        "consumes": [
53774          "*/*"
53775        ],
53776        "description": "create a TokenReview",
53777        "operationId": "createAuthenticationV1beta1TokenReview",
53778        "parameters": [
53779          {
53780            "in": "body",
53781            "name": "body",
53782            "required": true,
53783            "schema": {
53784              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53785            }
53786          }
53787        ],
53788        "produces": [
53789          "application/json",
53790          "application/yaml",
53791          "application/vnd.kubernetes.protobuf"
53792        ],
53793        "responses": {
53794          "200": {
53795            "description": "OK",
53796            "schema": {
53797              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53798            }
53799          },
53800          "201": {
53801            "description": "Created",
53802            "schema": {
53803              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53804            }
53805          },
53806          "202": {
53807            "description": "Accepted",
53808            "schema": {
53809              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
53810            }
53811          },
53812          "401": {
53813            "description": "Unauthorized"
53814          }
53815        },
53816        "schemes": [
53817          "https"
53818        ],
53819        "tags": [
53820          "authentication_v1beta1"
53821        ],
53822        "x-kubernetes-action": "post",
53823        "x-kubernetes-group-version-kind": {
53824          "group": "authentication.k8s.io",
53825          "kind": "TokenReview",
53826          "version": "v1beta1"
53827        }
53828      }
53829    },
53830    "/apis/authorization.k8s.io/": {
53831      "get": {
53832        "consumes": [
53833          "application/json",
53834          "application/yaml",
53835          "application/vnd.kubernetes.protobuf"
53836        ],
53837        "description": "get information of a group",
53838        "operationId": "getAuthorizationAPIGroup",
53839        "produces": [
53840          "application/json",
53841          "application/yaml",
53842          "application/vnd.kubernetes.protobuf"
53843        ],
53844        "responses": {
53845          "200": {
53846            "description": "OK",
53847            "schema": {
53848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
53849            }
53850          },
53851          "401": {
53852            "description": "Unauthorized"
53853          }
53854        },
53855        "schemes": [
53856          "https"
53857        ],
53858        "tags": [
53859          "authorization"
53860        ]
53861      }
53862    },
53863    "/apis/authorization.k8s.io/v1/": {
53864      "get": {
53865        "consumes": [
53866          "application/json",
53867          "application/yaml",
53868          "application/vnd.kubernetes.protobuf"
53869        ],
53870        "description": "get available resources",
53871        "operationId": "getAuthorizationV1APIResources",
53872        "produces": [
53873          "application/json",
53874          "application/yaml",
53875          "application/vnd.kubernetes.protobuf"
53876        ],
53877        "responses": {
53878          "200": {
53879            "description": "OK",
53880            "schema": {
53881              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53882            }
53883          },
53884          "401": {
53885            "description": "Unauthorized"
53886          }
53887        },
53888        "schemes": [
53889          "https"
53890        ],
53891        "tags": [
53892          "authorization_v1"
53893        ]
53894      }
53895    },
53896    "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": {
53897      "parameters": [
53898        {
53899          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53900          "in": "query",
53901          "name": "dryRun",
53902          "type": "string",
53903          "uniqueItems": true
53904        },
53905        {
53906          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53907          "in": "query",
53908          "name": "fieldManager",
53909          "type": "string",
53910          "uniqueItems": true
53911        },
53912        {
53913          "description": "object name and auth scope, such as for teams and projects",
53914          "in": "path",
53915          "name": "namespace",
53916          "required": true,
53917          "type": "string",
53918          "uniqueItems": true
53919        },
53920        {
53921          "description": "If 'true', then the output is pretty printed.",
53922          "in": "query",
53923          "name": "pretty",
53924          "type": "string",
53925          "uniqueItems": true
53926        }
53927      ],
53928      "post": {
53929        "consumes": [
53930          "*/*"
53931        ],
53932        "description": "create a LocalSubjectAccessReview",
53933        "operationId": "createAuthorizationV1NamespacedLocalSubjectAccessReview",
53934        "parameters": [
53935          {
53936            "in": "body",
53937            "name": "body",
53938            "required": true,
53939            "schema": {
53940              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53941            }
53942          }
53943        ],
53944        "produces": [
53945          "application/json",
53946          "application/yaml",
53947          "application/vnd.kubernetes.protobuf"
53948        ],
53949        "responses": {
53950          "200": {
53951            "description": "OK",
53952            "schema": {
53953              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53954            }
53955          },
53956          "201": {
53957            "description": "Created",
53958            "schema": {
53959              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53960            }
53961          },
53962          "202": {
53963            "description": "Accepted",
53964            "schema": {
53965              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
53966            }
53967          },
53968          "401": {
53969            "description": "Unauthorized"
53970          }
53971        },
53972        "schemes": [
53973          "https"
53974        ],
53975        "tags": [
53976          "authorization_v1"
53977        ],
53978        "x-kubernetes-action": "post",
53979        "x-kubernetes-group-version-kind": {
53980          "group": "authorization.k8s.io",
53981          "kind": "LocalSubjectAccessReview",
53982          "version": "v1"
53983        }
53984      }
53985    },
53986    "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": {
53987      "parameters": [
53988        {
53989          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53990          "in": "query",
53991          "name": "dryRun",
53992          "type": "string",
53993          "uniqueItems": true
53994        },
53995        {
53996          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53997          "in": "query",
53998          "name": "fieldManager",
53999          "type": "string",
54000          "uniqueItems": true
54001        },
54002        {
54003          "description": "If 'true', then the output is pretty printed.",
54004          "in": "query",
54005          "name": "pretty",
54006          "type": "string",
54007          "uniqueItems": true
54008        }
54009      ],
54010      "post": {
54011        "consumes": [
54012          "*/*"
54013        ],
54014        "description": "create a SelfSubjectAccessReview",
54015        "operationId": "createAuthorizationV1SelfSubjectAccessReview",
54016        "parameters": [
54017          {
54018            "in": "body",
54019            "name": "body",
54020            "required": true,
54021            "schema": {
54022              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54023            }
54024          }
54025        ],
54026        "produces": [
54027          "application/json",
54028          "application/yaml",
54029          "application/vnd.kubernetes.protobuf"
54030        ],
54031        "responses": {
54032          "200": {
54033            "description": "OK",
54034            "schema": {
54035              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54036            }
54037          },
54038          "201": {
54039            "description": "Created",
54040            "schema": {
54041              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54042            }
54043          },
54044          "202": {
54045            "description": "Accepted",
54046            "schema": {
54047              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
54048            }
54049          },
54050          "401": {
54051            "description": "Unauthorized"
54052          }
54053        },
54054        "schemes": [
54055          "https"
54056        ],
54057        "tags": [
54058          "authorization_v1"
54059        ],
54060        "x-kubernetes-action": "post",
54061        "x-kubernetes-group-version-kind": {
54062          "group": "authorization.k8s.io",
54063          "kind": "SelfSubjectAccessReview",
54064          "version": "v1"
54065        }
54066      }
54067    },
54068    "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews": {
54069      "parameters": [
54070        {
54071          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54072          "in": "query",
54073          "name": "dryRun",
54074          "type": "string",
54075          "uniqueItems": true
54076        },
54077        {
54078          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54079          "in": "query",
54080          "name": "fieldManager",
54081          "type": "string",
54082          "uniqueItems": true
54083        },
54084        {
54085          "description": "If 'true', then the output is pretty printed.",
54086          "in": "query",
54087          "name": "pretty",
54088          "type": "string",
54089          "uniqueItems": true
54090        }
54091      ],
54092      "post": {
54093        "consumes": [
54094          "*/*"
54095        ],
54096        "description": "create a SelfSubjectRulesReview",
54097        "operationId": "createAuthorizationV1SelfSubjectRulesReview",
54098        "parameters": [
54099          {
54100            "in": "body",
54101            "name": "body",
54102            "required": true,
54103            "schema": {
54104              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54105            }
54106          }
54107        ],
54108        "produces": [
54109          "application/json",
54110          "application/yaml",
54111          "application/vnd.kubernetes.protobuf"
54112        ],
54113        "responses": {
54114          "200": {
54115            "description": "OK",
54116            "schema": {
54117              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54118            }
54119          },
54120          "201": {
54121            "description": "Created",
54122            "schema": {
54123              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54124            }
54125          },
54126          "202": {
54127            "description": "Accepted",
54128            "schema": {
54129              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
54130            }
54131          },
54132          "401": {
54133            "description": "Unauthorized"
54134          }
54135        },
54136        "schemes": [
54137          "https"
54138        ],
54139        "tags": [
54140          "authorization_v1"
54141        ],
54142        "x-kubernetes-action": "post",
54143        "x-kubernetes-group-version-kind": {
54144          "group": "authorization.k8s.io",
54145          "kind": "SelfSubjectRulesReview",
54146          "version": "v1"
54147        }
54148      }
54149    },
54150    "/apis/authorization.k8s.io/v1/subjectaccessreviews": {
54151      "parameters": [
54152        {
54153          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54154          "in": "query",
54155          "name": "dryRun",
54156          "type": "string",
54157          "uniqueItems": true
54158        },
54159        {
54160          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54161          "in": "query",
54162          "name": "fieldManager",
54163          "type": "string",
54164          "uniqueItems": true
54165        },
54166        {
54167          "description": "If 'true', then the output is pretty printed.",
54168          "in": "query",
54169          "name": "pretty",
54170          "type": "string",
54171          "uniqueItems": true
54172        }
54173      ],
54174      "post": {
54175        "consumes": [
54176          "*/*"
54177        ],
54178        "description": "create a SubjectAccessReview",
54179        "operationId": "createAuthorizationV1SubjectAccessReview",
54180        "parameters": [
54181          {
54182            "in": "body",
54183            "name": "body",
54184            "required": true,
54185            "schema": {
54186              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54187            }
54188          }
54189        ],
54190        "produces": [
54191          "application/json",
54192          "application/yaml",
54193          "application/vnd.kubernetes.protobuf"
54194        ],
54195        "responses": {
54196          "200": {
54197            "description": "OK",
54198            "schema": {
54199              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54200            }
54201          },
54202          "201": {
54203            "description": "Created",
54204            "schema": {
54205              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54206            }
54207          },
54208          "202": {
54209            "description": "Accepted",
54210            "schema": {
54211              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
54212            }
54213          },
54214          "401": {
54215            "description": "Unauthorized"
54216          }
54217        },
54218        "schemes": [
54219          "https"
54220        ],
54221        "tags": [
54222          "authorization_v1"
54223        ],
54224        "x-kubernetes-action": "post",
54225        "x-kubernetes-group-version-kind": {
54226          "group": "authorization.k8s.io",
54227          "kind": "SubjectAccessReview",
54228          "version": "v1"
54229        }
54230      }
54231    },
54232    "/apis/authorization.k8s.io/v1beta1/": {
54233      "get": {
54234        "consumes": [
54235          "application/json",
54236          "application/yaml",
54237          "application/vnd.kubernetes.protobuf"
54238        ],
54239        "description": "get available resources",
54240        "operationId": "getAuthorizationV1beta1APIResources",
54241        "produces": [
54242          "application/json",
54243          "application/yaml",
54244          "application/vnd.kubernetes.protobuf"
54245        ],
54246        "responses": {
54247          "200": {
54248            "description": "OK",
54249            "schema": {
54250              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
54251            }
54252          },
54253          "401": {
54254            "description": "Unauthorized"
54255          }
54256        },
54257        "schemes": [
54258          "https"
54259        ],
54260        "tags": [
54261          "authorization_v1beta1"
54262        ]
54263      }
54264    },
54265    "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews": {
54266      "parameters": [
54267        {
54268          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54269          "in": "query",
54270          "name": "dryRun",
54271          "type": "string",
54272          "uniqueItems": true
54273        },
54274        {
54275          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54276          "in": "query",
54277          "name": "fieldManager",
54278          "type": "string",
54279          "uniqueItems": true
54280        },
54281        {
54282          "description": "object name and auth scope, such as for teams and projects",
54283          "in": "path",
54284          "name": "namespace",
54285          "required": true,
54286          "type": "string",
54287          "uniqueItems": true
54288        },
54289        {
54290          "description": "If 'true', then the output is pretty printed.",
54291          "in": "query",
54292          "name": "pretty",
54293          "type": "string",
54294          "uniqueItems": true
54295        }
54296      ],
54297      "post": {
54298        "consumes": [
54299          "*/*"
54300        ],
54301        "description": "create a LocalSubjectAccessReview",
54302        "operationId": "createAuthorizationV1beta1NamespacedLocalSubjectAccessReview",
54303        "parameters": [
54304          {
54305            "in": "body",
54306            "name": "body",
54307            "required": true,
54308            "schema": {
54309              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54310            }
54311          }
54312        ],
54313        "produces": [
54314          "application/json",
54315          "application/yaml",
54316          "application/vnd.kubernetes.protobuf"
54317        ],
54318        "responses": {
54319          "200": {
54320            "description": "OK",
54321            "schema": {
54322              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54323            }
54324          },
54325          "201": {
54326            "description": "Created",
54327            "schema": {
54328              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54329            }
54330          },
54331          "202": {
54332            "description": "Accepted",
54333            "schema": {
54334              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
54335            }
54336          },
54337          "401": {
54338            "description": "Unauthorized"
54339          }
54340        },
54341        "schemes": [
54342          "https"
54343        ],
54344        "tags": [
54345          "authorization_v1beta1"
54346        ],
54347        "x-kubernetes-action": "post",
54348        "x-kubernetes-group-version-kind": {
54349          "group": "authorization.k8s.io",
54350          "kind": "LocalSubjectAccessReview",
54351          "version": "v1beta1"
54352        }
54353      }
54354    },
54355    "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews": {
54356      "parameters": [
54357        {
54358          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54359          "in": "query",
54360          "name": "dryRun",
54361          "type": "string",
54362          "uniqueItems": true
54363        },
54364        {
54365          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54366          "in": "query",
54367          "name": "fieldManager",
54368          "type": "string",
54369          "uniqueItems": true
54370        },
54371        {
54372          "description": "If 'true', then the output is pretty printed.",
54373          "in": "query",
54374          "name": "pretty",
54375          "type": "string",
54376          "uniqueItems": true
54377        }
54378      ],
54379      "post": {
54380        "consumes": [
54381          "*/*"
54382        ],
54383        "description": "create a SelfSubjectAccessReview",
54384        "operationId": "createAuthorizationV1beta1SelfSubjectAccessReview",
54385        "parameters": [
54386          {
54387            "in": "body",
54388            "name": "body",
54389            "required": true,
54390            "schema": {
54391              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54392            }
54393          }
54394        ],
54395        "produces": [
54396          "application/json",
54397          "application/yaml",
54398          "application/vnd.kubernetes.protobuf"
54399        ],
54400        "responses": {
54401          "200": {
54402            "description": "OK",
54403            "schema": {
54404              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54405            }
54406          },
54407          "201": {
54408            "description": "Created",
54409            "schema": {
54410              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54411            }
54412          },
54413          "202": {
54414            "description": "Accepted",
54415            "schema": {
54416              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
54417            }
54418          },
54419          "401": {
54420            "description": "Unauthorized"
54421          }
54422        },
54423        "schemes": [
54424          "https"
54425        ],
54426        "tags": [
54427          "authorization_v1beta1"
54428        ],
54429        "x-kubernetes-action": "post",
54430        "x-kubernetes-group-version-kind": {
54431          "group": "authorization.k8s.io",
54432          "kind": "SelfSubjectAccessReview",
54433          "version": "v1beta1"
54434        }
54435      }
54436    },
54437    "/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews": {
54438      "parameters": [
54439        {
54440          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54441          "in": "query",
54442          "name": "dryRun",
54443          "type": "string",
54444          "uniqueItems": true
54445        },
54446        {
54447          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54448          "in": "query",
54449          "name": "fieldManager",
54450          "type": "string",
54451          "uniqueItems": true
54452        },
54453        {
54454          "description": "If 'true', then the output is pretty printed.",
54455          "in": "query",
54456          "name": "pretty",
54457          "type": "string",
54458          "uniqueItems": true
54459        }
54460      ],
54461      "post": {
54462        "consumes": [
54463          "*/*"
54464        ],
54465        "description": "create a SelfSubjectRulesReview",
54466        "operationId": "createAuthorizationV1beta1SelfSubjectRulesReview",
54467        "parameters": [
54468          {
54469            "in": "body",
54470            "name": "body",
54471            "required": true,
54472            "schema": {
54473              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54474            }
54475          }
54476        ],
54477        "produces": [
54478          "application/json",
54479          "application/yaml",
54480          "application/vnd.kubernetes.protobuf"
54481        ],
54482        "responses": {
54483          "200": {
54484            "description": "OK",
54485            "schema": {
54486              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54487            }
54488          },
54489          "201": {
54490            "description": "Created",
54491            "schema": {
54492              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54493            }
54494          },
54495          "202": {
54496            "description": "Accepted",
54497            "schema": {
54498              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
54499            }
54500          },
54501          "401": {
54502            "description": "Unauthorized"
54503          }
54504        },
54505        "schemes": [
54506          "https"
54507        ],
54508        "tags": [
54509          "authorization_v1beta1"
54510        ],
54511        "x-kubernetes-action": "post",
54512        "x-kubernetes-group-version-kind": {
54513          "group": "authorization.k8s.io",
54514          "kind": "SelfSubjectRulesReview",
54515          "version": "v1beta1"
54516        }
54517      }
54518    },
54519    "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews": {
54520      "parameters": [
54521        {
54522          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54523          "in": "query",
54524          "name": "dryRun",
54525          "type": "string",
54526          "uniqueItems": true
54527        },
54528        {
54529          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54530          "in": "query",
54531          "name": "fieldManager",
54532          "type": "string",
54533          "uniqueItems": true
54534        },
54535        {
54536          "description": "If 'true', then the output is pretty printed.",
54537          "in": "query",
54538          "name": "pretty",
54539          "type": "string",
54540          "uniqueItems": true
54541        }
54542      ],
54543      "post": {
54544        "consumes": [
54545          "*/*"
54546        ],
54547        "description": "create a SubjectAccessReview",
54548        "operationId": "createAuthorizationV1beta1SubjectAccessReview",
54549        "parameters": [
54550          {
54551            "in": "body",
54552            "name": "body",
54553            "required": true,
54554            "schema": {
54555              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54556            }
54557          }
54558        ],
54559        "produces": [
54560          "application/json",
54561          "application/yaml",
54562          "application/vnd.kubernetes.protobuf"
54563        ],
54564        "responses": {
54565          "200": {
54566            "description": "OK",
54567            "schema": {
54568              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54569            }
54570          },
54571          "201": {
54572            "description": "Created",
54573            "schema": {
54574              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54575            }
54576          },
54577          "202": {
54578            "description": "Accepted",
54579            "schema": {
54580              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
54581            }
54582          },
54583          "401": {
54584            "description": "Unauthorized"
54585          }
54586        },
54587        "schemes": [
54588          "https"
54589        ],
54590        "tags": [
54591          "authorization_v1beta1"
54592        ],
54593        "x-kubernetes-action": "post",
54594        "x-kubernetes-group-version-kind": {
54595          "group": "authorization.k8s.io",
54596          "kind": "SubjectAccessReview",
54597          "version": "v1beta1"
54598        }
54599      }
54600    },
54601    "/apis/autoscaling/": {
54602      "get": {
54603        "consumes": [
54604          "application/json",
54605          "application/yaml",
54606          "application/vnd.kubernetes.protobuf"
54607        ],
54608        "description": "get information of a group",
54609        "operationId": "getAutoscalingAPIGroup",
54610        "produces": [
54611          "application/json",
54612          "application/yaml",
54613          "application/vnd.kubernetes.protobuf"
54614        ],
54615        "responses": {
54616          "200": {
54617            "description": "OK",
54618            "schema": {
54619              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
54620            }
54621          },
54622          "401": {
54623            "description": "Unauthorized"
54624          }
54625        },
54626        "schemes": [
54627          "https"
54628        ],
54629        "tags": [
54630          "autoscaling"
54631        ]
54632      }
54633    },
54634    "/apis/autoscaling/v1/": {
54635      "get": {
54636        "consumes": [
54637          "application/json",
54638          "application/yaml",
54639          "application/vnd.kubernetes.protobuf"
54640        ],
54641        "description": "get available resources",
54642        "operationId": "getAutoscalingV1APIResources",
54643        "produces": [
54644          "application/json",
54645          "application/yaml",
54646          "application/vnd.kubernetes.protobuf"
54647        ],
54648        "responses": {
54649          "200": {
54650            "description": "OK",
54651            "schema": {
54652              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
54653            }
54654          },
54655          "401": {
54656            "description": "Unauthorized"
54657          }
54658        },
54659        "schemes": [
54660          "https"
54661        ],
54662        "tags": [
54663          "autoscaling_v1"
54664        ]
54665      }
54666    },
54667    "/apis/autoscaling/v1/horizontalpodautoscalers": {
54668      "get": {
54669        "consumes": [
54670          "*/*"
54671        ],
54672        "description": "list or watch objects of kind HorizontalPodAutoscaler",
54673        "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
54674        "produces": [
54675          "application/json",
54676          "application/yaml",
54677          "application/vnd.kubernetes.protobuf",
54678          "application/json;stream=watch",
54679          "application/vnd.kubernetes.protobuf;stream=watch"
54680        ],
54681        "responses": {
54682          "200": {
54683            "description": "OK",
54684            "schema": {
54685              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
54686            }
54687          },
54688          "401": {
54689            "description": "Unauthorized"
54690          }
54691        },
54692        "schemes": [
54693          "https"
54694        ],
54695        "tags": [
54696          "autoscaling_v1"
54697        ],
54698        "x-kubernetes-action": "list",
54699        "x-kubernetes-group-version-kind": {
54700          "group": "autoscaling",
54701          "kind": "HorizontalPodAutoscaler",
54702          "version": "v1"
54703        }
54704      },
54705      "parameters": [
54706        {
54707          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
54708          "in": "query",
54709          "name": "allowWatchBookmarks",
54710          "type": "boolean",
54711          "uniqueItems": true
54712        },
54713        {
54714          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54715          "in": "query",
54716          "name": "continue",
54717          "type": "string",
54718          "uniqueItems": true
54719        },
54720        {
54721          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54722          "in": "query",
54723          "name": "fieldSelector",
54724          "type": "string",
54725          "uniqueItems": true
54726        },
54727        {
54728          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54729          "in": "query",
54730          "name": "labelSelector",
54731          "type": "string",
54732          "uniqueItems": true
54733        },
54734        {
54735          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54736          "in": "query",
54737          "name": "limit",
54738          "type": "integer",
54739          "uniqueItems": true
54740        },
54741        {
54742          "description": "If 'true', then the output is pretty printed.",
54743          "in": "query",
54744          "name": "pretty",
54745          "type": "string",
54746          "uniqueItems": true
54747        },
54748        {
54749          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54750          "in": "query",
54751          "name": "resourceVersion",
54752          "type": "string",
54753          "uniqueItems": true
54754        },
54755        {
54756          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54757          "in": "query",
54758          "name": "resourceVersionMatch",
54759          "type": "string",
54760          "uniqueItems": true
54761        },
54762        {
54763          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54764          "in": "query",
54765          "name": "timeoutSeconds",
54766          "type": "integer",
54767          "uniqueItems": true
54768        },
54769        {
54770          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54771          "in": "query",
54772          "name": "watch",
54773          "type": "boolean",
54774          "uniqueItems": true
54775        }
54776      ]
54777    },
54778    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": {
54779      "delete": {
54780        "consumes": [
54781          "*/*"
54782        ],
54783        "description": "delete collection of HorizontalPodAutoscaler",
54784        "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
54785        "parameters": [
54786          {
54787            "in": "body",
54788            "name": "body",
54789            "schema": {
54790              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
54791            }
54792          },
54793          {
54794            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54795            "in": "query",
54796            "name": "continue",
54797            "type": "string",
54798            "uniqueItems": true
54799          },
54800          {
54801            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54802            "in": "query",
54803            "name": "dryRun",
54804            "type": "string",
54805            "uniqueItems": true
54806          },
54807          {
54808            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54809            "in": "query",
54810            "name": "fieldSelector",
54811            "type": "string",
54812            "uniqueItems": true
54813          },
54814          {
54815            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
54816            "in": "query",
54817            "name": "gracePeriodSeconds",
54818            "type": "integer",
54819            "uniqueItems": true
54820          },
54821          {
54822            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54823            "in": "query",
54824            "name": "labelSelector",
54825            "type": "string",
54826            "uniqueItems": true
54827          },
54828          {
54829            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54830            "in": "query",
54831            "name": "limit",
54832            "type": "integer",
54833            "uniqueItems": true
54834          },
54835          {
54836            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
54837            "in": "query",
54838            "name": "orphanDependents",
54839            "type": "boolean",
54840            "uniqueItems": true
54841          },
54842          {
54843            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
54844            "in": "query",
54845            "name": "propagationPolicy",
54846            "type": "string",
54847            "uniqueItems": true
54848          },
54849          {
54850            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54851            "in": "query",
54852            "name": "resourceVersion",
54853            "type": "string",
54854            "uniqueItems": true
54855          },
54856          {
54857            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54858            "in": "query",
54859            "name": "resourceVersionMatch",
54860            "type": "string",
54861            "uniqueItems": true
54862          },
54863          {
54864            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54865            "in": "query",
54866            "name": "timeoutSeconds",
54867            "type": "integer",
54868            "uniqueItems": true
54869          }
54870        ],
54871        "produces": [
54872          "application/json",
54873          "application/yaml",
54874          "application/vnd.kubernetes.protobuf"
54875        ],
54876        "responses": {
54877          "200": {
54878            "description": "OK",
54879            "schema": {
54880              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
54881            }
54882          },
54883          "401": {
54884            "description": "Unauthorized"
54885          }
54886        },
54887        "schemes": [
54888          "https"
54889        ],
54890        "tags": [
54891          "autoscaling_v1"
54892        ],
54893        "x-kubernetes-action": "deletecollection",
54894        "x-kubernetes-group-version-kind": {
54895          "group": "autoscaling",
54896          "kind": "HorizontalPodAutoscaler",
54897          "version": "v1"
54898        }
54899      },
54900      "get": {
54901        "consumes": [
54902          "*/*"
54903        ],
54904        "description": "list or watch objects of kind HorizontalPodAutoscaler",
54905        "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
54906        "parameters": [
54907          {
54908            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
54909            "in": "query",
54910            "name": "allowWatchBookmarks",
54911            "type": "boolean",
54912            "uniqueItems": true
54913          },
54914          {
54915            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54916            "in": "query",
54917            "name": "continue",
54918            "type": "string",
54919            "uniqueItems": true
54920          },
54921          {
54922            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54923            "in": "query",
54924            "name": "fieldSelector",
54925            "type": "string",
54926            "uniqueItems": true
54927          },
54928          {
54929            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54930            "in": "query",
54931            "name": "labelSelector",
54932            "type": "string",
54933            "uniqueItems": true
54934          },
54935          {
54936            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54937            "in": "query",
54938            "name": "limit",
54939            "type": "integer",
54940            "uniqueItems": true
54941          },
54942          {
54943            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54944            "in": "query",
54945            "name": "resourceVersion",
54946            "type": "string",
54947            "uniqueItems": true
54948          },
54949          {
54950            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54951            "in": "query",
54952            "name": "resourceVersionMatch",
54953            "type": "string",
54954            "uniqueItems": true
54955          },
54956          {
54957            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54958            "in": "query",
54959            "name": "timeoutSeconds",
54960            "type": "integer",
54961            "uniqueItems": true
54962          },
54963          {
54964            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54965            "in": "query",
54966            "name": "watch",
54967            "type": "boolean",
54968            "uniqueItems": true
54969          }
54970        ],
54971        "produces": [
54972          "application/json",
54973          "application/yaml",
54974          "application/vnd.kubernetes.protobuf",
54975          "application/json;stream=watch",
54976          "application/vnd.kubernetes.protobuf;stream=watch"
54977        ],
54978        "responses": {
54979          "200": {
54980            "description": "OK",
54981            "schema": {
54982              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
54983            }
54984          },
54985          "401": {
54986            "description": "Unauthorized"
54987          }
54988        },
54989        "schemes": [
54990          "https"
54991        ],
54992        "tags": [
54993          "autoscaling_v1"
54994        ],
54995        "x-kubernetes-action": "list",
54996        "x-kubernetes-group-version-kind": {
54997          "group": "autoscaling",
54998          "kind": "HorizontalPodAutoscaler",
54999          "version": "v1"
55000        }
55001      },
55002      "parameters": [
55003        {
55004          "description": "object name and auth scope, such as for teams and projects",
55005          "in": "path",
55006          "name": "namespace",
55007          "required": true,
55008          "type": "string",
55009          "uniqueItems": true
55010        },
55011        {
55012          "description": "If 'true', then the output is pretty printed.",
55013          "in": "query",
55014          "name": "pretty",
55015          "type": "string",
55016          "uniqueItems": true
55017        }
55018      ],
55019      "post": {
55020        "consumes": [
55021          "*/*"
55022        ],
55023        "description": "create a HorizontalPodAutoscaler",
55024        "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
55025        "parameters": [
55026          {
55027            "in": "body",
55028            "name": "body",
55029            "required": true,
55030            "schema": {
55031              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55032            }
55033          },
55034          {
55035            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55036            "in": "query",
55037            "name": "dryRun",
55038            "type": "string",
55039            "uniqueItems": true
55040          },
55041          {
55042            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55043            "in": "query",
55044            "name": "fieldManager",
55045            "type": "string",
55046            "uniqueItems": true
55047          }
55048        ],
55049        "produces": [
55050          "application/json",
55051          "application/yaml",
55052          "application/vnd.kubernetes.protobuf"
55053        ],
55054        "responses": {
55055          "200": {
55056            "description": "OK",
55057            "schema": {
55058              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55059            }
55060          },
55061          "201": {
55062            "description": "Created",
55063            "schema": {
55064              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55065            }
55066          },
55067          "202": {
55068            "description": "Accepted",
55069            "schema": {
55070              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55071            }
55072          },
55073          "401": {
55074            "description": "Unauthorized"
55075          }
55076        },
55077        "schemes": [
55078          "https"
55079        ],
55080        "tags": [
55081          "autoscaling_v1"
55082        ],
55083        "x-kubernetes-action": "post",
55084        "x-kubernetes-group-version-kind": {
55085          "group": "autoscaling",
55086          "kind": "HorizontalPodAutoscaler",
55087          "version": "v1"
55088        }
55089      }
55090    },
55091    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
55092      "delete": {
55093        "consumes": [
55094          "*/*"
55095        ],
55096        "description": "delete a HorizontalPodAutoscaler",
55097        "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
55098        "parameters": [
55099          {
55100            "in": "body",
55101            "name": "body",
55102            "schema": {
55103              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
55104            }
55105          },
55106          {
55107            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55108            "in": "query",
55109            "name": "dryRun",
55110            "type": "string",
55111            "uniqueItems": true
55112          },
55113          {
55114            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
55115            "in": "query",
55116            "name": "gracePeriodSeconds",
55117            "type": "integer",
55118            "uniqueItems": true
55119          },
55120          {
55121            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
55122            "in": "query",
55123            "name": "orphanDependents",
55124            "type": "boolean",
55125            "uniqueItems": true
55126          },
55127          {
55128            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
55129            "in": "query",
55130            "name": "propagationPolicy",
55131            "type": "string",
55132            "uniqueItems": true
55133          }
55134        ],
55135        "produces": [
55136          "application/json",
55137          "application/yaml",
55138          "application/vnd.kubernetes.protobuf"
55139        ],
55140        "responses": {
55141          "200": {
55142            "description": "OK",
55143            "schema": {
55144              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55145            }
55146          },
55147          "202": {
55148            "description": "Accepted",
55149            "schema": {
55150              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55151            }
55152          },
55153          "401": {
55154            "description": "Unauthorized"
55155          }
55156        },
55157        "schemes": [
55158          "https"
55159        ],
55160        "tags": [
55161          "autoscaling_v1"
55162        ],
55163        "x-kubernetes-action": "delete",
55164        "x-kubernetes-group-version-kind": {
55165          "group": "autoscaling",
55166          "kind": "HorizontalPodAutoscaler",
55167          "version": "v1"
55168        }
55169      },
55170      "get": {
55171        "consumes": [
55172          "*/*"
55173        ],
55174        "description": "read the specified HorizontalPodAutoscaler",
55175        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
55176        "produces": [
55177          "application/json",
55178          "application/yaml",
55179          "application/vnd.kubernetes.protobuf"
55180        ],
55181        "responses": {
55182          "200": {
55183            "description": "OK",
55184            "schema": {
55185              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55186            }
55187          },
55188          "401": {
55189            "description": "Unauthorized"
55190          }
55191        },
55192        "schemes": [
55193          "https"
55194        ],
55195        "tags": [
55196          "autoscaling_v1"
55197        ],
55198        "x-kubernetes-action": "get",
55199        "x-kubernetes-group-version-kind": {
55200          "group": "autoscaling",
55201          "kind": "HorizontalPodAutoscaler",
55202          "version": "v1"
55203        }
55204      },
55205      "parameters": [
55206        {
55207          "description": "name of the HorizontalPodAutoscaler",
55208          "in": "path",
55209          "name": "name",
55210          "required": true,
55211          "type": "string",
55212          "uniqueItems": true
55213        },
55214        {
55215          "description": "object name and auth scope, such as for teams and projects",
55216          "in": "path",
55217          "name": "namespace",
55218          "required": true,
55219          "type": "string",
55220          "uniqueItems": true
55221        },
55222        {
55223          "description": "If 'true', then the output is pretty printed.",
55224          "in": "query",
55225          "name": "pretty",
55226          "type": "string",
55227          "uniqueItems": true
55228        }
55229      ],
55230      "patch": {
55231        "consumes": [
55232          "application/json-patch+json",
55233          "application/merge-patch+json",
55234          "application/strategic-merge-patch+json",
55235          "application/apply-patch+yaml"
55236        ],
55237        "description": "partially update the specified HorizontalPodAutoscaler",
55238        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
55239        "parameters": [
55240          {
55241            "in": "body",
55242            "name": "body",
55243            "required": true,
55244            "schema": {
55245              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55246            }
55247          },
55248          {
55249            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55250            "in": "query",
55251            "name": "dryRun",
55252            "type": "string",
55253            "uniqueItems": true
55254          },
55255          {
55256            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
55257            "in": "query",
55258            "name": "fieldManager",
55259            "type": "string",
55260            "uniqueItems": true
55261          },
55262          {
55263            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
55264            "in": "query",
55265            "name": "force",
55266            "type": "boolean",
55267            "uniqueItems": true
55268          }
55269        ],
55270        "produces": [
55271          "application/json",
55272          "application/yaml",
55273          "application/vnd.kubernetes.protobuf"
55274        ],
55275        "responses": {
55276          "200": {
55277            "description": "OK",
55278            "schema": {
55279              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55280            }
55281          },
55282          "401": {
55283            "description": "Unauthorized"
55284          }
55285        },
55286        "schemes": [
55287          "https"
55288        ],
55289        "tags": [
55290          "autoscaling_v1"
55291        ],
55292        "x-kubernetes-action": "patch",
55293        "x-kubernetes-group-version-kind": {
55294          "group": "autoscaling",
55295          "kind": "HorizontalPodAutoscaler",
55296          "version": "v1"
55297        }
55298      },
55299      "put": {
55300        "consumes": [
55301          "*/*"
55302        ],
55303        "description": "replace the specified HorizontalPodAutoscaler",
55304        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
55305        "parameters": [
55306          {
55307            "in": "body",
55308            "name": "body",
55309            "required": true,
55310            "schema": {
55311              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55312            }
55313          },
55314          {
55315            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55316            "in": "query",
55317            "name": "dryRun",
55318            "type": "string",
55319            "uniqueItems": true
55320          },
55321          {
55322            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55323            "in": "query",
55324            "name": "fieldManager",
55325            "type": "string",
55326            "uniqueItems": true
55327          }
55328        ],
55329        "produces": [
55330          "application/json",
55331          "application/yaml",
55332          "application/vnd.kubernetes.protobuf"
55333        ],
55334        "responses": {
55335          "200": {
55336            "description": "OK",
55337            "schema": {
55338              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55339            }
55340          },
55341          "201": {
55342            "description": "Created",
55343            "schema": {
55344              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55345            }
55346          },
55347          "401": {
55348            "description": "Unauthorized"
55349          }
55350        },
55351        "schemes": [
55352          "https"
55353        ],
55354        "tags": [
55355          "autoscaling_v1"
55356        ],
55357        "x-kubernetes-action": "put",
55358        "x-kubernetes-group-version-kind": {
55359          "group": "autoscaling",
55360          "kind": "HorizontalPodAutoscaler",
55361          "version": "v1"
55362        }
55363      }
55364    },
55365    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
55366      "get": {
55367        "consumes": [
55368          "*/*"
55369        ],
55370        "description": "read status of the specified HorizontalPodAutoscaler",
55371        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55372        "produces": [
55373          "application/json",
55374          "application/yaml",
55375          "application/vnd.kubernetes.protobuf"
55376        ],
55377        "responses": {
55378          "200": {
55379            "description": "OK",
55380            "schema": {
55381              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55382            }
55383          },
55384          "401": {
55385            "description": "Unauthorized"
55386          }
55387        },
55388        "schemes": [
55389          "https"
55390        ],
55391        "tags": [
55392          "autoscaling_v1"
55393        ],
55394        "x-kubernetes-action": "get",
55395        "x-kubernetes-group-version-kind": {
55396          "group": "autoscaling",
55397          "kind": "HorizontalPodAutoscaler",
55398          "version": "v1"
55399        }
55400      },
55401      "parameters": [
55402        {
55403          "description": "name of the HorizontalPodAutoscaler",
55404          "in": "path",
55405          "name": "name",
55406          "required": true,
55407          "type": "string",
55408          "uniqueItems": true
55409        },
55410        {
55411          "description": "object name and auth scope, such as for teams and projects",
55412          "in": "path",
55413          "name": "namespace",
55414          "required": true,
55415          "type": "string",
55416          "uniqueItems": true
55417        },
55418        {
55419          "description": "If 'true', then the output is pretty printed.",
55420          "in": "query",
55421          "name": "pretty",
55422          "type": "string",
55423          "uniqueItems": true
55424        }
55425      ],
55426      "patch": {
55427        "consumes": [
55428          "application/json-patch+json",
55429          "application/merge-patch+json",
55430          "application/strategic-merge-patch+json",
55431          "application/apply-patch+yaml"
55432        ],
55433        "description": "partially update status of the specified HorizontalPodAutoscaler",
55434        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55435        "parameters": [
55436          {
55437            "in": "body",
55438            "name": "body",
55439            "required": true,
55440            "schema": {
55441              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55442            }
55443          },
55444          {
55445            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55446            "in": "query",
55447            "name": "dryRun",
55448            "type": "string",
55449            "uniqueItems": true
55450          },
55451          {
55452            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
55453            "in": "query",
55454            "name": "fieldManager",
55455            "type": "string",
55456            "uniqueItems": true
55457          },
55458          {
55459            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
55460            "in": "query",
55461            "name": "force",
55462            "type": "boolean",
55463            "uniqueItems": true
55464          }
55465        ],
55466        "produces": [
55467          "application/json",
55468          "application/yaml",
55469          "application/vnd.kubernetes.protobuf"
55470        ],
55471        "responses": {
55472          "200": {
55473            "description": "OK",
55474            "schema": {
55475              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55476            }
55477          },
55478          "401": {
55479            "description": "Unauthorized"
55480          }
55481        },
55482        "schemes": [
55483          "https"
55484        ],
55485        "tags": [
55486          "autoscaling_v1"
55487        ],
55488        "x-kubernetes-action": "patch",
55489        "x-kubernetes-group-version-kind": {
55490          "group": "autoscaling",
55491          "kind": "HorizontalPodAutoscaler",
55492          "version": "v1"
55493        }
55494      },
55495      "put": {
55496        "consumes": [
55497          "*/*"
55498        ],
55499        "description": "replace status of the specified HorizontalPodAutoscaler",
55500        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
55501        "parameters": [
55502          {
55503            "in": "body",
55504            "name": "body",
55505            "required": true,
55506            "schema": {
55507              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55508            }
55509          },
55510          {
55511            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55512            "in": "query",
55513            "name": "dryRun",
55514            "type": "string",
55515            "uniqueItems": true
55516          },
55517          {
55518            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55519            "in": "query",
55520            "name": "fieldManager",
55521            "type": "string",
55522            "uniqueItems": true
55523          }
55524        ],
55525        "produces": [
55526          "application/json",
55527          "application/yaml",
55528          "application/vnd.kubernetes.protobuf"
55529        ],
55530        "responses": {
55531          "200": {
55532            "description": "OK",
55533            "schema": {
55534              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55535            }
55536          },
55537          "201": {
55538            "description": "Created",
55539            "schema": {
55540              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
55541            }
55542          },
55543          "401": {
55544            "description": "Unauthorized"
55545          }
55546        },
55547        "schemes": [
55548          "https"
55549        ],
55550        "tags": [
55551          "autoscaling_v1"
55552        ],
55553        "x-kubernetes-action": "put",
55554        "x-kubernetes-group-version-kind": {
55555          "group": "autoscaling",
55556          "kind": "HorizontalPodAutoscaler",
55557          "version": "v1"
55558        }
55559      }
55560    },
55561    "/apis/autoscaling/v1/watch/horizontalpodautoscalers": {
55562      "get": {
55563        "consumes": [
55564          "*/*"
55565        ],
55566        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
55567        "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
55568        "produces": [
55569          "application/json",
55570          "application/yaml",
55571          "application/vnd.kubernetes.protobuf",
55572          "application/json;stream=watch",
55573          "application/vnd.kubernetes.protobuf;stream=watch"
55574        ],
55575        "responses": {
55576          "200": {
55577            "description": "OK",
55578            "schema": {
55579              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55580            }
55581          },
55582          "401": {
55583            "description": "Unauthorized"
55584          }
55585        },
55586        "schemes": [
55587          "https"
55588        ],
55589        "tags": [
55590          "autoscaling_v1"
55591        ],
55592        "x-kubernetes-action": "watchlist",
55593        "x-kubernetes-group-version-kind": {
55594          "group": "autoscaling",
55595          "kind": "HorizontalPodAutoscaler",
55596          "version": "v1"
55597        }
55598      },
55599      "parameters": [
55600        {
55601          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55602          "in": "query",
55603          "name": "allowWatchBookmarks",
55604          "type": "boolean",
55605          "uniqueItems": true
55606        },
55607        {
55608          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55609          "in": "query",
55610          "name": "continue",
55611          "type": "string",
55612          "uniqueItems": true
55613        },
55614        {
55615          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55616          "in": "query",
55617          "name": "fieldSelector",
55618          "type": "string",
55619          "uniqueItems": true
55620        },
55621        {
55622          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55623          "in": "query",
55624          "name": "labelSelector",
55625          "type": "string",
55626          "uniqueItems": true
55627        },
55628        {
55629          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55630          "in": "query",
55631          "name": "limit",
55632          "type": "integer",
55633          "uniqueItems": true
55634        },
55635        {
55636          "description": "If 'true', then the output is pretty printed.",
55637          "in": "query",
55638          "name": "pretty",
55639          "type": "string",
55640          "uniqueItems": true
55641        },
55642        {
55643          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55644          "in": "query",
55645          "name": "resourceVersion",
55646          "type": "string",
55647          "uniqueItems": true
55648        },
55649        {
55650          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55651          "in": "query",
55652          "name": "resourceVersionMatch",
55653          "type": "string",
55654          "uniqueItems": true
55655        },
55656        {
55657          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55658          "in": "query",
55659          "name": "timeoutSeconds",
55660          "type": "integer",
55661          "uniqueItems": true
55662        },
55663        {
55664          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55665          "in": "query",
55666          "name": "watch",
55667          "type": "boolean",
55668          "uniqueItems": true
55669        }
55670      ]
55671    },
55672    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
55673      "get": {
55674        "consumes": [
55675          "*/*"
55676        ],
55677        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
55678        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
55679        "produces": [
55680          "application/json",
55681          "application/yaml",
55682          "application/vnd.kubernetes.protobuf",
55683          "application/json;stream=watch",
55684          "application/vnd.kubernetes.protobuf;stream=watch"
55685        ],
55686        "responses": {
55687          "200": {
55688            "description": "OK",
55689            "schema": {
55690              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55691            }
55692          },
55693          "401": {
55694            "description": "Unauthorized"
55695          }
55696        },
55697        "schemes": [
55698          "https"
55699        ],
55700        "tags": [
55701          "autoscaling_v1"
55702        ],
55703        "x-kubernetes-action": "watchlist",
55704        "x-kubernetes-group-version-kind": {
55705          "group": "autoscaling",
55706          "kind": "HorizontalPodAutoscaler",
55707          "version": "v1"
55708        }
55709      },
55710      "parameters": [
55711        {
55712          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55713          "in": "query",
55714          "name": "allowWatchBookmarks",
55715          "type": "boolean",
55716          "uniqueItems": true
55717        },
55718        {
55719          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55720          "in": "query",
55721          "name": "continue",
55722          "type": "string",
55723          "uniqueItems": true
55724        },
55725        {
55726          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55727          "in": "query",
55728          "name": "fieldSelector",
55729          "type": "string",
55730          "uniqueItems": true
55731        },
55732        {
55733          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55734          "in": "query",
55735          "name": "labelSelector",
55736          "type": "string",
55737          "uniqueItems": true
55738        },
55739        {
55740          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55741          "in": "query",
55742          "name": "limit",
55743          "type": "integer",
55744          "uniqueItems": true
55745        },
55746        {
55747          "description": "object name and auth scope, such as for teams and projects",
55748          "in": "path",
55749          "name": "namespace",
55750          "required": true,
55751          "type": "string",
55752          "uniqueItems": true
55753        },
55754        {
55755          "description": "If 'true', then the output is pretty printed.",
55756          "in": "query",
55757          "name": "pretty",
55758          "type": "string",
55759          "uniqueItems": true
55760        },
55761        {
55762          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55763          "in": "query",
55764          "name": "resourceVersion",
55765          "type": "string",
55766          "uniqueItems": true
55767        },
55768        {
55769          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55770          "in": "query",
55771          "name": "resourceVersionMatch",
55772          "type": "string",
55773          "uniqueItems": true
55774        },
55775        {
55776          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55777          "in": "query",
55778          "name": "timeoutSeconds",
55779          "type": "integer",
55780          "uniqueItems": true
55781        },
55782        {
55783          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55784          "in": "query",
55785          "name": "watch",
55786          "type": "boolean",
55787          "uniqueItems": true
55788        }
55789      ]
55790    },
55791    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
55792      "get": {
55793        "consumes": [
55794          "*/*"
55795        ],
55796        "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.",
55797        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
55798        "produces": [
55799          "application/json",
55800          "application/yaml",
55801          "application/vnd.kubernetes.protobuf",
55802          "application/json;stream=watch",
55803          "application/vnd.kubernetes.protobuf;stream=watch"
55804        ],
55805        "responses": {
55806          "200": {
55807            "description": "OK",
55808            "schema": {
55809              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55810            }
55811          },
55812          "401": {
55813            "description": "Unauthorized"
55814          }
55815        },
55816        "schemes": [
55817          "https"
55818        ],
55819        "tags": [
55820          "autoscaling_v1"
55821        ],
55822        "x-kubernetes-action": "watch",
55823        "x-kubernetes-group-version-kind": {
55824          "group": "autoscaling",
55825          "kind": "HorizontalPodAutoscaler",
55826          "version": "v1"
55827        }
55828      },
55829      "parameters": [
55830        {
55831          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55832          "in": "query",
55833          "name": "allowWatchBookmarks",
55834          "type": "boolean",
55835          "uniqueItems": true
55836        },
55837        {
55838          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55839          "in": "query",
55840          "name": "continue",
55841          "type": "string",
55842          "uniqueItems": true
55843        },
55844        {
55845          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55846          "in": "query",
55847          "name": "fieldSelector",
55848          "type": "string",
55849          "uniqueItems": true
55850        },
55851        {
55852          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55853          "in": "query",
55854          "name": "labelSelector",
55855          "type": "string",
55856          "uniqueItems": true
55857        },
55858        {
55859          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55860          "in": "query",
55861          "name": "limit",
55862          "type": "integer",
55863          "uniqueItems": true
55864        },
55865        {
55866          "description": "name of the HorizontalPodAutoscaler",
55867          "in": "path",
55868          "name": "name",
55869          "required": true,
55870          "type": "string",
55871          "uniqueItems": true
55872        },
55873        {
55874          "description": "object name and auth scope, such as for teams and projects",
55875          "in": "path",
55876          "name": "namespace",
55877          "required": true,
55878          "type": "string",
55879          "uniqueItems": true
55880        },
55881        {
55882          "description": "If 'true', then the output is pretty printed.",
55883          "in": "query",
55884          "name": "pretty",
55885          "type": "string",
55886          "uniqueItems": true
55887        },
55888        {
55889          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55890          "in": "query",
55891          "name": "resourceVersion",
55892          "type": "string",
55893          "uniqueItems": true
55894        },
55895        {
55896          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55897          "in": "query",
55898          "name": "resourceVersionMatch",
55899          "type": "string",
55900          "uniqueItems": true
55901        },
55902        {
55903          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55904          "in": "query",
55905          "name": "timeoutSeconds",
55906          "type": "integer",
55907          "uniqueItems": true
55908        },
55909        {
55910          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55911          "in": "query",
55912          "name": "watch",
55913          "type": "boolean",
55914          "uniqueItems": true
55915        }
55916      ]
55917    },
55918    "/apis/autoscaling/v2beta1/": {
55919      "get": {
55920        "consumes": [
55921          "application/json",
55922          "application/yaml",
55923          "application/vnd.kubernetes.protobuf"
55924        ],
55925        "description": "get available resources",
55926        "operationId": "getAutoscalingV2beta1APIResources",
55927        "produces": [
55928          "application/json",
55929          "application/yaml",
55930          "application/vnd.kubernetes.protobuf"
55931        ],
55932        "responses": {
55933          "200": {
55934            "description": "OK",
55935            "schema": {
55936              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
55937            }
55938          },
55939          "401": {
55940            "description": "Unauthorized"
55941          }
55942        },
55943        "schemes": [
55944          "https"
55945        ],
55946        "tags": [
55947          "autoscaling_v2beta1"
55948        ]
55949      }
55950    },
55951    "/apis/autoscaling/v2beta1/horizontalpodautoscalers": {
55952      "get": {
55953        "consumes": [
55954          "*/*"
55955        ],
55956        "description": "list or watch objects of kind HorizontalPodAutoscaler",
55957        "operationId": "listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces",
55958        "produces": [
55959          "application/json",
55960          "application/yaml",
55961          "application/vnd.kubernetes.protobuf",
55962          "application/json;stream=watch",
55963          "application/vnd.kubernetes.protobuf;stream=watch"
55964        ],
55965        "responses": {
55966          "200": {
55967            "description": "OK",
55968            "schema": {
55969              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
55970            }
55971          },
55972          "401": {
55973            "description": "Unauthorized"
55974          }
55975        },
55976        "schemes": [
55977          "https"
55978        ],
55979        "tags": [
55980          "autoscaling_v2beta1"
55981        ],
55982        "x-kubernetes-action": "list",
55983        "x-kubernetes-group-version-kind": {
55984          "group": "autoscaling",
55985          "kind": "HorizontalPodAutoscaler",
55986          "version": "v2beta1"
55987        }
55988      },
55989      "parameters": [
55990        {
55991          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
55992          "in": "query",
55993          "name": "allowWatchBookmarks",
55994          "type": "boolean",
55995          "uniqueItems": true
55996        },
55997        {
55998          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55999          "in": "query",
56000          "name": "continue",
56001          "type": "string",
56002          "uniqueItems": true
56003        },
56004        {
56005          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56006          "in": "query",
56007          "name": "fieldSelector",
56008          "type": "string",
56009          "uniqueItems": true
56010        },
56011        {
56012          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56013          "in": "query",
56014          "name": "labelSelector",
56015          "type": "string",
56016          "uniqueItems": true
56017        },
56018        {
56019          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56020          "in": "query",
56021          "name": "limit",
56022          "type": "integer",
56023          "uniqueItems": true
56024        },
56025        {
56026          "description": "If 'true', then the output is pretty printed.",
56027          "in": "query",
56028          "name": "pretty",
56029          "type": "string",
56030          "uniqueItems": true
56031        },
56032        {
56033          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56034          "in": "query",
56035          "name": "resourceVersion",
56036          "type": "string",
56037          "uniqueItems": true
56038        },
56039        {
56040          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56041          "in": "query",
56042          "name": "resourceVersionMatch",
56043          "type": "string",
56044          "uniqueItems": true
56045        },
56046        {
56047          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56048          "in": "query",
56049          "name": "timeoutSeconds",
56050          "type": "integer",
56051          "uniqueItems": true
56052        },
56053        {
56054          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56055          "in": "query",
56056          "name": "watch",
56057          "type": "boolean",
56058          "uniqueItems": true
56059        }
56060      ]
56061    },
56062    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers": {
56063      "delete": {
56064        "consumes": [
56065          "*/*"
56066        ],
56067        "description": "delete collection of HorizontalPodAutoscaler",
56068        "operationId": "deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler",
56069        "parameters": [
56070          {
56071            "in": "body",
56072            "name": "body",
56073            "schema": {
56074              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56075            }
56076          },
56077          {
56078            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56079            "in": "query",
56080            "name": "continue",
56081            "type": "string",
56082            "uniqueItems": true
56083          },
56084          {
56085            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56086            "in": "query",
56087            "name": "dryRun",
56088            "type": "string",
56089            "uniqueItems": true
56090          },
56091          {
56092            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56093            "in": "query",
56094            "name": "fieldSelector",
56095            "type": "string",
56096            "uniqueItems": true
56097          },
56098          {
56099            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
56100            "in": "query",
56101            "name": "gracePeriodSeconds",
56102            "type": "integer",
56103            "uniqueItems": true
56104          },
56105          {
56106            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56107            "in": "query",
56108            "name": "labelSelector",
56109            "type": "string",
56110            "uniqueItems": true
56111          },
56112          {
56113            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56114            "in": "query",
56115            "name": "limit",
56116            "type": "integer",
56117            "uniqueItems": true
56118          },
56119          {
56120            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
56121            "in": "query",
56122            "name": "orphanDependents",
56123            "type": "boolean",
56124            "uniqueItems": true
56125          },
56126          {
56127            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
56128            "in": "query",
56129            "name": "propagationPolicy",
56130            "type": "string",
56131            "uniqueItems": true
56132          },
56133          {
56134            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56135            "in": "query",
56136            "name": "resourceVersion",
56137            "type": "string",
56138            "uniqueItems": true
56139          },
56140          {
56141            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56142            "in": "query",
56143            "name": "resourceVersionMatch",
56144            "type": "string",
56145            "uniqueItems": true
56146          },
56147          {
56148            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56149            "in": "query",
56150            "name": "timeoutSeconds",
56151            "type": "integer",
56152            "uniqueItems": true
56153          }
56154        ],
56155        "produces": [
56156          "application/json",
56157          "application/yaml",
56158          "application/vnd.kubernetes.protobuf"
56159        ],
56160        "responses": {
56161          "200": {
56162            "description": "OK",
56163            "schema": {
56164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56165            }
56166          },
56167          "401": {
56168            "description": "Unauthorized"
56169          }
56170        },
56171        "schemes": [
56172          "https"
56173        ],
56174        "tags": [
56175          "autoscaling_v2beta1"
56176        ],
56177        "x-kubernetes-action": "deletecollection",
56178        "x-kubernetes-group-version-kind": {
56179          "group": "autoscaling",
56180          "kind": "HorizontalPodAutoscaler",
56181          "version": "v2beta1"
56182        }
56183      },
56184      "get": {
56185        "consumes": [
56186          "*/*"
56187        ],
56188        "description": "list or watch objects of kind HorizontalPodAutoscaler",
56189        "operationId": "listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56190        "parameters": [
56191          {
56192            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56193            "in": "query",
56194            "name": "allowWatchBookmarks",
56195            "type": "boolean",
56196            "uniqueItems": true
56197          },
56198          {
56199            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56200            "in": "query",
56201            "name": "continue",
56202            "type": "string",
56203            "uniqueItems": true
56204          },
56205          {
56206            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56207            "in": "query",
56208            "name": "fieldSelector",
56209            "type": "string",
56210            "uniqueItems": true
56211          },
56212          {
56213            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56214            "in": "query",
56215            "name": "labelSelector",
56216            "type": "string",
56217            "uniqueItems": true
56218          },
56219          {
56220            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56221            "in": "query",
56222            "name": "limit",
56223            "type": "integer",
56224            "uniqueItems": true
56225          },
56226          {
56227            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56228            "in": "query",
56229            "name": "resourceVersion",
56230            "type": "string",
56231            "uniqueItems": true
56232          },
56233          {
56234            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56235            "in": "query",
56236            "name": "resourceVersionMatch",
56237            "type": "string",
56238            "uniqueItems": true
56239          },
56240          {
56241            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56242            "in": "query",
56243            "name": "timeoutSeconds",
56244            "type": "integer",
56245            "uniqueItems": true
56246          },
56247          {
56248            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56249            "in": "query",
56250            "name": "watch",
56251            "type": "boolean",
56252            "uniqueItems": true
56253          }
56254        ],
56255        "produces": [
56256          "application/json",
56257          "application/yaml",
56258          "application/vnd.kubernetes.protobuf",
56259          "application/json;stream=watch",
56260          "application/vnd.kubernetes.protobuf;stream=watch"
56261        ],
56262        "responses": {
56263          "200": {
56264            "description": "OK",
56265            "schema": {
56266              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
56267            }
56268          },
56269          "401": {
56270            "description": "Unauthorized"
56271          }
56272        },
56273        "schemes": [
56274          "https"
56275        ],
56276        "tags": [
56277          "autoscaling_v2beta1"
56278        ],
56279        "x-kubernetes-action": "list",
56280        "x-kubernetes-group-version-kind": {
56281          "group": "autoscaling",
56282          "kind": "HorizontalPodAutoscaler",
56283          "version": "v2beta1"
56284        }
56285      },
56286      "parameters": [
56287        {
56288          "description": "object name and auth scope, such as for teams and projects",
56289          "in": "path",
56290          "name": "namespace",
56291          "required": true,
56292          "type": "string",
56293          "uniqueItems": true
56294        },
56295        {
56296          "description": "If 'true', then the output is pretty printed.",
56297          "in": "query",
56298          "name": "pretty",
56299          "type": "string",
56300          "uniqueItems": true
56301        }
56302      ],
56303      "post": {
56304        "consumes": [
56305          "*/*"
56306        ],
56307        "description": "create a HorizontalPodAutoscaler",
56308        "operationId": "createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56309        "parameters": [
56310          {
56311            "in": "body",
56312            "name": "body",
56313            "required": true,
56314            "schema": {
56315              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56316            }
56317          },
56318          {
56319            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56320            "in": "query",
56321            "name": "dryRun",
56322            "type": "string",
56323            "uniqueItems": true
56324          },
56325          {
56326            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56327            "in": "query",
56328            "name": "fieldManager",
56329            "type": "string",
56330            "uniqueItems": true
56331          }
56332        ],
56333        "produces": [
56334          "application/json",
56335          "application/yaml",
56336          "application/vnd.kubernetes.protobuf"
56337        ],
56338        "responses": {
56339          "200": {
56340            "description": "OK",
56341            "schema": {
56342              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56343            }
56344          },
56345          "201": {
56346            "description": "Created",
56347            "schema": {
56348              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56349            }
56350          },
56351          "202": {
56352            "description": "Accepted",
56353            "schema": {
56354              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56355            }
56356          },
56357          "401": {
56358            "description": "Unauthorized"
56359          }
56360        },
56361        "schemes": [
56362          "https"
56363        ],
56364        "tags": [
56365          "autoscaling_v2beta1"
56366        ],
56367        "x-kubernetes-action": "post",
56368        "x-kubernetes-group-version-kind": {
56369          "group": "autoscaling",
56370          "kind": "HorizontalPodAutoscaler",
56371          "version": "v2beta1"
56372        }
56373      }
56374    },
56375    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
56376      "delete": {
56377        "consumes": [
56378          "*/*"
56379        ],
56380        "description": "delete a HorizontalPodAutoscaler",
56381        "operationId": "deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56382        "parameters": [
56383          {
56384            "in": "body",
56385            "name": "body",
56386            "schema": {
56387              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56388            }
56389          },
56390          {
56391            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56392            "in": "query",
56393            "name": "dryRun",
56394            "type": "string",
56395            "uniqueItems": true
56396          },
56397          {
56398            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
56399            "in": "query",
56400            "name": "gracePeriodSeconds",
56401            "type": "integer",
56402            "uniqueItems": true
56403          },
56404          {
56405            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
56406            "in": "query",
56407            "name": "orphanDependents",
56408            "type": "boolean",
56409            "uniqueItems": true
56410          },
56411          {
56412            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
56413            "in": "query",
56414            "name": "propagationPolicy",
56415            "type": "string",
56416            "uniqueItems": true
56417          }
56418        ],
56419        "produces": [
56420          "application/json",
56421          "application/yaml",
56422          "application/vnd.kubernetes.protobuf"
56423        ],
56424        "responses": {
56425          "200": {
56426            "description": "OK",
56427            "schema": {
56428              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56429            }
56430          },
56431          "202": {
56432            "description": "Accepted",
56433            "schema": {
56434              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56435            }
56436          },
56437          "401": {
56438            "description": "Unauthorized"
56439          }
56440        },
56441        "schemes": [
56442          "https"
56443        ],
56444        "tags": [
56445          "autoscaling_v2beta1"
56446        ],
56447        "x-kubernetes-action": "delete",
56448        "x-kubernetes-group-version-kind": {
56449          "group": "autoscaling",
56450          "kind": "HorizontalPodAutoscaler",
56451          "version": "v2beta1"
56452        }
56453      },
56454      "get": {
56455        "consumes": [
56456          "*/*"
56457        ],
56458        "description": "read the specified HorizontalPodAutoscaler",
56459        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56460        "produces": [
56461          "application/json",
56462          "application/yaml",
56463          "application/vnd.kubernetes.protobuf"
56464        ],
56465        "responses": {
56466          "200": {
56467            "description": "OK",
56468            "schema": {
56469              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56470            }
56471          },
56472          "401": {
56473            "description": "Unauthorized"
56474          }
56475        },
56476        "schemes": [
56477          "https"
56478        ],
56479        "tags": [
56480          "autoscaling_v2beta1"
56481        ],
56482        "x-kubernetes-action": "get",
56483        "x-kubernetes-group-version-kind": {
56484          "group": "autoscaling",
56485          "kind": "HorizontalPodAutoscaler",
56486          "version": "v2beta1"
56487        }
56488      },
56489      "parameters": [
56490        {
56491          "description": "name of the HorizontalPodAutoscaler",
56492          "in": "path",
56493          "name": "name",
56494          "required": true,
56495          "type": "string",
56496          "uniqueItems": true
56497        },
56498        {
56499          "description": "object name and auth scope, such as for teams and projects",
56500          "in": "path",
56501          "name": "namespace",
56502          "required": true,
56503          "type": "string",
56504          "uniqueItems": true
56505        },
56506        {
56507          "description": "If 'true', then the output is pretty printed.",
56508          "in": "query",
56509          "name": "pretty",
56510          "type": "string",
56511          "uniqueItems": true
56512        }
56513      ],
56514      "patch": {
56515        "consumes": [
56516          "application/json-patch+json",
56517          "application/merge-patch+json",
56518          "application/strategic-merge-patch+json",
56519          "application/apply-patch+yaml"
56520        ],
56521        "description": "partially update the specified HorizontalPodAutoscaler",
56522        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56523        "parameters": [
56524          {
56525            "in": "body",
56526            "name": "body",
56527            "required": true,
56528            "schema": {
56529              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56530            }
56531          },
56532          {
56533            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56534            "in": "query",
56535            "name": "dryRun",
56536            "type": "string",
56537            "uniqueItems": true
56538          },
56539          {
56540            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
56541            "in": "query",
56542            "name": "fieldManager",
56543            "type": "string",
56544            "uniqueItems": true
56545          },
56546          {
56547            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
56548            "in": "query",
56549            "name": "force",
56550            "type": "boolean",
56551            "uniqueItems": true
56552          }
56553        ],
56554        "produces": [
56555          "application/json",
56556          "application/yaml",
56557          "application/vnd.kubernetes.protobuf"
56558        ],
56559        "responses": {
56560          "200": {
56561            "description": "OK",
56562            "schema": {
56563              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56564            }
56565          },
56566          "401": {
56567            "description": "Unauthorized"
56568          }
56569        },
56570        "schemes": [
56571          "https"
56572        ],
56573        "tags": [
56574          "autoscaling_v2beta1"
56575        ],
56576        "x-kubernetes-action": "patch",
56577        "x-kubernetes-group-version-kind": {
56578          "group": "autoscaling",
56579          "kind": "HorizontalPodAutoscaler",
56580          "version": "v2beta1"
56581        }
56582      },
56583      "put": {
56584        "consumes": [
56585          "*/*"
56586        ],
56587        "description": "replace the specified HorizontalPodAutoscaler",
56588        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
56589        "parameters": [
56590          {
56591            "in": "body",
56592            "name": "body",
56593            "required": true,
56594            "schema": {
56595              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56596            }
56597          },
56598          {
56599            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56600            "in": "query",
56601            "name": "dryRun",
56602            "type": "string",
56603            "uniqueItems": true
56604          },
56605          {
56606            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56607            "in": "query",
56608            "name": "fieldManager",
56609            "type": "string",
56610            "uniqueItems": true
56611          }
56612        ],
56613        "produces": [
56614          "application/json",
56615          "application/yaml",
56616          "application/vnd.kubernetes.protobuf"
56617        ],
56618        "responses": {
56619          "200": {
56620            "description": "OK",
56621            "schema": {
56622              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56623            }
56624          },
56625          "201": {
56626            "description": "Created",
56627            "schema": {
56628              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56629            }
56630          },
56631          "401": {
56632            "description": "Unauthorized"
56633          }
56634        },
56635        "schemes": [
56636          "https"
56637        ],
56638        "tags": [
56639          "autoscaling_v2beta1"
56640        ],
56641        "x-kubernetes-action": "put",
56642        "x-kubernetes-group-version-kind": {
56643          "group": "autoscaling",
56644          "kind": "HorizontalPodAutoscaler",
56645          "version": "v2beta1"
56646        }
56647      }
56648    },
56649    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
56650      "get": {
56651        "consumes": [
56652          "*/*"
56653        ],
56654        "description": "read status of the specified HorizontalPodAutoscaler",
56655        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56656        "produces": [
56657          "application/json",
56658          "application/yaml",
56659          "application/vnd.kubernetes.protobuf"
56660        ],
56661        "responses": {
56662          "200": {
56663            "description": "OK",
56664            "schema": {
56665              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56666            }
56667          },
56668          "401": {
56669            "description": "Unauthorized"
56670          }
56671        },
56672        "schemes": [
56673          "https"
56674        ],
56675        "tags": [
56676          "autoscaling_v2beta1"
56677        ],
56678        "x-kubernetes-action": "get",
56679        "x-kubernetes-group-version-kind": {
56680          "group": "autoscaling",
56681          "kind": "HorizontalPodAutoscaler",
56682          "version": "v2beta1"
56683        }
56684      },
56685      "parameters": [
56686        {
56687          "description": "name of the HorizontalPodAutoscaler",
56688          "in": "path",
56689          "name": "name",
56690          "required": true,
56691          "type": "string",
56692          "uniqueItems": true
56693        },
56694        {
56695          "description": "object name and auth scope, such as for teams and projects",
56696          "in": "path",
56697          "name": "namespace",
56698          "required": true,
56699          "type": "string",
56700          "uniqueItems": true
56701        },
56702        {
56703          "description": "If 'true', then the output is pretty printed.",
56704          "in": "query",
56705          "name": "pretty",
56706          "type": "string",
56707          "uniqueItems": true
56708        }
56709      ],
56710      "patch": {
56711        "consumes": [
56712          "application/json-patch+json",
56713          "application/merge-patch+json",
56714          "application/strategic-merge-patch+json",
56715          "application/apply-patch+yaml"
56716        ],
56717        "description": "partially update status of the specified HorizontalPodAutoscaler",
56718        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56719        "parameters": [
56720          {
56721            "in": "body",
56722            "name": "body",
56723            "required": true,
56724            "schema": {
56725              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56726            }
56727          },
56728          {
56729            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56730            "in": "query",
56731            "name": "dryRun",
56732            "type": "string",
56733            "uniqueItems": true
56734          },
56735          {
56736            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
56737            "in": "query",
56738            "name": "fieldManager",
56739            "type": "string",
56740            "uniqueItems": true
56741          },
56742          {
56743            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
56744            "in": "query",
56745            "name": "force",
56746            "type": "boolean",
56747            "uniqueItems": true
56748          }
56749        ],
56750        "produces": [
56751          "application/json",
56752          "application/yaml",
56753          "application/vnd.kubernetes.protobuf"
56754        ],
56755        "responses": {
56756          "200": {
56757            "description": "OK",
56758            "schema": {
56759              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56760            }
56761          },
56762          "401": {
56763            "description": "Unauthorized"
56764          }
56765        },
56766        "schemes": [
56767          "https"
56768        ],
56769        "tags": [
56770          "autoscaling_v2beta1"
56771        ],
56772        "x-kubernetes-action": "patch",
56773        "x-kubernetes-group-version-kind": {
56774          "group": "autoscaling",
56775          "kind": "HorizontalPodAutoscaler",
56776          "version": "v2beta1"
56777        }
56778      },
56779      "put": {
56780        "consumes": [
56781          "*/*"
56782        ],
56783        "description": "replace status of the specified HorizontalPodAutoscaler",
56784        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
56785        "parameters": [
56786          {
56787            "in": "body",
56788            "name": "body",
56789            "required": true,
56790            "schema": {
56791              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56792            }
56793          },
56794          {
56795            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56796            "in": "query",
56797            "name": "dryRun",
56798            "type": "string",
56799            "uniqueItems": true
56800          },
56801          {
56802            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56803            "in": "query",
56804            "name": "fieldManager",
56805            "type": "string",
56806            "uniqueItems": true
56807          }
56808        ],
56809        "produces": [
56810          "application/json",
56811          "application/yaml",
56812          "application/vnd.kubernetes.protobuf"
56813        ],
56814        "responses": {
56815          "200": {
56816            "description": "OK",
56817            "schema": {
56818              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56819            }
56820          },
56821          "201": {
56822            "description": "Created",
56823            "schema": {
56824              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
56825            }
56826          },
56827          "401": {
56828            "description": "Unauthorized"
56829          }
56830        },
56831        "schemes": [
56832          "https"
56833        ],
56834        "tags": [
56835          "autoscaling_v2beta1"
56836        ],
56837        "x-kubernetes-action": "put",
56838        "x-kubernetes-group-version-kind": {
56839          "group": "autoscaling",
56840          "kind": "HorizontalPodAutoscaler",
56841          "version": "v2beta1"
56842        }
56843      }
56844    },
56845    "/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers": {
56846      "get": {
56847        "consumes": [
56848          "*/*"
56849        ],
56850        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
56851        "operationId": "watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces",
56852        "produces": [
56853          "application/json",
56854          "application/yaml",
56855          "application/vnd.kubernetes.protobuf",
56856          "application/json;stream=watch",
56857          "application/vnd.kubernetes.protobuf;stream=watch"
56858        ],
56859        "responses": {
56860          "200": {
56861            "description": "OK",
56862            "schema": {
56863              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56864            }
56865          },
56866          "401": {
56867            "description": "Unauthorized"
56868          }
56869        },
56870        "schemes": [
56871          "https"
56872        ],
56873        "tags": [
56874          "autoscaling_v2beta1"
56875        ],
56876        "x-kubernetes-action": "watchlist",
56877        "x-kubernetes-group-version-kind": {
56878          "group": "autoscaling",
56879          "kind": "HorizontalPodAutoscaler",
56880          "version": "v2beta1"
56881        }
56882      },
56883      "parameters": [
56884        {
56885          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56886          "in": "query",
56887          "name": "allowWatchBookmarks",
56888          "type": "boolean",
56889          "uniqueItems": true
56890        },
56891        {
56892          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56893          "in": "query",
56894          "name": "continue",
56895          "type": "string",
56896          "uniqueItems": true
56897        },
56898        {
56899          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56900          "in": "query",
56901          "name": "fieldSelector",
56902          "type": "string",
56903          "uniqueItems": true
56904        },
56905        {
56906          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56907          "in": "query",
56908          "name": "labelSelector",
56909          "type": "string",
56910          "uniqueItems": true
56911        },
56912        {
56913          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56914          "in": "query",
56915          "name": "limit",
56916          "type": "integer",
56917          "uniqueItems": true
56918        },
56919        {
56920          "description": "If 'true', then the output is pretty printed.",
56921          "in": "query",
56922          "name": "pretty",
56923          "type": "string",
56924          "uniqueItems": true
56925        },
56926        {
56927          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56928          "in": "query",
56929          "name": "resourceVersion",
56930          "type": "string",
56931          "uniqueItems": true
56932        },
56933        {
56934          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56935          "in": "query",
56936          "name": "resourceVersionMatch",
56937          "type": "string",
56938          "uniqueItems": true
56939        },
56940        {
56941          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56942          "in": "query",
56943          "name": "timeoutSeconds",
56944          "type": "integer",
56945          "uniqueItems": true
56946        },
56947        {
56948          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56949          "in": "query",
56950          "name": "watch",
56951          "type": "boolean",
56952          "uniqueItems": true
56953        }
56954      ]
56955    },
56956    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
56957      "get": {
56958        "consumes": [
56959          "*/*"
56960        ],
56961        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
56962        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList",
56963        "produces": [
56964          "application/json",
56965          "application/yaml",
56966          "application/vnd.kubernetes.protobuf",
56967          "application/json;stream=watch",
56968          "application/vnd.kubernetes.protobuf;stream=watch"
56969        ],
56970        "responses": {
56971          "200": {
56972            "description": "OK",
56973            "schema": {
56974              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56975            }
56976          },
56977          "401": {
56978            "description": "Unauthorized"
56979          }
56980        },
56981        "schemes": [
56982          "https"
56983        ],
56984        "tags": [
56985          "autoscaling_v2beta1"
56986        ],
56987        "x-kubernetes-action": "watchlist",
56988        "x-kubernetes-group-version-kind": {
56989          "group": "autoscaling",
56990          "kind": "HorizontalPodAutoscaler",
56991          "version": "v2beta1"
56992        }
56993      },
56994      "parameters": [
56995        {
56996          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
56997          "in": "query",
56998          "name": "allowWatchBookmarks",
56999          "type": "boolean",
57000          "uniqueItems": true
57001        },
57002        {
57003          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57004          "in": "query",
57005          "name": "continue",
57006          "type": "string",
57007          "uniqueItems": true
57008        },
57009        {
57010          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57011          "in": "query",
57012          "name": "fieldSelector",
57013          "type": "string",
57014          "uniqueItems": true
57015        },
57016        {
57017          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57018          "in": "query",
57019          "name": "labelSelector",
57020          "type": "string",
57021          "uniqueItems": true
57022        },
57023        {
57024          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57025          "in": "query",
57026          "name": "limit",
57027          "type": "integer",
57028          "uniqueItems": true
57029        },
57030        {
57031          "description": "object name and auth scope, such as for teams and projects",
57032          "in": "path",
57033          "name": "namespace",
57034          "required": true,
57035          "type": "string",
57036          "uniqueItems": true
57037        },
57038        {
57039          "description": "If 'true', then the output is pretty printed.",
57040          "in": "query",
57041          "name": "pretty",
57042          "type": "string",
57043          "uniqueItems": true
57044        },
57045        {
57046          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57047          "in": "query",
57048          "name": "resourceVersion",
57049          "type": "string",
57050          "uniqueItems": true
57051        },
57052        {
57053          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57054          "in": "query",
57055          "name": "resourceVersionMatch",
57056          "type": "string",
57057          "uniqueItems": true
57058        },
57059        {
57060          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57061          "in": "query",
57062          "name": "timeoutSeconds",
57063          "type": "integer",
57064          "uniqueItems": true
57065        },
57066        {
57067          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57068          "in": "query",
57069          "name": "watch",
57070          "type": "boolean",
57071          "uniqueItems": true
57072        }
57073      ]
57074    },
57075    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
57076      "get": {
57077        "consumes": [
57078          "*/*"
57079        ],
57080        "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.",
57081        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
57082        "produces": [
57083          "application/json",
57084          "application/yaml",
57085          "application/vnd.kubernetes.protobuf",
57086          "application/json;stream=watch",
57087          "application/vnd.kubernetes.protobuf;stream=watch"
57088        ],
57089        "responses": {
57090          "200": {
57091            "description": "OK",
57092            "schema": {
57093              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
57094            }
57095          },
57096          "401": {
57097            "description": "Unauthorized"
57098          }
57099        },
57100        "schemes": [
57101          "https"
57102        ],
57103        "tags": [
57104          "autoscaling_v2beta1"
57105        ],
57106        "x-kubernetes-action": "watch",
57107        "x-kubernetes-group-version-kind": {
57108          "group": "autoscaling",
57109          "kind": "HorizontalPodAutoscaler",
57110          "version": "v2beta1"
57111        }
57112      },
57113      "parameters": [
57114        {
57115          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57116          "in": "query",
57117          "name": "allowWatchBookmarks",
57118          "type": "boolean",
57119          "uniqueItems": true
57120        },
57121        {
57122          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57123          "in": "query",
57124          "name": "continue",
57125          "type": "string",
57126          "uniqueItems": true
57127        },
57128        {
57129          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57130          "in": "query",
57131          "name": "fieldSelector",
57132          "type": "string",
57133          "uniqueItems": true
57134        },
57135        {
57136          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57137          "in": "query",
57138          "name": "labelSelector",
57139          "type": "string",
57140          "uniqueItems": true
57141        },
57142        {
57143          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57144          "in": "query",
57145          "name": "limit",
57146          "type": "integer",
57147          "uniqueItems": true
57148        },
57149        {
57150          "description": "name of the HorizontalPodAutoscaler",
57151          "in": "path",
57152          "name": "name",
57153          "required": true,
57154          "type": "string",
57155          "uniqueItems": true
57156        },
57157        {
57158          "description": "object name and auth scope, such as for teams and projects",
57159          "in": "path",
57160          "name": "namespace",
57161          "required": true,
57162          "type": "string",
57163          "uniqueItems": true
57164        },
57165        {
57166          "description": "If 'true', then the output is pretty printed.",
57167          "in": "query",
57168          "name": "pretty",
57169          "type": "string",
57170          "uniqueItems": true
57171        },
57172        {
57173          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57174          "in": "query",
57175          "name": "resourceVersion",
57176          "type": "string",
57177          "uniqueItems": true
57178        },
57179        {
57180          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57181          "in": "query",
57182          "name": "resourceVersionMatch",
57183          "type": "string",
57184          "uniqueItems": true
57185        },
57186        {
57187          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57188          "in": "query",
57189          "name": "timeoutSeconds",
57190          "type": "integer",
57191          "uniqueItems": true
57192        },
57193        {
57194          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57195          "in": "query",
57196          "name": "watch",
57197          "type": "boolean",
57198          "uniqueItems": true
57199        }
57200      ]
57201    },
57202    "/apis/autoscaling/v2beta2/": {
57203      "get": {
57204        "consumes": [
57205          "application/json",
57206          "application/yaml",
57207          "application/vnd.kubernetes.protobuf"
57208        ],
57209        "description": "get available resources",
57210        "operationId": "getAutoscalingV2beta2APIResources",
57211        "produces": [
57212          "application/json",
57213          "application/yaml",
57214          "application/vnd.kubernetes.protobuf"
57215        ],
57216        "responses": {
57217          "200": {
57218            "description": "OK",
57219            "schema": {
57220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
57221            }
57222          },
57223          "401": {
57224            "description": "Unauthorized"
57225          }
57226        },
57227        "schemes": [
57228          "https"
57229        ],
57230        "tags": [
57231          "autoscaling_v2beta2"
57232        ]
57233      }
57234    },
57235    "/apis/autoscaling/v2beta2/horizontalpodautoscalers": {
57236      "get": {
57237        "consumes": [
57238          "*/*"
57239        ],
57240        "description": "list or watch objects of kind HorizontalPodAutoscaler",
57241        "operationId": "listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces",
57242        "produces": [
57243          "application/json",
57244          "application/yaml",
57245          "application/vnd.kubernetes.protobuf",
57246          "application/json;stream=watch",
57247          "application/vnd.kubernetes.protobuf;stream=watch"
57248        ],
57249        "responses": {
57250          "200": {
57251            "description": "OK",
57252            "schema": {
57253              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
57254            }
57255          },
57256          "401": {
57257            "description": "Unauthorized"
57258          }
57259        },
57260        "schemes": [
57261          "https"
57262        ],
57263        "tags": [
57264          "autoscaling_v2beta2"
57265        ],
57266        "x-kubernetes-action": "list",
57267        "x-kubernetes-group-version-kind": {
57268          "group": "autoscaling",
57269          "kind": "HorizontalPodAutoscaler",
57270          "version": "v2beta2"
57271        }
57272      },
57273      "parameters": [
57274        {
57275          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57276          "in": "query",
57277          "name": "allowWatchBookmarks",
57278          "type": "boolean",
57279          "uniqueItems": true
57280        },
57281        {
57282          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57283          "in": "query",
57284          "name": "continue",
57285          "type": "string",
57286          "uniqueItems": true
57287        },
57288        {
57289          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57290          "in": "query",
57291          "name": "fieldSelector",
57292          "type": "string",
57293          "uniqueItems": true
57294        },
57295        {
57296          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57297          "in": "query",
57298          "name": "labelSelector",
57299          "type": "string",
57300          "uniqueItems": true
57301        },
57302        {
57303          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57304          "in": "query",
57305          "name": "limit",
57306          "type": "integer",
57307          "uniqueItems": true
57308        },
57309        {
57310          "description": "If 'true', then the output is pretty printed.",
57311          "in": "query",
57312          "name": "pretty",
57313          "type": "string",
57314          "uniqueItems": true
57315        },
57316        {
57317          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57318          "in": "query",
57319          "name": "resourceVersion",
57320          "type": "string",
57321          "uniqueItems": true
57322        },
57323        {
57324          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57325          "in": "query",
57326          "name": "resourceVersionMatch",
57327          "type": "string",
57328          "uniqueItems": true
57329        },
57330        {
57331          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57332          "in": "query",
57333          "name": "timeoutSeconds",
57334          "type": "integer",
57335          "uniqueItems": true
57336        },
57337        {
57338          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57339          "in": "query",
57340          "name": "watch",
57341          "type": "boolean",
57342          "uniqueItems": true
57343        }
57344      ]
57345    },
57346    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers": {
57347      "delete": {
57348        "consumes": [
57349          "*/*"
57350        ],
57351        "description": "delete collection of HorizontalPodAutoscaler",
57352        "operationId": "deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler",
57353        "parameters": [
57354          {
57355            "in": "body",
57356            "name": "body",
57357            "schema": {
57358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57359            }
57360          },
57361          {
57362            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57363            "in": "query",
57364            "name": "continue",
57365            "type": "string",
57366            "uniqueItems": true
57367          },
57368          {
57369            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57370            "in": "query",
57371            "name": "dryRun",
57372            "type": "string",
57373            "uniqueItems": true
57374          },
57375          {
57376            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57377            "in": "query",
57378            "name": "fieldSelector",
57379            "type": "string",
57380            "uniqueItems": true
57381          },
57382          {
57383            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57384            "in": "query",
57385            "name": "gracePeriodSeconds",
57386            "type": "integer",
57387            "uniqueItems": true
57388          },
57389          {
57390            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57391            "in": "query",
57392            "name": "labelSelector",
57393            "type": "string",
57394            "uniqueItems": true
57395          },
57396          {
57397            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57398            "in": "query",
57399            "name": "limit",
57400            "type": "integer",
57401            "uniqueItems": true
57402          },
57403          {
57404            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57405            "in": "query",
57406            "name": "orphanDependents",
57407            "type": "boolean",
57408            "uniqueItems": true
57409          },
57410          {
57411            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57412            "in": "query",
57413            "name": "propagationPolicy",
57414            "type": "string",
57415            "uniqueItems": true
57416          },
57417          {
57418            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57419            "in": "query",
57420            "name": "resourceVersion",
57421            "type": "string",
57422            "uniqueItems": true
57423          },
57424          {
57425            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57426            "in": "query",
57427            "name": "resourceVersionMatch",
57428            "type": "string",
57429            "uniqueItems": true
57430          },
57431          {
57432            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57433            "in": "query",
57434            "name": "timeoutSeconds",
57435            "type": "integer",
57436            "uniqueItems": true
57437          }
57438        ],
57439        "produces": [
57440          "application/json",
57441          "application/yaml",
57442          "application/vnd.kubernetes.protobuf"
57443        ],
57444        "responses": {
57445          "200": {
57446            "description": "OK",
57447            "schema": {
57448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57449            }
57450          },
57451          "401": {
57452            "description": "Unauthorized"
57453          }
57454        },
57455        "schemes": [
57456          "https"
57457        ],
57458        "tags": [
57459          "autoscaling_v2beta2"
57460        ],
57461        "x-kubernetes-action": "deletecollection",
57462        "x-kubernetes-group-version-kind": {
57463          "group": "autoscaling",
57464          "kind": "HorizontalPodAutoscaler",
57465          "version": "v2beta2"
57466        }
57467      },
57468      "get": {
57469        "consumes": [
57470          "*/*"
57471        ],
57472        "description": "list or watch objects of kind HorizontalPodAutoscaler",
57473        "operationId": "listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57474        "parameters": [
57475          {
57476            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
57477            "in": "query",
57478            "name": "allowWatchBookmarks",
57479            "type": "boolean",
57480            "uniqueItems": true
57481          },
57482          {
57483            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57484            "in": "query",
57485            "name": "continue",
57486            "type": "string",
57487            "uniqueItems": true
57488          },
57489          {
57490            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57491            "in": "query",
57492            "name": "fieldSelector",
57493            "type": "string",
57494            "uniqueItems": true
57495          },
57496          {
57497            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57498            "in": "query",
57499            "name": "labelSelector",
57500            "type": "string",
57501            "uniqueItems": true
57502          },
57503          {
57504            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57505            "in": "query",
57506            "name": "limit",
57507            "type": "integer",
57508            "uniqueItems": true
57509          },
57510          {
57511            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57512            "in": "query",
57513            "name": "resourceVersion",
57514            "type": "string",
57515            "uniqueItems": true
57516          },
57517          {
57518            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57519            "in": "query",
57520            "name": "resourceVersionMatch",
57521            "type": "string",
57522            "uniqueItems": true
57523          },
57524          {
57525            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57526            "in": "query",
57527            "name": "timeoutSeconds",
57528            "type": "integer",
57529            "uniqueItems": true
57530          },
57531          {
57532            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57533            "in": "query",
57534            "name": "watch",
57535            "type": "boolean",
57536            "uniqueItems": true
57537          }
57538        ],
57539        "produces": [
57540          "application/json",
57541          "application/yaml",
57542          "application/vnd.kubernetes.protobuf",
57543          "application/json;stream=watch",
57544          "application/vnd.kubernetes.protobuf;stream=watch"
57545        ],
57546        "responses": {
57547          "200": {
57548            "description": "OK",
57549            "schema": {
57550              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
57551            }
57552          },
57553          "401": {
57554            "description": "Unauthorized"
57555          }
57556        },
57557        "schemes": [
57558          "https"
57559        ],
57560        "tags": [
57561          "autoscaling_v2beta2"
57562        ],
57563        "x-kubernetes-action": "list",
57564        "x-kubernetes-group-version-kind": {
57565          "group": "autoscaling",
57566          "kind": "HorizontalPodAutoscaler",
57567          "version": "v2beta2"
57568        }
57569      },
57570      "parameters": [
57571        {
57572          "description": "object name and auth scope, such as for teams and projects",
57573          "in": "path",
57574          "name": "namespace",
57575          "required": true,
57576          "type": "string",
57577          "uniqueItems": true
57578        },
57579        {
57580          "description": "If 'true', then the output is pretty printed.",
57581          "in": "query",
57582          "name": "pretty",
57583          "type": "string",
57584          "uniqueItems": true
57585        }
57586      ],
57587      "post": {
57588        "consumes": [
57589          "*/*"
57590        ],
57591        "description": "create a HorizontalPodAutoscaler",
57592        "operationId": "createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57593        "parameters": [
57594          {
57595            "in": "body",
57596            "name": "body",
57597            "required": true,
57598            "schema": {
57599              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57600            }
57601          },
57602          {
57603            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57604            "in": "query",
57605            "name": "dryRun",
57606            "type": "string",
57607            "uniqueItems": true
57608          },
57609          {
57610            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57611            "in": "query",
57612            "name": "fieldManager",
57613            "type": "string",
57614            "uniqueItems": true
57615          }
57616        ],
57617        "produces": [
57618          "application/json",
57619          "application/yaml",
57620          "application/vnd.kubernetes.protobuf"
57621        ],
57622        "responses": {
57623          "200": {
57624            "description": "OK",
57625            "schema": {
57626              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57627            }
57628          },
57629          "201": {
57630            "description": "Created",
57631            "schema": {
57632              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57633            }
57634          },
57635          "202": {
57636            "description": "Accepted",
57637            "schema": {
57638              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57639            }
57640          },
57641          "401": {
57642            "description": "Unauthorized"
57643          }
57644        },
57645        "schemes": [
57646          "https"
57647        ],
57648        "tags": [
57649          "autoscaling_v2beta2"
57650        ],
57651        "x-kubernetes-action": "post",
57652        "x-kubernetes-group-version-kind": {
57653          "group": "autoscaling",
57654          "kind": "HorizontalPodAutoscaler",
57655          "version": "v2beta2"
57656        }
57657      }
57658    },
57659    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
57660      "delete": {
57661        "consumes": [
57662          "*/*"
57663        ],
57664        "description": "delete a HorizontalPodAutoscaler",
57665        "operationId": "deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57666        "parameters": [
57667          {
57668            "in": "body",
57669            "name": "body",
57670            "schema": {
57671              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57672            }
57673          },
57674          {
57675            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57676            "in": "query",
57677            "name": "dryRun",
57678            "type": "string",
57679            "uniqueItems": true
57680          },
57681          {
57682            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57683            "in": "query",
57684            "name": "gracePeriodSeconds",
57685            "type": "integer",
57686            "uniqueItems": true
57687          },
57688          {
57689            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57690            "in": "query",
57691            "name": "orphanDependents",
57692            "type": "boolean",
57693            "uniqueItems": true
57694          },
57695          {
57696            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57697            "in": "query",
57698            "name": "propagationPolicy",
57699            "type": "string",
57700            "uniqueItems": true
57701          }
57702        ],
57703        "produces": [
57704          "application/json",
57705          "application/yaml",
57706          "application/vnd.kubernetes.protobuf"
57707        ],
57708        "responses": {
57709          "200": {
57710            "description": "OK",
57711            "schema": {
57712              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57713            }
57714          },
57715          "202": {
57716            "description": "Accepted",
57717            "schema": {
57718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57719            }
57720          },
57721          "401": {
57722            "description": "Unauthorized"
57723          }
57724        },
57725        "schemes": [
57726          "https"
57727        ],
57728        "tags": [
57729          "autoscaling_v2beta2"
57730        ],
57731        "x-kubernetes-action": "delete",
57732        "x-kubernetes-group-version-kind": {
57733          "group": "autoscaling",
57734          "kind": "HorizontalPodAutoscaler",
57735          "version": "v2beta2"
57736        }
57737      },
57738      "get": {
57739        "consumes": [
57740          "*/*"
57741        ],
57742        "description": "read the specified HorizontalPodAutoscaler",
57743        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57744        "produces": [
57745          "application/json",
57746          "application/yaml",
57747          "application/vnd.kubernetes.protobuf"
57748        ],
57749        "responses": {
57750          "200": {
57751            "description": "OK",
57752            "schema": {
57753              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57754            }
57755          },
57756          "401": {
57757            "description": "Unauthorized"
57758          }
57759        },
57760        "schemes": [
57761          "https"
57762        ],
57763        "tags": [
57764          "autoscaling_v2beta2"
57765        ],
57766        "x-kubernetes-action": "get",
57767        "x-kubernetes-group-version-kind": {
57768          "group": "autoscaling",
57769          "kind": "HorizontalPodAutoscaler",
57770          "version": "v2beta2"
57771        }
57772      },
57773      "parameters": [
57774        {
57775          "description": "name of the HorizontalPodAutoscaler",
57776          "in": "path",
57777          "name": "name",
57778          "required": true,
57779          "type": "string",
57780          "uniqueItems": true
57781        },
57782        {
57783          "description": "object name and auth scope, such as for teams and projects",
57784          "in": "path",
57785          "name": "namespace",
57786          "required": true,
57787          "type": "string",
57788          "uniqueItems": true
57789        },
57790        {
57791          "description": "If 'true', then the output is pretty printed.",
57792          "in": "query",
57793          "name": "pretty",
57794          "type": "string",
57795          "uniqueItems": true
57796        }
57797      ],
57798      "patch": {
57799        "consumes": [
57800          "application/json-patch+json",
57801          "application/merge-patch+json",
57802          "application/strategic-merge-patch+json",
57803          "application/apply-patch+yaml"
57804        ],
57805        "description": "partially update the specified HorizontalPodAutoscaler",
57806        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57807        "parameters": [
57808          {
57809            "in": "body",
57810            "name": "body",
57811            "required": true,
57812            "schema": {
57813              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57814            }
57815          },
57816          {
57817            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57818            "in": "query",
57819            "name": "dryRun",
57820            "type": "string",
57821            "uniqueItems": true
57822          },
57823          {
57824            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
57825            "in": "query",
57826            "name": "fieldManager",
57827            "type": "string",
57828            "uniqueItems": true
57829          },
57830          {
57831            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
57832            "in": "query",
57833            "name": "force",
57834            "type": "boolean",
57835            "uniqueItems": true
57836          }
57837        ],
57838        "produces": [
57839          "application/json",
57840          "application/yaml",
57841          "application/vnd.kubernetes.protobuf"
57842        ],
57843        "responses": {
57844          "200": {
57845            "description": "OK",
57846            "schema": {
57847              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57848            }
57849          },
57850          "401": {
57851            "description": "Unauthorized"
57852          }
57853        },
57854        "schemes": [
57855          "https"
57856        ],
57857        "tags": [
57858          "autoscaling_v2beta2"
57859        ],
57860        "x-kubernetes-action": "patch",
57861        "x-kubernetes-group-version-kind": {
57862          "group": "autoscaling",
57863          "kind": "HorizontalPodAutoscaler",
57864          "version": "v2beta2"
57865        }
57866      },
57867      "put": {
57868        "consumes": [
57869          "*/*"
57870        ],
57871        "description": "replace the specified HorizontalPodAutoscaler",
57872        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
57873        "parameters": [
57874          {
57875            "in": "body",
57876            "name": "body",
57877            "required": true,
57878            "schema": {
57879              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57880            }
57881          },
57882          {
57883            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57884            "in": "query",
57885            "name": "dryRun",
57886            "type": "string",
57887            "uniqueItems": true
57888          },
57889          {
57890            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57891            "in": "query",
57892            "name": "fieldManager",
57893            "type": "string",
57894            "uniqueItems": true
57895          }
57896        ],
57897        "produces": [
57898          "application/json",
57899          "application/yaml",
57900          "application/vnd.kubernetes.protobuf"
57901        ],
57902        "responses": {
57903          "200": {
57904            "description": "OK",
57905            "schema": {
57906              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57907            }
57908          },
57909          "201": {
57910            "description": "Created",
57911            "schema": {
57912              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57913            }
57914          },
57915          "401": {
57916            "description": "Unauthorized"
57917          }
57918        },
57919        "schemes": [
57920          "https"
57921        ],
57922        "tags": [
57923          "autoscaling_v2beta2"
57924        ],
57925        "x-kubernetes-action": "put",
57926        "x-kubernetes-group-version-kind": {
57927          "group": "autoscaling",
57928          "kind": "HorizontalPodAutoscaler",
57929          "version": "v2beta2"
57930        }
57931      }
57932    },
57933    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
57934      "get": {
57935        "consumes": [
57936          "*/*"
57937        ],
57938        "description": "read status of the specified HorizontalPodAutoscaler",
57939        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
57940        "produces": [
57941          "application/json",
57942          "application/yaml",
57943          "application/vnd.kubernetes.protobuf"
57944        ],
57945        "responses": {
57946          "200": {
57947            "description": "OK",
57948            "schema": {
57949              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
57950            }
57951          },
57952          "401": {
57953            "description": "Unauthorized"
57954          }
57955        },
57956        "schemes": [
57957          "https"
57958        ],
57959        "tags": [
57960          "autoscaling_v2beta2"
57961        ],
57962        "x-kubernetes-action": "get",
57963        "x-kubernetes-group-version-kind": {
57964          "group": "autoscaling",
57965          "kind": "HorizontalPodAutoscaler",
57966          "version": "v2beta2"
57967        }
57968      },
57969      "parameters": [
57970        {
57971          "description": "name of the HorizontalPodAutoscaler",
57972          "in": "path",
57973          "name": "name",
57974          "required": true,
57975          "type": "string",
57976          "uniqueItems": true
57977        },
57978        {
57979          "description": "object name and auth scope, such as for teams and projects",
57980          "in": "path",
57981          "name": "namespace",
57982          "required": true,
57983          "type": "string",
57984          "uniqueItems": true
57985        },
57986        {
57987          "description": "If 'true', then the output is pretty printed.",
57988          "in": "query",
57989          "name": "pretty",
57990          "type": "string",
57991          "uniqueItems": true
57992        }
57993      ],
57994      "patch": {
57995        "consumes": [
57996          "application/json-patch+json",
57997          "application/merge-patch+json",
57998          "application/strategic-merge-patch+json",
57999          "application/apply-patch+yaml"
58000        ],
58001        "description": "partially update status of the specified HorizontalPodAutoscaler",
58002        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
58003        "parameters": [
58004          {
58005            "in": "body",
58006            "name": "body",
58007            "required": true,
58008            "schema": {
58009              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58010            }
58011          },
58012          {
58013            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58014            "in": "query",
58015            "name": "dryRun",
58016            "type": "string",
58017            "uniqueItems": true
58018          },
58019          {
58020            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
58021            "in": "query",
58022            "name": "fieldManager",
58023            "type": "string",
58024            "uniqueItems": true
58025          },
58026          {
58027            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
58028            "in": "query",
58029            "name": "force",
58030            "type": "boolean",
58031            "uniqueItems": true
58032          }
58033        ],
58034        "produces": [
58035          "application/json",
58036          "application/yaml",
58037          "application/vnd.kubernetes.protobuf"
58038        ],
58039        "responses": {
58040          "200": {
58041            "description": "OK",
58042            "schema": {
58043              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58044            }
58045          },
58046          "401": {
58047            "description": "Unauthorized"
58048          }
58049        },
58050        "schemes": [
58051          "https"
58052        ],
58053        "tags": [
58054          "autoscaling_v2beta2"
58055        ],
58056        "x-kubernetes-action": "patch",
58057        "x-kubernetes-group-version-kind": {
58058          "group": "autoscaling",
58059          "kind": "HorizontalPodAutoscaler",
58060          "version": "v2beta2"
58061        }
58062      },
58063      "put": {
58064        "consumes": [
58065          "*/*"
58066        ],
58067        "description": "replace status of the specified HorizontalPodAutoscaler",
58068        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
58069        "parameters": [
58070          {
58071            "in": "body",
58072            "name": "body",
58073            "required": true,
58074            "schema": {
58075              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58076            }
58077          },
58078          {
58079            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58080            "in": "query",
58081            "name": "dryRun",
58082            "type": "string",
58083            "uniqueItems": true
58084          },
58085          {
58086            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58087            "in": "query",
58088            "name": "fieldManager",
58089            "type": "string",
58090            "uniqueItems": true
58091          }
58092        ],
58093        "produces": [
58094          "application/json",
58095          "application/yaml",
58096          "application/vnd.kubernetes.protobuf"
58097        ],
58098        "responses": {
58099          "200": {
58100            "description": "OK",
58101            "schema": {
58102              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58103            }
58104          },
58105          "201": {
58106            "description": "Created",
58107            "schema": {
58108              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
58109            }
58110          },
58111          "401": {
58112            "description": "Unauthorized"
58113          }
58114        },
58115        "schemes": [
58116          "https"
58117        ],
58118        "tags": [
58119          "autoscaling_v2beta2"
58120        ],
58121        "x-kubernetes-action": "put",
58122        "x-kubernetes-group-version-kind": {
58123          "group": "autoscaling",
58124          "kind": "HorizontalPodAutoscaler",
58125          "version": "v2beta2"
58126        }
58127      }
58128    },
58129    "/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers": {
58130      "get": {
58131        "consumes": [
58132          "*/*"
58133        ],
58134        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
58135        "operationId": "watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces",
58136        "produces": [
58137          "application/json",
58138          "application/yaml",
58139          "application/vnd.kubernetes.protobuf",
58140          "application/json;stream=watch",
58141          "application/vnd.kubernetes.protobuf;stream=watch"
58142        ],
58143        "responses": {
58144          "200": {
58145            "description": "OK",
58146            "schema": {
58147              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58148            }
58149          },
58150          "401": {
58151            "description": "Unauthorized"
58152          }
58153        },
58154        "schemes": [
58155          "https"
58156        ],
58157        "tags": [
58158          "autoscaling_v2beta2"
58159        ],
58160        "x-kubernetes-action": "watchlist",
58161        "x-kubernetes-group-version-kind": {
58162          "group": "autoscaling",
58163          "kind": "HorizontalPodAutoscaler",
58164          "version": "v2beta2"
58165        }
58166      },
58167      "parameters": [
58168        {
58169          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58170          "in": "query",
58171          "name": "allowWatchBookmarks",
58172          "type": "boolean",
58173          "uniqueItems": true
58174        },
58175        {
58176          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58177          "in": "query",
58178          "name": "continue",
58179          "type": "string",
58180          "uniqueItems": true
58181        },
58182        {
58183          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58184          "in": "query",
58185          "name": "fieldSelector",
58186          "type": "string",
58187          "uniqueItems": true
58188        },
58189        {
58190          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58191          "in": "query",
58192          "name": "labelSelector",
58193          "type": "string",
58194          "uniqueItems": true
58195        },
58196        {
58197          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58198          "in": "query",
58199          "name": "limit",
58200          "type": "integer",
58201          "uniqueItems": true
58202        },
58203        {
58204          "description": "If 'true', then the output is pretty printed.",
58205          "in": "query",
58206          "name": "pretty",
58207          "type": "string",
58208          "uniqueItems": true
58209        },
58210        {
58211          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58212          "in": "query",
58213          "name": "resourceVersion",
58214          "type": "string",
58215          "uniqueItems": true
58216        },
58217        {
58218          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58219          "in": "query",
58220          "name": "resourceVersionMatch",
58221          "type": "string",
58222          "uniqueItems": true
58223        },
58224        {
58225          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58226          "in": "query",
58227          "name": "timeoutSeconds",
58228          "type": "integer",
58229          "uniqueItems": true
58230        },
58231        {
58232          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58233          "in": "query",
58234          "name": "watch",
58235          "type": "boolean",
58236          "uniqueItems": true
58237        }
58238      ]
58239    },
58240    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers": {
58241      "get": {
58242        "consumes": [
58243          "*/*"
58244        ],
58245        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
58246        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList",
58247        "produces": [
58248          "application/json",
58249          "application/yaml",
58250          "application/vnd.kubernetes.protobuf",
58251          "application/json;stream=watch",
58252          "application/vnd.kubernetes.protobuf;stream=watch"
58253        ],
58254        "responses": {
58255          "200": {
58256            "description": "OK",
58257            "schema": {
58258              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58259            }
58260          },
58261          "401": {
58262            "description": "Unauthorized"
58263          }
58264        },
58265        "schemes": [
58266          "https"
58267        ],
58268        "tags": [
58269          "autoscaling_v2beta2"
58270        ],
58271        "x-kubernetes-action": "watchlist",
58272        "x-kubernetes-group-version-kind": {
58273          "group": "autoscaling",
58274          "kind": "HorizontalPodAutoscaler",
58275          "version": "v2beta2"
58276        }
58277      },
58278      "parameters": [
58279        {
58280          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58281          "in": "query",
58282          "name": "allowWatchBookmarks",
58283          "type": "boolean",
58284          "uniqueItems": true
58285        },
58286        {
58287          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58288          "in": "query",
58289          "name": "continue",
58290          "type": "string",
58291          "uniqueItems": true
58292        },
58293        {
58294          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58295          "in": "query",
58296          "name": "fieldSelector",
58297          "type": "string",
58298          "uniqueItems": true
58299        },
58300        {
58301          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58302          "in": "query",
58303          "name": "labelSelector",
58304          "type": "string",
58305          "uniqueItems": true
58306        },
58307        {
58308          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58309          "in": "query",
58310          "name": "limit",
58311          "type": "integer",
58312          "uniqueItems": true
58313        },
58314        {
58315          "description": "object name and auth scope, such as for teams and projects",
58316          "in": "path",
58317          "name": "namespace",
58318          "required": true,
58319          "type": "string",
58320          "uniqueItems": true
58321        },
58322        {
58323          "description": "If 'true', then the output is pretty printed.",
58324          "in": "query",
58325          "name": "pretty",
58326          "type": "string",
58327          "uniqueItems": true
58328        },
58329        {
58330          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58331          "in": "query",
58332          "name": "resourceVersion",
58333          "type": "string",
58334          "uniqueItems": true
58335        },
58336        {
58337          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58338          "in": "query",
58339          "name": "resourceVersionMatch",
58340          "type": "string",
58341          "uniqueItems": true
58342        },
58343        {
58344          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58345          "in": "query",
58346          "name": "timeoutSeconds",
58347          "type": "integer",
58348          "uniqueItems": true
58349        },
58350        {
58351          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58352          "in": "query",
58353          "name": "watch",
58354          "type": "boolean",
58355          "uniqueItems": true
58356        }
58357      ]
58358    },
58359    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
58360      "get": {
58361        "consumes": [
58362          "*/*"
58363        ],
58364        "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.",
58365        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
58366        "produces": [
58367          "application/json",
58368          "application/yaml",
58369          "application/vnd.kubernetes.protobuf",
58370          "application/json;stream=watch",
58371          "application/vnd.kubernetes.protobuf;stream=watch"
58372        ],
58373        "responses": {
58374          "200": {
58375            "description": "OK",
58376            "schema": {
58377              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58378            }
58379          },
58380          "401": {
58381            "description": "Unauthorized"
58382          }
58383        },
58384        "schemes": [
58385          "https"
58386        ],
58387        "tags": [
58388          "autoscaling_v2beta2"
58389        ],
58390        "x-kubernetes-action": "watch",
58391        "x-kubernetes-group-version-kind": {
58392          "group": "autoscaling",
58393          "kind": "HorizontalPodAutoscaler",
58394          "version": "v2beta2"
58395        }
58396      },
58397      "parameters": [
58398        {
58399          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58400          "in": "query",
58401          "name": "allowWatchBookmarks",
58402          "type": "boolean",
58403          "uniqueItems": true
58404        },
58405        {
58406          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58407          "in": "query",
58408          "name": "continue",
58409          "type": "string",
58410          "uniqueItems": true
58411        },
58412        {
58413          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58414          "in": "query",
58415          "name": "fieldSelector",
58416          "type": "string",
58417          "uniqueItems": true
58418        },
58419        {
58420          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58421          "in": "query",
58422          "name": "labelSelector",
58423          "type": "string",
58424          "uniqueItems": true
58425        },
58426        {
58427          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58428          "in": "query",
58429          "name": "limit",
58430          "type": "integer",
58431          "uniqueItems": true
58432        },
58433        {
58434          "description": "name of the HorizontalPodAutoscaler",
58435          "in": "path",
58436          "name": "name",
58437          "required": true,
58438          "type": "string",
58439          "uniqueItems": true
58440        },
58441        {
58442          "description": "object name and auth scope, such as for teams and projects",
58443          "in": "path",
58444          "name": "namespace",
58445          "required": true,
58446          "type": "string",
58447          "uniqueItems": true
58448        },
58449        {
58450          "description": "If 'true', then the output is pretty printed.",
58451          "in": "query",
58452          "name": "pretty",
58453          "type": "string",
58454          "uniqueItems": true
58455        },
58456        {
58457          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58458          "in": "query",
58459          "name": "resourceVersion",
58460          "type": "string",
58461          "uniqueItems": true
58462        },
58463        {
58464          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58465          "in": "query",
58466          "name": "resourceVersionMatch",
58467          "type": "string",
58468          "uniqueItems": true
58469        },
58470        {
58471          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58472          "in": "query",
58473          "name": "timeoutSeconds",
58474          "type": "integer",
58475          "uniqueItems": true
58476        },
58477        {
58478          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58479          "in": "query",
58480          "name": "watch",
58481          "type": "boolean",
58482          "uniqueItems": true
58483        }
58484      ]
58485    },
58486    "/apis/batch/": {
58487      "get": {
58488        "consumes": [
58489          "application/json",
58490          "application/yaml",
58491          "application/vnd.kubernetes.protobuf"
58492        ],
58493        "description": "get information of a group",
58494        "operationId": "getBatchAPIGroup",
58495        "produces": [
58496          "application/json",
58497          "application/yaml",
58498          "application/vnd.kubernetes.protobuf"
58499        ],
58500        "responses": {
58501          "200": {
58502            "description": "OK",
58503            "schema": {
58504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
58505            }
58506          },
58507          "401": {
58508            "description": "Unauthorized"
58509          }
58510        },
58511        "schemes": [
58512          "https"
58513        ],
58514        "tags": [
58515          "batch"
58516        ]
58517      }
58518    },
58519    "/apis/batch/v1/": {
58520      "get": {
58521        "consumes": [
58522          "application/json",
58523          "application/yaml",
58524          "application/vnd.kubernetes.protobuf"
58525        ],
58526        "description": "get available resources",
58527        "operationId": "getBatchV1APIResources",
58528        "produces": [
58529          "application/json",
58530          "application/yaml",
58531          "application/vnd.kubernetes.protobuf"
58532        ],
58533        "responses": {
58534          "200": {
58535            "description": "OK",
58536            "schema": {
58537              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
58538            }
58539          },
58540          "401": {
58541            "description": "Unauthorized"
58542          }
58543        },
58544        "schemes": [
58545          "https"
58546        ],
58547        "tags": [
58548          "batch_v1"
58549        ]
58550      }
58551    },
58552    "/apis/batch/v1/cronjobs": {
58553      "get": {
58554        "consumes": [
58555          "*/*"
58556        ],
58557        "description": "list or watch objects of kind CronJob",
58558        "operationId": "listBatchV1CronJobForAllNamespaces",
58559        "produces": [
58560          "application/json",
58561          "application/yaml",
58562          "application/vnd.kubernetes.protobuf",
58563          "application/json;stream=watch",
58564          "application/vnd.kubernetes.protobuf;stream=watch"
58565        ],
58566        "responses": {
58567          "200": {
58568            "description": "OK",
58569            "schema": {
58570              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobList"
58571            }
58572          },
58573          "401": {
58574            "description": "Unauthorized"
58575          }
58576        },
58577        "schemes": [
58578          "https"
58579        ],
58580        "tags": [
58581          "batch_v1"
58582        ],
58583        "x-kubernetes-action": "list",
58584        "x-kubernetes-group-version-kind": {
58585          "group": "batch",
58586          "kind": "CronJob",
58587          "version": "v1"
58588        }
58589      },
58590      "parameters": [
58591        {
58592          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58593          "in": "query",
58594          "name": "allowWatchBookmarks",
58595          "type": "boolean",
58596          "uniqueItems": true
58597        },
58598        {
58599          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58600          "in": "query",
58601          "name": "continue",
58602          "type": "string",
58603          "uniqueItems": true
58604        },
58605        {
58606          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58607          "in": "query",
58608          "name": "fieldSelector",
58609          "type": "string",
58610          "uniqueItems": true
58611        },
58612        {
58613          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58614          "in": "query",
58615          "name": "labelSelector",
58616          "type": "string",
58617          "uniqueItems": true
58618        },
58619        {
58620          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58621          "in": "query",
58622          "name": "limit",
58623          "type": "integer",
58624          "uniqueItems": true
58625        },
58626        {
58627          "description": "If 'true', then the output is pretty printed.",
58628          "in": "query",
58629          "name": "pretty",
58630          "type": "string",
58631          "uniqueItems": true
58632        },
58633        {
58634          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58635          "in": "query",
58636          "name": "resourceVersion",
58637          "type": "string",
58638          "uniqueItems": true
58639        },
58640        {
58641          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58642          "in": "query",
58643          "name": "resourceVersionMatch",
58644          "type": "string",
58645          "uniqueItems": true
58646        },
58647        {
58648          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58649          "in": "query",
58650          "name": "timeoutSeconds",
58651          "type": "integer",
58652          "uniqueItems": true
58653        },
58654        {
58655          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58656          "in": "query",
58657          "name": "watch",
58658          "type": "boolean",
58659          "uniqueItems": true
58660        }
58661      ]
58662    },
58663    "/apis/batch/v1/jobs": {
58664      "get": {
58665        "consumes": [
58666          "*/*"
58667        ],
58668        "description": "list or watch objects of kind Job",
58669        "operationId": "listBatchV1JobForAllNamespaces",
58670        "produces": [
58671          "application/json",
58672          "application/yaml",
58673          "application/vnd.kubernetes.protobuf",
58674          "application/json;stream=watch",
58675          "application/vnd.kubernetes.protobuf;stream=watch"
58676        ],
58677        "responses": {
58678          "200": {
58679            "description": "OK",
58680            "schema": {
58681              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
58682            }
58683          },
58684          "401": {
58685            "description": "Unauthorized"
58686          }
58687        },
58688        "schemes": [
58689          "https"
58690        ],
58691        "tags": [
58692          "batch_v1"
58693        ],
58694        "x-kubernetes-action": "list",
58695        "x-kubernetes-group-version-kind": {
58696          "group": "batch",
58697          "kind": "Job",
58698          "version": "v1"
58699        }
58700      },
58701      "parameters": [
58702        {
58703          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58704          "in": "query",
58705          "name": "allowWatchBookmarks",
58706          "type": "boolean",
58707          "uniqueItems": true
58708        },
58709        {
58710          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58711          "in": "query",
58712          "name": "continue",
58713          "type": "string",
58714          "uniqueItems": true
58715        },
58716        {
58717          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58718          "in": "query",
58719          "name": "fieldSelector",
58720          "type": "string",
58721          "uniqueItems": true
58722        },
58723        {
58724          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58725          "in": "query",
58726          "name": "labelSelector",
58727          "type": "string",
58728          "uniqueItems": true
58729        },
58730        {
58731          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58732          "in": "query",
58733          "name": "limit",
58734          "type": "integer",
58735          "uniqueItems": true
58736        },
58737        {
58738          "description": "If 'true', then the output is pretty printed.",
58739          "in": "query",
58740          "name": "pretty",
58741          "type": "string",
58742          "uniqueItems": true
58743        },
58744        {
58745          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58746          "in": "query",
58747          "name": "resourceVersion",
58748          "type": "string",
58749          "uniqueItems": true
58750        },
58751        {
58752          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58753          "in": "query",
58754          "name": "resourceVersionMatch",
58755          "type": "string",
58756          "uniqueItems": true
58757        },
58758        {
58759          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58760          "in": "query",
58761          "name": "timeoutSeconds",
58762          "type": "integer",
58763          "uniqueItems": true
58764        },
58765        {
58766          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58767          "in": "query",
58768          "name": "watch",
58769          "type": "boolean",
58770          "uniqueItems": true
58771        }
58772      ]
58773    },
58774    "/apis/batch/v1/namespaces/{namespace}/cronjobs": {
58775      "delete": {
58776        "consumes": [
58777          "*/*"
58778        ],
58779        "description": "delete collection of CronJob",
58780        "operationId": "deleteBatchV1CollectionNamespacedCronJob",
58781        "parameters": [
58782          {
58783            "in": "body",
58784            "name": "body",
58785            "schema": {
58786              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58787            }
58788          },
58789          {
58790            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58791            "in": "query",
58792            "name": "continue",
58793            "type": "string",
58794            "uniqueItems": true
58795          },
58796          {
58797            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58798            "in": "query",
58799            "name": "dryRun",
58800            "type": "string",
58801            "uniqueItems": true
58802          },
58803          {
58804            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58805            "in": "query",
58806            "name": "fieldSelector",
58807            "type": "string",
58808            "uniqueItems": true
58809          },
58810          {
58811            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
58812            "in": "query",
58813            "name": "gracePeriodSeconds",
58814            "type": "integer",
58815            "uniqueItems": true
58816          },
58817          {
58818            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58819            "in": "query",
58820            "name": "labelSelector",
58821            "type": "string",
58822            "uniqueItems": true
58823          },
58824          {
58825            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58826            "in": "query",
58827            "name": "limit",
58828            "type": "integer",
58829            "uniqueItems": true
58830          },
58831          {
58832            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
58833            "in": "query",
58834            "name": "orphanDependents",
58835            "type": "boolean",
58836            "uniqueItems": true
58837          },
58838          {
58839            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
58840            "in": "query",
58841            "name": "propagationPolicy",
58842            "type": "string",
58843            "uniqueItems": true
58844          },
58845          {
58846            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58847            "in": "query",
58848            "name": "resourceVersion",
58849            "type": "string",
58850            "uniqueItems": true
58851          },
58852          {
58853            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58854            "in": "query",
58855            "name": "resourceVersionMatch",
58856            "type": "string",
58857            "uniqueItems": true
58858          },
58859          {
58860            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58861            "in": "query",
58862            "name": "timeoutSeconds",
58863            "type": "integer",
58864            "uniqueItems": true
58865          }
58866        ],
58867        "produces": [
58868          "application/json",
58869          "application/yaml",
58870          "application/vnd.kubernetes.protobuf"
58871        ],
58872        "responses": {
58873          "200": {
58874            "description": "OK",
58875            "schema": {
58876              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58877            }
58878          },
58879          "401": {
58880            "description": "Unauthorized"
58881          }
58882        },
58883        "schemes": [
58884          "https"
58885        ],
58886        "tags": [
58887          "batch_v1"
58888        ],
58889        "x-kubernetes-action": "deletecollection",
58890        "x-kubernetes-group-version-kind": {
58891          "group": "batch",
58892          "kind": "CronJob",
58893          "version": "v1"
58894        }
58895      },
58896      "get": {
58897        "consumes": [
58898          "*/*"
58899        ],
58900        "description": "list or watch objects of kind CronJob",
58901        "operationId": "listBatchV1NamespacedCronJob",
58902        "parameters": [
58903          {
58904            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
58905            "in": "query",
58906            "name": "allowWatchBookmarks",
58907            "type": "boolean",
58908            "uniqueItems": true
58909          },
58910          {
58911            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58912            "in": "query",
58913            "name": "continue",
58914            "type": "string",
58915            "uniqueItems": true
58916          },
58917          {
58918            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58919            "in": "query",
58920            "name": "fieldSelector",
58921            "type": "string",
58922            "uniqueItems": true
58923          },
58924          {
58925            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58926            "in": "query",
58927            "name": "labelSelector",
58928            "type": "string",
58929            "uniqueItems": true
58930          },
58931          {
58932            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58933            "in": "query",
58934            "name": "limit",
58935            "type": "integer",
58936            "uniqueItems": true
58937          },
58938          {
58939            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58940            "in": "query",
58941            "name": "resourceVersion",
58942            "type": "string",
58943            "uniqueItems": true
58944          },
58945          {
58946            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58947            "in": "query",
58948            "name": "resourceVersionMatch",
58949            "type": "string",
58950            "uniqueItems": true
58951          },
58952          {
58953            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58954            "in": "query",
58955            "name": "timeoutSeconds",
58956            "type": "integer",
58957            "uniqueItems": true
58958          },
58959          {
58960            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58961            "in": "query",
58962            "name": "watch",
58963            "type": "boolean",
58964            "uniqueItems": true
58965          }
58966        ],
58967        "produces": [
58968          "application/json",
58969          "application/yaml",
58970          "application/vnd.kubernetes.protobuf",
58971          "application/json;stream=watch",
58972          "application/vnd.kubernetes.protobuf;stream=watch"
58973        ],
58974        "responses": {
58975          "200": {
58976            "description": "OK",
58977            "schema": {
58978              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobList"
58979            }
58980          },
58981          "401": {
58982            "description": "Unauthorized"
58983          }
58984        },
58985        "schemes": [
58986          "https"
58987        ],
58988        "tags": [
58989          "batch_v1"
58990        ],
58991        "x-kubernetes-action": "list",
58992        "x-kubernetes-group-version-kind": {
58993          "group": "batch",
58994          "kind": "CronJob",
58995          "version": "v1"
58996        }
58997      },
58998      "parameters": [
58999        {
59000          "description": "object name and auth scope, such as for teams and projects",
59001          "in": "path",
59002          "name": "namespace",
59003          "required": true,
59004          "type": "string",
59005          "uniqueItems": true
59006        },
59007        {
59008          "description": "If 'true', then the output is pretty printed.",
59009          "in": "query",
59010          "name": "pretty",
59011          "type": "string",
59012          "uniqueItems": true
59013        }
59014      ],
59015      "post": {
59016        "consumes": [
59017          "*/*"
59018        ],
59019        "description": "create a CronJob",
59020        "operationId": "createBatchV1NamespacedCronJob",
59021        "parameters": [
59022          {
59023            "in": "body",
59024            "name": "body",
59025            "required": true,
59026            "schema": {
59027              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59028            }
59029          },
59030          {
59031            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59032            "in": "query",
59033            "name": "dryRun",
59034            "type": "string",
59035            "uniqueItems": true
59036          },
59037          {
59038            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59039            "in": "query",
59040            "name": "fieldManager",
59041            "type": "string",
59042            "uniqueItems": true
59043          }
59044        ],
59045        "produces": [
59046          "application/json",
59047          "application/yaml",
59048          "application/vnd.kubernetes.protobuf"
59049        ],
59050        "responses": {
59051          "200": {
59052            "description": "OK",
59053            "schema": {
59054              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59055            }
59056          },
59057          "201": {
59058            "description": "Created",
59059            "schema": {
59060              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59061            }
59062          },
59063          "202": {
59064            "description": "Accepted",
59065            "schema": {
59066              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59067            }
59068          },
59069          "401": {
59070            "description": "Unauthorized"
59071          }
59072        },
59073        "schemes": [
59074          "https"
59075        ],
59076        "tags": [
59077          "batch_v1"
59078        ],
59079        "x-kubernetes-action": "post",
59080        "x-kubernetes-group-version-kind": {
59081          "group": "batch",
59082          "kind": "CronJob",
59083          "version": "v1"
59084        }
59085      }
59086    },
59087    "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}": {
59088      "delete": {
59089        "consumes": [
59090          "*/*"
59091        ],
59092        "description": "delete a CronJob",
59093        "operationId": "deleteBatchV1NamespacedCronJob",
59094        "parameters": [
59095          {
59096            "in": "body",
59097            "name": "body",
59098            "schema": {
59099              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59100            }
59101          },
59102          {
59103            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59104            "in": "query",
59105            "name": "dryRun",
59106            "type": "string",
59107            "uniqueItems": true
59108          },
59109          {
59110            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
59111            "in": "query",
59112            "name": "gracePeriodSeconds",
59113            "type": "integer",
59114            "uniqueItems": true
59115          },
59116          {
59117            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
59118            "in": "query",
59119            "name": "orphanDependents",
59120            "type": "boolean",
59121            "uniqueItems": true
59122          },
59123          {
59124            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
59125            "in": "query",
59126            "name": "propagationPolicy",
59127            "type": "string",
59128            "uniqueItems": true
59129          }
59130        ],
59131        "produces": [
59132          "application/json",
59133          "application/yaml",
59134          "application/vnd.kubernetes.protobuf"
59135        ],
59136        "responses": {
59137          "200": {
59138            "description": "OK",
59139            "schema": {
59140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59141            }
59142          },
59143          "202": {
59144            "description": "Accepted",
59145            "schema": {
59146              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59147            }
59148          },
59149          "401": {
59150            "description": "Unauthorized"
59151          }
59152        },
59153        "schemes": [
59154          "https"
59155        ],
59156        "tags": [
59157          "batch_v1"
59158        ],
59159        "x-kubernetes-action": "delete",
59160        "x-kubernetes-group-version-kind": {
59161          "group": "batch",
59162          "kind": "CronJob",
59163          "version": "v1"
59164        }
59165      },
59166      "get": {
59167        "consumes": [
59168          "*/*"
59169        ],
59170        "description": "read the specified CronJob",
59171        "operationId": "readBatchV1NamespacedCronJob",
59172        "produces": [
59173          "application/json",
59174          "application/yaml",
59175          "application/vnd.kubernetes.protobuf"
59176        ],
59177        "responses": {
59178          "200": {
59179            "description": "OK",
59180            "schema": {
59181              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59182            }
59183          },
59184          "401": {
59185            "description": "Unauthorized"
59186          }
59187        },
59188        "schemes": [
59189          "https"
59190        ],
59191        "tags": [
59192          "batch_v1"
59193        ],
59194        "x-kubernetes-action": "get",
59195        "x-kubernetes-group-version-kind": {
59196          "group": "batch",
59197          "kind": "CronJob",
59198          "version": "v1"
59199        }
59200      },
59201      "parameters": [
59202        {
59203          "description": "name of the CronJob",
59204          "in": "path",
59205          "name": "name",
59206          "required": true,
59207          "type": "string",
59208          "uniqueItems": true
59209        },
59210        {
59211          "description": "object name and auth scope, such as for teams and projects",
59212          "in": "path",
59213          "name": "namespace",
59214          "required": true,
59215          "type": "string",
59216          "uniqueItems": true
59217        },
59218        {
59219          "description": "If 'true', then the output is pretty printed.",
59220          "in": "query",
59221          "name": "pretty",
59222          "type": "string",
59223          "uniqueItems": true
59224        }
59225      ],
59226      "patch": {
59227        "consumes": [
59228          "application/json-patch+json",
59229          "application/merge-patch+json",
59230          "application/strategic-merge-patch+json",
59231          "application/apply-patch+yaml"
59232        ],
59233        "description": "partially update the specified CronJob",
59234        "operationId": "patchBatchV1NamespacedCronJob",
59235        "parameters": [
59236          {
59237            "in": "body",
59238            "name": "body",
59239            "required": true,
59240            "schema": {
59241              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59242            }
59243          },
59244          {
59245            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59246            "in": "query",
59247            "name": "dryRun",
59248            "type": "string",
59249            "uniqueItems": true
59250          },
59251          {
59252            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
59253            "in": "query",
59254            "name": "fieldManager",
59255            "type": "string",
59256            "uniqueItems": true
59257          },
59258          {
59259            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
59260            "in": "query",
59261            "name": "force",
59262            "type": "boolean",
59263            "uniqueItems": true
59264          }
59265        ],
59266        "produces": [
59267          "application/json",
59268          "application/yaml",
59269          "application/vnd.kubernetes.protobuf"
59270        ],
59271        "responses": {
59272          "200": {
59273            "description": "OK",
59274            "schema": {
59275              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59276            }
59277          },
59278          "401": {
59279            "description": "Unauthorized"
59280          }
59281        },
59282        "schemes": [
59283          "https"
59284        ],
59285        "tags": [
59286          "batch_v1"
59287        ],
59288        "x-kubernetes-action": "patch",
59289        "x-kubernetes-group-version-kind": {
59290          "group": "batch",
59291          "kind": "CronJob",
59292          "version": "v1"
59293        }
59294      },
59295      "put": {
59296        "consumes": [
59297          "*/*"
59298        ],
59299        "description": "replace the specified CronJob",
59300        "operationId": "replaceBatchV1NamespacedCronJob",
59301        "parameters": [
59302          {
59303            "in": "body",
59304            "name": "body",
59305            "required": true,
59306            "schema": {
59307              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59308            }
59309          },
59310          {
59311            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59312            "in": "query",
59313            "name": "dryRun",
59314            "type": "string",
59315            "uniqueItems": true
59316          },
59317          {
59318            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59319            "in": "query",
59320            "name": "fieldManager",
59321            "type": "string",
59322            "uniqueItems": true
59323          }
59324        ],
59325        "produces": [
59326          "application/json",
59327          "application/yaml",
59328          "application/vnd.kubernetes.protobuf"
59329        ],
59330        "responses": {
59331          "200": {
59332            "description": "OK",
59333            "schema": {
59334              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59335            }
59336          },
59337          "201": {
59338            "description": "Created",
59339            "schema": {
59340              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59341            }
59342          },
59343          "401": {
59344            "description": "Unauthorized"
59345          }
59346        },
59347        "schemes": [
59348          "https"
59349        ],
59350        "tags": [
59351          "batch_v1"
59352        ],
59353        "x-kubernetes-action": "put",
59354        "x-kubernetes-group-version-kind": {
59355          "group": "batch",
59356          "kind": "CronJob",
59357          "version": "v1"
59358        }
59359      }
59360    },
59361    "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}/status": {
59362      "get": {
59363        "consumes": [
59364          "*/*"
59365        ],
59366        "description": "read status of the specified CronJob",
59367        "operationId": "readBatchV1NamespacedCronJobStatus",
59368        "produces": [
59369          "application/json",
59370          "application/yaml",
59371          "application/vnd.kubernetes.protobuf"
59372        ],
59373        "responses": {
59374          "200": {
59375            "description": "OK",
59376            "schema": {
59377              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59378            }
59379          },
59380          "401": {
59381            "description": "Unauthorized"
59382          }
59383        },
59384        "schemes": [
59385          "https"
59386        ],
59387        "tags": [
59388          "batch_v1"
59389        ],
59390        "x-kubernetes-action": "get",
59391        "x-kubernetes-group-version-kind": {
59392          "group": "batch",
59393          "kind": "CronJob",
59394          "version": "v1"
59395        }
59396      },
59397      "parameters": [
59398        {
59399          "description": "name of the CronJob",
59400          "in": "path",
59401          "name": "name",
59402          "required": true,
59403          "type": "string",
59404          "uniqueItems": true
59405        },
59406        {
59407          "description": "object name and auth scope, such as for teams and projects",
59408          "in": "path",
59409          "name": "namespace",
59410          "required": true,
59411          "type": "string",
59412          "uniqueItems": true
59413        },
59414        {
59415          "description": "If 'true', then the output is pretty printed.",
59416          "in": "query",
59417          "name": "pretty",
59418          "type": "string",
59419          "uniqueItems": true
59420        }
59421      ],
59422      "patch": {
59423        "consumes": [
59424          "application/json-patch+json",
59425          "application/merge-patch+json",
59426          "application/strategic-merge-patch+json",
59427          "application/apply-patch+yaml"
59428        ],
59429        "description": "partially update status of the specified CronJob",
59430        "operationId": "patchBatchV1NamespacedCronJobStatus",
59431        "parameters": [
59432          {
59433            "in": "body",
59434            "name": "body",
59435            "required": true,
59436            "schema": {
59437              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59438            }
59439          },
59440          {
59441            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59442            "in": "query",
59443            "name": "dryRun",
59444            "type": "string",
59445            "uniqueItems": true
59446          },
59447          {
59448            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
59449            "in": "query",
59450            "name": "fieldManager",
59451            "type": "string",
59452            "uniqueItems": true
59453          },
59454          {
59455            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
59456            "in": "query",
59457            "name": "force",
59458            "type": "boolean",
59459            "uniqueItems": true
59460          }
59461        ],
59462        "produces": [
59463          "application/json",
59464          "application/yaml",
59465          "application/vnd.kubernetes.protobuf"
59466        ],
59467        "responses": {
59468          "200": {
59469            "description": "OK",
59470            "schema": {
59471              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59472            }
59473          },
59474          "401": {
59475            "description": "Unauthorized"
59476          }
59477        },
59478        "schemes": [
59479          "https"
59480        ],
59481        "tags": [
59482          "batch_v1"
59483        ],
59484        "x-kubernetes-action": "patch",
59485        "x-kubernetes-group-version-kind": {
59486          "group": "batch",
59487          "kind": "CronJob",
59488          "version": "v1"
59489        }
59490      },
59491      "put": {
59492        "consumes": [
59493          "*/*"
59494        ],
59495        "description": "replace status of the specified CronJob",
59496        "operationId": "replaceBatchV1NamespacedCronJobStatus",
59497        "parameters": [
59498          {
59499            "in": "body",
59500            "name": "body",
59501            "required": true,
59502            "schema": {
59503              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59504            }
59505          },
59506          {
59507            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59508            "in": "query",
59509            "name": "dryRun",
59510            "type": "string",
59511            "uniqueItems": true
59512          },
59513          {
59514            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59515            "in": "query",
59516            "name": "fieldManager",
59517            "type": "string",
59518            "uniqueItems": true
59519          }
59520        ],
59521        "produces": [
59522          "application/json",
59523          "application/yaml",
59524          "application/vnd.kubernetes.protobuf"
59525        ],
59526        "responses": {
59527          "200": {
59528            "description": "OK",
59529            "schema": {
59530              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59531            }
59532          },
59533          "201": {
59534            "description": "Created",
59535            "schema": {
59536              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
59537            }
59538          },
59539          "401": {
59540            "description": "Unauthorized"
59541          }
59542        },
59543        "schemes": [
59544          "https"
59545        ],
59546        "tags": [
59547          "batch_v1"
59548        ],
59549        "x-kubernetes-action": "put",
59550        "x-kubernetes-group-version-kind": {
59551          "group": "batch",
59552          "kind": "CronJob",
59553          "version": "v1"
59554        }
59555      }
59556    },
59557    "/apis/batch/v1/namespaces/{namespace}/jobs": {
59558      "delete": {
59559        "consumes": [
59560          "*/*"
59561        ],
59562        "description": "delete collection of Job",
59563        "operationId": "deleteBatchV1CollectionNamespacedJob",
59564        "parameters": [
59565          {
59566            "in": "body",
59567            "name": "body",
59568            "schema": {
59569              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59570            }
59571          },
59572          {
59573            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59574            "in": "query",
59575            "name": "continue",
59576            "type": "string",
59577            "uniqueItems": true
59578          },
59579          {
59580            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59581            "in": "query",
59582            "name": "dryRun",
59583            "type": "string",
59584            "uniqueItems": true
59585          },
59586          {
59587            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59588            "in": "query",
59589            "name": "fieldSelector",
59590            "type": "string",
59591            "uniqueItems": true
59592          },
59593          {
59594            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
59595            "in": "query",
59596            "name": "gracePeriodSeconds",
59597            "type": "integer",
59598            "uniqueItems": true
59599          },
59600          {
59601            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59602            "in": "query",
59603            "name": "labelSelector",
59604            "type": "string",
59605            "uniqueItems": true
59606          },
59607          {
59608            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59609            "in": "query",
59610            "name": "limit",
59611            "type": "integer",
59612            "uniqueItems": true
59613          },
59614          {
59615            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
59616            "in": "query",
59617            "name": "orphanDependents",
59618            "type": "boolean",
59619            "uniqueItems": true
59620          },
59621          {
59622            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
59623            "in": "query",
59624            "name": "propagationPolicy",
59625            "type": "string",
59626            "uniqueItems": true
59627          },
59628          {
59629            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59630            "in": "query",
59631            "name": "resourceVersion",
59632            "type": "string",
59633            "uniqueItems": true
59634          },
59635          {
59636            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59637            "in": "query",
59638            "name": "resourceVersionMatch",
59639            "type": "string",
59640            "uniqueItems": true
59641          },
59642          {
59643            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59644            "in": "query",
59645            "name": "timeoutSeconds",
59646            "type": "integer",
59647            "uniqueItems": true
59648          }
59649        ],
59650        "produces": [
59651          "application/json",
59652          "application/yaml",
59653          "application/vnd.kubernetes.protobuf"
59654        ],
59655        "responses": {
59656          "200": {
59657            "description": "OK",
59658            "schema": {
59659              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59660            }
59661          },
59662          "401": {
59663            "description": "Unauthorized"
59664          }
59665        },
59666        "schemes": [
59667          "https"
59668        ],
59669        "tags": [
59670          "batch_v1"
59671        ],
59672        "x-kubernetes-action": "deletecollection",
59673        "x-kubernetes-group-version-kind": {
59674          "group": "batch",
59675          "kind": "Job",
59676          "version": "v1"
59677        }
59678      },
59679      "get": {
59680        "consumes": [
59681          "*/*"
59682        ],
59683        "description": "list or watch objects of kind Job",
59684        "operationId": "listBatchV1NamespacedJob",
59685        "parameters": [
59686          {
59687            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
59688            "in": "query",
59689            "name": "allowWatchBookmarks",
59690            "type": "boolean",
59691            "uniqueItems": true
59692          },
59693          {
59694            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59695            "in": "query",
59696            "name": "continue",
59697            "type": "string",
59698            "uniqueItems": true
59699          },
59700          {
59701            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59702            "in": "query",
59703            "name": "fieldSelector",
59704            "type": "string",
59705            "uniqueItems": true
59706          },
59707          {
59708            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59709            "in": "query",
59710            "name": "labelSelector",
59711            "type": "string",
59712            "uniqueItems": true
59713          },
59714          {
59715            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59716            "in": "query",
59717            "name": "limit",
59718            "type": "integer",
59719            "uniqueItems": true
59720          },
59721          {
59722            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59723            "in": "query",
59724            "name": "resourceVersion",
59725            "type": "string",
59726            "uniqueItems": true
59727          },
59728          {
59729            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59730            "in": "query",
59731            "name": "resourceVersionMatch",
59732            "type": "string",
59733            "uniqueItems": true
59734          },
59735          {
59736            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59737            "in": "query",
59738            "name": "timeoutSeconds",
59739            "type": "integer",
59740            "uniqueItems": true
59741          },
59742          {
59743            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59744            "in": "query",
59745            "name": "watch",
59746            "type": "boolean",
59747            "uniqueItems": true
59748          }
59749        ],
59750        "produces": [
59751          "application/json",
59752          "application/yaml",
59753          "application/vnd.kubernetes.protobuf",
59754          "application/json;stream=watch",
59755          "application/vnd.kubernetes.protobuf;stream=watch"
59756        ],
59757        "responses": {
59758          "200": {
59759            "description": "OK",
59760            "schema": {
59761              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
59762            }
59763          },
59764          "401": {
59765            "description": "Unauthorized"
59766          }
59767        },
59768        "schemes": [
59769          "https"
59770        ],
59771        "tags": [
59772          "batch_v1"
59773        ],
59774        "x-kubernetes-action": "list",
59775        "x-kubernetes-group-version-kind": {
59776          "group": "batch",
59777          "kind": "Job",
59778          "version": "v1"
59779        }
59780      },
59781      "parameters": [
59782        {
59783          "description": "object name and auth scope, such as for teams and projects",
59784          "in": "path",
59785          "name": "namespace",
59786          "required": true,
59787          "type": "string",
59788          "uniqueItems": true
59789        },
59790        {
59791          "description": "If 'true', then the output is pretty printed.",
59792          "in": "query",
59793          "name": "pretty",
59794          "type": "string",
59795          "uniqueItems": true
59796        }
59797      ],
59798      "post": {
59799        "consumes": [
59800          "*/*"
59801        ],
59802        "description": "create a Job",
59803        "operationId": "createBatchV1NamespacedJob",
59804        "parameters": [
59805          {
59806            "in": "body",
59807            "name": "body",
59808            "required": true,
59809            "schema": {
59810              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59811            }
59812          },
59813          {
59814            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59815            "in": "query",
59816            "name": "dryRun",
59817            "type": "string",
59818            "uniqueItems": true
59819          },
59820          {
59821            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59822            "in": "query",
59823            "name": "fieldManager",
59824            "type": "string",
59825            "uniqueItems": true
59826          }
59827        ],
59828        "produces": [
59829          "application/json",
59830          "application/yaml",
59831          "application/vnd.kubernetes.protobuf"
59832        ],
59833        "responses": {
59834          "200": {
59835            "description": "OK",
59836            "schema": {
59837              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59838            }
59839          },
59840          "201": {
59841            "description": "Created",
59842            "schema": {
59843              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59844            }
59845          },
59846          "202": {
59847            "description": "Accepted",
59848            "schema": {
59849              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59850            }
59851          },
59852          "401": {
59853            "description": "Unauthorized"
59854          }
59855        },
59856        "schemes": [
59857          "https"
59858        ],
59859        "tags": [
59860          "batch_v1"
59861        ],
59862        "x-kubernetes-action": "post",
59863        "x-kubernetes-group-version-kind": {
59864          "group": "batch",
59865          "kind": "Job",
59866          "version": "v1"
59867        }
59868      }
59869    },
59870    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": {
59871      "delete": {
59872        "consumes": [
59873          "*/*"
59874        ],
59875        "description": "delete a Job",
59876        "operationId": "deleteBatchV1NamespacedJob",
59877        "parameters": [
59878          {
59879            "in": "body",
59880            "name": "body",
59881            "schema": {
59882              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59883            }
59884          },
59885          {
59886            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59887            "in": "query",
59888            "name": "dryRun",
59889            "type": "string",
59890            "uniqueItems": true
59891          },
59892          {
59893            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
59894            "in": "query",
59895            "name": "gracePeriodSeconds",
59896            "type": "integer",
59897            "uniqueItems": true
59898          },
59899          {
59900            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
59901            "in": "query",
59902            "name": "orphanDependents",
59903            "type": "boolean",
59904            "uniqueItems": true
59905          },
59906          {
59907            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
59908            "in": "query",
59909            "name": "propagationPolicy",
59910            "type": "string",
59911            "uniqueItems": true
59912          }
59913        ],
59914        "produces": [
59915          "application/json",
59916          "application/yaml",
59917          "application/vnd.kubernetes.protobuf"
59918        ],
59919        "responses": {
59920          "200": {
59921            "description": "OK",
59922            "schema": {
59923              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59924            }
59925          },
59926          "202": {
59927            "description": "Accepted",
59928            "schema": {
59929              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59930            }
59931          },
59932          "401": {
59933            "description": "Unauthorized"
59934          }
59935        },
59936        "schemes": [
59937          "https"
59938        ],
59939        "tags": [
59940          "batch_v1"
59941        ],
59942        "x-kubernetes-action": "delete",
59943        "x-kubernetes-group-version-kind": {
59944          "group": "batch",
59945          "kind": "Job",
59946          "version": "v1"
59947        }
59948      },
59949      "get": {
59950        "consumes": [
59951          "*/*"
59952        ],
59953        "description": "read the specified Job",
59954        "operationId": "readBatchV1NamespacedJob",
59955        "produces": [
59956          "application/json",
59957          "application/yaml",
59958          "application/vnd.kubernetes.protobuf"
59959        ],
59960        "responses": {
59961          "200": {
59962            "description": "OK",
59963            "schema": {
59964              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
59965            }
59966          },
59967          "401": {
59968            "description": "Unauthorized"
59969          }
59970        },
59971        "schemes": [
59972          "https"
59973        ],
59974        "tags": [
59975          "batch_v1"
59976        ],
59977        "x-kubernetes-action": "get",
59978        "x-kubernetes-group-version-kind": {
59979          "group": "batch",
59980          "kind": "Job",
59981          "version": "v1"
59982        }
59983      },
59984      "parameters": [
59985        {
59986          "description": "name of the Job",
59987          "in": "path",
59988          "name": "name",
59989          "required": true,
59990          "type": "string",
59991          "uniqueItems": true
59992        },
59993        {
59994          "description": "object name and auth scope, such as for teams and projects",
59995          "in": "path",
59996          "name": "namespace",
59997          "required": true,
59998          "type": "string",
59999          "uniqueItems": true
60000        },
60001        {
60002          "description": "If 'true', then the output is pretty printed.",
60003          "in": "query",
60004          "name": "pretty",
60005          "type": "string",
60006          "uniqueItems": true
60007        }
60008      ],
60009      "patch": {
60010        "consumes": [
60011          "application/json-patch+json",
60012          "application/merge-patch+json",
60013          "application/strategic-merge-patch+json",
60014          "application/apply-patch+yaml"
60015        ],
60016        "description": "partially update the specified Job",
60017        "operationId": "patchBatchV1NamespacedJob",
60018        "parameters": [
60019          {
60020            "in": "body",
60021            "name": "body",
60022            "required": true,
60023            "schema": {
60024              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60025            }
60026          },
60027          {
60028            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60029            "in": "query",
60030            "name": "dryRun",
60031            "type": "string",
60032            "uniqueItems": true
60033          },
60034          {
60035            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
60036            "in": "query",
60037            "name": "fieldManager",
60038            "type": "string",
60039            "uniqueItems": true
60040          },
60041          {
60042            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
60043            "in": "query",
60044            "name": "force",
60045            "type": "boolean",
60046            "uniqueItems": true
60047          }
60048        ],
60049        "produces": [
60050          "application/json",
60051          "application/yaml",
60052          "application/vnd.kubernetes.protobuf"
60053        ],
60054        "responses": {
60055          "200": {
60056            "description": "OK",
60057            "schema": {
60058              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60059            }
60060          },
60061          "401": {
60062            "description": "Unauthorized"
60063          }
60064        },
60065        "schemes": [
60066          "https"
60067        ],
60068        "tags": [
60069          "batch_v1"
60070        ],
60071        "x-kubernetes-action": "patch",
60072        "x-kubernetes-group-version-kind": {
60073          "group": "batch",
60074          "kind": "Job",
60075          "version": "v1"
60076        }
60077      },
60078      "put": {
60079        "consumes": [
60080          "*/*"
60081        ],
60082        "description": "replace the specified Job",
60083        "operationId": "replaceBatchV1NamespacedJob",
60084        "parameters": [
60085          {
60086            "in": "body",
60087            "name": "body",
60088            "required": true,
60089            "schema": {
60090              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60091            }
60092          },
60093          {
60094            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60095            "in": "query",
60096            "name": "dryRun",
60097            "type": "string",
60098            "uniqueItems": true
60099          },
60100          {
60101            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60102            "in": "query",
60103            "name": "fieldManager",
60104            "type": "string",
60105            "uniqueItems": true
60106          }
60107        ],
60108        "produces": [
60109          "application/json",
60110          "application/yaml",
60111          "application/vnd.kubernetes.protobuf"
60112        ],
60113        "responses": {
60114          "200": {
60115            "description": "OK",
60116            "schema": {
60117              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60118            }
60119          },
60120          "201": {
60121            "description": "Created",
60122            "schema": {
60123              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60124            }
60125          },
60126          "401": {
60127            "description": "Unauthorized"
60128          }
60129        },
60130        "schemes": [
60131          "https"
60132        ],
60133        "tags": [
60134          "batch_v1"
60135        ],
60136        "x-kubernetes-action": "put",
60137        "x-kubernetes-group-version-kind": {
60138          "group": "batch",
60139          "kind": "Job",
60140          "version": "v1"
60141        }
60142      }
60143    },
60144    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": {
60145      "get": {
60146        "consumes": [
60147          "*/*"
60148        ],
60149        "description": "read status of the specified Job",
60150        "operationId": "readBatchV1NamespacedJobStatus",
60151        "produces": [
60152          "application/json",
60153          "application/yaml",
60154          "application/vnd.kubernetes.protobuf"
60155        ],
60156        "responses": {
60157          "200": {
60158            "description": "OK",
60159            "schema": {
60160              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60161            }
60162          },
60163          "401": {
60164            "description": "Unauthorized"
60165          }
60166        },
60167        "schemes": [
60168          "https"
60169        ],
60170        "tags": [
60171          "batch_v1"
60172        ],
60173        "x-kubernetes-action": "get",
60174        "x-kubernetes-group-version-kind": {
60175          "group": "batch",
60176          "kind": "Job",
60177          "version": "v1"
60178        }
60179      },
60180      "parameters": [
60181        {
60182          "description": "name of the Job",
60183          "in": "path",
60184          "name": "name",
60185          "required": true,
60186          "type": "string",
60187          "uniqueItems": true
60188        },
60189        {
60190          "description": "object name and auth scope, such as for teams and projects",
60191          "in": "path",
60192          "name": "namespace",
60193          "required": true,
60194          "type": "string",
60195          "uniqueItems": true
60196        },
60197        {
60198          "description": "If 'true', then the output is pretty printed.",
60199          "in": "query",
60200          "name": "pretty",
60201          "type": "string",
60202          "uniqueItems": true
60203        }
60204      ],
60205      "patch": {
60206        "consumes": [
60207          "application/json-patch+json",
60208          "application/merge-patch+json",
60209          "application/strategic-merge-patch+json",
60210          "application/apply-patch+yaml"
60211        ],
60212        "description": "partially update status of the specified Job",
60213        "operationId": "patchBatchV1NamespacedJobStatus",
60214        "parameters": [
60215          {
60216            "in": "body",
60217            "name": "body",
60218            "required": true,
60219            "schema": {
60220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60221            }
60222          },
60223          {
60224            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60225            "in": "query",
60226            "name": "dryRun",
60227            "type": "string",
60228            "uniqueItems": true
60229          },
60230          {
60231            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
60232            "in": "query",
60233            "name": "fieldManager",
60234            "type": "string",
60235            "uniqueItems": true
60236          },
60237          {
60238            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
60239            "in": "query",
60240            "name": "force",
60241            "type": "boolean",
60242            "uniqueItems": true
60243          }
60244        ],
60245        "produces": [
60246          "application/json",
60247          "application/yaml",
60248          "application/vnd.kubernetes.protobuf"
60249        ],
60250        "responses": {
60251          "200": {
60252            "description": "OK",
60253            "schema": {
60254              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60255            }
60256          },
60257          "401": {
60258            "description": "Unauthorized"
60259          }
60260        },
60261        "schemes": [
60262          "https"
60263        ],
60264        "tags": [
60265          "batch_v1"
60266        ],
60267        "x-kubernetes-action": "patch",
60268        "x-kubernetes-group-version-kind": {
60269          "group": "batch",
60270          "kind": "Job",
60271          "version": "v1"
60272        }
60273      },
60274      "put": {
60275        "consumes": [
60276          "*/*"
60277        ],
60278        "description": "replace status of the specified Job",
60279        "operationId": "replaceBatchV1NamespacedJobStatus",
60280        "parameters": [
60281          {
60282            "in": "body",
60283            "name": "body",
60284            "required": true,
60285            "schema": {
60286              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60287            }
60288          },
60289          {
60290            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60291            "in": "query",
60292            "name": "dryRun",
60293            "type": "string",
60294            "uniqueItems": true
60295          },
60296          {
60297            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60298            "in": "query",
60299            "name": "fieldManager",
60300            "type": "string",
60301            "uniqueItems": true
60302          }
60303        ],
60304        "produces": [
60305          "application/json",
60306          "application/yaml",
60307          "application/vnd.kubernetes.protobuf"
60308        ],
60309        "responses": {
60310          "200": {
60311            "description": "OK",
60312            "schema": {
60313              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60314            }
60315          },
60316          "201": {
60317            "description": "Created",
60318            "schema": {
60319              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
60320            }
60321          },
60322          "401": {
60323            "description": "Unauthorized"
60324          }
60325        },
60326        "schemes": [
60327          "https"
60328        ],
60329        "tags": [
60330          "batch_v1"
60331        ],
60332        "x-kubernetes-action": "put",
60333        "x-kubernetes-group-version-kind": {
60334          "group": "batch",
60335          "kind": "Job",
60336          "version": "v1"
60337        }
60338      }
60339    },
60340    "/apis/batch/v1/watch/cronjobs": {
60341      "get": {
60342        "consumes": [
60343          "*/*"
60344        ],
60345        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
60346        "operationId": "watchBatchV1CronJobListForAllNamespaces",
60347        "produces": [
60348          "application/json",
60349          "application/yaml",
60350          "application/vnd.kubernetes.protobuf",
60351          "application/json;stream=watch",
60352          "application/vnd.kubernetes.protobuf;stream=watch"
60353        ],
60354        "responses": {
60355          "200": {
60356            "description": "OK",
60357            "schema": {
60358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60359            }
60360          },
60361          "401": {
60362            "description": "Unauthorized"
60363          }
60364        },
60365        "schemes": [
60366          "https"
60367        ],
60368        "tags": [
60369          "batch_v1"
60370        ],
60371        "x-kubernetes-action": "watchlist",
60372        "x-kubernetes-group-version-kind": {
60373          "group": "batch",
60374          "kind": "CronJob",
60375          "version": "v1"
60376        }
60377      },
60378      "parameters": [
60379        {
60380          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60381          "in": "query",
60382          "name": "allowWatchBookmarks",
60383          "type": "boolean",
60384          "uniqueItems": true
60385        },
60386        {
60387          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60388          "in": "query",
60389          "name": "continue",
60390          "type": "string",
60391          "uniqueItems": true
60392        },
60393        {
60394          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60395          "in": "query",
60396          "name": "fieldSelector",
60397          "type": "string",
60398          "uniqueItems": true
60399        },
60400        {
60401          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60402          "in": "query",
60403          "name": "labelSelector",
60404          "type": "string",
60405          "uniqueItems": true
60406        },
60407        {
60408          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60409          "in": "query",
60410          "name": "limit",
60411          "type": "integer",
60412          "uniqueItems": true
60413        },
60414        {
60415          "description": "If 'true', then the output is pretty printed.",
60416          "in": "query",
60417          "name": "pretty",
60418          "type": "string",
60419          "uniqueItems": true
60420        },
60421        {
60422          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60423          "in": "query",
60424          "name": "resourceVersion",
60425          "type": "string",
60426          "uniqueItems": true
60427        },
60428        {
60429          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60430          "in": "query",
60431          "name": "resourceVersionMatch",
60432          "type": "string",
60433          "uniqueItems": true
60434        },
60435        {
60436          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60437          "in": "query",
60438          "name": "timeoutSeconds",
60439          "type": "integer",
60440          "uniqueItems": true
60441        },
60442        {
60443          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60444          "in": "query",
60445          "name": "watch",
60446          "type": "boolean",
60447          "uniqueItems": true
60448        }
60449      ]
60450    },
60451    "/apis/batch/v1/watch/jobs": {
60452      "get": {
60453        "consumes": [
60454          "*/*"
60455        ],
60456        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
60457        "operationId": "watchBatchV1JobListForAllNamespaces",
60458        "produces": [
60459          "application/json",
60460          "application/yaml",
60461          "application/vnd.kubernetes.protobuf",
60462          "application/json;stream=watch",
60463          "application/vnd.kubernetes.protobuf;stream=watch"
60464        ],
60465        "responses": {
60466          "200": {
60467            "description": "OK",
60468            "schema": {
60469              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60470            }
60471          },
60472          "401": {
60473            "description": "Unauthorized"
60474          }
60475        },
60476        "schemes": [
60477          "https"
60478        ],
60479        "tags": [
60480          "batch_v1"
60481        ],
60482        "x-kubernetes-action": "watchlist",
60483        "x-kubernetes-group-version-kind": {
60484          "group": "batch",
60485          "kind": "Job",
60486          "version": "v1"
60487        }
60488      },
60489      "parameters": [
60490        {
60491          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60492          "in": "query",
60493          "name": "allowWatchBookmarks",
60494          "type": "boolean",
60495          "uniqueItems": true
60496        },
60497        {
60498          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60499          "in": "query",
60500          "name": "continue",
60501          "type": "string",
60502          "uniqueItems": true
60503        },
60504        {
60505          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60506          "in": "query",
60507          "name": "fieldSelector",
60508          "type": "string",
60509          "uniqueItems": true
60510        },
60511        {
60512          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60513          "in": "query",
60514          "name": "labelSelector",
60515          "type": "string",
60516          "uniqueItems": true
60517        },
60518        {
60519          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60520          "in": "query",
60521          "name": "limit",
60522          "type": "integer",
60523          "uniqueItems": true
60524        },
60525        {
60526          "description": "If 'true', then the output is pretty printed.",
60527          "in": "query",
60528          "name": "pretty",
60529          "type": "string",
60530          "uniqueItems": true
60531        },
60532        {
60533          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60534          "in": "query",
60535          "name": "resourceVersion",
60536          "type": "string",
60537          "uniqueItems": true
60538        },
60539        {
60540          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60541          "in": "query",
60542          "name": "resourceVersionMatch",
60543          "type": "string",
60544          "uniqueItems": true
60545        },
60546        {
60547          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60548          "in": "query",
60549          "name": "timeoutSeconds",
60550          "type": "integer",
60551          "uniqueItems": true
60552        },
60553        {
60554          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60555          "in": "query",
60556          "name": "watch",
60557          "type": "boolean",
60558          "uniqueItems": true
60559        }
60560      ]
60561    },
60562    "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs": {
60563      "get": {
60564        "consumes": [
60565          "*/*"
60566        ],
60567        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
60568        "operationId": "watchBatchV1NamespacedCronJobList",
60569        "produces": [
60570          "application/json",
60571          "application/yaml",
60572          "application/vnd.kubernetes.protobuf",
60573          "application/json;stream=watch",
60574          "application/vnd.kubernetes.protobuf;stream=watch"
60575        ],
60576        "responses": {
60577          "200": {
60578            "description": "OK",
60579            "schema": {
60580              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60581            }
60582          },
60583          "401": {
60584            "description": "Unauthorized"
60585          }
60586        },
60587        "schemes": [
60588          "https"
60589        ],
60590        "tags": [
60591          "batch_v1"
60592        ],
60593        "x-kubernetes-action": "watchlist",
60594        "x-kubernetes-group-version-kind": {
60595          "group": "batch",
60596          "kind": "CronJob",
60597          "version": "v1"
60598        }
60599      },
60600      "parameters": [
60601        {
60602          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60603          "in": "query",
60604          "name": "allowWatchBookmarks",
60605          "type": "boolean",
60606          "uniqueItems": true
60607        },
60608        {
60609          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60610          "in": "query",
60611          "name": "continue",
60612          "type": "string",
60613          "uniqueItems": true
60614        },
60615        {
60616          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60617          "in": "query",
60618          "name": "fieldSelector",
60619          "type": "string",
60620          "uniqueItems": true
60621        },
60622        {
60623          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60624          "in": "query",
60625          "name": "labelSelector",
60626          "type": "string",
60627          "uniqueItems": true
60628        },
60629        {
60630          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60631          "in": "query",
60632          "name": "limit",
60633          "type": "integer",
60634          "uniqueItems": true
60635        },
60636        {
60637          "description": "object name and auth scope, such as for teams and projects",
60638          "in": "path",
60639          "name": "namespace",
60640          "required": true,
60641          "type": "string",
60642          "uniqueItems": true
60643        },
60644        {
60645          "description": "If 'true', then the output is pretty printed.",
60646          "in": "query",
60647          "name": "pretty",
60648          "type": "string",
60649          "uniqueItems": true
60650        },
60651        {
60652          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60653          "in": "query",
60654          "name": "resourceVersion",
60655          "type": "string",
60656          "uniqueItems": true
60657        },
60658        {
60659          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60660          "in": "query",
60661          "name": "resourceVersionMatch",
60662          "type": "string",
60663          "uniqueItems": true
60664        },
60665        {
60666          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60667          "in": "query",
60668          "name": "timeoutSeconds",
60669          "type": "integer",
60670          "uniqueItems": true
60671        },
60672        {
60673          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60674          "in": "query",
60675          "name": "watch",
60676          "type": "boolean",
60677          "uniqueItems": true
60678        }
60679      ]
60680    },
60681    "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs/{name}": {
60682      "get": {
60683        "consumes": [
60684          "*/*"
60685        ],
60686        "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.",
60687        "operationId": "watchBatchV1NamespacedCronJob",
60688        "produces": [
60689          "application/json",
60690          "application/yaml",
60691          "application/vnd.kubernetes.protobuf",
60692          "application/json;stream=watch",
60693          "application/vnd.kubernetes.protobuf;stream=watch"
60694        ],
60695        "responses": {
60696          "200": {
60697            "description": "OK",
60698            "schema": {
60699              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60700            }
60701          },
60702          "401": {
60703            "description": "Unauthorized"
60704          }
60705        },
60706        "schemes": [
60707          "https"
60708        ],
60709        "tags": [
60710          "batch_v1"
60711        ],
60712        "x-kubernetes-action": "watch",
60713        "x-kubernetes-group-version-kind": {
60714          "group": "batch",
60715          "kind": "CronJob",
60716          "version": "v1"
60717        }
60718      },
60719      "parameters": [
60720        {
60721          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60722          "in": "query",
60723          "name": "allowWatchBookmarks",
60724          "type": "boolean",
60725          "uniqueItems": true
60726        },
60727        {
60728          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60729          "in": "query",
60730          "name": "continue",
60731          "type": "string",
60732          "uniqueItems": true
60733        },
60734        {
60735          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60736          "in": "query",
60737          "name": "fieldSelector",
60738          "type": "string",
60739          "uniqueItems": true
60740        },
60741        {
60742          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60743          "in": "query",
60744          "name": "labelSelector",
60745          "type": "string",
60746          "uniqueItems": true
60747        },
60748        {
60749          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60750          "in": "query",
60751          "name": "limit",
60752          "type": "integer",
60753          "uniqueItems": true
60754        },
60755        {
60756          "description": "name of the CronJob",
60757          "in": "path",
60758          "name": "name",
60759          "required": true,
60760          "type": "string",
60761          "uniqueItems": true
60762        },
60763        {
60764          "description": "object name and auth scope, such as for teams and projects",
60765          "in": "path",
60766          "name": "namespace",
60767          "required": true,
60768          "type": "string",
60769          "uniqueItems": true
60770        },
60771        {
60772          "description": "If 'true', then the output is pretty printed.",
60773          "in": "query",
60774          "name": "pretty",
60775          "type": "string",
60776          "uniqueItems": true
60777        },
60778        {
60779          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60780          "in": "query",
60781          "name": "resourceVersion",
60782          "type": "string",
60783          "uniqueItems": true
60784        },
60785        {
60786          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60787          "in": "query",
60788          "name": "resourceVersionMatch",
60789          "type": "string",
60790          "uniqueItems": true
60791        },
60792        {
60793          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60794          "in": "query",
60795          "name": "timeoutSeconds",
60796          "type": "integer",
60797          "uniqueItems": true
60798        },
60799        {
60800          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60801          "in": "query",
60802          "name": "watch",
60803          "type": "boolean",
60804          "uniqueItems": true
60805        }
60806      ]
60807    },
60808    "/apis/batch/v1/watch/namespaces/{namespace}/jobs": {
60809      "get": {
60810        "consumes": [
60811          "*/*"
60812        ],
60813        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
60814        "operationId": "watchBatchV1NamespacedJobList",
60815        "produces": [
60816          "application/json",
60817          "application/yaml",
60818          "application/vnd.kubernetes.protobuf",
60819          "application/json;stream=watch",
60820          "application/vnd.kubernetes.protobuf;stream=watch"
60821        ],
60822        "responses": {
60823          "200": {
60824            "description": "OK",
60825            "schema": {
60826              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60827            }
60828          },
60829          "401": {
60830            "description": "Unauthorized"
60831          }
60832        },
60833        "schemes": [
60834          "https"
60835        ],
60836        "tags": [
60837          "batch_v1"
60838        ],
60839        "x-kubernetes-action": "watchlist",
60840        "x-kubernetes-group-version-kind": {
60841          "group": "batch",
60842          "kind": "Job",
60843          "version": "v1"
60844        }
60845      },
60846      "parameters": [
60847        {
60848          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60849          "in": "query",
60850          "name": "allowWatchBookmarks",
60851          "type": "boolean",
60852          "uniqueItems": true
60853        },
60854        {
60855          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60856          "in": "query",
60857          "name": "continue",
60858          "type": "string",
60859          "uniqueItems": true
60860        },
60861        {
60862          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60863          "in": "query",
60864          "name": "fieldSelector",
60865          "type": "string",
60866          "uniqueItems": true
60867        },
60868        {
60869          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60870          "in": "query",
60871          "name": "labelSelector",
60872          "type": "string",
60873          "uniqueItems": true
60874        },
60875        {
60876          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60877          "in": "query",
60878          "name": "limit",
60879          "type": "integer",
60880          "uniqueItems": true
60881        },
60882        {
60883          "description": "object name and auth scope, such as for teams and projects",
60884          "in": "path",
60885          "name": "namespace",
60886          "required": true,
60887          "type": "string",
60888          "uniqueItems": true
60889        },
60890        {
60891          "description": "If 'true', then the output is pretty printed.",
60892          "in": "query",
60893          "name": "pretty",
60894          "type": "string",
60895          "uniqueItems": true
60896        },
60897        {
60898          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60899          "in": "query",
60900          "name": "resourceVersion",
60901          "type": "string",
60902          "uniqueItems": true
60903        },
60904        {
60905          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60906          "in": "query",
60907          "name": "resourceVersionMatch",
60908          "type": "string",
60909          "uniqueItems": true
60910        },
60911        {
60912          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60913          "in": "query",
60914          "name": "timeoutSeconds",
60915          "type": "integer",
60916          "uniqueItems": true
60917        },
60918        {
60919          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60920          "in": "query",
60921          "name": "watch",
60922          "type": "boolean",
60923          "uniqueItems": true
60924        }
60925      ]
60926    },
60927    "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": {
60928      "get": {
60929        "consumes": [
60930          "*/*"
60931        ],
60932        "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.",
60933        "operationId": "watchBatchV1NamespacedJob",
60934        "produces": [
60935          "application/json",
60936          "application/yaml",
60937          "application/vnd.kubernetes.protobuf",
60938          "application/json;stream=watch",
60939          "application/vnd.kubernetes.protobuf;stream=watch"
60940        ],
60941        "responses": {
60942          "200": {
60943            "description": "OK",
60944            "schema": {
60945              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60946            }
60947          },
60948          "401": {
60949            "description": "Unauthorized"
60950          }
60951        },
60952        "schemes": [
60953          "https"
60954        ],
60955        "tags": [
60956          "batch_v1"
60957        ],
60958        "x-kubernetes-action": "watch",
60959        "x-kubernetes-group-version-kind": {
60960          "group": "batch",
60961          "kind": "Job",
60962          "version": "v1"
60963        }
60964      },
60965      "parameters": [
60966        {
60967          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
60968          "in": "query",
60969          "name": "allowWatchBookmarks",
60970          "type": "boolean",
60971          "uniqueItems": true
60972        },
60973        {
60974          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60975          "in": "query",
60976          "name": "continue",
60977          "type": "string",
60978          "uniqueItems": true
60979        },
60980        {
60981          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60982          "in": "query",
60983          "name": "fieldSelector",
60984          "type": "string",
60985          "uniqueItems": true
60986        },
60987        {
60988          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60989          "in": "query",
60990          "name": "labelSelector",
60991          "type": "string",
60992          "uniqueItems": true
60993        },
60994        {
60995          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60996          "in": "query",
60997          "name": "limit",
60998          "type": "integer",
60999          "uniqueItems": true
61000        },
61001        {
61002          "description": "name of the Job",
61003          "in": "path",
61004          "name": "name",
61005          "required": true,
61006          "type": "string",
61007          "uniqueItems": true
61008        },
61009        {
61010          "description": "object name and auth scope, such as for teams and projects",
61011          "in": "path",
61012          "name": "namespace",
61013          "required": true,
61014          "type": "string",
61015          "uniqueItems": true
61016        },
61017        {
61018          "description": "If 'true', then the output is pretty printed.",
61019          "in": "query",
61020          "name": "pretty",
61021          "type": "string",
61022          "uniqueItems": true
61023        },
61024        {
61025          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61026          "in": "query",
61027          "name": "resourceVersion",
61028          "type": "string",
61029          "uniqueItems": true
61030        },
61031        {
61032          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61033          "in": "query",
61034          "name": "resourceVersionMatch",
61035          "type": "string",
61036          "uniqueItems": true
61037        },
61038        {
61039          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61040          "in": "query",
61041          "name": "timeoutSeconds",
61042          "type": "integer",
61043          "uniqueItems": true
61044        },
61045        {
61046          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61047          "in": "query",
61048          "name": "watch",
61049          "type": "boolean",
61050          "uniqueItems": true
61051        }
61052      ]
61053    },
61054    "/apis/batch/v1beta1/": {
61055      "get": {
61056        "consumes": [
61057          "application/json",
61058          "application/yaml",
61059          "application/vnd.kubernetes.protobuf"
61060        ],
61061        "description": "get available resources",
61062        "operationId": "getBatchV1beta1APIResources",
61063        "produces": [
61064          "application/json",
61065          "application/yaml",
61066          "application/vnd.kubernetes.protobuf"
61067        ],
61068        "responses": {
61069          "200": {
61070            "description": "OK",
61071            "schema": {
61072              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
61073            }
61074          },
61075          "401": {
61076            "description": "Unauthorized"
61077          }
61078        },
61079        "schemes": [
61080          "https"
61081        ],
61082        "tags": [
61083          "batch_v1beta1"
61084        ]
61085      }
61086    },
61087    "/apis/batch/v1beta1/cronjobs": {
61088      "get": {
61089        "consumes": [
61090          "*/*"
61091        ],
61092        "description": "list or watch objects of kind CronJob",
61093        "operationId": "listBatchV1beta1CronJobForAllNamespaces",
61094        "produces": [
61095          "application/json",
61096          "application/yaml",
61097          "application/vnd.kubernetes.protobuf",
61098          "application/json;stream=watch",
61099          "application/vnd.kubernetes.protobuf;stream=watch"
61100        ],
61101        "responses": {
61102          "200": {
61103            "description": "OK",
61104            "schema": {
61105              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
61106            }
61107          },
61108          "401": {
61109            "description": "Unauthorized"
61110          }
61111        },
61112        "schemes": [
61113          "https"
61114        ],
61115        "tags": [
61116          "batch_v1beta1"
61117        ],
61118        "x-kubernetes-action": "list",
61119        "x-kubernetes-group-version-kind": {
61120          "group": "batch",
61121          "kind": "CronJob",
61122          "version": "v1beta1"
61123        }
61124      },
61125      "parameters": [
61126        {
61127          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
61128          "in": "query",
61129          "name": "allowWatchBookmarks",
61130          "type": "boolean",
61131          "uniqueItems": true
61132        },
61133        {
61134          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61135          "in": "query",
61136          "name": "continue",
61137          "type": "string",
61138          "uniqueItems": true
61139        },
61140        {
61141          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61142          "in": "query",
61143          "name": "fieldSelector",
61144          "type": "string",
61145          "uniqueItems": true
61146        },
61147        {
61148          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61149          "in": "query",
61150          "name": "labelSelector",
61151          "type": "string",
61152          "uniqueItems": true
61153        },
61154        {
61155          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61156          "in": "query",
61157          "name": "limit",
61158          "type": "integer",
61159          "uniqueItems": true
61160        },
61161        {
61162          "description": "If 'true', then the output is pretty printed.",
61163          "in": "query",
61164          "name": "pretty",
61165          "type": "string",
61166          "uniqueItems": true
61167        },
61168        {
61169          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61170          "in": "query",
61171          "name": "resourceVersion",
61172          "type": "string",
61173          "uniqueItems": true
61174        },
61175        {
61176          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61177          "in": "query",
61178          "name": "resourceVersionMatch",
61179          "type": "string",
61180          "uniqueItems": true
61181        },
61182        {
61183          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61184          "in": "query",
61185          "name": "timeoutSeconds",
61186          "type": "integer",
61187          "uniqueItems": true
61188        },
61189        {
61190          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61191          "in": "query",
61192          "name": "watch",
61193          "type": "boolean",
61194          "uniqueItems": true
61195        }
61196      ]
61197    },
61198    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs": {
61199      "delete": {
61200        "consumes": [
61201          "*/*"
61202        ],
61203        "description": "delete collection of CronJob",
61204        "operationId": "deleteBatchV1beta1CollectionNamespacedCronJob",
61205        "parameters": [
61206          {
61207            "in": "body",
61208            "name": "body",
61209            "schema": {
61210              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61211            }
61212          },
61213          {
61214            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61215            "in": "query",
61216            "name": "continue",
61217            "type": "string",
61218            "uniqueItems": true
61219          },
61220          {
61221            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61222            "in": "query",
61223            "name": "dryRun",
61224            "type": "string",
61225            "uniqueItems": true
61226          },
61227          {
61228            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61229            "in": "query",
61230            "name": "fieldSelector",
61231            "type": "string",
61232            "uniqueItems": true
61233          },
61234          {
61235            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61236            "in": "query",
61237            "name": "gracePeriodSeconds",
61238            "type": "integer",
61239            "uniqueItems": true
61240          },
61241          {
61242            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61243            "in": "query",
61244            "name": "labelSelector",
61245            "type": "string",
61246            "uniqueItems": true
61247          },
61248          {
61249            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61250            "in": "query",
61251            "name": "limit",
61252            "type": "integer",
61253            "uniqueItems": true
61254          },
61255          {
61256            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61257            "in": "query",
61258            "name": "orphanDependents",
61259            "type": "boolean",
61260            "uniqueItems": true
61261          },
61262          {
61263            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61264            "in": "query",
61265            "name": "propagationPolicy",
61266            "type": "string",
61267            "uniqueItems": true
61268          },
61269          {
61270            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61271            "in": "query",
61272            "name": "resourceVersion",
61273            "type": "string",
61274            "uniqueItems": true
61275          },
61276          {
61277            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61278            "in": "query",
61279            "name": "resourceVersionMatch",
61280            "type": "string",
61281            "uniqueItems": true
61282          },
61283          {
61284            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61285            "in": "query",
61286            "name": "timeoutSeconds",
61287            "type": "integer",
61288            "uniqueItems": true
61289          }
61290        ],
61291        "produces": [
61292          "application/json",
61293          "application/yaml",
61294          "application/vnd.kubernetes.protobuf"
61295        ],
61296        "responses": {
61297          "200": {
61298            "description": "OK",
61299            "schema": {
61300              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61301            }
61302          },
61303          "401": {
61304            "description": "Unauthorized"
61305          }
61306        },
61307        "schemes": [
61308          "https"
61309        ],
61310        "tags": [
61311          "batch_v1beta1"
61312        ],
61313        "x-kubernetes-action": "deletecollection",
61314        "x-kubernetes-group-version-kind": {
61315          "group": "batch",
61316          "kind": "CronJob",
61317          "version": "v1beta1"
61318        }
61319      },
61320      "get": {
61321        "consumes": [
61322          "*/*"
61323        ],
61324        "description": "list or watch objects of kind CronJob",
61325        "operationId": "listBatchV1beta1NamespacedCronJob",
61326        "parameters": [
61327          {
61328            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
61329            "in": "query",
61330            "name": "allowWatchBookmarks",
61331            "type": "boolean",
61332            "uniqueItems": true
61333          },
61334          {
61335            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61336            "in": "query",
61337            "name": "continue",
61338            "type": "string",
61339            "uniqueItems": true
61340          },
61341          {
61342            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61343            "in": "query",
61344            "name": "fieldSelector",
61345            "type": "string",
61346            "uniqueItems": true
61347          },
61348          {
61349            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61350            "in": "query",
61351            "name": "labelSelector",
61352            "type": "string",
61353            "uniqueItems": true
61354          },
61355          {
61356            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61357            "in": "query",
61358            "name": "limit",
61359            "type": "integer",
61360            "uniqueItems": true
61361          },
61362          {
61363            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61364            "in": "query",
61365            "name": "resourceVersion",
61366            "type": "string",
61367            "uniqueItems": true
61368          },
61369          {
61370            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61371            "in": "query",
61372            "name": "resourceVersionMatch",
61373            "type": "string",
61374            "uniqueItems": true
61375          },
61376          {
61377            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61378            "in": "query",
61379            "name": "timeoutSeconds",
61380            "type": "integer",
61381            "uniqueItems": true
61382          },
61383          {
61384            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61385            "in": "query",
61386            "name": "watch",
61387            "type": "boolean",
61388            "uniqueItems": true
61389          }
61390        ],
61391        "produces": [
61392          "application/json",
61393          "application/yaml",
61394          "application/vnd.kubernetes.protobuf",
61395          "application/json;stream=watch",
61396          "application/vnd.kubernetes.protobuf;stream=watch"
61397        ],
61398        "responses": {
61399          "200": {
61400            "description": "OK",
61401            "schema": {
61402              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
61403            }
61404          },
61405          "401": {
61406            "description": "Unauthorized"
61407          }
61408        },
61409        "schemes": [
61410          "https"
61411        ],
61412        "tags": [
61413          "batch_v1beta1"
61414        ],
61415        "x-kubernetes-action": "list",
61416        "x-kubernetes-group-version-kind": {
61417          "group": "batch",
61418          "kind": "CronJob",
61419          "version": "v1beta1"
61420        }
61421      },
61422      "parameters": [
61423        {
61424          "description": "object name and auth scope, such as for teams and projects",
61425          "in": "path",
61426          "name": "namespace",
61427          "required": true,
61428          "type": "string",
61429          "uniqueItems": true
61430        },
61431        {
61432          "description": "If 'true', then the output is pretty printed.",
61433          "in": "query",
61434          "name": "pretty",
61435          "type": "string",
61436          "uniqueItems": true
61437        }
61438      ],
61439      "post": {
61440        "consumes": [
61441          "*/*"
61442        ],
61443        "description": "create a CronJob",
61444        "operationId": "createBatchV1beta1NamespacedCronJob",
61445        "parameters": [
61446          {
61447            "in": "body",
61448            "name": "body",
61449            "required": true,
61450            "schema": {
61451              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61452            }
61453          },
61454          {
61455            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61456            "in": "query",
61457            "name": "dryRun",
61458            "type": "string",
61459            "uniqueItems": true
61460          },
61461          {
61462            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61463            "in": "query",
61464            "name": "fieldManager",
61465            "type": "string",
61466            "uniqueItems": true
61467          }
61468        ],
61469        "produces": [
61470          "application/json",
61471          "application/yaml",
61472          "application/vnd.kubernetes.protobuf"
61473        ],
61474        "responses": {
61475          "200": {
61476            "description": "OK",
61477            "schema": {
61478              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61479            }
61480          },
61481          "201": {
61482            "description": "Created",
61483            "schema": {
61484              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61485            }
61486          },
61487          "202": {
61488            "description": "Accepted",
61489            "schema": {
61490              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61491            }
61492          },
61493          "401": {
61494            "description": "Unauthorized"
61495          }
61496        },
61497        "schemes": [
61498          "https"
61499        ],
61500        "tags": [
61501          "batch_v1beta1"
61502        ],
61503        "x-kubernetes-action": "post",
61504        "x-kubernetes-group-version-kind": {
61505          "group": "batch",
61506          "kind": "CronJob",
61507          "version": "v1beta1"
61508        }
61509      }
61510    },
61511    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}": {
61512      "delete": {
61513        "consumes": [
61514          "*/*"
61515        ],
61516        "description": "delete a CronJob",
61517        "operationId": "deleteBatchV1beta1NamespacedCronJob",
61518        "parameters": [
61519          {
61520            "in": "body",
61521            "name": "body",
61522            "schema": {
61523              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61524            }
61525          },
61526          {
61527            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61528            "in": "query",
61529            "name": "dryRun",
61530            "type": "string",
61531            "uniqueItems": true
61532          },
61533          {
61534            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61535            "in": "query",
61536            "name": "gracePeriodSeconds",
61537            "type": "integer",
61538            "uniqueItems": true
61539          },
61540          {
61541            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61542            "in": "query",
61543            "name": "orphanDependents",
61544            "type": "boolean",
61545            "uniqueItems": true
61546          },
61547          {
61548            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61549            "in": "query",
61550            "name": "propagationPolicy",
61551            "type": "string",
61552            "uniqueItems": true
61553          }
61554        ],
61555        "produces": [
61556          "application/json",
61557          "application/yaml",
61558          "application/vnd.kubernetes.protobuf"
61559        ],
61560        "responses": {
61561          "200": {
61562            "description": "OK",
61563            "schema": {
61564              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61565            }
61566          },
61567          "202": {
61568            "description": "Accepted",
61569            "schema": {
61570              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61571            }
61572          },
61573          "401": {
61574            "description": "Unauthorized"
61575          }
61576        },
61577        "schemes": [
61578          "https"
61579        ],
61580        "tags": [
61581          "batch_v1beta1"
61582        ],
61583        "x-kubernetes-action": "delete",
61584        "x-kubernetes-group-version-kind": {
61585          "group": "batch",
61586          "kind": "CronJob",
61587          "version": "v1beta1"
61588        }
61589      },
61590      "get": {
61591        "consumes": [
61592          "*/*"
61593        ],
61594        "description": "read the specified CronJob",
61595        "operationId": "readBatchV1beta1NamespacedCronJob",
61596        "produces": [
61597          "application/json",
61598          "application/yaml",
61599          "application/vnd.kubernetes.protobuf"
61600        ],
61601        "responses": {
61602          "200": {
61603            "description": "OK",
61604            "schema": {
61605              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61606            }
61607          },
61608          "401": {
61609            "description": "Unauthorized"
61610          }
61611        },
61612        "schemes": [
61613          "https"
61614        ],
61615        "tags": [
61616          "batch_v1beta1"
61617        ],
61618        "x-kubernetes-action": "get",
61619        "x-kubernetes-group-version-kind": {
61620          "group": "batch",
61621          "kind": "CronJob",
61622          "version": "v1beta1"
61623        }
61624      },
61625      "parameters": [
61626        {
61627          "description": "name of the CronJob",
61628          "in": "path",
61629          "name": "name",
61630          "required": true,
61631          "type": "string",
61632          "uniqueItems": true
61633        },
61634        {
61635          "description": "object name and auth scope, such as for teams and projects",
61636          "in": "path",
61637          "name": "namespace",
61638          "required": true,
61639          "type": "string",
61640          "uniqueItems": true
61641        },
61642        {
61643          "description": "If 'true', then the output is pretty printed.",
61644          "in": "query",
61645          "name": "pretty",
61646          "type": "string",
61647          "uniqueItems": true
61648        }
61649      ],
61650      "patch": {
61651        "consumes": [
61652          "application/json-patch+json",
61653          "application/merge-patch+json",
61654          "application/strategic-merge-patch+json",
61655          "application/apply-patch+yaml"
61656        ],
61657        "description": "partially update the specified CronJob",
61658        "operationId": "patchBatchV1beta1NamespacedCronJob",
61659        "parameters": [
61660          {
61661            "in": "body",
61662            "name": "body",
61663            "required": true,
61664            "schema": {
61665              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
61666            }
61667          },
61668          {
61669            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61670            "in": "query",
61671            "name": "dryRun",
61672            "type": "string",
61673            "uniqueItems": true
61674          },
61675          {
61676            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
61677            "in": "query",
61678            "name": "fieldManager",
61679            "type": "string",
61680            "uniqueItems": true
61681          },
61682          {
61683            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
61684            "in": "query",
61685            "name": "force",
61686            "type": "boolean",
61687            "uniqueItems": true
61688          }
61689        ],
61690        "produces": [
61691          "application/json",
61692          "application/yaml",
61693          "application/vnd.kubernetes.protobuf"
61694        ],
61695        "responses": {
61696          "200": {
61697            "description": "OK",
61698            "schema": {
61699              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61700            }
61701          },
61702          "401": {
61703            "description": "Unauthorized"
61704          }
61705        },
61706        "schemes": [
61707          "https"
61708        ],
61709        "tags": [
61710          "batch_v1beta1"
61711        ],
61712        "x-kubernetes-action": "patch",
61713        "x-kubernetes-group-version-kind": {
61714          "group": "batch",
61715          "kind": "CronJob",
61716          "version": "v1beta1"
61717        }
61718      },
61719      "put": {
61720        "consumes": [
61721          "*/*"
61722        ],
61723        "description": "replace the specified CronJob",
61724        "operationId": "replaceBatchV1beta1NamespacedCronJob",
61725        "parameters": [
61726          {
61727            "in": "body",
61728            "name": "body",
61729            "required": true,
61730            "schema": {
61731              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61732            }
61733          },
61734          {
61735            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61736            "in": "query",
61737            "name": "dryRun",
61738            "type": "string",
61739            "uniqueItems": true
61740          },
61741          {
61742            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61743            "in": "query",
61744            "name": "fieldManager",
61745            "type": "string",
61746            "uniqueItems": true
61747          }
61748        ],
61749        "produces": [
61750          "application/json",
61751          "application/yaml",
61752          "application/vnd.kubernetes.protobuf"
61753        ],
61754        "responses": {
61755          "200": {
61756            "description": "OK",
61757            "schema": {
61758              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61759            }
61760          },
61761          "201": {
61762            "description": "Created",
61763            "schema": {
61764              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61765            }
61766          },
61767          "401": {
61768            "description": "Unauthorized"
61769          }
61770        },
61771        "schemes": [
61772          "https"
61773        ],
61774        "tags": [
61775          "batch_v1beta1"
61776        ],
61777        "x-kubernetes-action": "put",
61778        "x-kubernetes-group-version-kind": {
61779          "group": "batch",
61780          "kind": "CronJob",
61781          "version": "v1beta1"
61782        }
61783      }
61784    },
61785    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status": {
61786      "get": {
61787        "consumes": [
61788          "*/*"
61789        ],
61790        "description": "read status of the specified CronJob",
61791        "operationId": "readBatchV1beta1NamespacedCronJobStatus",
61792        "produces": [
61793          "application/json",
61794          "application/yaml",
61795          "application/vnd.kubernetes.protobuf"
61796        ],
61797        "responses": {
61798          "200": {
61799            "description": "OK",
61800            "schema": {
61801              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61802            }
61803          },
61804          "401": {
61805            "description": "Unauthorized"
61806          }
61807        },
61808        "schemes": [
61809          "https"
61810        ],
61811        "tags": [
61812          "batch_v1beta1"
61813        ],
61814        "x-kubernetes-action": "get",
61815        "x-kubernetes-group-version-kind": {
61816          "group": "batch",
61817          "kind": "CronJob",
61818          "version": "v1beta1"
61819        }
61820      },
61821      "parameters": [
61822        {
61823          "description": "name of the CronJob",
61824          "in": "path",
61825          "name": "name",
61826          "required": true,
61827          "type": "string",
61828          "uniqueItems": true
61829        },
61830        {
61831          "description": "object name and auth scope, such as for teams and projects",
61832          "in": "path",
61833          "name": "namespace",
61834          "required": true,
61835          "type": "string",
61836          "uniqueItems": true
61837        },
61838        {
61839          "description": "If 'true', then the output is pretty printed.",
61840          "in": "query",
61841          "name": "pretty",
61842          "type": "string",
61843          "uniqueItems": true
61844        }
61845      ],
61846      "patch": {
61847        "consumes": [
61848          "application/json-patch+json",
61849          "application/merge-patch+json",
61850          "application/strategic-merge-patch+json",
61851          "application/apply-patch+yaml"
61852        ],
61853        "description": "partially update status of the specified CronJob",
61854        "operationId": "patchBatchV1beta1NamespacedCronJobStatus",
61855        "parameters": [
61856          {
61857            "in": "body",
61858            "name": "body",
61859            "required": true,
61860            "schema": {
61861              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
61862            }
61863          },
61864          {
61865            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61866            "in": "query",
61867            "name": "dryRun",
61868            "type": "string",
61869            "uniqueItems": true
61870          },
61871          {
61872            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
61873            "in": "query",
61874            "name": "fieldManager",
61875            "type": "string",
61876            "uniqueItems": true
61877          },
61878          {
61879            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
61880            "in": "query",
61881            "name": "force",
61882            "type": "boolean",
61883            "uniqueItems": true
61884          }
61885        ],
61886        "produces": [
61887          "application/json",
61888          "application/yaml",
61889          "application/vnd.kubernetes.protobuf"
61890        ],
61891        "responses": {
61892          "200": {
61893            "description": "OK",
61894            "schema": {
61895              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61896            }
61897          },
61898          "401": {
61899            "description": "Unauthorized"
61900          }
61901        },
61902        "schemes": [
61903          "https"
61904        ],
61905        "tags": [
61906          "batch_v1beta1"
61907        ],
61908        "x-kubernetes-action": "patch",
61909        "x-kubernetes-group-version-kind": {
61910          "group": "batch",
61911          "kind": "CronJob",
61912          "version": "v1beta1"
61913        }
61914      },
61915      "put": {
61916        "consumes": [
61917          "*/*"
61918        ],
61919        "description": "replace status of the specified CronJob",
61920        "operationId": "replaceBatchV1beta1NamespacedCronJobStatus",
61921        "parameters": [
61922          {
61923            "in": "body",
61924            "name": "body",
61925            "required": true,
61926            "schema": {
61927              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61928            }
61929          },
61930          {
61931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61932            "in": "query",
61933            "name": "dryRun",
61934            "type": "string",
61935            "uniqueItems": true
61936          },
61937          {
61938            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61939            "in": "query",
61940            "name": "fieldManager",
61941            "type": "string",
61942            "uniqueItems": true
61943          }
61944        ],
61945        "produces": [
61946          "application/json",
61947          "application/yaml",
61948          "application/vnd.kubernetes.protobuf"
61949        ],
61950        "responses": {
61951          "200": {
61952            "description": "OK",
61953            "schema": {
61954              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61955            }
61956          },
61957          "201": {
61958            "description": "Created",
61959            "schema": {
61960              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
61961            }
61962          },
61963          "401": {
61964            "description": "Unauthorized"
61965          }
61966        },
61967        "schemes": [
61968          "https"
61969        ],
61970        "tags": [
61971          "batch_v1beta1"
61972        ],
61973        "x-kubernetes-action": "put",
61974        "x-kubernetes-group-version-kind": {
61975          "group": "batch",
61976          "kind": "CronJob",
61977          "version": "v1beta1"
61978        }
61979      }
61980    },
61981    "/apis/batch/v1beta1/watch/cronjobs": {
61982      "get": {
61983        "consumes": [
61984          "*/*"
61985        ],
61986        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
61987        "operationId": "watchBatchV1beta1CronJobListForAllNamespaces",
61988        "produces": [
61989          "application/json",
61990          "application/yaml",
61991          "application/vnd.kubernetes.protobuf",
61992          "application/json;stream=watch",
61993          "application/vnd.kubernetes.protobuf;stream=watch"
61994        ],
61995        "responses": {
61996          "200": {
61997            "description": "OK",
61998            "schema": {
61999              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62000            }
62001          },
62002          "401": {
62003            "description": "Unauthorized"
62004          }
62005        },
62006        "schemes": [
62007          "https"
62008        ],
62009        "tags": [
62010          "batch_v1beta1"
62011        ],
62012        "x-kubernetes-action": "watchlist",
62013        "x-kubernetes-group-version-kind": {
62014          "group": "batch",
62015          "kind": "CronJob",
62016          "version": "v1beta1"
62017        }
62018      },
62019      "parameters": [
62020        {
62021          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62022          "in": "query",
62023          "name": "allowWatchBookmarks",
62024          "type": "boolean",
62025          "uniqueItems": true
62026        },
62027        {
62028          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62029          "in": "query",
62030          "name": "continue",
62031          "type": "string",
62032          "uniqueItems": true
62033        },
62034        {
62035          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62036          "in": "query",
62037          "name": "fieldSelector",
62038          "type": "string",
62039          "uniqueItems": true
62040        },
62041        {
62042          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62043          "in": "query",
62044          "name": "labelSelector",
62045          "type": "string",
62046          "uniqueItems": true
62047        },
62048        {
62049          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62050          "in": "query",
62051          "name": "limit",
62052          "type": "integer",
62053          "uniqueItems": true
62054        },
62055        {
62056          "description": "If 'true', then the output is pretty printed.",
62057          "in": "query",
62058          "name": "pretty",
62059          "type": "string",
62060          "uniqueItems": true
62061        },
62062        {
62063          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62064          "in": "query",
62065          "name": "resourceVersion",
62066          "type": "string",
62067          "uniqueItems": true
62068        },
62069        {
62070          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62071          "in": "query",
62072          "name": "resourceVersionMatch",
62073          "type": "string",
62074          "uniqueItems": true
62075        },
62076        {
62077          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62078          "in": "query",
62079          "name": "timeoutSeconds",
62080          "type": "integer",
62081          "uniqueItems": true
62082        },
62083        {
62084          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62085          "in": "query",
62086          "name": "watch",
62087          "type": "boolean",
62088          "uniqueItems": true
62089        }
62090      ]
62091    },
62092    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs": {
62093      "get": {
62094        "consumes": [
62095          "*/*"
62096        ],
62097        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
62098        "operationId": "watchBatchV1beta1NamespacedCronJobList",
62099        "produces": [
62100          "application/json",
62101          "application/yaml",
62102          "application/vnd.kubernetes.protobuf",
62103          "application/json;stream=watch",
62104          "application/vnd.kubernetes.protobuf;stream=watch"
62105        ],
62106        "responses": {
62107          "200": {
62108            "description": "OK",
62109            "schema": {
62110              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62111            }
62112          },
62113          "401": {
62114            "description": "Unauthorized"
62115          }
62116        },
62117        "schemes": [
62118          "https"
62119        ],
62120        "tags": [
62121          "batch_v1beta1"
62122        ],
62123        "x-kubernetes-action": "watchlist",
62124        "x-kubernetes-group-version-kind": {
62125          "group": "batch",
62126          "kind": "CronJob",
62127          "version": "v1beta1"
62128        }
62129      },
62130      "parameters": [
62131        {
62132          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62133          "in": "query",
62134          "name": "allowWatchBookmarks",
62135          "type": "boolean",
62136          "uniqueItems": true
62137        },
62138        {
62139          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62140          "in": "query",
62141          "name": "continue",
62142          "type": "string",
62143          "uniqueItems": true
62144        },
62145        {
62146          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62147          "in": "query",
62148          "name": "fieldSelector",
62149          "type": "string",
62150          "uniqueItems": true
62151        },
62152        {
62153          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62154          "in": "query",
62155          "name": "labelSelector",
62156          "type": "string",
62157          "uniqueItems": true
62158        },
62159        {
62160          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62161          "in": "query",
62162          "name": "limit",
62163          "type": "integer",
62164          "uniqueItems": true
62165        },
62166        {
62167          "description": "object name and auth scope, such as for teams and projects",
62168          "in": "path",
62169          "name": "namespace",
62170          "required": true,
62171          "type": "string",
62172          "uniqueItems": true
62173        },
62174        {
62175          "description": "If 'true', then the output is pretty printed.",
62176          "in": "query",
62177          "name": "pretty",
62178          "type": "string",
62179          "uniqueItems": true
62180        },
62181        {
62182          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62183          "in": "query",
62184          "name": "resourceVersion",
62185          "type": "string",
62186          "uniqueItems": true
62187        },
62188        {
62189          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62190          "in": "query",
62191          "name": "resourceVersionMatch",
62192          "type": "string",
62193          "uniqueItems": true
62194        },
62195        {
62196          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62197          "in": "query",
62198          "name": "timeoutSeconds",
62199          "type": "integer",
62200          "uniqueItems": true
62201        },
62202        {
62203          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62204          "in": "query",
62205          "name": "watch",
62206          "type": "boolean",
62207          "uniqueItems": true
62208        }
62209      ]
62210    },
62211    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}": {
62212      "get": {
62213        "consumes": [
62214          "*/*"
62215        ],
62216        "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.",
62217        "operationId": "watchBatchV1beta1NamespacedCronJob",
62218        "produces": [
62219          "application/json",
62220          "application/yaml",
62221          "application/vnd.kubernetes.protobuf",
62222          "application/json;stream=watch",
62223          "application/vnd.kubernetes.protobuf;stream=watch"
62224        ],
62225        "responses": {
62226          "200": {
62227            "description": "OK",
62228            "schema": {
62229              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62230            }
62231          },
62232          "401": {
62233            "description": "Unauthorized"
62234          }
62235        },
62236        "schemes": [
62237          "https"
62238        ],
62239        "tags": [
62240          "batch_v1beta1"
62241        ],
62242        "x-kubernetes-action": "watch",
62243        "x-kubernetes-group-version-kind": {
62244          "group": "batch",
62245          "kind": "CronJob",
62246          "version": "v1beta1"
62247        }
62248      },
62249      "parameters": [
62250        {
62251          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62252          "in": "query",
62253          "name": "allowWatchBookmarks",
62254          "type": "boolean",
62255          "uniqueItems": true
62256        },
62257        {
62258          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62259          "in": "query",
62260          "name": "continue",
62261          "type": "string",
62262          "uniqueItems": true
62263        },
62264        {
62265          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62266          "in": "query",
62267          "name": "fieldSelector",
62268          "type": "string",
62269          "uniqueItems": true
62270        },
62271        {
62272          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62273          "in": "query",
62274          "name": "labelSelector",
62275          "type": "string",
62276          "uniqueItems": true
62277        },
62278        {
62279          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62280          "in": "query",
62281          "name": "limit",
62282          "type": "integer",
62283          "uniqueItems": true
62284        },
62285        {
62286          "description": "name of the CronJob",
62287          "in": "path",
62288          "name": "name",
62289          "required": true,
62290          "type": "string",
62291          "uniqueItems": true
62292        },
62293        {
62294          "description": "object name and auth scope, such as for teams and projects",
62295          "in": "path",
62296          "name": "namespace",
62297          "required": true,
62298          "type": "string",
62299          "uniqueItems": true
62300        },
62301        {
62302          "description": "If 'true', then the output is pretty printed.",
62303          "in": "query",
62304          "name": "pretty",
62305          "type": "string",
62306          "uniqueItems": true
62307        },
62308        {
62309          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62310          "in": "query",
62311          "name": "resourceVersion",
62312          "type": "string",
62313          "uniqueItems": true
62314        },
62315        {
62316          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62317          "in": "query",
62318          "name": "resourceVersionMatch",
62319          "type": "string",
62320          "uniqueItems": true
62321        },
62322        {
62323          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62324          "in": "query",
62325          "name": "timeoutSeconds",
62326          "type": "integer",
62327          "uniqueItems": true
62328        },
62329        {
62330          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62331          "in": "query",
62332          "name": "watch",
62333          "type": "boolean",
62334          "uniqueItems": true
62335        }
62336      ]
62337    },
62338    "/apis/certificates.k8s.io/": {
62339      "get": {
62340        "consumes": [
62341          "application/json",
62342          "application/yaml",
62343          "application/vnd.kubernetes.protobuf"
62344        ],
62345        "description": "get information of a group",
62346        "operationId": "getCertificatesAPIGroup",
62347        "produces": [
62348          "application/json",
62349          "application/yaml",
62350          "application/vnd.kubernetes.protobuf"
62351        ],
62352        "responses": {
62353          "200": {
62354            "description": "OK",
62355            "schema": {
62356              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
62357            }
62358          },
62359          "401": {
62360            "description": "Unauthorized"
62361          }
62362        },
62363        "schemes": [
62364          "https"
62365        ],
62366        "tags": [
62367          "certificates"
62368        ]
62369      }
62370    },
62371    "/apis/certificates.k8s.io/v1/": {
62372      "get": {
62373        "consumes": [
62374          "application/json",
62375          "application/yaml",
62376          "application/vnd.kubernetes.protobuf"
62377        ],
62378        "description": "get available resources",
62379        "operationId": "getCertificatesV1APIResources",
62380        "produces": [
62381          "application/json",
62382          "application/yaml",
62383          "application/vnd.kubernetes.protobuf"
62384        ],
62385        "responses": {
62386          "200": {
62387            "description": "OK",
62388            "schema": {
62389              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
62390            }
62391          },
62392          "401": {
62393            "description": "Unauthorized"
62394          }
62395        },
62396        "schemes": [
62397          "https"
62398        ],
62399        "tags": [
62400          "certificates_v1"
62401        ]
62402      }
62403    },
62404    "/apis/certificates.k8s.io/v1/certificatesigningrequests": {
62405      "delete": {
62406        "consumes": [
62407          "*/*"
62408        ],
62409        "description": "delete collection of CertificateSigningRequest",
62410        "operationId": "deleteCertificatesV1CollectionCertificateSigningRequest",
62411        "parameters": [
62412          {
62413            "in": "body",
62414            "name": "body",
62415            "schema": {
62416              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62417            }
62418          },
62419          {
62420            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62421            "in": "query",
62422            "name": "continue",
62423            "type": "string",
62424            "uniqueItems": true
62425          },
62426          {
62427            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62428            "in": "query",
62429            "name": "dryRun",
62430            "type": "string",
62431            "uniqueItems": true
62432          },
62433          {
62434            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62435            "in": "query",
62436            "name": "fieldSelector",
62437            "type": "string",
62438            "uniqueItems": true
62439          },
62440          {
62441            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62442            "in": "query",
62443            "name": "gracePeriodSeconds",
62444            "type": "integer",
62445            "uniqueItems": true
62446          },
62447          {
62448            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62449            "in": "query",
62450            "name": "labelSelector",
62451            "type": "string",
62452            "uniqueItems": true
62453          },
62454          {
62455            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62456            "in": "query",
62457            "name": "limit",
62458            "type": "integer",
62459            "uniqueItems": true
62460          },
62461          {
62462            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62463            "in": "query",
62464            "name": "orphanDependents",
62465            "type": "boolean",
62466            "uniqueItems": true
62467          },
62468          {
62469            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62470            "in": "query",
62471            "name": "propagationPolicy",
62472            "type": "string",
62473            "uniqueItems": true
62474          },
62475          {
62476            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62477            "in": "query",
62478            "name": "resourceVersion",
62479            "type": "string",
62480            "uniqueItems": true
62481          },
62482          {
62483            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62484            "in": "query",
62485            "name": "resourceVersionMatch",
62486            "type": "string",
62487            "uniqueItems": true
62488          },
62489          {
62490            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62491            "in": "query",
62492            "name": "timeoutSeconds",
62493            "type": "integer",
62494            "uniqueItems": true
62495          }
62496        ],
62497        "produces": [
62498          "application/json",
62499          "application/yaml",
62500          "application/vnd.kubernetes.protobuf"
62501        ],
62502        "responses": {
62503          "200": {
62504            "description": "OK",
62505            "schema": {
62506              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62507            }
62508          },
62509          "401": {
62510            "description": "Unauthorized"
62511          }
62512        },
62513        "schemes": [
62514          "https"
62515        ],
62516        "tags": [
62517          "certificates_v1"
62518        ],
62519        "x-kubernetes-action": "deletecollection",
62520        "x-kubernetes-group-version-kind": {
62521          "group": "certificates.k8s.io",
62522          "kind": "CertificateSigningRequest",
62523          "version": "v1"
62524        }
62525      },
62526      "get": {
62527        "consumes": [
62528          "*/*"
62529        ],
62530        "description": "list or watch objects of kind CertificateSigningRequest",
62531        "operationId": "listCertificatesV1CertificateSigningRequest",
62532        "parameters": [
62533          {
62534            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
62535            "in": "query",
62536            "name": "allowWatchBookmarks",
62537            "type": "boolean",
62538            "uniqueItems": true
62539          },
62540          {
62541            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62542            "in": "query",
62543            "name": "continue",
62544            "type": "string",
62545            "uniqueItems": true
62546          },
62547          {
62548            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62549            "in": "query",
62550            "name": "fieldSelector",
62551            "type": "string",
62552            "uniqueItems": true
62553          },
62554          {
62555            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62556            "in": "query",
62557            "name": "labelSelector",
62558            "type": "string",
62559            "uniqueItems": true
62560          },
62561          {
62562            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62563            "in": "query",
62564            "name": "limit",
62565            "type": "integer",
62566            "uniqueItems": true
62567          },
62568          {
62569            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62570            "in": "query",
62571            "name": "resourceVersion",
62572            "type": "string",
62573            "uniqueItems": true
62574          },
62575          {
62576            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62577            "in": "query",
62578            "name": "resourceVersionMatch",
62579            "type": "string",
62580            "uniqueItems": true
62581          },
62582          {
62583            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62584            "in": "query",
62585            "name": "timeoutSeconds",
62586            "type": "integer",
62587            "uniqueItems": true
62588          },
62589          {
62590            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62591            "in": "query",
62592            "name": "watch",
62593            "type": "boolean",
62594            "uniqueItems": true
62595          }
62596        ],
62597        "produces": [
62598          "application/json",
62599          "application/yaml",
62600          "application/vnd.kubernetes.protobuf",
62601          "application/json;stream=watch",
62602          "application/vnd.kubernetes.protobuf;stream=watch"
62603        ],
62604        "responses": {
62605          "200": {
62606            "description": "OK",
62607            "schema": {
62608              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestList"
62609            }
62610          },
62611          "401": {
62612            "description": "Unauthorized"
62613          }
62614        },
62615        "schemes": [
62616          "https"
62617        ],
62618        "tags": [
62619          "certificates_v1"
62620        ],
62621        "x-kubernetes-action": "list",
62622        "x-kubernetes-group-version-kind": {
62623          "group": "certificates.k8s.io",
62624          "kind": "CertificateSigningRequest",
62625          "version": "v1"
62626        }
62627      },
62628      "parameters": [
62629        {
62630          "description": "If 'true', then the output is pretty printed.",
62631          "in": "query",
62632          "name": "pretty",
62633          "type": "string",
62634          "uniqueItems": true
62635        }
62636      ],
62637      "post": {
62638        "consumes": [
62639          "*/*"
62640        ],
62641        "description": "create a CertificateSigningRequest",
62642        "operationId": "createCertificatesV1CertificateSigningRequest",
62643        "parameters": [
62644          {
62645            "in": "body",
62646            "name": "body",
62647            "required": true,
62648            "schema": {
62649              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62650            }
62651          },
62652          {
62653            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62654            "in": "query",
62655            "name": "dryRun",
62656            "type": "string",
62657            "uniqueItems": true
62658          },
62659          {
62660            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62661            "in": "query",
62662            "name": "fieldManager",
62663            "type": "string",
62664            "uniqueItems": true
62665          }
62666        ],
62667        "produces": [
62668          "application/json",
62669          "application/yaml",
62670          "application/vnd.kubernetes.protobuf"
62671        ],
62672        "responses": {
62673          "200": {
62674            "description": "OK",
62675            "schema": {
62676              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62677            }
62678          },
62679          "201": {
62680            "description": "Created",
62681            "schema": {
62682              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62683            }
62684          },
62685          "202": {
62686            "description": "Accepted",
62687            "schema": {
62688              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62689            }
62690          },
62691          "401": {
62692            "description": "Unauthorized"
62693          }
62694        },
62695        "schemes": [
62696          "https"
62697        ],
62698        "tags": [
62699          "certificates_v1"
62700        ],
62701        "x-kubernetes-action": "post",
62702        "x-kubernetes-group-version-kind": {
62703          "group": "certificates.k8s.io",
62704          "kind": "CertificateSigningRequest",
62705          "version": "v1"
62706        }
62707      }
62708    },
62709    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}": {
62710      "delete": {
62711        "consumes": [
62712          "*/*"
62713        ],
62714        "description": "delete a CertificateSigningRequest",
62715        "operationId": "deleteCertificatesV1CertificateSigningRequest",
62716        "parameters": [
62717          {
62718            "in": "body",
62719            "name": "body",
62720            "schema": {
62721              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62722            }
62723          },
62724          {
62725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62726            "in": "query",
62727            "name": "dryRun",
62728            "type": "string",
62729            "uniqueItems": true
62730          },
62731          {
62732            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62733            "in": "query",
62734            "name": "gracePeriodSeconds",
62735            "type": "integer",
62736            "uniqueItems": true
62737          },
62738          {
62739            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62740            "in": "query",
62741            "name": "orphanDependents",
62742            "type": "boolean",
62743            "uniqueItems": true
62744          },
62745          {
62746            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62747            "in": "query",
62748            "name": "propagationPolicy",
62749            "type": "string",
62750            "uniqueItems": true
62751          }
62752        ],
62753        "produces": [
62754          "application/json",
62755          "application/yaml",
62756          "application/vnd.kubernetes.protobuf"
62757        ],
62758        "responses": {
62759          "200": {
62760            "description": "OK",
62761            "schema": {
62762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62763            }
62764          },
62765          "202": {
62766            "description": "Accepted",
62767            "schema": {
62768              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62769            }
62770          },
62771          "401": {
62772            "description": "Unauthorized"
62773          }
62774        },
62775        "schemes": [
62776          "https"
62777        ],
62778        "tags": [
62779          "certificates_v1"
62780        ],
62781        "x-kubernetes-action": "delete",
62782        "x-kubernetes-group-version-kind": {
62783          "group": "certificates.k8s.io",
62784          "kind": "CertificateSigningRequest",
62785          "version": "v1"
62786        }
62787      },
62788      "get": {
62789        "consumes": [
62790          "*/*"
62791        ],
62792        "description": "read the specified CertificateSigningRequest",
62793        "operationId": "readCertificatesV1CertificateSigningRequest",
62794        "produces": [
62795          "application/json",
62796          "application/yaml",
62797          "application/vnd.kubernetes.protobuf"
62798        ],
62799        "responses": {
62800          "200": {
62801            "description": "OK",
62802            "schema": {
62803              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62804            }
62805          },
62806          "401": {
62807            "description": "Unauthorized"
62808          }
62809        },
62810        "schemes": [
62811          "https"
62812        ],
62813        "tags": [
62814          "certificates_v1"
62815        ],
62816        "x-kubernetes-action": "get",
62817        "x-kubernetes-group-version-kind": {
62818          "group": "certificates.k8s.io",
62819          "kind": "CertificateSigningRequest",
62820          "version": "v1"
62821        }
62822      },
62823      "parameters": [
62824        {
62825          "description": "name of the CertificateSigningRequest",
62826          "in": "path",
62827          "name": "name",
62828          "required": true,
62829          "type": "string",
62830          "uniqueItems": true
62831        },
62832        {
62833          "description": "If 'true', then the output is pretty printed.",
62834          "in": "query",
62835          "name": "pretty",
62836          "type": "string",
62837          "uniqueItems": true
62838        }
62839      ],
62840      "patch": {
62841        "consumes": [
62842          "application/json-patch+json",
62843          "application/merge-patch+json",
62844          "application/strategic-merge-patch+json",
62845          "application/apply-patch+yaml"
62846        ],
62847        "description": "partially update the specified CertificateSigningRequest",
62848        "operationId": "patchCertificatesV1CertificateSigningRequest",
62849        "parameters": [
62850          {
62851            "in": "body",
62852            "name": "body",
62853            "required": true,
62854            "schema": {
62855              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
62856            }
62857          },
62858          {
62859            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62860            "in": "query",
62861            "name": "dryRun",
62862            "type": "string",
62863            "uniqueItems": true
62864          },
62865          {
62866            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
62867            "in": "query",
62868            "name": "fieldManager",
62869            "type": "string",
62870            "uniqueItems": true
62871          },
62872          {
62873            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
62874            "in": "query",
62875            "name": "force",
62876            "type": "boolean",
62877            "uniqueItems": true
62878          }
62879        ],
62880        "produces": [
62881          "application/json",
62882          "application/yaml",
62883          "application/vnd.kubernetes.protobuf"
62884        ],
62885        "responses": {
62886          "200": {
62887            "description": "OK",
62888            "schema": {
62889              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62890            }
62891          },
62892          "401": {
62893            "description": "Unauthorized"
62894          }
62895        },
62896        "schemes": [
62897          "https"
62898        ],
62899        "tags": [
62900          "certificates_v1"
62901        ],
62902        "x-kubernetes-action": "patch",
62903        "x-kubernetes-group-version-kind": {
62904          "group": "certificates.k8s.io",
62905          "kind": "CertificateSigningRequest",
62906          "version": "v1"
62907        }
62908      },
62909      "put": {
62910        "consumes": [
62911          "*/*"
62912        ],
62913        "description": "replace the specified CertificateSigningRequest",
62914        "operationId": "replaceCertificatesV1CertificateSigningRequest",
62915        "parameters": [
62916          {
62917            "in": "body",
62918            "name": "body",
62919            "required": true,
62920            "schema": {
62921              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62922            }
62923          },
62924          {
62925            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62926            "in": "query",
62927            "name": "dryRun",
62928            "type": "string",
62929            "uniqueItems": true
62930          },
62931          {
62932            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62933            "in": "query",
62934            "name": "fieldManager",
62935            "type": "string",
62936            "uniqueItems": true
62937          }
62938        ],
62939        "produces": [
62940          "application/json",
62941          "application/yaml",
62942          "application/vnd.kubernetes.protobuf"
62943        ],
62944        "responses": {
62945          "200": {
62946            "description": "OK",
62947            "schema": {
62948              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62949            }
62950          },
62951          "201": {
62952            "description": "Created",
62953            "schema": {
62954              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62955            }
62956          },
62957          "401": {
62958            "description": "Unauthorized"
62959          }
62960        },
62961        "schemes": [
62962          "https"
62963        ],
62964        "tags": [
62965          "certificates_v1"
62966        ],
62967        "x-kubernetes-action": "put",
62968        "x-kubernetes-group-version-kind": {
62969          "group": "certificates.k8s.io",
62970          "kind": "CertificateSigningRequest",
62971          "version": "v1"
62972        }
62973      }
62974    },
62975    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval": {
62976      "get": {
62977        "consumes": [
62978          "*/*"
62979        ],
62980        "description": "read approval of the specified CertificateSigningRequest",
62981        "operationId": "readCertificatesV1CertificateSigningRequestApproval",
62982        "produces": [
62983          "application/json",
62984          "application/yaml",
62985          "application/vnd.kubernetes.protobuf"
62986        ],
62987        "responses": {
62988          "200": {
62989            "description": "OK",
62990            "schema": {
62991              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
62992            }
62993          },
62994          "401": {
62995            "description": "Unauthorized"
62996          }
62997        },
62998        "schemes": [
62999          "https"
63000        ],
63001        "tags": [
63002          "certificates_v1"
63003        ],
63004        "x-kubernetes-action": "get",
63005        "x-kubernetes-group-version-kind": {
63006          "group": "certificates.k8s.io",
63007          "kind": "CertificateSigningRequest",
63008          "version": "v1"
63009        }
63010      },
63011      "parameters": [
63012        {
63013          "description": "name of the CertificateSigningRequest",
63014          "in": "path",
63015          "name": "name",
63016          "required": true,
63017          "type": "string",
63018          "uniqueItems": true
63019        },
63020        {
63021          "description": "If 'true', then the output is pretty printed.",
63022          "in": "query",
63023          "name": "pretty",
63024          "type": "string",
63025          "uniqueItems": true
63026        }
63027      ],
63028      "patch": {
63029        "consumes": [
63030          "application/json-patch+json",
63031          "application/merge-patch+json",
63032          "application/strategic-merge-patch+json",
63033          "application/apply-patch+yaml"
63034        ],
63035        "description": "partially update approval of the specified CertificateSigningRequest",
63036        "operationId": "patchCertificatesV1CertificateSigningRequestApproval",
63037        "parameters": [
63038          {
63039            "in": "body",
63040            "name": "body",
63041            "required": true,
63042            "schema": {
63043              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63044            }
63045          },
63046          {
63047            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63048            "in": "query",
63049            "name": "dryRun",
63050            "type": "string",
63051            "uniqueItems": true
63052          },
63053          {
63054            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
63055            "in": "query",
63056            "name": "fieldManager",
63057            "type": "string",
63058            "uniqueItems": true
63059          },
63060          {
63061            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
63062            "in": "query",
63063            "name": "force",
63064            "type": "boolean",
63065            "uniqueItems": true
63066          }
63067        ],
63068        "produces": [
63069          "application/json",
63070          "application/yaml",
63071          "application/vnd.kubernetes.protobuf"
63072        ],
63073        "responses": {
63074          "200": {
63075            "description": "OK",
63076            "schema": {
63077              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63078            }
63079          },
63080          "401": {
63081            "description": "Unauthorized"
63082          }
63083        },
63084        "schemes": [
63085          "https"
63086        ],
63087        "tags": [
63088          "certificates_v1"
63089        ],
63090        "x-kubernetes-action": "patch",
63091        "x-kubernetes-group-version-kind": {
63092          "group": "certificates.k8s.io",
63093          "kind": "CertificateSigningRequest",
63094          "version": "v1"
63095        }
63096      },
63097      "put": {
63098        "consumes": [
63099          "*/*"
63100        ],
63101        "description": "replace approval of the specified CertificateSigningRequest",
63102        "operationId": "replaceCertificatesV1CertificateSigningRequestApproval",
63103        "parameters": [
63104          {
63105            "in": "body",
63106            "name": "body",
63107            "required": true,
63108            "schema": {
63109              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63110            }
63111          },
63112          {
63113            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63114            "in": "query",
63115            "name": "dryRun",
63116            "type": "string",
63117            "uniqueItems": true
63118          },
63119          {
63120            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63121            "in": "query",
63122            "name": "fieldManager",
63123            "type": "string",
63124            "uniqueItems": true
63125          }
63126        ],
63127        "produces": [
63128          "application/json",
63129          "application/yaml",
63130          "application/vnd.kubernetes.protobuf"
63131        ],
63132        "responses": {
63133          "200": {
63134            "description": "OK",
63135            "schema": {
63136              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63137            }
63138          },
63139          "201": {
63140            "description": "Created",
63141            "schema": {
63142              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63143            }
63144          },
63145          "401": {
63146            "description": "Unauthorized"
63147          }
63148        },
63149        "schemes": [
63150          "https"
63151        ],
63152        "tags": [
63153          "certificates_v1"
63154        ],
63155        "x-kubernetes-action": "put",
63156        "x-kubernetes-group-version-kind": {
63157          "group": "certificates.k8s.io",
63158          "kind": "CertificateSigningRequest",
63159          "version": "v1"
63160        }
63161      }
63162    },
63163    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status": {
63164      "get": {
63165        "consumes": [
63166          "*/*"
63167        ],
63168        "description": "read status of the specified CertificateSigningRequest",
63169        "operationId": "readCertificatesV1CertificateSigningRequestStatus",
63170        "produces": [
63171          "application/json",
63172          "application/yaml",
63173          "application/vnd.kubernetes.protobuf"
63174        ],
63175        "responses": {
63176          "200": {
63177            "description": "OK",
63178            "schema": {
63179              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63180            }
63181          },
63182          "401": {
63183            "description": "Unauthorized"
63184          }
63185        },
63186        "schemes": [
63187          "https"
63188        ],
63189        "tags": [
63190          "certificates_v1"
63191        ],
63192        "x-kubernetes-action": "get",
63193        "x-kubernetes-group-version-kind": {
63194          "group": "certificates.k8s.io",
63195          "kind": "CertificateSigningRequest",
63196          "version": "v1"
63197        }
63198      },
63199      "parameters": [
63200        {
63201          "description": "name of the CertificateSigningRequest",
63202          "in": "path",
63203          "name": "name",
63204          "required": true,
63205          "type": "string",
63206          "uniqueItems": true
63207        },
63208        {
63209          "description": "If 'true', then the output is pretty printed.",
63210          "in": "query",
63211          "name": "pretty",
63212          "type": "string",
63213          "uniqueItems": true
63214        }
63215      ],
63216      "patch": {
63217        "consumes": [
63218          "application/json-patch+json",
63219          "application/merge-patch+json",
63220          "application/strategic-merge-patch+json",
63221          "application/apply-patch+yaml"
63222        ],
63223        "description": "partially update status of the specified CertificateSigningRequest",
63224        "operationId": "patchCertificatesV1CertificateSigningRequestStatus",
63225        "parameters": [
63226          {
63227            "in": "body",
63228            "name": "body",
63229            "required": true,
63230            "schema": {
63231              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63232            }
63233          },
63234          {
63235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63236            "in": "query",
63237            "name": "dryRun",
63238            "type": "string",
63239            "uniqueItems": true
63240          },
63241          {
63242            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
63243            "in": "query",
63244            "name": "fieldManager",
63245            "type": "string",
63246            "uniqueItems": true
63247          },
63248          {
63249            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
63250            "in": "query",
63251            "name": "force",
63252            "type": "boolean",
63253            "uniqueItems": true
63254          }
63255        ],
63256        "produces": [
63257          "application/json",
63258          "application/yaml",
63259          "application/vnd.kubernetes.protobuf"
63260        ],
63261        "responses": {
63262          "200": {
63263            "description": "OK",
63264            "schema": {
63265              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63266            }
63267          },
63268          "401": {
63269            "description": "Unauthorized"
63270          }
63271        },
63272        "schemes": [
63273          "https"
63274        ],
63275        "tags": [
63276          "certificates_v1"
63277        ],
63278        "x-kubernetes-action": "patch",
63279        "x-kubernetes-group-version-kind": {
63280          "group": "certificates.k8s.io",
63281          "kind": "CertificateSigningRequest",
63282          "version": "v1"
63283        }
63284      },
63285      "put": {
63286        "consumes": [
63287          "*/*"
63288        ],
63289        "description": "replace status of the specified CertificateSigningRequest",
63290        "operationId": "replaceCertificatesV1CertificateSigningRequestStatus",
63291        "parameters": [
63292          {
63293            "in": "body",
63294            "name": "body",
63295            "required": true,
63296            "schema": {
63297              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63298            }
63299          },
63300          {
63301            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63302            "in": "query",
63303            "name": "dryRun",
63304            "type": "string",
63305            "uniqueItems": true
63306          },
63307          {
63308            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63309            "in": "query",
63310            "name": "fieldManager",
63311            "type": "string",
63312            "uniqueItems": true
63313          }
63314        ],
63315        "produces": [
63316          "application/json",
63317          "application/yaml",
63318          "application/vnd.kubernetes.protobuf"
63319        ],
63320        "responses": {
63321          "200": {
63322            "description": "OK",
63323            "schema": {
63324              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63325            }
63326          },
63327          "201": {
63328            "description": "Created",
63329            "schema": {
63330              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
63331            }
63332          },
63333          "401": {
63334            "description": "Unauthorized"
63335          }
63336        },
63337        "schemes": [
63338          "https"
63339        ],
63340        "tags": [
63341          "certificates_v1"
63342        ],
63343        "x-kubernetes-action": "put",
63344        "x-kubernetes-group-version-kind": {
63345          "group": "certificates.k8s.io",
63346          "kind": "CertificateSigningRequest",
63347          "version": "v1"
63348        }
63349      }
63350    },
63351    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests": {
63352      "get": {
63353        "consumes": [
63354          "*/*"
63355        ],
63356        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
63357        "operationId": "watchCertificatesV1CertificateSigningRequestList",
63358        "produces": [
63359          "application/json",
63360          "application/yaml",
63361          "application/vnd.kubernetes.protobuf",
63362          "application/json;stream=watch",
63363          "application/vnd.kubernetes.protobuf;stream=watch"
63364        ],
63365        "responses": {
63366          "200": {
63367            "description": "OK",
63368            "schema": {
63369              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63370            }
63371          },
63372          "401": {
63373            "description": "Unauthorized"
63374          }
63375        },
63376        "schemes": [
63377          "https"
63378        ],
63379        "tags": [
63380          "certificates_v1"
63381        ],
63382        "x-kubernetes-action": "watchlist",
63383        "x-kubernetes-group-version-kind": {
63384          "group": "certificates.k8s.io",
63385          "kind": "CertificateSigningRequest",
63386          "version": "v1"
63387        }
63388      },
63389      "parameters": [
63390        {
63391          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63392          "in": "query",
63393          "name": "allowWatchBookmarks",
63394          "type": "boolean",
63395          "uniqueItems": true
63396        },
63397        {
63398          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63399          "in": "query",
63400          "name": "continue",
63401          "type": "string",
63402          "uniqueItems": true
63403        },
63404        {
63405          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63406          "in": "query",
63407          "name": "fieldSelector",
63408          "type": "string",
63409          "uniqueItems": true
63410        },
63411        {
63412          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63413          "in": "query",
63414          "name": "labelSelector",
63415          "type": "string",
63416          "uniqueItems": true
63417        },
63418        {
63419          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63420          "in": "query",
63421          "name": "limit",
63422          "type": "integer",
63423          "uniqueItems": true
63424        },
63425        {
63426          "description": "If 'true', then the output is pretty printed.",
63427          "in": "query",
63428          "name": "pretty",
63429          "type": "string",
63430          "uniqueItems": true
63431        },
63432        {
63433          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63434          "in": "query",
63435          "name": "resourceVersion",
63436          "type": "string",
63437          "uniqueItems": true
63438        },
63439        {
63440          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63441          "in": "query",
63442          "name": "resourceVersionMatch",
63443          "type": "string",
63444          "uniqueItems": true
63445        },
63446        {
63447          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63448          "in": "query",
63449          "name": "timeoutSeconds",
63450          "type": "integer",
63451          "uniqueItems": true
63452        },
63453        {
63454          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63455          "in": "query",
63456          "name": "watch",
63457          "type": "boolean",
63458          "uniqueItems": true
63459        }
63460      ]
63461    },
63462    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests/{name}": {
63463      "get": {
63464        "consumes": [
63465          "*/*"
63466        ],
63467        "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.",
63468        "operationId": "watchCertificatesV1CertificateSigningRequest",
63469        "produces": [
63470          "application/json",
63471          "application/yaml",
63472          "application/vnd.kubernetes.protobuf",
63473          "application/json;stream=watch",
63474          "application/vnd.kubernetes.protobuf;stream=watch"
63475        ],
63476        "responses": {
63477          "200": {
63478            "description": "OK",
63479            "schema": {
63480              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63481            }
63482          },
63483          "401": {
63484            "description": "Unauthorized"
63485          }
63486        },
63487        "schemes": [
63488          "https"
63489        ],
63490        "tags": [
63491          "certificates_v1"
63492        ],
63493        "x-kubernetes-action": "watch",
63494        "x-kubernetes-group-version-kind": {
63495          "group": "certificates.k8s.io",
63496          "kind": "CertificateSigningRequest",
63497          "version": "v1"
63498        }
63499      },
63500      "parameters": [
63501        {
63502          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63503          "in": "query",
63504          "name": "allowWatchBookmarks",
63505          "type": "boolean",
63506          "uniqueItems": true
63507        },
63508        {
63509          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63510          "in": "query",
63511          "name": "continue",
63512          "type": "string",
63513          "uniqueItems": true
63514        },
63515        {
63516          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63517          "in": "query",
63518          "name": "fieldSelector",
63519          "type": "string",
63520          "uniqueItems": true
63521        },
63522        {
63523          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63524          "in": "query",
63525          "name": "labelSelector",
63526          "type": "string",
63527          "uniqueItems": true
63528        },
63529        {
63530          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63531          "in": "query",
63532          "name": "limit",
63533          "type": "integer",
63534          "uniqueItems": true
63535        },
63536        {
63537          "description": "name of the CertificateSigningRequest",
63538          "in": "path",
63539          "name": "name",
63540          "required": true,
63541          "type": "string",
63542          "uniqueItems": true
63543        },
63544        {
63545          "description": "If 'true', then the output is pretty printed.",
63546          "in": "query",
63547          "name": "pretty",
63548          "type": "string",
63549          "uniqueItems": true
63550        },
63551        {
63552          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63553          "in": "query",
63554          "name": "resourceVersion",
63555          "type": "string",
63556          "uniqueItems": true
63557        },
63558        {
63559          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63560          "in": "query",
63561          "name": "resourceVersionMatch",
63562          "type": "string",
63563          "uniqueItems": true
63564        },
63565        {
63566          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63567          "in": "query",
63568          "name": "timeoutSeconds",
63569          "type": "integer",
63570          "uniqueItems": true
63571        },
63572        {
63573          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63574          "in": "query",
63575          "name": "watch",
63576          "type": "boolean",
63577          "uniqueItems": true
63578        }
63579      ]
63580    },
63581    "/apis/certificates.k8s.io/v1beta1/": {
63582      "get": {
63583        "consumes": [
63584          "application/json",
63585          "application/yaml",
63586          "application/vnd.kubernetes.protobuf"
63587        ],
63588        "description": "get available resources",
63589        "operationId": "getCertificatesV1beta1APIResources",
63590        "produces": [
63591          "application/json",
63592          "application/yaml",
63593          "application/vnd.kubernetes.protobuf"
63594        ],
63595        "responses": {
63596          "200": {
63597            "description": "OK",
63598            "schema": {
63599              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
63600            }
63601          },
63602          "401": {
63603            "description": "Unauthorized"
63604          }
63605        },
63606        "schemes": [
63607          "https"
63608        ],
63609        "tags": [
63610          "certificates_v1beta1"
63611        ]
63612      }
63613    },
63614    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests": {
63615      "delete": {
63616        "consumes": [
63617          "*/*"
63618        ],
63619        "description": "delete collection of CertificateSigningRequest",
63620        "operationId": "deleteCertificatesV1beta1CollectionCertificateSigningRequest",
63621        "parameters": [
63622          {
63623            "in": "body",
63624            "name": "body",
63625            "schema": {
63626              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
63627            }
63628          },
63629          {
63630            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63631            "in": "query",
63632            "name": "continue",
63633            "type": "string",
63634            "uniqueItems": true
63635          },
63636          {
63637            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63638            "in": "query",
63639            "name": "dryRun",
63640            "type": "string",
63641            "uniqueItems": true
63642          },
63643          {
63644            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63645            "in": "query",
63646            "name": "fieldSelector",
63647            "type": "string",
63648            "uniqueItems": true
63649          },
63650          {
63651            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
63652            "in": "query",
63653            "name": "gracePeriodSeconds",
63654            "type": "integer",
63655            "uniqueItems": true
63656          },
63657          {
63658            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63659            "in": "query",
63660            "name": "labelSelector",
63661            "type": "string",
63662            "uniqueItems": true
63663          },
63664          {
63665            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63666            "in": "query",
63667            "name": "limit",
63668            "type": "integer",
63669            "uniqueItems": true
63670          },
63671          {
63672            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
63673            "in": "query",
63674            "name": "orphanDependents",
63675            "type": "boolean",
63676            "uniqueItems": true
63677          },
63678          {
63679            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
63680            "in": "query",
63681            "name": "propagationPolicy",
63682            "type": "string",
63683            "uniqueItems": true
63684          },
63685          {
63686            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63687            "in": "query",
63688            "name": "resourceVersion",
63689            "type": "string",
63690            "uniqueItems": true
63691          },
63692          {
63693            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63694            "in": "query",
63695            "name": "resourceVersionMatch",
63696            "type": "string",
63697            "uniqueItems": true
63698          },
63699          {
63700            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63701            "in": "query",
63702            "name": "timeoutSeconds",
63703            "type": "integer",
63704            "uniqueItems": true
63705          }
63706        ],
63707        "produces": [
63708          "application/json",
63709          "application/yaml",
63710          "application/vnd.kubernetes.protobuf"
63711        ],
63712        "responses": {
63713          "200": {
63714            "description": "OK",
63715            "schema": {
63716              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63717            }
63718          },
63719          "401": {
63720            "description": "Unauthorized"
63721          }
63722        },
63723        "schemes": [
63724          "https"
63725        ],
63726        "tags": [
63727          "certificates_v1beta1"
63728        ],
63729        "x-kubernetes-action": "deletecollection",
63730        "x-kubernetes-group-version-kind": {
63731          "group": "certificates.k8s.io",
63732          "kind": "CertificateSigningRequest",
63733          "version": "v1beta1"
63734        }
63735      },
63736      "get": {
63737        "consumes": [
63738          "*/*"
63739        ],
63740        "description": "list or watch objects of kind CertificateSigningRequest",
63741        "operationId": "listCertificatesV1beta1CertificateSigningRequest",
63742        "parameters": [
63743          {
63744            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
63745            "in": "query",
63746            "name": "allowWatchBookmarks",
63747            "type": "boolean",
63748            "uniqueItems": true
63749          },
63750          {
63751            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63752            "in": "query",
63753            "name": "continue",
63754            "type": "string",
63755            "uniqueItems": true
63756          },
63757          {
63758            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63759            "in": "query",
63760            "name": "fieldSelector",
63761            "type": "string",
63762            "uniqueItems": true
63763          },
63764          {
63765            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63766            "in": "query",
63767            "name": "labelSelector",
63768            "type": "string",
63769            "uniqueItems": true
63770          },
63771          {
63772            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63773            "in": "query",
63774            "name": "limit",
63775            "type": "integer",
63776            "uniqueItems": true
63777          },
63778          {
63779            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63780            "in": "query",
63781            "name": "resourceVersion",
63782            "type": "string",
63783            "uniqueItems": true
63784          },
63785          {
63786            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63787            "in": "query",
63788            "name": "resourceVersionMatch",
63789            "type": "string",
63790            "uniqueItems": true
63791          },
63792          {
63793            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63794            "in": "query",
63795            "name": "timeoutSeconds",
63796            "type": "integer",
63797            "uniqueItems": true
63798          },
63799          {
63800            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63801            "in": "query",
63802            "name": "watch",
63803            "type": "boolean",
63804            "uniqueItems": true
63805          }
63806        ],
63807        "produces": [
63808          "application/json",
63809          "application/yaml",
63810          "application/vnd.kubernetes.protobuf",
63811          "application/json;stream=watch",
63812          "application/vnd.kubernetes.protobuf;stream=watch"
63813        ],
63814        "responses": {
63815          "200": {
63816            "description": "OK",
63817            "schema": {
63818              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestList"
63819            }
63820          },
63821          "401": {
63822            "description": "Unauthorized"
63823          }
63824        },
63825        "schemes": [
63826          "https"
63827        ],
63828        "tags": [
63829          "certificates_v1beta1"
63830        ],
63831        "x-kubernetes-action": "list",
63832        "x-kubernetes-group-version-kind": {
63833          "group": "certificates.k8s.io",
63834          "kind": "CertificateSigningRequest",
63835          "version": "v1beta1"
63836        }
63837      },
63838      "parameters": [
63839        {
63840          "description": "If 'true', then the output is pretty printed.",
63841          "in": "query",
63842          "name": "pretty",
63843          "type": "string",
63844          "uniqueItems": true
63845        }
63846      ],
63847      "post": {
63848        "consumes": [
63849          "*/*"
63850        ],
63851        "description": "create a CertificateSigningRequest",
63852        "operationId": "createCertificatesV1beta1CertificateSigningRequest",
63853        "parameters": [
63854          {
63855            "in": "body",
63856            "name": "body",
63857            "required": true,
63858            "schema": {
63859              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63860            }
63861          },
63862          {
63863            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63864            "in": "query",
63865            "name": "dryRun",
63866            "type": "string",
63867            "uniqueItems": true
63868          },
63869          {
63870            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63871            "in": "query",
63872            "name": "fieldManager",
63873            "type": "string",
63874            "uniqueItems": true
63875          }
63876        ],
63877        "produces": [
63878          "application/json",
63879          "application/yaml",
63880          "application/vnd.kubernetes.protobuf"
63881        ],
63882        "responses": {
63883          "200": {
63884            "description": "OK",
63885            "schema": {
63886              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63887            }
63888          },
63889          "201": {
63890            "description": "Created",
63891            "schema": {
63892              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63893            }
63894          },
63895          "202": {
63896            "description": "Accepted",
63897            "schema": {
63898              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
63899            }
63900          },
63901          "401": {
63902            "description": "Unauthorized"
63903          }
63904        },
63905        "schemes": [
63906          "https"
63907        ],
63908        "tags": [
63909          "certificates_v1beta1"
63910        ],
63911        "x-kubernetes-action": "post",
63912        "x-kubernetes-group-version-kind": {
63913          "group": "certificates.k8s.io",
63914          "kind": "CertificateSigningRequest",
63915          "version": "v1beta1"
63916        }
63917      }
63918    },
63919    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}": {
63920      "delete": {
63921        "consumes": [
63922          "*/*"
63923        ],
63924        "description": "delete a CertificateSigningRequest",
63925        "operationId": "deleteCertificatesV1beta1CertificateSigningRequest",
63926        "parameters": [
63927          {
63928            "in": "body",
63929            "name": "body",
63930            "schema": {
63931              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
63932            }
63933          },
63934          {
63935            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63936            "in": "query",
63937            "name": "dryRun",
63938            "type": "string",
63939            "uniqueItems": true
63940          },
63941          {
63942            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
63943            "in": "query",
63944            "name": "gracePeriodSeconds",
63945            "type": "integer",
63946            "uniqueItems": true
63947          },
63948          {
63949            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
63950            "in": "query",
63951            "name": "orphanDependents",
63952            "type": "boolean",
63953            "uniqueItems": true
63954          },
63955          {
63956            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
63957            "in": "query",
63958            "name": "propagationPolicy",
63959            "type": "string",
63960            "uniqueItems": true
63961          }
63962        ],
63963        "produces": [
63964          "application/json",
63965          "application/yaml",
63966          "application/vnd.kubernetes.protobuf"
63967        ],
63968        "responses": {
63969          "200": {
63970            "description": "OK",
63971            "schema": {
63972              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63973            }
63974          },
63975          "202": {
63976            "description": "Accepted",
63977            "schema": {
63978              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63979            }
63980          },
63981          "401": {
63982            "description": "Unauthorized"
63983          }
63984        },
63985        "schemes": [
63986          "https"
63987        ],
63988        "tags": [
63989          "certificates_v1beta1"
63990        ],
63991        "x-kubernetes-action": "delete",
63992        "x-kubernetes-group-version-kind": {
63993          "group": "certificates.k8s.io",
63994          "kind": "CertificateSigningRequest",
63995          "version": "v1beta1"
63996        }
63997      },
63998      "get": {
63999        "consumes": [
64000          "*/*"
64001        ],
64002        "description": "read the specified CertificateSigningRequest",
64003        "operationId": "readCertificatesV1beta1CertificateSigningRequest",
64004        "produces": [
64005          "application/json",
64006          "application/yaml",
64007          "application/vnd.kubernetes.protobuf"
64008        ],
64009        "responses": {
64010          "200": {
64011            "description": "OK",
64012            "schema": {
64013              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64014            }
64015          },
64016          "401": {
64017            "description": "Unauthorized"
64018          }
64019        },
64020        "schemes": [
64021          "https"
64022        ],
64023        "tags": [
64024          "certificates_v1beta1"
64025        ],
64026        "x-kubernetes-action": "get",
64027        "x-kubernetes-group-version-kind": {
64028          "group": "certificates.k8s.io",
64029          "kind": "CertificateSigningRequest",
64030          "version": "v1beta1"
64031        }
64032      },
64033      "parameters": [
64034        {
64035          "description": "name of the CertificateSigningRequest",
64036          "in": "path",
64037          "name": "name",
64038          "required": true,
64039          "type": "string",
64040          "uniqueItems": true
64041        },
64042        {
64043          "description": "If 'true', then the output is pretty printed.",
64044          "in": "query",
64045          "name": "pretty",
64046          "type": "string",
64047          "uniqueItems": true
64048        }
64049      ],
64050      "patch": {
64051        "consumes": [
64052          "application/json-patch+json",
64053          "application/merge-patch+json",
64054          "application/strategic-merge-patch+json",
64055          "application/apply-patch+yaml"
64056        ],
64057        "description": "partially update the specified CertificateSigningRequest",
64058        "operationId": "patchCertificatesV1beta1CertificateSigningRequest",
64059        "parameters": [
64060          {
64061            "in": "body",
64062            "name": "body",
64063            "required": true,
64064            "schema": {
64065              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64066            }
64067          },
64068          {
64069            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64070            "in": "query",
64071            "name": "dryRun",
64072            "type": "string",
64073            "uniqueItems": true
64074          },
64075          {
64076            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
64077            "in": "query",
64078            "name": "fieldManager",
64079            "type": "string",
64080            "uniqueItems": true
64081          },
64082          {
64083            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
64084            "in": "query",
64085            "name": "force",
64086            "type": "boolean",
64087            "uniqueItems": true
64088          }
64089        ],
64090        "produces": [
64091          "application/json",
64092          "application/yaml",
64093          "application/vnd.kubernetes.protobuf"
64094        ],
64095        "responses": {
64096          "200": {
64097            "description": "OK",
64098            "schema": {
64099              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64100            }
64101          },
64102          "401": {
64103            "description": "Unauthorized"
64104          }
64105        },
64106        "schemes": [
64107          "https"
64108        ],
64109        "tags": [
64110          "certificates_v1beta1"
64111        ],
64112        "x-kubernetes-action": "patch",
64113        "x-kubernetes-group-version-kind": {
64114          "group": "certificates.k8s.io",
64115          "kind": "CertificateSigningRequest",
64116          "version": "v1beta1"
64117        }
64118      },
64119      "put": {
64120        "consumes": [
64121          "*/*"
64122        ],
64123        "description": "replace the specified CertificateSigningRequest",
64124        "operationId": "replaceCertificatesV1beta1CertificateSigningRequest",
64125        "parameters": [
64126          {
64127            "in": "body",
64128            "name": "body",
64129            "required": true,
64130            "schema": {
64131              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64132            }
64133          },
64134          {
64135            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64136            "in": "query",
64137            "name": "dryRun",
64138            "type": "string",
64139            "uniqueItems": true
64140          },
64141          {
64142            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64143            "in": "query",
64144            "name": "fieldManager",
64145            "type": "string",
64146            "uniqueItems": true
64147          }
64148        ],
64149        "produces": [
64150          "application/json",
64151          "application/yaml",
64152          "application/vnd.kubernetes.protobuf"
64153        ],
64154        "responses": {
64155          "200": {
64156            "description": "OK",
64157            "schema": {
64158              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64159            }
64160          },
64161          "201": {
64162            "description": "Created",
64163            "schema": {
64164              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64165            }
64166          },
64167          "401": {
64168            "description": "Unauthorized"
64169          }
64170        },
64171        "schemes": [
64172          "https"
64173        ],
64174        "tags": [
64175          "certificates_v1beta1"
64176        ],
64177        "x-kubernetes-action": "put",
64178        "x-kubernetes-group-version-kind": {
64179          "group": "certificates.k8s.io",
64180          "kind": "CertificateSigningRequest",
64181          "version": "v1beta1"
64182        }
64183      }
64184    },
64185    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval": {
64186      "get": {
64187        "consumes": [
64188          "*/*"
64189        ],
64190        "description": "read approval of the specified CertificateSigningRequest",
64191        "operationId": "readCertificatesV1beta1CertificateSigningRequestApproval",
64192        "produces": [
64193          "application/json",
64194          "application/yaml",
64195          "application/vnd.kubernetes.protobuf"
64196        ],
64197        "responses": {
64198          "200": {
64199            "description": "OK",
64200            "schema": {
64201              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64202            }
64203          },
64204          "401": {
64205            "description": "Unauthorized"
64206          }
64207        },
64208        "schemes": [
64209          "https"
64210        ],
64211        "tags": [
64212          "certificates_v1beta1"
64213        ],
64214        "x-kubernetes-action": "get",
64215        "x-kubernetes-group-version-kind": {
64216          "group": "certificates.k8s.io",
64217          "kind": "CertificateSigningRequest",
64218          "version": "v1beta1"
64219        }
64220      },
64221      "parameters": [
64222        {
64223          "description": "name of the CertificateSigningRequest",
64224          "in": "path",
64225          "name": "name",
64226          "required": true,
64227          "type": "string",
64228          "uniqueItems": true
64229        },
64230        {
64231          "description": "If 'true', then the output is pretty printed.",
64232          "in": "query",
64233          "name": "pretty",
64234          "type": "string",
64235          "uniqueItems": true
64236        }
64237      ],
64238      "patch": {
64239        "consumes": [
64240          "application/json-patch+json",
64241          "application/merge-patch+json",
64242          "application/strategic-merge-patch+json",
64243          "application/apply-patch+yaml"
64244        ],
64245        "description": "partially update approval of the specified CertificateSigningRequest",
64246        "operationId": "patchCertificatesV1beta1CertificateSigningRequestApproval",
64247        "parameters": [
64248          {
64249            "in": "body",
64250            "name": "body",
64251            "required": true,
64252            "schema": {
64253              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64254            }
64255          },
64256          {
64257            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64258            "in": "query",
64259            "name": "dryRun",
64260            "type": "string",
64261            "uniqueItems": true
64262          },
64263          {
64264            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
64265            "in": "query",
64266            "name": "fieldManager",
64267            "type": "string",
64268            "uniqueItems": true
64269          },
64270          {
64271            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
64272            "in": "query",
64273            "name": "force",
64274            "type": "boolean",
64275            "uniqueItems": true
64276          }
64277        ],
64278        "produces": [
64279          "application/json",
64280          "application/yaml",
64281          "application/vnd.kubernetes.protobuf"
64282        ],
64283        "responses": {
64284          "200": {
64285            "description": "OK",
64286            "schema": {
64287              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64288            }
64289          },
64290          "401": {
64291            "description": "Unauthorized"
64292          }
64293        },
64294        "schemes": [
64295          "https"
64296        ],
64297        "tags": [
64298          "certificates_v1beta1"
64299        ],
64300        "x-kubernetes-action": "patch",
64301        "x-kubernetes-group-version-kind": {
64302          "group": "certificates.k8s.io",
64303          "kind": "CertificateSigningRequest",
64304          "version": "v1beta1"
64305        }
64306      },
64307      "put": {
64308        "consumes": [
64309          "*/*"
64310        ],
64311        "description": "replace approval of the specified CertificateSigningRequest",
64312        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestApproval",
64313        "parameters": [
64314          {
64315            "in": "body",
64316            "name": "body",
64317            "required": true,
64318            "schema": {
64319              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64320            }
64321          },
64322          {
64323            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64324            "in": "query",
64325            "name": "dryRun",
64326            "type": "string",
64327            "uniqueItems": true
64328          },
64329          {
64330            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64331            "in": "query",
64332            "name": "fieldManager",
64333            "type": "string",
64334            "uniqueItems": true
64335          }
64336        ],
64337        "produces": [
64338          "application/json",
64339          "application/yaml",
64340          "application/vnd.kubernetes.protobuf"
64341        ],
64342        "responses": {
64343          "200": {
64344            "description": "OK",
64345            "schema": {
64346              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64347            }
64348          },
64349          "201": {
64350            "description": "Created",
64351            "schema": {
64352              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64353            }
64354          },
64355          "401": {
64356            "description": "Unauthorized"
64357          }
64358        },
64359        "schemes": [
64360          "https"
64361        ],
64362        "tags": [
64363          "certificates_v1beta1"
64364        ],
64365        "x-kubernetes-action": "put",
64366        "x-kubernetes-group-version-kind": {
64367          "group": "certificates.k8s.io",
64368          "kind": "CertificateSigningRequest",
64369          "version": "v1beta1"
64370        }
64371      }
64372    },
64373    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status": {
64374      "get": {
64375        "consumes": [
64376          "*/*"
64377        ],
64378        "description": "read status of the specified CertificateSigningRequest",
64379        "operationId": "readCertificatesV1beta1CertificateSigningRequestStatus",
64380        "produces": [
64381          "application/json",
64382          "application/yaml",
64383          "application/vnd.kubernetes.protobuf"
64384        ],
64385        "responses": {
64386          "200": {
64387            "description": "OK",
64388            "schema": {
64389              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64390            }
64391          },
64392          "401": {
64393            "description": "Unauthorized"
64394          }
64395        },
64396        "schemes": [
64397          "https"
64398        ],
64399        "tags": [
64400          "certificates_v1beta1"
64401        ],
64402        "x-kubernetes-action": "get",
64403        "x-kubernetes-group-version-kind": {
64404          "group": "certificates.k8s.io",
64405          "kind": "CertificateSigningRequest",
64406          "version": "v1beta1"
64407        }
64408      },
64409      "parameters": [
64410        {
64411          "description": "name of the CertificateSigningRequest",
64412          "in": "path",
64413          "name": "name",
64414          "required": true,
64415          "type": "string",
64416          "uniqueItems": true
64417        },
64418        {
64419          "description": "If 'true', then the output is pretty printed.",
64420          "in": "query",
64421          "name": "pretty",
64422          "type": "string",
64423          "uniqueItems": true
64424        }
64425      ],
64426      "patch": {
64427        "consumes": [
64428          "application/json-patch+json",
64429          "application/merge-patch+json",
64430          "application/strategic-merge-patch+json",
64431          "application/apply-patch+yaml"
64432        ],
64433        "description": "partially update status of the specified CertificateSigningRequest",
64434        "operationId": "patchCertificatesV1beta1CertificateSigningRequestStatus",
64435        "parameters": [
64436          {
64437            "in": "body",
64438            "name": "body",
64439            "required": true,
64440            "schema": {
64441              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64442            }
64443          },
64444          {
64445            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64446            "in": "query",
64447            "name": "dryRun",
64448            "type": "string",
64449            "uniqueItems": true
64450          },
64451          {
64452            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
64453            "in": "query",
64454            "name": "fieldManager",
64455            "type": "string",
64456            "uniqueItems": true
64457          },
64458          {
64459            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
64460            "in": "query",
64461            "name": "force",
64462            "type": "boolean",
64463            "uniqueItems": true
64464          }
64465        ],
64466        "produces": [
64467          "application/json",
64468          "application/yaml",
64469          "application/vnd.kubernetes.protobuf"
64470        ],
64471        "responses": {
64472          "200": {
64473            "description": "OK",
64474            "schema": {
64475              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64476            }
64477          },
64478          "401": {
64479            "description": "Unauthorized"
64480          }
64481        },
64482        "schemes": [
64483          "https"
64484        ],
64485        "tags": [
64486          "certificates_v1beta1"
64487        ],
64488        "x-kubernetes-action": "patch",
64489        "x-kubernetes-group-version-kind": {
64490          "group": "certificates.k8s.io",
64491          "kind": "CertificateSigningRequest",
64492          "version": "v1beta1"
64493        }
64494      },
64495      "put": {
64496        "consumes": [
64497          "*/*"
64498        ],
64499        "description": "replace status of the specified CertificateSigningRequest",
64500        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestStatus",
64501        "parameters": [
64502          {
64503            "in": "body",
64504            "name": "body",
64505            "required": true,
64506            "schema": {
64507              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64508            }
64509          },
64510          {
64511            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64512            "in": "query",
64513            "name": "dryRun",
64514            "type": "string",
64515            "uniqueItems": true
64516          },
64517          {
64518            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64519            "in": "query",
64520            "name": "fieldManager",
64521            "type": "string",
64522            "uniqueItems": true
64523          }
64524        ],
64525        "produces": [
64526          "application/json",
64527          "application/yaml",
64528          "application/vnd.kubernetes.protobuf"
64529        ],
64530        "responses": {
64531          "200": {
64532            "description": "OK",
64533            "schema": {
64534              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64535            }
64536          },
64537          "201": {
64538            "description": "Created",
64539            "schema": {
64540              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
64541            }
64542          },
64543          "401": {
64544            "description": "Unauthorized"
64545          }
64546        },
64547        "schemes": [
64548          "https"
64549        ],
64550        "tags": [
64551          "certificates_v1beta1"
64552        ],
64553        "x-kubernetes-action": "put",
64554        "x-kubernetes-group-version-kind": {
64555          "group": "certificates.k8s.io",
64556          "kind": "CertificateSigningRequest",
64557          "version": "v1beta1"
64558        }
64559      }
64560    },
64561    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests": {
64562      "get": {
64563        "consumes": [
64564          "*/*"
64565        ],
64566        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
64567        "operationId": "watchCertificatesV1beta1CertificateSigningRequestList",
64568        "produces": [
64569          "application/json",
64570          "application/yaml",
64571          "application/vnd.kubernetes.protobuf",
64572          "application/json;stream=watch",
64573          "application/vnd.kubernetes.protobuf;stream=watch"
64574        ],
64575        "responses": {
64576          "200": {
64577            "description": "OK",
64578            "schema": {
64579              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64580            }
64581          },
64582          "401": {
64583            "description": "Unauthorized"
64584          }
64585        },
64586        "schemes": [
64587          "https"
64588        ],
64589        "tags": [
64590          "certificates_v1beta1"
64591        ],
64592        "x-kubernetes-action": "watchlist",
64593        "x-kubernetes-group-version-kind": {
64594          "group": "certificates.k8s.io",
64595          "kind": "CertificateSigningRequest",
64596          "version": "v1beta1"
64597        }
64598      },
64599      "parameters": [
64600        {
64601          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64602          "in": "query",
64603          "name": "allowWatchBookmarks",
64604          "type": "boolean",
64605          "uniqueItems": true
64606        },
64607        {
64608          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64609          "in": "query",
64610          "name": "continue",
64611          "type": "string",
64612          "uniqueItems": true
64613        },
64614        {
64615          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64616          "in": "query",
64617          "name": "fieldSelector",
64618          "type": "string",
64619          "uniqueItems": true
64620        },
64621        {
64622          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64623          "in": "query",
64624          "name": "labelSelector",
64625          "type": "string",
64626          "uniqueItems": true
64627        },
64628        {
64629          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64630          "in": "query",
64631          "name": "limit",
64632          "type": "integer",
64633          "uniqueItems": true
64634        },
64635        {
64636          "description": "If 'true', then the output is pretty printed.",
64637          "in": "query",
64638          "name": "pretty",
64639          "type": "string",
64640          "uniqueItems": true
64641        },
64642        {
64643          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64644          "in": "query",
64645          "name": "resourceVersion",
64646          "type": "string",
64647          "uniqueItems": true
64648        },
64649        {
64650          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64651          "in": "query",
64652          "name": "resourceVersionMatch",
64653          "type": "string",
64654          "uniqueItems": true
64655        },
64656        {
64657          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64658          "in": "query",
64659          "name": "timeoutSeconds",
64660          "type": "integer",
64661          "uniqueItems": true
64662        },
64663        {
64664          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64665          "in": "query",
64666          "name": "watch",
64667          "type": "boolean",
64668          "uniqueItems": true
64669        }
64670      ]
64671    },
64672    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}": {
64673      "get": {
64674        "consumes": [
64675          "*/*"
64676        ],
64677        "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.",
64678        "operationId": "watchCertificatesV1beta1CertificateSigningRequest",
64679        "produces": [
64680          "application/json",
64681          "application/yaml",
64682          "application/vnd.kubernetes.protobuf",
64683          "application/json;stream=watch",
64684          "application/vnd.kubernetes.protobuf;stream=watch"
64685        ],
64686        "responses": {
64687          "200": {
64688            "description": "OK",
64689            "schema": {
64690              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64691            }
64692          },
64693          "401": {
64694            "description": "Unauthorized"
64695          }
64696        },
64697        "schemes": [
64698          "https"
64699        ],
64700        "tags": [
64701          "certificates_v1beta1"
64702        ],
64703        "x-kubernetes-action": "watch",
64704        "x-kubernetes-group-version-kind": {
64705          "group": "certificates.k8s.io",
64706          "kind": "CertificateSigningRequest",
64707          "version": "v1beta1"
64708        }
64709      },
64710      "parameters": [
64711        {
64712          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64713          "in": "query",
64714          "name": "allowWatchBookmarks",
64715          "type": "boolean",
64716          "uniqueItems": true
64717        },
64718        {
64719          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64720          "in": "query",
64721          "name": "continue",
64722          "type": "string",
64723          "uniqueItems": true
64724        },
64725        {
64726          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64727          "in": "query",
64728          "name": "fieldSelector",
64729          "type": "string",
64730          "uniqueItems": true
64731        },
64732        {
64733          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64734          "in": "query",
64735          "name": "labelSelector",
64736          "type": "string",
64737          "uniqueItems": true
64738        },
64739        {
64740          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64741          "in": "query",
64742          "name": "limit",
64743          "type": "integer",
64744          "uniqueItems": true
64745        },
64746        {
64747          "description": "name of the CertificateSigningRequest",
64748          "in": "path",
64749          "name": "name",
64750          "required": true,
64751          "type": "string",
64752          "uniqueItems": true
64753        },
64754        {
64755          "description": "If 'true', then the output is pretty printed.",
64756          "in": "query",
64757          "name": "pretty",
64758          "type": "string",
64759          "uniqueItems": true
64760        },
64761        {
64762          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64763          "in": "query",
64764          "name": "resourceVersion",
64765          "type": "string",
64766          "uniqueItems": true
64767        },
64768        {
64769          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64770          "in": "query",
64771          "name": "resourceVersionMatch",
64772          "type": "string",
64773          "uniqueItems": true
64774        },
64775        {
64776          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64777          "in": "query",
64778          "name": "timeoutSeconds",
64779          "type": "integer",
64780          "uniqueItems": true
64781        },
64782        {
64783          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64784          "in": "query",
64785          "name": "watch",
64786          "type": "boolean",
64787          "uniqueItems": true
64788        }
64789      ]
64790    },
64791    "/apis/coordination.k8s.io/": {
64792      "get": {
64793        "consumes": [
64794          "application/json",
64795          "application/yaml",
64796          "application/vnd.kubernetes.protobuf"
64797        ],
64798        "description": "get information of a group",
64799        "operationId": "getCoordinationAPIGroup",
64800        "produces": [
64801          "application/json",
64802          "application/yaml",
64803          "application/vnd.kubernetes.protobuf"
64804        ],
64805        "responses": {
64806          "200": {
64807            "description": "OK",
64808            "schema": {
64809              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
64810            }
64811          },
64812          "401": {
64813            "description": "Unauthorized"
64814          }
64815        },
64816        "schemes": [
64817          "https"
64818        ],
64819        "tags": [
64820          "coordination"
64821        ]
64822      }
64823    },
64824    "/apis/coordination.k8s.io/v1/": {
64825      "get": {
64826        "consumes": [
64827          "application/json",
64828          "application/yaml",
64829          "application/vnd.kubernetes.protobuf"
64830        ],
64831        "description": "get available resources",
64832        "operationId": "getCoordinationV1APIResources",
64833        "produces": [
64834          "application/json",
64835          "application/yaml",
64836          "application/vnd.kubernetes.protobuf"
64837        ],
64838        "responses": {
64839          "200": {
64840            "description": "OK",
64841            "schema": {
64842              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
64843            }
64844          },
64845          "401": {
64846            "description": "Unauthorized"
64847          }
64848        },
64849        "schemes": [
64850          "https"
64851        ],
64852        "tags": [
64853          "coordination_v1"
64854        ]
64855      }
64856    },
64857    "/apis/coordination.k8s.io/v1/leases": {
64858      "get": {
64859        "consumes": [
64860          "*/*"
64861        ],
64862        "description": "list or watch objects of kind Lease",
64863        "operationId": "listCoordinationV1LeaseForAllNamespaces",
64864        "produces": [
64865          "application/json",
64866          "application/yaml",
64867          "application/vnd.kubernetes.protobuf",
64868          "application/json;stream=watch",
64869          "application/vnd.kubernetes.protobuf;stream=watch"
64870        ],
64871        "responses": {
64872          "200": {
64873            "description": "OK",
64874            "schema": {
64875              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
64876            }
64877          },
64878          "401": {
64879            "description": "Unauthorized"
64880          }
64881        },
64882        "schemes": [
64883          "https"
64884        ],
64885        "tags": [
64886          "coordination_v1"
64887        ],
64888        "x-kubernetes-action": "list",
64889        "x-kubernetes-group-version-kind": {
64890          "group": "coordination.k8s.io",
64891          "kind": "Lease",
64892          "version": "v1"
64893        }
64894      },
64895      "parameters": [
64896        {
64897          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
64898          "in": "query",
64899          "name": "allowWatchBookmarks",
64900          "type": "boolean",
64901          "uniqueItems": true
64902        },
64903        {
64904          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64905          "in": "query",
64906          "name": "continue",
64907          "type": "string",
64908          "uniqueItems": true
64909        },
64910        {
64911          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64912          "in": "query",
64913          "name": "fieldSelector",
64914          "type": "string",
64915          "uniqueItems": true
64916        },
64917        {
64918          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64919          "in": "query",
64920          "name": "labelSelector",
64921          "type": "string",
64922          "uniqueItems": true
64923        },
64924        {
64925          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64926          "in": "query",
64927          "name": "limit",
64928          "type": "integer",
64929          "uniqueItems": true
64930        },
64931        {
64932          "description": "If 'true', then the output is pretty printed.",
64933          "in": "query",
64934          "name": "pretty",
64935          "type": "string",
64936          "uniqueItems": true
64937        },
64938        {
64939          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64940          "in": "query",
64941          "name": "resourceVersion",
64942          "type": "string",
64943          "uniqueItems": true
64944        },
64945        {
64946          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64947          "in": "query",
64948          "name": "resourceVersionMatch",
64949          "type": "string",
64950          "uniqueItems": true
64951        },
64952        {
64953          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64954          "in": "query",
64955          "name": "timeoutSeconds",
64956          "type": "integer",
64957          "uniqueItems": true
64958        },
64959        {
64960          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64961          "in": "query",
64962          "name": "watch",
64963          "type": "boolean",
64964          "uniqueItems": true
64965        }
64966      ]
64967    },
64968    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases": {
64969      "delete": {
64970        "consumes": [
64971          "*/*"
64972        ],
64973        "description": "delete collection of Lease",
64974        "operationId": "deleteCoordinationV1CollectionNamespacedLease",
64975        "parameters": [
64976          {
64977            "in": "body",
64978            "name": "body",
64979            "schema": {
64980              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
64981            }
64982          },
64983          {
64984            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64985            "in": "query",
64986            "name": "continue",
64987            "type": "string",
64988            "uniqueItems": true
64989          },
64990          {
64991            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64992            "in": "query",
64993            "name": "dryRun",
64994            "type": "string",
64995            "uniqueItems": true
64996          },
64997          {
64998            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64999            "in": "query",
65000            "name": "fieldSelector",
65001            "type": "string",
65002            "uniqueItems": true
65003          },
65004          {
65005            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65006            "in": "query",
65007            "name": "gracePeriodSeconds",
65008            "type": "integer",
65009            "uniqueItems": true
65010          },
65011          {
65012            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65013            "in": "query",
65014            "name": "labelSelector",
65015            "type": "string",
65016            "uniqueItems": true
65017          },
65018          {
65019            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65020            "in": "query",
65021            "name": "limit",
65022            "type": "integer",
65023            "uniqueItems": true
65024          },
65025          {
65026            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65027            "in": "query",
65028            "name": "orphanDependents",
65029            "type": "boolean",
65030            "uniqueItems": true
65031          },
65032          {
65033            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65034            "in": "query",
65035            "name": "propagationPolicy",
65036            "type": "string",
65037            "uniqueItems": true
65038          },
65039          {
65040            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65041            "in": "query",
65042            "name": "resourceVersion",
65043            "type": "string",
65044            "uniqueItems": true
65045          },
65046          {
65047            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65048            "in": "query",
65049            "name": "resourceVersionMatch",
65050            "type": "string",
65051            "uniqueItems": true
65052          },
65053          {
65054            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65055            "in": "query",
65056            "name": "timeoutSeconds",
65057            "type": "integer",
65058            "uniqueItems": true
65059          }
65060        ],
65061        "produces": [
65062          "application/json",
65063          "application/yaml",
65064          "application/vnd.kubernetes.protobuf"
65065        ],
65066        "responses": {
65067          "200": {
65068            "description": "OK",
65069            "schema": {
65070              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65071            }
65072          },
65073          "401": {
65074            "description": "Unauthorized"
65075          }
65076        },
65077        "schemes": [
65078          "https"
65079        ],
65080        "tags": [
65081          "coordination_v1"
65082        ],
65083        "x-kubernetes-action": "deletecollection",
65084        "x-kubernetes-group-version-kind": {
65085          "group": "coordination.k8s.io",
65086          "kind": "Lease",
65087          "version": "v1"
65088        }
65089      },
65090      "get": {
65091        "consumes": [
65092          "*/*"
65093        ],
65094        "description": "list or watch objects of kind Lease",
65095        "operationId": "listCoordinationV1NamespacedLease",
65096        "parameters": [
65097          {
65098            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65099            "in": "query",
65100            "name": "allowWatchBookmarks",
65101            "type": "boolean",
65102            "uniqueItems": true
65103          },
65104          {
65105            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65106            "in": "query",
65107            "name": "continue",
65108            "type": "string",
65109            "uniqueItems": true
65110          },
65111          {
65112            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65113            "in": "query",
65114            "name": "fieldSelector",
65115            "type": "string",
65116            "uniqueItems": true
65117          },
65118          {
65119            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65120            "in": "query",
65121            "name": "labelSelector",
65122            "type": "string",
65123            "uniqueItems": true
65124          },
65125          {
65126            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65127            "in": "query",
65128            "name": "limit",
65129            "type": "integer",
65130            "uniqueItems": true
65131          },
65132          {
65133            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65134            "in": "query",
65135            "name": "resourceVersion",
65136            "type": "string",
65137            "uniqueItems": true
65138          },
65139          {
65140            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65141            "in": "query",
65142            "name": "resourceVersionMatch",
65143            "type": "string",
65144            "uniqueItems": true
65145          },
65146          {
65147            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65148            "in": "query",
65149            "name": "timeoutSeconds",
65150            "type": "integer",
65151            "uniqueItems": true
65152          },
65153          {
65154            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65155            "in": "query",
65156            "name": "watch",
65157            "type": "boolean",
65158            "uniqueItems": true
65159          }
65160        ],
65161        "produces": [
65162          "application/json",
65163          "application/yaml",
65164          "application/vnd.kubernetes.protobuf",
65165          "application/json;stream=watch",
65166          "application/vnd.kubernetes.protobuf;stream=watch"
65167        ],
65168        "responses": {
65169          "200": {
65170            "description": "OK",
65171            "schema": {
65172              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
65173            }
65174          },
65175          "401": {
65176            "description": "Unauthorized"
65177          }
65178        },
65179        "schemes": [
65180          "https"
65181        ],
65182        "tags": [
65183          "coordination_v1"
65184        ],
65185        "x-kubernetes-action": "list",
65186        "x-kubernetes-group-version-kind": {
65187          "group": "coordination.k8s.io",
65188          "kind": "Lease",
65189          "version": "v1"
65190        }
65191      },
65192      "parameters": [
65193        {
65194          "description": "object name and auth scope, such as for teams and projects",
65195          "in": "path",
65196          "name": "namespace",
65197          "required": true,
65198          "type": "string",
65199          "uniqueItems": true
65200        },
65201        {
65202          "description": "If 'true', then the output is pretty printed.",
65203          "in": "query",
65204          "name": "pretty",
65205          "type": "string",
65206          "uniqueItems": true
65207        }
65208      ],
65209      "post": {
65210        "consumes": [
65211          "*/*"
65212        ],
65213        "description": "create a Lease",
65214        "operationId": "createCoordinationV1NamespacedLease",
65215        "parameters": [
65216          {
65217            "in": "body",
65218            "name": "body",
65219            "required": true,
65220            "schema": {
65221              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65222            }
65223          },
65224          {
65225            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65226            "in": "query",
65227            "name": "dryRun",
65228            "type": "string",
65229            "uniqueItems": true
65230          },
65231          {
65232            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65233            "in": "query",
65234            "name": "fieldManager",
65235            "type": "string",
65236            "uniqueItems": true
65237          }
65238        ],
65239        "produces": [
65240          "application/json",
65241          "application/yaml",
65242          "application/vnd.kubernetes.protobuf"
65243        ],
65244        "responses": {
65245          "200": {
65246            "description": "OK",
65247            "schema": {
65248              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65249            }
65250          },
65251          "201": {
65252            "description": "Created",
65253            "schema": {
65254              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65255            }
65256          },
65257          "202": {
65258            "description": "Accepted",
65259            "schema": {
65260              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65261            }
65262          },
65263          "401": {
65264            "description": "Unauthorized"
65265          }
65266        },
65267        "schemes": [
65268          "https"
65269        ],
65270        "tags": [
65271          "coordination_v1"
65272        ],
65273        "x-kubernetes-action": "post",
65274        "x-kubernetes-group-version-kind": {
65275          "group": "coordination.k8s.io",
65276          "kind": "Lease",
65277          "version": "v1"
65278        }
65279      }
65280    },
65281    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}": {
65282      "delete": {
65283        "consumes": [
65284          "*/*"
65285        ],
65286        "description": "delete a Lease",
65287        "operationId": "deleteCoordinationV1NamespacedLease",
65288        "parameters": [
65289          {
65290            "in": "body",
65291            "name": "body",
65292            "schema": {
65293              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65294            }
65295          },
65296          {
65297            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65298            "in": "query",
65299            "name": "dryRun",
65300            "type": "string",
65301            "uniqueItems": true
65302          },
65303          {
65304            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65305            "in": "query",
65306            "name": "gracePeriodSeconds",
65307            "type": "integer",
65308            "uniqueItems": true
65309          },
65310          {
65311            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65312            "in": "query",
65313            "name": "orphanDependents",
65314            "type": "boolean",
65315            "uniqueItems": true
65316          },
65317          {
65318            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65319            "in": "query",
65320            "name": "propagationPolicy",
65321            "type": "string",
65322            "uniqueItems": true
65323          }
65324        ],
65325        "produces": [
65326          "application/json",
65327          "application/yaml",
65328          "application/vnd.kubernetes.protobuf"
65329        ],
65330        "responses": {
65331          "200": {
65332            "description": "OK",
65333            "schema": {
65334              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65335            }
65336          },
65337          "202": {
65338            "description": "Accepted",
65339            "schema": {
65340              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65341            }
65342          },
65343          "401": {
65344            "description": "Unauthorized"
65345          }
65346        },
65347        "schemes": [
65348          "https"
65349        ],
65350        "tags": [
65351          "coordination_v1"
65352        ],
65353        "x-kubernetes-action": "delete",
65354        "x-kubernetes-group-version-kind": {
65355          "group": "coordination.k8s.io",
65356          "kind": "Lease",
65357          "version": "v1"
65358        }
65359      },
65360      "get": {
65361        "consumes": [
65362          "*/*"
65363        ],
65364        "description": "read the specified Lease",
65365        "operationId": "readCoordinationV1NamespacedLease",
65366        "produces": [
65367          "application/json",
65368          "application/yaml",
65369          "application/vnd.kubernetes.protobuf"
65370        ],
65371        "responses": {
65372          "200": {
65373            "description": "OK",
65374            "schema": {
65375              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65376            }
65377          },
65378          "401": {
65379            "description": "Unauthorized"
65380          }
65381        },
65382        "schemes": [
65383          "https"
65384        ],
65385        "tags": [
65386          "coordination_v1"
65387        ],
65388        "x-kubernetes-action": "get",
65389        "x-kubernetes-group-version-kind": {
65390          "group": "coordination.k8s.io",
65391          "kind": "Lease",
65392          "version": "v1"
65393        }
65394      },
65395      "parameters": [
65396        {
65397          "description": "name of the Lease",
65398          "in": "path",
65399          "name": "name",
65400          "required": true,
65401          "type": "string",
65402          "uniqueItems": true
65403        },
65404        {
65405          "description": "object name and auth scope, such as for teams and projects",
65406          "in": "path",
65407          "name": "namespace",
65408          "required": true,
65409          "type": "string",
65410          "uniqueItems": true
65411        },
65412        {
65413          "description": "If 'true', then the output is pretty printed.",
65414          "in": "query",
65415          "name": "pretty",
65416          "type": "string",
65417          "uniqueItems": true
65418        }
65419      ],
65420      "patch": {
65421        "consumes": [
65422          "application/json-patch+json",
65423          "application/merge-patch+json",
65424          "application/strategic-merge-patch+json",
65425          "application/apply-patch+yaml"
65426        ],
65427        "description": "partially update the specified Lease",
65428        "operationId": "patchCoordinationV1NamespacedLease",
65429        "parameters": [
65430          {
65431            "in": "body",
65432            "name": "body",
65433            "required": true,
65434            "schema": {
65435              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
65436            }
65437          },
65438          {
65439            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65440            "in": "query",
65441            "name": "dryRun",
65442            "type": "string",
65443            "uniqueItems": true
65444          },
65445          {
65446            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
65447            "in": "query",
65448            "name": "fieldManager",
65449            "type": "string",
65450            "uniqueItems": true
65451          },
65452          {
65453            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
65454            "in": "query",
65455            "name": "force",
65456            "type": "boolean",
65457            "uniqueItems": true
65458          }
65459        ],
65460        "produces": [
65461          "application/json",
65462          "application/yaml",
65463          "application/vnd.kubernetes.protobuf"
65464        ],
65465        "responses": {
65466          "200": {
65467            "description": "OK",
65468            "schema": {
65469              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65470            }
65471          },
65472          "401": {
65473            "description": "Unauthorized"
65474          }
65475        },
65476        "schemes": [
65477          "https"
65478        ],
65479        "tags": [
65480          "coordination_v1"
65481        ],
65482        "x-kubernetes-action": "patch",
65483        "x-kubernetes-group-version-kind": {
65484          "group": "coordination.k8s.io",
65485          "kind": "Lease",
65486          "version": "v1"
65487        }
65488      },
65489      "put": {
65490        "consumes": [
65491          "*/*"
65492        ],
65493        "description": "replace the specified Lease",
65494        "operationId": "replaceCoordinationV1NamespacedLease",
65495        "parameters": [
65496          {
65497            "in": "body",
65498            "name": "body",
65499            "required": true,
65500            "schema": {
65501              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65502            }
65503          },
65504          {
65505            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65506            "in": "query",
65507            "name": "dryRun",
65508            "type": "string",
65509            "uniqueItems": true
65510          },
65511          {
65512            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65513            "in": "query",
65514            "name": "fieldManager",
65515            "type": "string",
65516            "uniqueItems": true
65517          }
65518        ],
65519        "produces": [
65520          "application/json",
65521          "application/yaml",
65522          "application/vnd.kubernetes.protobuf"
65523        ],
65524        "responses": {
65525          "200": {
65526            "description": "OK",
65527            "schema": {
65528              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65529            }
65530          },
65531          "201": {
65532            "description": "Created",
65533            "schema": {
65534              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
65535            }
65536          },
65537          "401": {
65538            "description": "Unauthorized"
65539          }
65540        },
65541        "schemes": [
65542          "https"
65543        ],
65544        "tags": [
65545          "coordination_v1"
65546        ],
65547        "x-kubernetes-action": "put",
65548        "x-kubernetes-group-version-kind": {
65549          "group": "coordination.k8s.io",
65550          "kind": "Lease",
65551          "version": "v1"
65552        }
65553      }
65554    },
65555    "/apis/coordination.k8s.io/v1/watch/leases": {
65556      "get": {
65557        "consumes": [
65558          "*/*"
65559        ],
65560        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
65561        "operationId": "watchCoordinationV1LeaseListForAllNamespaces",
65562        "produces": [
65563          "application/json",
65564          "application/yaml",
65565          "application/vnd.kubernetes.protobuf",
65566          "application/json;stream=watch",
65567          "application/vnd.kubernetes.protobuf;stream=watch"
65568        ],
65569        "responses": {
65570          "200": {
65571            "description": "OK",
65572            "schema": {
65573              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65574            }
65575          },
65576          "401": {
65577            "description": "Unauthorized"
65578          }
65579        },
65580        "schemes": [
65581          "https"
65582        ],
65583        "tags": [
65584          "coordination_v1"
65585        ],
65586        "x-kubernetes-action": "watchlist",
65587        "x-kubernetes-group-version-kind": {
65588          "group": "coordination.k8s.io",
65589          "kind": "Lease",
65590          "version": "v1"
65591        }
65592      },
65593      "parameters": [
65594        {
65595          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65596          "in": "query",
65597          "name": "allowWatchBookmarks",
65598          "type": "boolean",
65599          "uniqueItems": true
65600        },
65601        {
65602          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65603          "in": "query",
65604          "name": "continue",
65605          "type": "string",
65606          "uniqueItems": true
65607        },
65608        {
65609          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65610          "in": "query",
65611          "name": "fieldSelector",
65612          "type": "string",
65613          "uniqueItems": true
65614        },
65615        {
65616          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65617          "in": "query",
65618          "name": "labelSelector",
65619          "type": "string",
65620          "uniqueItems": true
65621        },
65622        {
65623          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65624          "in": "query",
65625          "name": "limit",
65626          "type": "integer",
65627          "uniqueItems": true
65628        },
65629        {
65630          "description": "If 'true', then the output is pretty printed.",
65631          "in": "query",
65632          "name": "pretty",
65633          "type": "string",
65634          "uniqueItems": true
65635        },
65636        {
65637          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65638          "in": "query",
65639          "name": "resourceVersion",
65640          "type": "string",
65641          "uniqueItems": true
65642        },
65643        {
65644          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65645          "in": "query",
65646          "name": "resourceVersionMatch",
65647          "type": "string",
65648          "uniqueItems": true
65649        },
65650        {
65651          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65652          "in": "query",
65653          "name": "timeoutSeconds",
65654          "type": "integer",
65655          "uniqueItems": true
65656        },
65657        {
65658          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65659          "in": "query",
65660          "name": "watch",
65661          "type": "boolean",
65662          "uniqueItems": true
65663        }
65664      ]
65665    },
65666    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases": {
65667      "get": {
65668        "consumes": [
65669          "*/*"
65670        ],
65671        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
65672        "operationId": "watchCoordinationV1NamespacedLeaseList",
65673        "produces": [
65674          "application/json",
65675          "application/yaml",
65676          "application/vnd.kubernetes.protobuf",
65677          "application/json;stream=watch",
65678          "application/vnd.kubernetes.protobuf;stream=watch"
65679        ],
65680        "responses": {
65681          "200": {
65682            "description": "OK",
65683            "schema": {
65684              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65685            }
65686          },
65687          "401": {
65688            "description": "Unauthorized"
65689          }
65690        },
65691        "schemes": [
65692          "https"
65693        ],
65694        "tags": [
65695          "coordination_v1"
65696        ],
65697        "x-kubernetes-action": "watchlist",
65698        "x-kubernetes-group-version-kind": {
65699          "group": "coordination.k8s.io",
65700          "kind": "Lease",
65701          "version": "v1"
65702        }
65703      },
65704      "parameters": [
65705        {
65706          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65707          "in": "query",
65708          "name": "allowWatchBookmarks",
65709          "type": "boolean",
65710          "uniqueItems": true
65711        },
65712        {
65713          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65714          "in": "query",
65715          "name": "continue",
65716          "type": "string",
65717          "uniqueItems": true
65718        },
65719        {
65720          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65721          "in": "query",
65722          "name": "fieldSelector",
65723          "type": "string",
65724          "uniqueItems": true
65725        },
65726        {
65727          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65728          "in": "query",
65729          "name": "labelSelector",
65730          "type": "string",
65731          "uniqueItems": true
65732        },
65733        {
65734          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65735          "in": "query",
65736          "name": "limit",
65737          "type": "integer",
65738          "uniqueItems": true
65739        },
65740        {
65741          "description": "object name and auth scope, such as for teams and projects",
65742          "in": "path",
65743          "name": "namespace",
65744          "required": true,
65745          "type": "string",
65746          "uniqueItems": true
65747        },
65748        {
65749          "description": "If 'true', then the output is pretty printed.",
65750          "in": "query",
65751          "name": "pretty",
65752          "type": "string",
65753          "uniqueItems": true
65754        },
65755        {
65756          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65757          "in": "query",
65758          "name": "resourceVersion",
65759          "type": "string",
65760          "uniqueItems": true
65761        },
65762        {
65763          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65764          "in": "query",
65765          "name": "resourceVersionMatch",
65766          "type": "string",
65767          "uniqueItems": true
65768        },
65769        {
65770          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65771          "in": "query",
65772          "name": "timeoutSeconds",
65773          "type": "integer",
65774          "uniqueItems": true
65775        },
65776        {
65777          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65778          "in": "query",
65779          "name": "watch",
65780          "type": "boolean",
65781          "uniqueItems": true
65782        }
65783      ]
65784    },
65785    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}": {
65786      "get": {
65787        "consumes": [
65788          "*/*"
65789        ],
65790        "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.",
65791        "operationId": "watchCoordinationV1NamespacedLease",
65792        "produces": [
65793          "application/json",
65794          "application/yaml",
65795          "application/vnd.kubernetes.protobuf",
65796          "application/json;stream=watch",
65797          "application/vnd.kubernetes.protobuf;stream=watch"
65798        ],
65799        "responses": {
65800          "200": {
65801            "description": "OK",
65802            "schema": {
65803              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65804            }
65805          },
65806          "401": {
65807            "description": "Unauthorized"
65808          }
65809        },
65810        "schemes": [
65811          "https"
65812        ],
65813        "tags": [
65814          "coordination_v1"
65815        ],
65816        "x-kubernetes-action": "watch",
65817        "x-kubernetes-group-version-kind": {
65818          "group": "coordination.k8s.io",
65819          "kind": "Lease",
65820          "version": "v1"
65821        }
65822      },
65823      "parameters": [
65824        {
65825          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65826          "in": "query",
65827          "name": "allowWatchBookmarks",
65828          "type": "boolean",
65829          "uniqueItems": true
65830        },
65831        {
65832          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65833          "in": "query",
65834          "name": "continue",
65835          "type": "string",
65836          "uniqueItems": true
65837        },
65838        {
65839          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65840          "in": "query",
65841          "name": "fieldSelector",
65842          "type": "string",
65843          "uniqueItems": true
65844        },
65845        {
65846          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65847          "in": "query",
65848          "name": "labelSelector",
65849          "type": "string",
65850          "uniqueItems": true
65851        },
65852        {
65853          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65854          "in": "query",
65855          "name": "limit",
65856          "type": "integer",
65857          "uniqueItems": true
65858        },
65859        {
65860          "description": "name of the Lease",
65861          "in": "path",
65862          "name": "name",
65863          "required": true,
65864          "type": "string",
65865          "uniqueItems": true
65866        },
65867        {
65868          "description": "object name and auth scope, such as for teams and projects",
65869          "in": "path",
65870          "name": "namespace",
65871          "required": true,
65872          "type": "string",
65873          "uniqueItems": true
65874        },
65875        {
65876          "description": "If 'true', then the output is pretty printed.",
65877          "in": "query",
65878          "name": "pretty",
65879          "type": "string",
65880          "uniqueItems": true
65881        },
65882        {
65883          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65884          "in": "query",
65885          "name": "resourceVersion",
65886          "type": "string",
65887          "uniqueItems": true
65888        },
65889        {
65890          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65891          "in": "query",
65892          "name": "resourceVersionMatch",
65893          "type": "string",
65894          "uniqueItems": true
65895        },
65896        {
65897          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65898          "in": "query",
65899          "name": "timeoutSeconds",
65900          "type": "integer",
65901          "uniqueItems": true
65902        },
65903        {
65904          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65905          "in": "query",
65906          "name": "watch",
65907          "type": "boolean",
65908          "uniqueItems": true
65909        }
65910      ]
65911    },
65912    "/apis/coordination.k8s.io/v1beta1/": {
65913      "get": {
65914        "consumes": [
65915          "application/json",
65916          "application/yaml",
65917          "application/vnd.kubernetes.protobuf"
65918        ],
65919        "description": "get available resources",
65920        "operationId": "getCoordinationV1beta1APIResources",
65921        "produces": [
65922          "application/json",
65923          "application/yaml",
65924          "application/vnd.kubernetes.protobuf"
65925        ],
65926        "responses": {
65927          "200": {
65928            "description": "OK",
65929            "schema": {
65930              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
65931            }
65932          },
65933          "401": {
65934            "description": "Unauthorized"
65935          }
65936        },
65937        "schemes": [
65938          "https"
65939        ],
65940        "tags": [
65941          "coordination_v1beta1"
65942        ]
65943      }
65944    },
65945    "/apis/coordination.k8s.io/v1beta1/leases": {
65946      "get": {
65947        "consumes": [
65948          "*/*"
65949        ],
65950        "description": "list or watch objects of kind Lease",
65951        "operationId": "listCoordinationV1beta1LeaseForAllNamespaces",
65952        "produces": [
65953          "application/json",
65954          "application/yaml",
65955          "application/vnd.kubernetes.protobuf",
65956          "application/json;stream=watch",
65957          "application/vnd.kubernetes.protobuf;stream=watch"
65958        ],
65959        "responses": {
65960          "200": {
65961            "description": "OK",
65962            "schema": {
65963              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
65964            }
65965          },
65966          "401": {
65967            "description": "Unauthorized"
65968          }
65969        },
65970        "schemes": [
65971          "https"
65972        ],
65973        "tags": [
65974          "coordination_v1beta1"
65975        ],
65976        "x-kubernetes-action": "list",
65977        "x-kubernetes-group-version-kind": {
65978          "group": "coordination.k8s.io",
65979          "kind": "Lease",
65980          "version": "v1beta1"
65981        }
65982      },
65983      "parameters": [
65984        {
65985          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
65986          "in": "query",
65987          "name": "allowWatchBookmarks",
65988          "type": "boolean",
65989          "uniqueItems": true
65990        },
65991        {
65992          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65993          "in": "query",
65994          "name": "continue",
65995          "type": "string",
65996          "uniqueItems": true
65997        },
65998        {
65999          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66000          "in": "query",
66001          "name": "fieldSelector",
66002          "type": "string",
66003          "uniqueItems": true
66004        },
66005        {
66006          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66007          "in": "query",
66008          "name": "labelSelector",
66009          "type": "string",
66010          "uniqueItems": true
66011        },
66012        {
66013          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66014          "in": "query",
66015          "name": "limit",
66016          "type": "integer",
66017          "uniqueItems": true
66018        },
66019        {
66020          "description": "If 'true', then the output is pretty printed.",
66021          "in": "query",
66022          "name": "pretty",
66023          "type": "string",
66024          "uniqueItems": true
66025        },
66026        {
66027          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66028          "in": "query",
66029          "name": "resourceVersion",
66030          "type": "string",
66031          "uniqueItems": true
66032        },
66033        {
66034          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66035          "in": "query",
66036          "name": "resourceVersionMatch",
66037          "type": "string",
66038          "uniqueItems": true
66039        },
66040        {
66041          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66042          "in": "query",
66043          "name": "timeoutSeconds",
66044          "type": "integer",
66045          "uniqueItems": true
66046        },
66047        {
66048          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66049          "in": "query",
66050          "name": "watch",
66051          "type": "boolean",
66052          "uniqueItems": true
66053        }
66054      ]
66055    },
66056    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases": {
66057      "delete": {
66058        "consumes": [
66059          "*/*"
66060        ],
66061        "description": "delete collection of Lease",
66062        "operationId": "deleteCoordinationV1beta1CollectionNamespacedLease",
66063        "parameters": [
66064          {
66065            "in": "body",
66066            "name": "body",
66067            "schema": {
66068              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66069            }
66070          },
66071          {
66072            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66073            "in": "query",
66074            "name": "continue",
66075            "type": "string",
66076            "uniqueItems": true
66077          },
66078          {
66079            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66080            "in": "query",
66081            "name": "dryRun",
66082            "type": "string",
66083            "uniqueItems": true
66084          },
66085          {
66086            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66087            "in": "query",
66088            "name": "fieldSelector",
66089            "type": "string",
66090            "uniqueItems": true
66091          },
66092          {
66093            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66094            "in": "query",
66095            "name": "gracePeriodSeconds",
66096            "type": "integer",
66097            "uniqueItems": true
66098          },
66099          {
66100            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66101            "in": "query",
66102            "name": "labelSelector",
66103            "type": "string",
66104            "uniqueItems": true
66105          },
66106          {
66107            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66108            "in": "query",
66109            "name": "limit",
66110            "type": "integer",
66111            "uniqueItems": true
66112          },
66113          {
66114            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66115            "in": "query",
66116            "name": "orphanDependents",
66117            "type": "boolean",
66118            "uniqueItems": true
66119          },
66120          {
66121            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66122            "in": "query",
66123            "name": "propagationPolicy",
66124            "type": "string",
66125            "uniqueItems": true
66126          },
66127          {
66128            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66129            "in": "query",
66130            "name": "resourceVersion",
66131            "type": "string",
66132            "uniqueItems": true
66133          },
66134          {
66135            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66136            "in": "query",
66137            "name": "resourceVersionMatch",
66138            "type": "string",
66139            "uniqueItems": true
66140          },
66141          {
66142            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66143            "in": "query",
66144            "name": "timeoutSeconds",
66145            "type": "integer",
66146            "uniqueItems": true
66147          }
66148        ],
66149        "produces": [
66150          "application/json",
66151          "application/yaml",
66152          "application/vnd.kubernetes.protobuf"
66153        ],
66154        "responses": {
66155          "200": {
66156            "description": "OK",
66157            "schema": {
66158              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66159            }
66160          },
66161          "401": {
66162            "description": "Unauthorized"
66163          }
66164        },
66165        "schemes": [
66166          "https"
66167        ],
66168        "tags": [
66169          "coordination_v1beta1"
66170        ],
66171        "x-kubernetes-action": "deletecollection",
66172        "x-kubernetes-group-version-kind": {
66173          "group": "coordination.k8s.io",
66174          "kind": "Lease",
66175          "version": "v1beta1"
66176        }
66177      },
66178      "get": {
66179        "consumes": [
66180          "*/*"
66181        ],
66182        "description": "list or watch objects of kind Lease",
66183        "operationId": "listCoordinationV1beta1NamespacedLease",
66184        "parameters": [
66185          {
66186            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66187            "in": "query",
66188            "name": "allowWatchBookmarks",
66189            "type": "boolean",
66190            "uniqueItems": true
66191          },
66192          {
66193            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66194            "in": "query",
66195            "name": "continue",
66196            "type": "string",
66197            "uniqueItems": true
66198          },
66199          {
66200            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66201            "in": "query",
66202            "name": "fieldSelector",
66203            "type": "string",
66204            "uniqueItems": true
66205          },
66206          {
66207            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66208            "in": "query",
66209            "name": "labelSelector",
66210            "type": "string",
66211            "uniqueItems": true
66212          },
66213          {
66214            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66215            "in": "query",
66216            "name": "limit",
66217            "type": "integer",
66218            "uniqueItems": true
66219          },
66220          {
66221            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66222            "in": "query",
66223            "name": "resourceVersion",
66224            "type": "string",
66225            "uniqueItems": true
66226          },
66227          {
66228            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66229            "in": "query",
66230            "name": "resourceVersionMatch",
66231            "type": "string",
66232            "uniqueItems": true
66233          },
66234          {
66235            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66236            "in": "query",
66237            "name": "timeoutSeconds",
66238            "type": "integer",
66239            "uniqueItems": true
66240          },
66241          {
66242            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66243            "in": "query",
66244            "name": "watch",
66245            "type": "boolean",
66246            "uniqueItems": true
66247          }
66248        ],
66249        "produces": [
66250          "application/json",
66251          "application/yaml",
66252          "application/vnd.kubernetes.protobuf",
66253          "application/json;stream=watch",
66254          "application/vnd.kubernetes.protobuf;stream=watch"
66255        ],
66256        "responses": {
66257          "200": {
66258            "description": "OK",
66259            "schema": {
66260              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
66261            }
66262          },
66263          "401": {
66264            "description": "Unauthorized"
66265          }
66266        },
66267        "schemes": [
66268          "https"
66269        ],
66270        "tags": [
66271          "coordination_v1beta1"
66272        ],
66273        "x-kubernetes-action": "list",
66274        "x-kubernetes-group-version-kind": {
66275          "group": "coordination.k8s.io",
66276          "kind": "Lease",
66277          "version": "v1beta1"
66278        }
66279      },
66280      "parameters": [
66281        {
66282          "description": "object name and auth scope, such as for teams and projects",
66283          "in": "path",
66284          "name": "namespace",
66285          "required": true,
66286          "type": "string",
66287          "uniqueItems": true
66288        },
66289        {
66290          "description": "If 'true', then the output is pretty printed.",
66291          "in": "query",
66292          "name": "pretty",
66293          "type": "string",
66294          "uniqueItems": true
66295        }
66296      ],
66297      "post": {
66298        "consumes": [
66299          "*/*"
66300        ],
66301        "description": "create a Lease",
66302        "operationId": "createCoordinationV1beta1NamespacedLease",
66303        "parameters": [
66304          {
66305            "in": "body",
66306            "name": "body",
66307            "required": true,
66308            "schema": {
66309              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66310            }
66311          },
66312          {
66313            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66314            "in": "query",
66315            "name": "dryRun",
66316            "type": "string",
66317            "uniqueItems": true
66318          },
66319          {
66320            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66321            "in": "query",
66322            "name": "fieldManager",
66323            "type": "string",
66324            "uniqueItems": true
66325          }
66326        ],
66327        "produces": [
66328          "application/json",
66329          "application/yaml",
66330          "application/vnd.kubernetes.protobuf"
66331        ],
66332        "responses": {
66333          "200": {
66334            "description": "OK",
66335            "schema": {
66336              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66337            }
66338          },
66339          "201": {
66340            "description": "Created",
66341            "schema": {
66342              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66343            }
66344          },
66345          "202": {
66346            "description": "Accepted",
66347            "schema": {
66348              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66349            }
66350          },
66351          "401": {
66352            "description": "Unauthorized"
66353          }
66354        },
66355        "schemes": [
66356          "https"
66357        ],
66358        "tags": [
66359          "coordination_v1beta1"
66360        ],
66361        "x-kubernetes-action": "post",
66362        "x-kubernetes-group-version-kind": {
66363          "group": "coordination.k8s.io",
66364          "kind": "Lease",
66365          "version": "v1beta1"
66366        }
66367      }
66368    },
66369    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}": {
66370      "delete": {
66371        "consumes": [
66372          "*/*"
66373        ],
66374        "description": "delete a Lease",
66375        "operationId": "deleteCoordinationV1beta1NamespacedLease",
66376        "parameters": [
66377          {
66378            "in": "body",
66379            "name": "body",
66380            "schema": {
66381              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66382            }
66383          },
66384          {
66385            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66386            "in": "query",
66387            "name": "dryRun",
66388            "type": "string",
66389            "uniqueItems": true
66390          },
66391          {
66392            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66393            "in": "query",
66394            "name": "gracePeriodSeconds",
66395            "type": "integer",
66396            "uniqueItems": true
66397          },
66398          {
66399            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66400            "in": "query",
66401            "name": "orphanDependents",
66402            "type": "boolean",
66403            "uniqueItems": true
66404          },
66405          {
66406            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66407            "in": "query",
66408            "name": "propagationPolicy",
66409            "type": "string",
66410            "uniqueItems": true
66411          }
66412        ],
66413        "produces": [
66414          "application/json",
66415          "application/yaml",
66416          "application/vnd.kubernetes.protobuf"
66417        ],
66418        "responses": {
66419          "200": {
66420            "description": "OK",
66421            "schema": {
66422              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66423            }
66424          },
66425          "202": {
66426            "description": "Accepted",
66427            "schema": {
66428              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66429            }
66430          },
66431          "401": {
66432            "description": "Unauthorized"
66433          }
66434        },
66435        "schemes": [
66436          "https"
66437        ],
66438        "tags": [
66439          "coordination_v1beta1"
66440        ],
66441        "x-kubernetes-action": "delete",
66442        "x-kubernetes-group-version-kind": {
66443          "group": "coordination.k8s.io",
66444          "kind": "Lease",
66445          "version": "v1beta1"
66446        }
66447      },
66448      "get": {
66449        "consumes": [
66450          "*/*"
66451        ],
66452        "description": "read the specified Lease",
66453        "operationId": "readCoordinationV1beta1NamespacedLease",
66454        "produces": [
66455          "application/json",
66456          "application/yaml",
66457          "application/vnd.kubernetes.protobuf"
66458        ],
66459        "responses": {
66460          "200": {
66461            "description": "OK",
66462            "schema": {
66463              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66464            }
66465          },
66466          "401": {
66467            "description": "Unauthorized"
66468          }
66469        },
66470        "schemes": [
66471          "https"
66472        ],
66473        "tags": [
66474          "coordination_v1beta1"
66475        ],
66476        "x-kubernetes-action": "get",
66477        "x-kubernetes-group-version-kind": {
66478          "group": "coordination.k8s.io",
66479          "kind": "Lease",
66480          "version": "v1beta1"
66481        }
66482      },
66483      "parameters": [
66484        {
66485          "description": "name of the Lease",
66486          "in": "path",
66487          "name": "name",
66488          "required": true,
66489          "type": "string",
66490          "uniqueItems": true
66491        },
66492        {
66493          "description": "object name and auth scope, such as for teams and projects",
66494          "in": "path",
66495          "name": "namespace",
66496          "required": true,
66497          "type": "string",
66498          "uniqueItems": true
66499        },
66500        {
66501          "description": "If 'true', then the output is pretty printed.",
66502          "in": "query",
66503          "name": "pretty",
66504          "type": "string",
66505          "uniqueItems": true
66506        }
66507      ],
66508      "patch": {
66509        "consumes": [
66510          "application/json-patch+json",
66511          "application/merge-patch+json",
66512          "application/strategic-merge-patch+json",
66513          "application/apply-patch+yaml"
66514        ],
66515        "description": "partially update the specified Lease",
66516        "operationId": "patchCoordinationV1beta1NamespacedLease",
66517        "parameters": [
66518          {
66519            "in": "body",
66520            "name": "body",
66521            "required": true,
66522            "schema": {
66523              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
66524            }
66525          },
66526          {
66527            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66528            "in": "query",
66529            "name": "dryRun",
66530            "type": "string",
66531            "uniqueItems": true
66532          },
66533          {
66534            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
66535            "in": "query",
66536            "name": "fieldManager",
66537            "type": "string",
66538            "uniqueItems": true
66539          },
66540          {
66541            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
66542            "in": "query",
66543            "name": "force",
66544            "type": "boolean",
66545            "uniqueItems": true
66546          }
66547        ],
66548        "produces": [
66549          "application/json",
66550          "application/yaml",
66551          "application/vnd.kubernetes.protobuf"
66552        ],
66553        "responses": {
66554          "200": {
66555            "description": "OK",
66556            "schema": {
66557              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66558            }
66559          },
66560          "401": {
66561            "description": "Unauthorized"
66562          }
66563        },
66564        "schemes": [
66565          "https"
66566        ],
66567        "tags": [
66568          "coordination_v1beta1"
66569        ],
66570        "x-kubernetes-action": "patch",
66571        "x-kubernetes-group-version-kind": {
66572          "group": "coordination.k8s.io",
66573          "kind": "Lease",
66574          "version": "v1beta1"
66575        }
66576      },
66577      "put": {
66578        "consumes": [
66579          "*/*"
66580        ],
66581        "description": "replace the specified Lease",
66582        "operationId": "replaceCoordinationV1beta1NamespacedLease",
66583        "parameters": [
66584          {
66585            "in": "body",
66586            "name": "body",
66587            "required": true,
66588            "schema": {
66589              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66590            }
66591          },
66592          {
66593            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66594            "in": "query",
66595            "name": "dryRun",
66596            "type": "string",
66597            "uniqueItems": true
66598          },
66599          {
66600            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66601            "in": "query",
66602            "name": "fieldManager",
66603            "type": "string",
66604            "uniqueItems": true
66605          }
66606        ],
66607        "produces": [
66608          "application/json",
66609          "application/yaml",
66610          "application/vnd.kubernetes.protobuf"
66611        ],
66612        "responses": {
66613          "200": {
66614            "description": "OK",
66615            "schema": {
66616              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66617            }
66618          },
66619          "201": {
66620            "description": "Created",
66621            "schema": {
66622              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
66623            }
66624          },
66625          "401": {
66626            "description": "Unauthorized"
66627          }
66628        },
66629        "schemes": [
66630          "https"
66631        ],
66632        "tags": [
66633          "coordination_v1beta1"
66634        ],
66635        "x-kubernetes-action": "put",
66636        "x-kubernetes-group-version-kind": {
66637          "group": "coordination.k8s.io",
66638          "kind": "Lease",
66639          "version": "v1beta1"
66640        }
66641      }
66642    },
66643    "/apis/coordination.k8s.io/v1beta1/watch/leases": {
66644      "get": {
66645        "consumes": [
66646          "*/*"
66647        ],
66648        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
66649        "operationId": "watchCoordinationV1beta1LeaseListForAllNamespaces",
66650        "produces": [
66651          "application/json",
66652          "application/yaml",
66653          "application/vnd.kubernetes.protobuf",
66654          "application/json;stream=watch",
66655          "application/vnd.kubernetes.protobuf;stream=watch"
66656        ],
66657        "responses": {
66658          "200": {
66659            "description": "OK",
66660            "schema": {
66661              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66662            }
66663          },
66664          "401": {
66665            "description": "Unauthorized"
66666          }
66667        },
66668        "schemes": [
66669          "https"
66670        ],
66671        "tags": [
66672          "coordination_v1beta1"
66673        ],
66674        "x-kubernetes-action": "watchlist",
66675        "x-kubernetes-group-version-kind": {
66676          "group": "coordination.k8s.io",
66677          "kind": "Lease",
66678          "version": "v1beta1"
66679        }
66680      },
66681      "parameters": [
66682        {
66683          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66684          "in": "query",
66685          "name": "allowWatchBookmarks",
66686          "type": "boolean",
66687          "uniqueItems": true
66688        },
66689        {
66690          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66691          "in": "query",
66692          "name": "continue",
66693          "type": "string",
66694          "uniqueItems": true
66695        },
66696        {
66697          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66698          "in": "query",
66699          "name": "fieldSelector",
66700          "type": "string",
66701          "uniqueItems": true
66702        },
66703        {
66704          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66705          "in": "query",
66706          "name": "labelSelector",
66707          "type": "string",
66708          "uniqueItems": true
66709        },
66710        {
66711          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66712          "in": "query",
66713          "name": "limit",
66714          "type": "integer",
66715          "uniqueItems": true
66716        },
66717        {
66718          "description": "If 'true', then the output is pretty printed.",
66719          "in": "query",
66720          "name": "pretty",
66721          "type": "string",
66722          "uniqueItems": true
66723        },
66724        {
66725          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66726          "in": "query",
66727          "name": "resourceVersion",
66728          "type": "string",
66729          "uniqueItems": true
66730        },
66731        {
66732          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66733          "in": "query",
66734          "name": "resourceVersionMatch",
66735          "type": "string",
66736          "uniqueItems": true
66737        },
66738        {
66739          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66740          "in": "query",
66741          "name": "timeoutSeconds",
66742          "type": "integer",
66743          "uniqueItems": true
66744        },
66745        {
66746          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66747          "in": "query",
66748          "name": "watch",
66749          "type": "boolean",
66750          "uniqueItems": true
66751        }
66752      ]
66753    },
66754    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases": {
66755      "get": {
66756        "consumes": [
66757          "*/*"
66758        ],
66759        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
66760        "operationId": "watchCoordinationV1beta1NamespacedLeaseList",
66761        "produces": [
66762          "application/json",
66763          "application/yaml",
66764          "application/vnd.kubernetes.protobuf",
66765          "application/json;stream=watch",
66766          "application/vnd.kubernetes.protobuf;stream=watch"
66767        ],
66768        "responses": {
66769          "200": {
66770            "description": "OK",
66771            "schema": {
66772              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66773            }
66774          },
66775          "401": {
66776            "description": "Unauthorized"
66777          }
66778        },
66779        "schemes": [
66780          "https"
66781        ],
66782        "tags": [
66783          "coordination_v1beta1"
66784        ],
66785        "x-kubernetes-action": "watchlist",
66786        "x-kubernetes-group-version-kind": {
66787          "group": "coordination.k8s.io",
66788          "kind": "Lease",
66789          "version": "v1beta1"
66790        }
66791      },
66792      "parameters": [
66793        {
66794          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66795          "in": "query",
66796          "name": "allowWatchBookmarks",
66797          "type": "boolean",
66798          "uniqueItems": true
66799        },
66800        {
66801          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66802          "in": "query",
66803          "name": "continue",
66804          "type": "string",
66805          "uniqueItems": true
66806        },
66807        {
66808          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66809          "in": "query",
66810          "name": "fieldSelector",
66811          "type": "string",
66812          "uniqueItems": true
66813        },
66814        {
66815          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66816          "in": "query",
66817          "name": "labelSelector",
66818          "type": "string",
66819          "uniqueItems": true
66820        },
66821        {
66822          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66823          "in": "query",
66824          "name": "limit",
66825          "type": "integer",
66826          "uniqueItems": true
66827        },
66828        {
66829          "description": "object name and auth scope, such as for teams and projects",
66830          "in": "path",
66831          "name": "namespace",
66832          "required": true,
66833          "type": "string",
66834          "uniqueItems": true
66835        },
66836        {
66837          "description": "If 'true', then the output is pretty printed.",
66838          "in": "query",
66839          "name": "pretty",
66840          "type": "string",
66841          "uniqueItems": true
66842        },
66843        {
66844          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66845          "in": "query",
66846          "name": "resourceVersion",
66847          "type": "string",
66848          "uniqueItems": true
66849        },
66850        {
66851          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66852          "in": "query",
66853          "name": "resourceVersionMatch",
66854          "type": "string",
66855          "uniqueItems": true
66856        },
66857        {
66858          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66859          "in": "query",
66860          "name": "timeoutSeconds",
66861          "type": "integer",
66862          "uniqueItems": true
66863        },
66864        {
66865          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66866          "in": "query",
66867          "name": "watch",
66868          "type": "boolean",
66869          "uniqueItems": true
66870        }
66871      ]
66872    },
66873    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases/{name}": {
66874      "get": {
66875        "consumes": [
66876          "*/*"
66877        ],
66878        "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.",
66879        "operationId": "watchCoordinationV1beta1NamespacedLease",
66880        "produces": [
66881          "application/json",
66882          "application/yaml",
66883          "application/vnd.kubernetes.protobuf",
66884          "application/json;stream=watch",
66885          "application/vnd.kubernetes.protobuf;stream=watch"
66886        ],
66887        "responses": {
66888          "200": {
66889            "description": "OK",
66890            "schema": {
66891              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66892            }
66893          },
66894          "401": {
66895            "description": "Unauthorized"
66896          }
66897        },
66898        "schemes": [
66899          "https"
66900        ],
66901        "tags": [
66902          "coordination_v1beta1"
66903        ],
66904        "x-kubernetes-action": "watch",
66905        "x-kubernetes-group-version-kind": {
66906          "group": "coordination.k8s.io",
66907          "kind": "Lease",
66908          "version": "v1beta1"
66909        }
66910      },
66911      "parameters": [
66912        {
66913          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
66914          "in": "query",
66915          "name": "allowWatchBookmarks",
66916          "type": "boolean",
66917          "uniqueItems": true
66918        },
66919        {
66920          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66921          "in": "query",
66922          "name": "continue",
66923          "type": "string",
66924          "uniqueItems": true
66925        },
66926        {
66927          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66928          "in": "query",
66929          "name": "fieldSelector",
66930          "type": "string",
66931          "uniqueItems": true
66932        },
66933        {
66934          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66935          "in": "query",
66936          "name": "labelSelector",
66937          "type": "string",
66938          "uniqueItems": true
66939        },
66940        {
66941          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66942          "in": "query",
66943          "name": "limit",
66944          "type": "integer",
66945          "uniqueItems": true
66946        },
66947        {
66948          "description": "name of the Lease",
66949          "in": "path",
66950          "name": "name",
66951          "required": true,
66952          "type": "string",
66953          "uniqueItems": true
66954        },
66955        {
66956          "description": "object name and auth scope, such as for teams and projects",
66957          "in": "path",
66958          "name": "namespace",
66959          "required": true,
66960          "type": "string",
66961          "uniqueItems": true
66962        },
66963        {
66964          "description": "If 'true', then the output is pretty printed.",
66965          "in": "query",
66966          "name": "pretty",
66967          "type": "string",
66968          "uniqueItems": true
66969        },
66970        {
66971          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66972          "in": "query",
66973          "name": "resourceVersion",
66974          "type": "string",
66975          "uniqueItems": true
66976        },
66977        {
66978          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66979          "in": "query",
66980          "name": "resourceVersionMatch",
66981          "type": "string",
66982          "uniqueItems": true
66983        },
66984        {
66985          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66986          "in": "query",
66987          "name": "timeoutSeconds",
66988          "type": "integer",
66989          "uniqueItems": true
66990        },
66991        {
66992          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66993          "in": "query",
66994          "name": "watch",
66995          "type": "boolean",
66996          "uniqueItems": true
66997        }
66998      ]
66999    },
67000    "/apis/discovery.k8s.io/": {
67001      "get": {
67002        "consumes": [
67003          "application/json",
67004          "application/yaml",
67005          "application/vnd.kubernetes.protobuf"
67006        ],
67007        "description": "get information of a group",
67008        "operationId": "getDiscoveryAPIGroup",
67009        "produces": [
67010          "application/json",
67011          "application/yaml",
67012          "application/vnd.kubernetes.protobuf"
67013        ],
67014        "responses": {
67015          "200": {
67016            "description": "OK",
67017            "schema": {
67018              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
67019            }
67020          },
67021          "401": {
67022            "description": "Unauthorized"
67023          }
67024        },
67025        "schemes": [
67026          "https"
67027        ],
67028        "tags": [
67029          "discovery"
67030        ]
67031      }
67032    },
67033    "/apis/discovery.k8s.io/v1beta1/": {
67034      "get": {
67035        "consumes": [
67036          "application/json",
67037          "application/yaml",
67038          "application/vnd.kubernetes.protobuf"
67039        ],
67040        "description": "get available resources",
67041        "operationId": "getDiscoveryV1beta1APIResources",
67042        "produces": [
67043          "application/json",
67044          "application/yaml",
67045          "application/vnd.kubernetes.protobuf"
67046        ],
67047        "responses": {
67048          "200": {
67049            "description": "OK",
67050            "schema": {
67051              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
67052            }
67053          },
67054          "401": {
67055            "description": "Unauthorized"
67056          }
67057        },
67058        "schemes": [
67059          "https"
67060        ],
67061        "tags": [
67062          "discovery_v1beta1"
67063        ]
67064      }
67065    },
67066    "/apis/discovery.k8s.io/v1beta1/endpointslices": {
67067      "get": {
67068        "consumes": [
67069          "*/*"
67070        ],
67071        "description": "list or watch objects of kind EndpointSlice",
67072        "operationId": "listDiscoveryV1beta1EndpointSliceForAllNamespaces",
67073        "produces": [
67074          "application/json",
67075          "application/yaml",
67076          "application/vnd.kubernetes.protobuf",
67077          "application/json;stream=watch",
67078          "application/vnd.kubernetes.protobuf;stream=watch"
67079        ],
67080        "responses": {
67081          "200": {
67082            "description": "OK",
67083            "schema": {
67084              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
67085            }
67086          },
67087          "401": {
67088            "description": "Unauthorized"
67089          }
67090        },
67091        "schemes": [
67092          "https"
67093        ],
67094        "tags": [
67095          "discovery_v1beta1"
67096        ],
67097        "x-kubernetes-action": "list",
67098        "x-kubernetes-group-version-kind": {
67099          "group": "discovery.k8s.io",
67100          "kind": "EndpointSlice",
67101          "version": "v1beta1"
67102        }
67103      },
67104      "parameters": [
67105        {
67106          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67107          "in": "query",
67108          "name": "allowWatchBookmarks",
67109          "type": "boolean",
67110          "uniqueItems": true
67111        },
67112        {
67113          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67114          "in": "query",
67115          "name": "continue",
67116          "type": "string",
67117          "uniqueItems": true
67118        },
67119        {
67120          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67121          "in": "query",
67122          "name": "fieldSelector",
67123          "type": "string",
67124          "uniqueItems": true
67125        },
67126        {
67127          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67128          "in": "query",
67129          "name": "labelSelector",
67130          "type": "string",
67131          "uniqueItems": true
67132        },
67133        {
67134          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67135          "in": "query",
67136          "name": "limit",
67137          "type": "integer",
67138          "uniqueItems": true
67139        },
67140        {
67141          "description": "If 'true', then the output is pretty printed.",
67142          "in": "query",
67143          "name": "pretty",
67144          "type": "string",
67145          "uniqueItems": true
67146        },
67147        {
67148          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67149          "in": "query",
67150          "name": "resourceVersion",
67151          "type": "string",
67152          "uniqueItems": true
67153        },
67154        {
67155          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67156          "in": "query",
67157          "name": "resourceVersionMatch",
67158          "type": "string",
67159          "uniqueItems": true
67160        },
67161        {
67162          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67163          "in": "query",
67164          "name": "timeoutSeconds",
67165          "type": "integer",
67166          "uniqueItems": true
67167        },
67168        {
67169          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67170          "in": "query",
67171          "name": "watch",
67172          "type": "boolean",
67173          "uniqueItems": true
67174        }
67175      ]
67176    },
67177    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices": {
67178      "delete": {
67179        "consumes": [
67180          "*/*"
67181        ],
67182        "description": "delete collection of EndpointSlice",
67183        "operationId": "deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice",
67184        "parameters": [
67185          {
67186            "in": "body",
67187            "name": "body",
67188            "schema": {
67189              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67190            }
67191          },
67192          {
67193            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67194            "in": "query",
67195            "name": "continue",
67196            "type": "string",
67197            "uniqueItems": true
67198          },
67199          {
67200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67201            "in": "query",
67202            "name": "dryRun",
67203            "type": "string",
67204            "uniqueItems": true
67205          },
67206          {
67207            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67208            "in": "query",
67209            "name": "fieldSelector",
67210            "type": "string",
67211            "uniqueItems": true
67212          },
67213          {
67214            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
67215            "in": "query",
67216            "name": "gracePeriodSeconds",
67217            "type": "integer",
67218            "uniqueItems": true
67219          },
67220          {
67221            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67222            "in": "query",
67223            "name": "labelSelector",
67224            "type": "string",
67225            "uniqueItems": true
67226          },
67227          {
67228            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67229            "in": "query",
67230            "name": "limit",
67231            "type": "integer",
67232            "uniqueItems": true
67233          },
67234          {
67235            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
67236            "in": "query",
67237            "name": "orphanDependents",
67238            "type": "boolean",
67239            "uniqueItems": true
67240          },
67241          {
67242            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
67243            "in": "query",
67244            "name": "propagationPolicy",
67245            "type": "string",
67246            "uniqueItems": true
67247          },
67248          {
67249            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67250            "in": "query",
67251            "name": "resourceVersion",
67252            "type": "string",
67253            "uniqueItems": true
67254          },
67255          {
67256            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67257            "in": "query",
67258            "name": "resourceVersionMatch",
67259            "type": "string",
67260            "uniqueItems": true
67261          },
67262          {
67263            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67264            "in": "query",
67265            "name": "timeoutSeconds",
67266            "type": "integer",
67267            "uniqueItems": true
67268          }
67269        ],
67270        "produces": [
67271          "application/json",
67272          "application/yaml",
67273          "application/vnd.kubernetes.protobuf"
67274        ],
67275        "responses": {
67276          "200": {
67277            "description": "OK",
67278            "schema": {
67279              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67280            }
67281          },
67282          "401": {
67283            "description": "Unauthorized"
67284          }
67285        },
67286        "schemes": [
67287          "https"
67288        ],
67289        "tags": [
67290          "discovery_v1beta1"
67291        ],
67292        "x-kubernetes-action": "deletecollection",
67293        "x-kubernetes-group-version-kind": {
67294          "group": "discovery.k8s.io",
67295          "kind": "EndpointSlice",
67296          "version": "v1beta1"
67297        }
67298      },
67299      "get": {
67300        "consumes": [
67301          "*/*"
67302        ],
67303        "description": "list or watch objects of kind EndpointSlice",
67304        "operationId": "listDiscoveryV1beta1NamespacedEndpointSlice",
67305        "parameters": [
67306          {
67307            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67308            "in": "query",
67309            "name": "allowWatchBookmarks",
67310            "type": "boolean",
67311            "uniqueItems": true
67312          },
67313          {
67314            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67315            "in": "query",
67316            "name": "continue",
67317            "type": "string",
67318            "uniqueItems": true
67319          },
67320          {
67321            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67322            "in": "query",
67323            "name": "fieldSelector",
67324            "type": "string",
67325            "uniqueItems": true
67326          },
67327          {
67328            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67329            "in": "query",
67330            "name": "labelSelector",
67331            "type": "string",
67332            "uniqueItems": true
67333          },
67334          {
67335            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67336            "in": "query",
67337            "name": "limit",
67338            "type": "integer",
67339            "uniqueItems": true
67340          },
67341          {
67342            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67343            "in": "query",
67344            "name": "resourceVersion",
67345            "type": "string",
67346            "uniqueItems": true
67347          },
67348          {
67349            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67350            "in": "query",
67351            "name": "resourceVersionMatch",
67352            "type": "string",
67353            "uniqueItems": true
67354          },
67355          {
67356            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67357            "in": "query",
67358            "name": "timeoutSeconds",
67359            "type": "integer",
67360            "uniqueItems": true
67361          },
67362          {
67363            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67364            "in": "query",
67365            "name": "watch",
67366            "type": "boolean",
67367            "uniqueItems": true
67368          }
67369        ],
67370        "produces": [
67371          "application/json",
67372          "application/yaml",
67373          "application/vnd.kubernetes.protobuf",
67374          "application/json;stream=watch",
67375          "application/vnd.kubernetes.protobuf;stream=watch"
67376        ],
67377        "responses": {
67378          "200": {
67379            "description": "OK",
67380            "schema": {
67381              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
67382            }
67383          },
67384          "401": {
67385            "description": "Unauthorized"
67386          }
67387        },
67388        "schemes": [
67389          "https"
67390        ],
67391        "tags": [
67392          "discovery_v1beta1"
67393        ],
67394        "x-kubernetes-action": "list",
67395        "x-kubernetes-group-version-kind": {
67396          "group": "discovery.k8s.io",
67397          "kind": "EndpointSlice",
67398          "version": "v1beta1"
67399        }
67400      },
67401      "parameters": [
67402        {
67403          "description": "object name and auth scope, such as for teams and projects",
67404          "in": "path",
67405          "name": "namespace",
67406          "required": true,
67407          "type": "string",
67408          "uniqueItems": true
67409        },
67410        {
67411          "description": "If 'true', then the output is pretty printed.",
67412          "in": "query",
67413          "name": "pretty",
67414          "type": "string",
67415          "uniqueItems": true
67416        }
67417      ],
67418      "post": {
67419        "consumes": [
67420          "*/*"
67421        ],
67422        "description": "create an EndpointSlice",
67423        "operationId": "createDiscoveryV1beta1NamespacedEndpointSlice",
67424        "parameters": [
67425          {
67426            "in": "body",
67427            "name": "body",
67428            "required": true,
67429            "schema": {
67430              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67431            }
67432          },
67433          {
67434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67435            "in": "query",
67436            "name": "dryRun",
67437            "type": "string",
67438            "uniqueItems": true
67439          },
67440          {
67441            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67442            "in": "query",
67443            "name": "fieldManager",
67444            "type": "string",
67445            "uniqueItems": true
67446          }
67447        ],
67448        "produces": [
67449          "application/json",
67450          "application/yaml",
67451          "application/vnd.kubernetes.protobuf"
67452        ],
67453        "responses": {
67454          "200": {
67455            "description": "OK",
67456            "schema": {
67457              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67458            }
67459          },
67460          "201": {
67461            "description": "Created",
67462            "schema": {
67463              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67464            }
67465          },
67466          "202": {
67467            "description": "Accepted",
67468            "schema": {
67469              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67470            }
67471          },
67472          "401": {
67473            "description": "Unauthorized"
67474          }
67475        },
67476        "schemes": [
67477          "https"
67478        ],
67479        "tags": [
67480          "discovery_v1beta1"
67481        ],
67482        "x-kubernetes-action": "post",
67483        "x-kubernetes-group-version-kind": {
67484          "group": "discovery.k8s.io",
67485          "kind": "EndpointSlice",
67486          "version": "v1beta1"
67487        }
67488      }
67489    },
67490    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}": {
67491      "delete": {
67492        "consumes": [
67493          "*/*"
67494        ],
67495        "description": "delete an EndpointSlice",
67496        "operationId": "deleteDiscoveryV1beta1NamespacedEndpointSlice",
67497        "parameters": [
67498          {
67499            "in": "body",
67500            "name": "body",
67501            "schema": {
67502              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67503            }
67504          },
67505          {
67506            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67507            "in": "query",
67508            "name": "dryRun",
67509            "type": "string",
67510            "uniqueItems": true
67511          },
67512          {
67513            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
67514            "in": "query",
67515            "name": "gracePeriodSeconds",
67516            "type": "integer",
67517            "uniqueItems": true
67518          },
67519          {
67520            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
67521            "in": "query",
67522            "name": "orphanDependents",
67523            "type": "boolean",
67524            "uniqueItems": true
67525          },
67526          {
67527            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
67528            "in": "query",
67529            "name": "propagationPolicy",
67530            "type": "string",
67531            "uniqueItems": true
67532          }
67533        ],
67534        "produces": [
67535          "application/json",
67536          "application/yaml",
67537          "application/vnd.kubernetes.protobuf"
67538        ],
67539        "responses": {
67540          "200": {
67541            "description": "OK",
67542            "schema": {
67543              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67544            }
67545          },
67546          "202": {
67547            "description": "Accepted",
67548            "schema": {
67549              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67550            }
67551          },
67552          "401": {
67553            "description": "Unauthorized"
67554          }
67555        },
67556        "schemes": [
67557          "https"
67558        ],
67559        "tags": [
67560          "discovery_v1beta1"
67561        ],
67562        "x-kubernetes-action": "delete",
67563        "x-kubernetes-group-version-kind": {
67564          "group": "discovery.k8s.io",
67565          "kind": "EndpointSlice",
67566          "version": "v1beta1"
67567        }
67568      },
67569      "get": {
67570        "consumes": [
67571          "*/*"
67572        ],
67573        "description": "read the specified EndpointSlice",
67574        "operationId": "readDiscoveryV1beta1NamespacedEndpointSlice",
67575        "produces": [
67576          "application/json",
67577          "application/yaml",
67578          "application/vnd.kubernetes.protobuf"
67579        ],
67580        "responses": {
67581          "200": {
67582            "description": "OK",
67583            "schema": {
67584              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67585            }
67586          },
67587          "401": {
67588            "description": "Unauthorized"
67589          }
67590        },
67591        "schemes": [
67592          "https"
67593        ],
67594        "tags": [
67595          "discovery_v1beta1"
67596        ],
67597        "x-kubernetes-action": "get",
67598        "x-kubernetes-group-version-kind": {
67599          "group": "discovery.k8s.io",
67600          "kind": "EndpointSlice",
67601          "version": "v1beta1"
67602        }
67603      },
67604      "parameters": [
67605        {
67606          "description": "name of the EndpointSlice",
67607          "in": "path",
67608          "name": "name",
67609          "required": true,
67610          "type": "string",
67611          "uniqueItems": true
67612        },
67613        {
67614          "description": "object name and auth scope, such as for teams and projects",
67615          "in": "path",
67616          "name": "namespace",
67617          "required": true,
67618          "type": "string",
67619          "uniqueItems": true
67620        },
67621        {
67622          "description": "If 'true', then the output is pretty printed.",
67623          "in": "query",
67624          "name": "pretty",
67625          "type": "string",
67626          "uniqueItems": true
67627        }
67628      ],
67629      "patch": {
67630        "consumes": [
67631          "application/json-patch+json",
67632          "application/merge-patch+json",
67633          "application/strategic-merge-patch+json",
67634          "application/apply-patch+yaml"
67635        ],
67636        "description": "partially update the specified EndpointSlice",
67637        "operationId": "patchDiscoveryV1beta1NamespacedEndpointSlice",
67638        "parameters": [
67639          {
67640            "in": "body",
67641            "name": "body",
67642            "required": true,
67643            "schema": {
67644              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
67645            }
67646          },
67647          {
67648            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67649            "in": "query",
67650            "name": "dryRun",
67651            "type": "string",
67652            "uniqueItems": true
67653          },
67654          {
67655            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
67656            "in": "query",
67657            "name": "fieldManager",
67658            "type": "string",
67659            "uniqueItems": true
67660          },
67661          {
67662            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
67663            "in": "query",
67664            "name": "force",
67665            "type": "boolean",
67666            "uniqueItems": true
67667          }
67668        ],
67669        "produces": [
67670          "application/json",
67671          "application/yaml",
67672          "application/vnd.kubernetes.protobuf"
67673        ],
67674        "responses": {
67675          "200": {
67676            "description": "OK",
67677            "schema": {
67678              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67679            }
67680          },
67681          "401": {
67682            "description": "Unauthorized"
67683          }
67684        },
67685        "schemes": [
67686          "https"
67687        ],
67688        "tags": [
67689          "discovery_v1beta1"
67690        ],
67691        "x-kubernetes-action": "patch",
67692        "x-kubernetes-group-version-kind": {
67693          "group": "discovery.k8s.io",
67694          "kind": "EndpointSlice",
67695          "version": "v1beta1"
67696        }
67697      },
67698      "put": {
67699        "consumes": [
67700          "*/*"
67701        ],
67702        "description": "replace the specified EndpointSlice",
67703        "operationId": "replaceDiscoveryV1beta1NamespacedEndpointSlice",
67704        "parameters": [
67705          {
67706            "in": "body",
67707            "name": "body",
67708            "required": true,
67709            "schema": {
67710              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67711            }
67712          },
67713          {
67714            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67715            "in": "query",
67716            "name": "dryRun",
67717            "type": "string",
67718            "uniqueItems": true
67719          },
67720          {
67721            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67722            "in": "query",
67723            "name": "fieldManager",
67724            "type": "string",
67725            "uniqueItems": true
67726          }
67727        ],
67728        "produces": [
67729          "application/json",
67730          "application/yaml",
67731          "application/vnd.kubernetes.protobuf"
67732        ],
67733        "responses": {
67734          "200": {
67735            "description": "OK",
67736            "schema": {
67737              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67738            }
67739          },
67740          "201": {
67741            "description": "Created",
67742            "schema": {
67743              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
67744            }
67745          },
67746          "401": {
67747            "description": "Unauthorized"
67748          }
67749        },
67750        "schemes": [
67751          "https"
67752        ],
67753        "tags": [
67754          "discovery_v1beta1"
67755        ],
67756        "x-kubernetes-action": "put",
67757        "x-kubernetes-group-version-kind": {
67758          "group": "discovery.k8s.io",
67759          "kind": "EndpointSlice",
67760          "version": "v1beta1"
67761        }
67762      }
67763    },
67764    "/apis/discovery.k8s.io/v1beta1/watch/endpointslices": {
67765      "get": {
67766        "consumes": [
67767          "*/*"
67768        ],
67769        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
67770        "operationId": "watchDiscoveryV1beta1EndpointSliceListForAllNamespaces",
67771        "produces": [
67772          "application/json",
67773          "application/yaml",
67774          "application/vnd.kubernetes.protobuf",
67775          "application/json;stream=watch",
67776          "application/vnd.kubernetes.protobuf;stream=watch"
67777        ],
67778        "responses": {
67779          "200": {
67780            "description": "OK",
67781            "schema": {
67782              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67783            }
67784          },
67785          "401": {
67786            "description": "Unauthorized"
67787          }
67788        },
67789        "schemes": [
67790          "https"
67791        ],
67792        "tags": [
67793          "discovery_v1beta1"
67794        ],
67795        "x-kubernetes-action": "watchlist",
67796        "x-kubernetes-group-version-kind": {
67797          "group": "discovery.k8s.io",
67798          "kind": "EndpointSlice",
67799          "version": "v1beta1"
67800        }
67801      },
67802      "parameters": [
67803        {
67804          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67805          "in": "query",
67806          "name": "allowWatchBookmarks",
67807          "type": "boolean",
67808          "uniqueItems": true
67809        },
67810        {
67811          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67812          "in": "query",
67813          "name": "continue",
67814          "type": "string",
67815          "uniqueItems": true
67816        },
67817        {
67818          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67819          "in": "query",
67820          "name": "fieldSelector",
67821          "type": "string",
67822          "uniqueItems": true
67823        },
67824        {
67825          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67826          "in": "query",
67827          "name": "labelSelector",
67828          "type": "string",
67829          "uniqueItems": true
67830        },
67831        {
67832          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67833          "in": "query",
67834          "name": "limit",
67835          "type": "integer",
67836          "uniqueItems": true
67837        },
67838        {
67839          "description": "If 'true', then the output is pretty printed.",
67840          "in": "query",
67841          "name": "pretty",
67842          "type": "string",
67843          "uniqueItems": true
67844        },
67845        {
67846          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67847          "in": "query",
67848          "name": "resourceVersion",
67849          "type": "string",
67850          "uniqueItems": true
67851        },
67852        {
67853          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67854          "in": "query",
67855          "name": "resourceVersionMatch",
67856          "type": "string",
67857          "uniqueItems": true
67858        },
67859        {
67860          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67861          "in": "query",
67862          "name": "timeoutSeconds",
67863          "type": "integer",
67864          "uniqueItems": true
67865        },
67866        {
67867          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67868          "in": "query",
67869          "name": "watch",
67870          "type": "boolean",
67871          "uniqueItems": true
67872        }
67873      ]
67874    },
67875    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices": {
67876      "get": {
67877        "consumes": [
67878          "*/*"
67879        ],
67880        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
67881        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSliceList",
67882        "produces": [
67883          "application/json",
67884          "application/yaml",
67885          "application/vnd.kubernetes.protobuf",
67886          "application/json;stream=watch",
67887          "application/vnd.kubernetes.protobuf;stream=watch"
67888        ],
67889        "responses": {
67890          "200": {
67891            "description": "OK",
67892            "schema": {
67893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67894            }
67895          },
67896          "401": {
67897            "description": "Unauthorized"
67898          }
67899        },
67900        "schemes": [
67901          "https"
67902        ],
67903        "tags": [
67904          "discovery_v1beta1"
67905        ],
67906        "x-kubernetes-action": "watchlist",
67907        "x-kubernetes-group-version-kind": {
67908          "group": "discovery.k8s.io",
67909          "kind": "EndpointSlice",
67910          "version": "v1beta1"
67911        }
67912      },
67913      "parameters": [
67914        {
67915          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
67916          "in": "query",
67917          "name": "allowWatchBookmarks",
67918          "type": "boolean",
67919          "uniqueItems": true
67920        },
67921        {
67922          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67923          "in": "query",
67924          "name": "continue",
67925          "type": "string",
67926          "uniqueItems": true
67927        },
67928        {
67929          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67930          "in": "query",
67931          "name": "fieldSelector",
67932          "type": "string",
67933          "uniqueItems": true
67934        },
67935        {
67936          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67937          "in": "query",
67938          "name": "labelSelector",
67939          "type": "string",
67940          "uniqueItems": true
67941        },
67942        {
67943          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67944          "in": "query",
67945          "name": "limit",
67946          "type": "integer",
67947          "uniqueItems": true
67948        },
67949        {
67950          "description": "object name and auth scope, such as for teams and projects",
67951          "in": "path",
67952          "name": "namespace",
67953          "required": true,
67954          "type": "string",
67955          "uniqueItems": true
67956        },
67957        {
67958          "description": "If 'true', then the output is pretty printed.",
67959          "in": "query",
67960          "name": "pretty",
67961          "type": "string",
67962          "uniqueItems": true
67963        },
67964        {
67965          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67966          "in": "query",
67967          "name": "resourceVersion",
67968          "type": "string",
67969          "uniqueItems": true
67970        },
67971        {
67972          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67973          "in": "query",
67974          "name": "resourceVersionMatch",
67975          "type": "string",
67976          "uniqueItems": true
67977        },
67978        {
67979          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67980          "in": "query",
67981          "name": "timeoutSeconds",
67982          "type": "integer",
67983          "uniqueItems": true
67984        },
67985        {
67986          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67987          "in": "query",
67988          "name": "watch",
67989          "type": "boolean",
67990          "uniqueItems": true
67991        }
67992      ]
67993    },
67994    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices/{name}": {
67995      "get": {
67996        "consumes": [
67997          "*/*"
67998        ],
67999        "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.",
68000        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSlice",
68001        "produces": [
68002          "application/json",
68003          "application/yaml",
68004          "application/vnd.kubernetes.protobuf",
68005          "application/json;stream=watch",
68006          "application/vnd.kubernetes.protobuf;stream=watch"
68007        ],
68008        "responses": {
68009          "200": {
68010            "description": "OK",
68011            "schema": {
68012              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68013            }
68014          },
68015          "401": {
68016            "description": "Unauthorized"
68017          }
68018        },
68019        "schemes": [
68020          "https"
68021        ],
68022        "tags": [
68023          "discovery_v1beta1"
68024        ],
68025        "x-kubernetes-action": "watch",
68026        "x-kubernetes-group-version-kind": {
68027          "group": "discovery.k8s.io",
68028          "kind": "EndpointSlice",
68029          "version": "v1beta1"
68030        }
68031      },
68032      "parameters": [
68033        {
68034          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68035          "in": "query",
68036          "name": "allowWatchBookmarks",
68037          "type": "boolean",
68038          "uniqueItems": true
68039        },
68040        {
68041          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68042          "in": "query",
68043          "name": "continue",
68044          "type": "string",
68045          "uniqueItems": true
68046        },
68047        {
68048          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68049          "in": "query",
68050          "name": "fieldSelector",
68051          "type": "string",
68052          "uniqueItems": true
68053        },
68054        {
68055          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68056          "in": "query",
68057          "name": "labelSelector",
68058          "type": "string",
68059          "uniqueItems": true
68060        },
68061        {
68062          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68063          "in": "query",
68064          "name": "limit",
68065          "type": "integer",
68066          "uniqueItems": true
68067        },
68068        {
68069          "description": "name of the EndpointSlice",
68070          "in": "path",
68071          "name": "name",
68072          "required": true,
68073          "type": "string",
68074          "uniqueItems": true
68075        },
68076        {
68077          "description": "object name and auth scope, such as for teams and projects",
68078          "in": "path",
68079          "name": "namespace",
68080          "required": true,
68081          "type": "string",
68082          "uniqueItems": true
68083        },
68084        {
68085          "description": "If 'true', then the output is pretty printed.",
68086          "in": "query",
68087          "name": "pretty",
68088          "type": "string",
68089          "uniqueItems": true
68090        },
68091        {
68092          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68093          "in": "query",
68094          "name": "resourceVersion",
68095          "type": "string",
68096          "uniqueItems": true
68097        },
68098        {
68099          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68100          "in": "query",
68101          "name": "resourceVersionMatch",
68102          "type": "string",
68103          "uniqueItems": true
68104        },
68105        {
68106          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68107          "in": "query",
68108          "name": "timeoutSeconds",
68109          "type": "integer",
68110          "uniqueItems": true
68111        },
68112        {
68113          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68114          "in": "query",
68115          "name": "watch",
68116          "type": "boolean",
68117          "uniqueItems": true
68118        }
68119      ]
68120    },
68121    "/apis/events.k8s.io/": {
68122      "get": {
68123        "consumes": [
68124          "application/json",
68125          "application/yaml",
68126          "application/vnd.kubernetes.protobuf"
68127        ],
68128        "description": "get information of a group",
68129        "operationId": "getEventsAPIGroup",
68130        "produces": [
68131          "application/json",
68132          "application/yaml",
68133          "application/vnd.kubernetes.protobuf"
68134        ],
68135        "responses": {
68136          "200": {
68137            "description": "OK",
68138            "schema": {
68139              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
68140            }
68141          },
68142          "401": {
68143            "description": "Unauthorized"
68144          }
68145        },
68146        "schemes": [
68147          "https"
68148        ],
68149        "tags": [
68150          "events"
68151        ]
68152      }
68153    },
68154    "/apis/events.k8s.io/v1/": {
68155      "get": {
68156        "consumes": [
68157          "application/json",
68158          "application/yaml",
68159          "application/vnd.kubernetes.protobuf"
68160        ],
68161        "description": "get available resources",
68162        "operationId": "getEventsV1APIResources",
68163        "produces": [
68164          "application/json",
68165          "application/yaml",
68166          "application/vnd.kubernetes.protobuf"
68167        ],
68168        "responses": {
68169          "200": {
68170            "description": "OK",
68171            "schema": {
68172              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
68173            }
68174          },
68175          "401": {
68176            "description": "Unauthorized"
68177          }
68178        },
68179        "schemes": [
68180          "https"
68181        ],
68182        "tags": [
68183          "events_v1"
68184        ]
68185      }
68186    },
68187    "/apis/events.k8s.io/v1/events": {
68188      "get": {
68189        "consumes": [
68190          "*/*"
68191        ],
68192        "description": "list or watch objects of kind Event",
68193        "operationId": "listEventsV1EventForAllNamespaces",
68194        "produces": [
68195          "application/json",
68196          "application/yaml",
68197          "application/vnd.kubernetes.protobuf",
68198          "application/json;stream=watch",
68199          "application/vnd.kubernetes.protobuf;stream=watch"
68200        ],
68201        "responses": {
68202          "200": {
68203            "description": "OK",
68204            "schema": {
68205              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
68206            }
68207          },
68208          "401": {
68209            "description": "Unauthorized"
68210          }
68211        },
68212        "schemes": [
68213          "https"
68214        ],
68215        "tags": [
68216          "events_v1"
68217        ],
68218        "x-kubernetes-action": "list",
68219        "x-kubernetes-group-version-kind": {
68220          "group": "events.k8s.io",
68221          "kind": "Event",
68222          "version": "v1"
68223        }
68224      },
68225      "parameters": [
68226        {
68227          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68228          "in": "query",
68229          "name": "allowWatchBookmarks",
68230          "type": "boolean",
68231          "uniqueItems": true
68232        },
68233        {
68234          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68235          "in": "query",
68236          "name": "continue",
68237          "type": "string",
68238          "uniqueItems": true
68239        },
68240        {
68241          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68242          "in": "query",
68243          "name": "fieldSelector",
68244          "type": "string",
68245          "uniqueItems": true
68246        },
68247        {
68248          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68249          "in": "query",
68250          "name": "labelSelector",
68251          "type": "string",
68252          "uniqueItems": true
68253        },
68254        {
68255          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68256          "in": "query",
68257          "name": "limit",
68258          "type": "integer",
68259          "uniqueItems": true
68260        },
68261        {
68262          "description": "If 'true', then the output is pretty printed.",
68263          "in": "query",
68264          "name": "pretty",
68265          "type": "string",
68266          "uniqueItems": true
68267        },
68268        {
68269          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68270          "in": "query",
68271          "name": "resourceVersion",
68272          "type": "string",
68273          "uniqueItems": true
68274        },
68275        {
68276          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68277          "in": "query",
68278          "name": "resourceVersionMatch",
68279          "type": "string",
68280          "uniqueItems": true
68281        },
68282        {
68283          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68284          "in": "query",
68285          "name": "timeoutSeconds",
68286          "type": "integer",
68287          "uniqueItems": true
68288        },
68289        {
68290          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68291          "in": "query",
68292          "name": "watch",
68293          "type": "boolean",
68294          "uniqueItems": true
68295        }
68296      ]
68297    },
68298    "/apis/events.k8s.io/v1/namespaces/{namespace}/events": {
68299      "delete": {
68300        "consumes": [
68301          "*/*"
68302        ],
68303        "description": "delete collection of Event",
68304        "operationId": "deleteEventsV1CollectionNamespacedEvent",
68305        "parameters": [
68306          {
68307            "in": "body",
68308            "name": "body",
68309            "schema": {
68310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68311            }
68312          },
68313          {
68314            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68315            "in": "query",
68316            "name": "continue",
68317            "type": "string",
68318            "uniqueItems": true
68319          },
68320          {
68321            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68322            "in": "query",
68323            "name": "dryRun",
68324            "type": "string",
68325            "uniqueItems": true
68326          },
68327          {
68328            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68329            "in": "query",
68330            "name": "fieldSelector",
68331            "type": "string",
68332            "uniqueItems": true
68333          },
68334          {
68335            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68336            "in": "query",
68337            "name": "gracePeriodSeconds",
68338            "type": "integer",
68339            "uniqueItems": true
68340          },
68341          {
68342            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68343            "in": "query",
68344            "name": "labelSelector",
68345            "type": "string",
68346            "uniqueItems": true
68347          },
68348          {
68349            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68350            "in": "query",
68351            "name": "limit",
68352            "type": "integer",
68353            "uniqueItems": true
68354          },
68355          {
68356            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68357            "in": "query",
68358            "name": "orphanDependents",
68359            "type": "boolean",
68360            "uniqueItems": true
68361          },
68362          {
68363            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68364            "in": "query",
68365            "name": "propagationPolicy",
68366            "type": "string",
68367            "uniqueItems": true
68368          },
68369          {
68370            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68371            "in": "query",
68372            "name": "resourceVersion",
68373            "type": "string",
68374            "uniqueItems": true
68375          },
68376          {
68377            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68378            "in": "query",
68379            "name": "resourceVersionMatch",
68380            "type": "string",
68381            "uniqueItems": true
68382          },
68383          {
68384            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68385            "in": "query",
68386            "name": "timeoutSeconds",
68387            "type": "integer",
68388            "uniqueItems": true
68389          }
68390        ],
68391        "produces": [
68392          "application/json",
68393          "application/yaml",
68394          "application/vnd.kubernetes.protobuf"
68395        ],
68396        "responses": {
68397          "200": {
68398            "description": "OK",
68399            "schema": {
68400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68401            }
68402          },
68403          "401": {
68404            "description": "Unauthorized"
68405          }
68406        },
68407        "schemes": [
68408          "https"
68409        ],
68410        "tags": [
68411          "events_v1"
68412        ],
68413        "x-kubernetes-action": "deletecollection",
68414        "x-kubernetes-group-version-kind": {
68415          "group": "events.k8s.io",
68416          "kind": "Event",
68417          "version": "v1"
68418        }
68419      },
68420      "get": {
68421        "consumes": [
68422          "*/*"
68423        ],
68424        "description": "list or watch objects of kind Event",
68425        "operationId": "listEventsV1NamespacedEvent",
68426        "parameters": [
68427          {
68428            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68429            "in": "query",
68430            "name": "allowWatchBookmarks",
68431            "type": "boolean",
68432            "uniqueItems": true
68433          },
68434          {
68435            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68436            "in": "query",
68437            "name": "continue",
68438            "type": "string",
68439            "uniqueItems": true
68440          },
68441          {
68442            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68443            "in": "query",
68444            "name": "fieldSelector",
68445            "type": "string",
68446            "uniqueItems": true
68447          },
68448          {
68449            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68450            "in": "query",
68451            "name": "labelSelector",
68452            "type": "string",
68453            "uniqueItems": true
68454          },
68455          {
68456            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68457            "in": "query",
68458            "name": "limit",
68459            "type": "integer",
68460            "uniqueItems": true
68461          },
68462          {
68463            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68464            "in": "query",
68465            "name": "resourceVersion",
68466            "type": "string",
68467            "uniqueItems": true
68468          },
68469          {
68470            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68471            "in": "query",
68472            "name": "resourceVersionMatch",
68473            "type": "string",
68474            "uniqueItems": true
68475          },
68476          {
68477            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68478            "in": "query",
68479            "name": "timeoutSeconds",
68480            "type": "integer",
68481            "uniqueItems": true
68482          },
68483          {
68484            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68485            "in": "query",
68486            "name": "watch",
68487            "type": "boolean",
68488            "uniqueItems": true
68489          }
68490        ],
68491        "produces": [
68492          "application/json",
68493          "application/yaml",
68494          "application/vnd.kubernetes.protobuf",
68495          "application/json;stream=watch",
68496          "application/vnd.kubernetes.protobuf;stream=watch"
68497        ],
68498        "responses": {
68499          "200": {
68500            "description": "OK",
68501            "schema": {
68502              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
68503            }
68504          },
68505          "401": {
68506            "description": "Unauthorized"
68507          }
68508        },
68509        "schemes": [
68510          "https"
68511        ],
68512        "tags": [
68513          "events_v1"
68514        ],
68515        "x-kubernetes-action": "list",
68516        "x-kubernetes-group-version-kind": {
68517          "group": "events.k8s.io",
68518          "kind": "Event",
68519          "version": "v1"
68520        }
68521      },
68522      "parameters": [
68523        {
68524          "description": "object name and auth scope, such as for teams and projects",
68525          "in": "path",
68526          "name": "namespace",
68527          "required": true,
68528          "type": "string",
68529          "uniqueItems": true
68530        },
68531        {
68532          "description": "If 'true', then the output is pretty printed.",
68533          "in": "query",
68534          "name": "pretty",
68535          "type": "string",
68536          "uniqueItems": true
68537        }
68538      ],
68539      "post": {
68540        "consumes": [
68541          "*/*"
68542        ],
68543        "description": "create an Event",
68544        "operationId": "createEventsV1NamespacedEvent",
68545        "parameters": [
68546          {
68547            "in": "body",
68548            "name": "body",
68549            "required": true,
68550            "schema": {
68551              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68552            }
68553          },
68554          {
68555            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68556            "in": "query",
68557            "name": "dryRun",
68558            "type": "string",
68559            "uniqueItems": true
68560          },
68561          {
68562            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68563            "in": "query",
68564            "name": "fieldManager",
68565            "type": "string",
68566            "uniqueItems": true
68567          }
68568        ],
68569        "produces": [
68570          "application/json",
68571          "application/yaml",
68572          "application/vnd.kubernetes.protobuf"
68573        ],
68574        "responses": {
68575          "200": {
68576            "description": "OK",
68577            "schema": {
68578              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68579            }
68580          },
68581          "201": {
68582            "description": "Created",
68583            "schema": {
68584              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68585            }
68586          },
68587          "202": {
68588            "description": "Accepted",
68589            "schema": {
68590              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68591            }
68592          },
68593          "401": {
68594            "description": "Unauthorized"
68595          }
68596        },
68597        "schemes": [
68598          "https"
68599        ],
68600        "tags": [
68601          "events_v1"
68602        ],
68603        "x-kubernetes-action": "post",
68604        "x-kubernetes-group-version-kind": {
68605          "group": "events.k8s.io",
68606          "kind": "Event",
68607          "version": "v1"
68608        }
68609      }
68610    },
68611    "/apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}": {
68612      "delete": {
68613        "consumes": [
68614          "*/*"
68615        ],
68616        "description": "delete an Event",
68617        "operationId": "deleteEventsV1NamespacedEvent",
68618        "parameters": [
68619          {
68620            "in": "body",
68621            "name": "body",
68622            "schema": {
68623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68624            }
68625          },
68626          {
68627            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68628            "in": "query",
68629            "name": "dryRun",
68630            "type": "string",
68631            "uniqueItems": true
68632          },
68633          {
68634            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68635            "in": "query",
68636            "name": "gracePeriodSeconds",
68637            "type": "integer",
68638            "uniqueItems": true
68639          },
68640          {
68641            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68642            "in": "query",
68643            "name": "orphanDependents",
68644            "type": "boolean",
68645            "uniqueItems": true
68646          },
68647          {
68648            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68649            "in": "query",
68650            "name": "propagationPolicy",
68651            "type": "string",
68652            "uniqueItems": true
68653          }
68654        ],
68655        "produces": [
68656          "application/json",
68657          "application/yaml",
68658          "application/vnd.kubernetes.protobuf"
68659        ],
68660        "responses": {
68661          "200": {
68662            "description": "OK",
68663            "schema": {
68664              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68665            }
68666          },
68667          "202": {
68668            "description": "Accepted",
68669            "schema": {
68670              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68671            }
68672          },
68673          "401": {
68674            "description": "Unauthorized"
68675          }
68676        },
68677        "schemes": [
68678          "https"
68679        ],
68680        "tags": [
68681          "events_v1"
68682        ],
68683        "x-kubernetes-action": "delete",
68684        "x-kubernetes-group-version-kind": {
68685          "group": "events.k8s.io",
68686          "kind": "Event",
68687          "version": "v1"
68688        }
68689      },
68690      "get": {
68691        "consumes": [
68692          "*/*"
68693        ],
68694        "description": "read the specified Event",
68695        "operationId": "readEventsV1NamespacedEvent",
68696        "produces": [
68697          "application/json",
68698          "application/yaml",
68699          "application/vnd.kubernetes.protobuf"
68700        ],
68701        "responses": {
68702          "200": {
68703            "description": "OK",
68704            "schema": {
68705              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68706            }
68707          },
68708          "401": {
68709            "description": "Unauthorized"
68710          }
68711        },
68712        "schemes": [
68713          "https"
68714        ],
68715        "tags": [
68716          "events_v1"
68717        ],
68718        "x-kubernetes-action": "get",
68719        "x-kubernetes-group-version-kind": {
68720          "group": "events.k8s.io",
68721          "kind": "Event",
68722          "version": "v1"
68723        }
68724      },
68725      "parameters": [
68726        {
68727          "description": "name of the Event",
68728          "in": "path",
68729          "name": "name",
68730          "required": true,
68731          "type": "string",
68732          "uniqueItems": true
68733        },
68734        {
68735          "description": "object name and auth scope, such as for teams and projects",
68736          "in": "path",
68737          "name": "namespace",
68738          "required": true,
68739          "type": "string",
68740          "uniqueItems": true
68741        },
68742        {
68743          "description": "If 'true', then the output is pretty printed.",
68744          "in": "query",
68745          "name": "pretty",
68746          "type": "string",
68747          "uniqueItems": true
68748        }
68749      ],
68750      "patch": {
68751        "consumes": [
68752          "application/json-patch+json",
68753          "application/merge-patch+json",
68754          "application/strategic-merge-patch+json",
68755          "application/apply-patch+yaml"
68756        ],
68757        "description": "partially update the specified Event",
68758        "operationId": "patchEventsV1NamespacedEvent",
68759        "parameters": [
68760          {
68761            "in": "body",
68762            "name": "body",
68763            "required": true,
68764            "schema": {
68765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
68766            }
68767          },
68768          {
68769            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68770            "in": "query",
68771            "name": "dryRun",
68772            "type": "string",
68773            "uniqueItems": true
68774          },
68775          {
68776            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
68777            "in": "query",
68778            "name": "fieldManager",
68779            "type": "string",
68780            "uniqueItems": true
68781          },
68782          {
68783            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
68784            "in": "query",
68785            "name": "force",
68786            "type": "boolean",
68787            "uniqueItems": true
68788          }
68789        ],
68790        "produces": [
68791          "application/json",
68792          "application/yaml",
68793          "application/vnd.kubernetes.protobuf"
68794        ],
68795        "responses": {
68796          "200": {
68797            "description": "OK",
68798            "schema": {
68799              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68800            }
68801          },
68802          "401": {
68803            "description": "Unauthorized"
68804          }
68805        },
68806        "schemes": [
68807          "https"
68808        ],
68809        "tags": [
68810          "events_v1"
68811        ],
68812        "x-kubernetes-action": "patch",
68813        "x-kubernetes-group-version-kind": {
68814          "group": "events.k8s.io",
68815          "kind": "Event",
68816          "version": "v1"
68817        }
68818      },
68819      "put": {
68820        "consumes": [
68821          "*/*"
68822        ],
68823        "description": "replace the specified Event",
68824        "operationId": "replaceEventsV1NamespacedEvent",
68825        "parameters": [
68826          {
68827            "in": "body",
68828            "name": "body",
68829            "required": true,
68830            "schema": {
68831              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68832            }
68833          },
68834          {
68835            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68836            "in": "query",
68837            "name": "dryRun",
68838            "type": "string",
68839            "uniqueItems": true
68840          },
68841          {
68842            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68843            "in": "query",
68844            "name": "fieldManager",
68845            "type": "string",
68846            "uniqueItems": true
68847          }
68848        ],
68849        "produces": [
68850          "application/json",
68851          "application/yaml",
68852          "application/vnd.kubernetes.protobuf"
68853        ],
68854        "responses": {
68855          "200": {
68856            "description": "OK",
68857            "schema": {
68858              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68859            }
68860          },
68861          "201": {
68862            "description": "Created",
68863            "schema": {
68864              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
68865            }
68866          },
68867          "401": {
68868            "description": "Unauthorized"
68869          }
68870        },
68871        "schemes": [
68872          "https"
68873        ],
68874        "tags": [
68875          "events_v1"
68876        ],
68877        "x-kubernetes-action": "put",
68878        "x-kubernetes-group-version-kind": {
68879          "group": "events.k8s.io",
68880          "kind": "Event",
68881          "version": "v1"
68882        }
68883      }
68884    },
68885    "/apis/events.k8s.io/v1/watch/events": {
68886      "get": {
68887        "consumes": [
68888          "*/*"
68889        ],
68890        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
68891        "operationId": "watchEventsV1EventListForAllNamespaces",
68892        "produces": [
68893          "application/json",
68894          "application/yaml",
68895          "application/vnd.kubernetes.protobuf",
68896          "application/json;stream=watch",
68897          "application/vnd.kubernetes.protobuf;stream=watch"
68898        ],
68899        "responses": {
68900          "200": {
68901            "description": "OK",
68902            "schema": {
68903              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68904            }
68905          },
68906          "401": {
68907            "description": "Unauthorized"
68908          }
68909        },
68910        "schemes": [
68911          "https"
68912        ],
68913        "tags": [
68914          "events_v1"
68915        ],
68916        "x-kubernetes-action": "watchlist",
68917        "x-kubernetes-group-version-kind": {
68918          "group": "events.k8s.io",
68919          "kind": "Event",
68920          "version": "v1"
68921        }
68922      },
68923      "parameters": [
68924        {
68925          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
68926          "in": "query",
68927          "name": "allowWatchBookmarks",
68928          "type": "boolean",
68929          "uniqueItems": true
68930        },
68931        {
68932          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68933          "in": "query",
68934          "name": "continue",
68935          "type": "string",
68936          "uniqueItems": true
68937        },
68938        {
68939          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68940          "in": "query",
68941          "name": "fieldSelector",
68942          "type": "string",
68943          "uniqueItems": true
68944        },
68945        {
68946          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68947          "in": "query",
68948          "name": "labelSelector",
68949          "type": "string",
68950          "uniqueItems": true
68951        },
68952        {
68953          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68954          "in": "query",
68955          "name": "limit",
68956          "type": "integer",
68957          "uniqueItems": true
68958        },
68959        {
68960          "description": "If 'true', then the output is pretty printed.",
68961          "in": "query",
68962          "name": "pretty",
68963          "type": "string",
68964          "uniqueItems": true
68965        },
68966        {
68967          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68968          "in": "query",
68969          "name": "resourceVersion",
68970          "type": "string",
68971          "uniqueItems": true
68972        },
68973        {
68974          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68975          "in": "query",
68976          "name": "resourceVersionMatch",
68977          "type": "string",
68978          "uniqueItems": true
68979        },
68980        {
68981          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68982          "in": "query",
68983          "name": "timeoutSeconds",
68984          "type": "integer",
68985          "uniqueItems": true
68986        },
68987        {
68988          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68989          "in": "query",
68990          "name": "watch",
68991          "type": "boolean",
68992          "uniqueItems": true
68993        }
68994      ]
68995    },
68996    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events": {
68997      "get": {
68998        "consumes": [
68999          "*/*"
69000        ],
69001        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
69002        "operationId": "watchEventsV1NamespacedEventList",
69003        "produces": [
69004          "application/json",
69005          "application/yaml",
69006          "application/vnd.kubernetes.protobuf",
69007          "application/json;stream=watch",
69008          "application/vnd.kubernetes.protobuf;stream=watch"
69009        ],
69010        "responses": {
69011          "200": {
69012            "description": "OK",
69013            "schema": {
69014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69015            }
69016          },
69017          "401": {
69018            "description": "Unauthorized"
69019          }
69020        },
69021        "schemes": [
69022          "https"
69023        ],
69024        "tags": [
69025          "events_v1"
69026        ],
69027        "x-kubernetes-action": "watchlist",
69028        "x-kubernetes-group-version-kind": {
69029          "group": "events.k8s.io",
69030          "kind": "Event",
69031          "version": "v1"
69032        }
69033      },
69034      "parameters": [
69035        {
69036          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69037          "in": "query",
69038          "name": "allowWatchBookmarks",
69039          "type": "boolean",
69040          "uniqueItems": true
69041        },
69042        {
69043          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69044          "in": "query",
69045          "name": "continue",
69046          "type": "string",
69047          "uniqueItems": true
69048        },
69049        {
69050          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69051          "in": "query",
69052          "name": "fieldSelector",
69053          "type": "string",
69054          "uniqueItems": true
69055        },
69056        {
69057          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69058          "in": "query",
69059          "name": "labelSelector",
69060          "type": "string",
69061          "uniqueItems": true
69062        },
69063        {
69064          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69065          "in": "query",
69066          "name": "limit",
69067          "type": "integer",
69068          "uniqueItems": true
69069        },
69070        {
69071          "description": "object name and auth scope, such as for teams and projects",
69072          "in": "path",
69073          "name": "namespace",
69074          "required": true,
69075          "type": "string",
69076          "uniqueItems": true
69077        },
69078        {
69079          "description": "If 'true', then the output is pretty printed.",
69080          "in": "query",
69081          "name": "pretty",
69082          "type": "string",
69083          "uniqueItems": true
69084        },
69085        {
69086          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69087          "in": "query",
69088          "name": "resourceVersion",
69089          "type": "string",
69090          "uniqueItems": true
69091        },
69092        {
69093          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69094          "in": "query",
69095          "name": "resourceVersionMatch",
69096          "type": "string",
69097          "uniqueItems": true
69098        },
69099        {
69100          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69101          "in": "query",
69102          "name": "timeoutSeconds",
69103          "type": "integer",
69104          "uniqueItems": true
69105        },
69106        {
69107          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69108          "in": "query",
69109          "name": "watch",
69110          "type": "boolean",
69111          "uniqueItems": true
69112        }
69113      ]
69114    },
69115    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events/{name}": {
69116      "get": {
69117        "consumes": [
69118          "*/*"
69119        ],
69120        "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.",
69121        "operationId": "watchEventsV1NamespacedEvent",
69122        "produces": [
69123          "application/json",
69124          "application/yaml",
69125          "application/vnd.kubernetes.protobuf",
69126          "application/json;stream=watch",
69127          "application/vnd.kubernetes.protobuf;stream=watch"
69128        ],
69129        "responses": {
69130          "200": {
69131            "description": "OK",
69132            "schema": {
69133              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69134            }
69135          },
69136          "401": {
69137            "description": "Unauthorized"
69138          }
69139        },
69140        "schemes": [
69141          "https"
69142        ],
69143        "tags": [
69144          "events_v1"
69145        ],
69146        "x-kubernetes-action": "watch",
69147        "x-kubernetes-group-version-kind": {
69148          "group": "events.k8s.io",
69149          "kind": "Event",
69150          "version": "v1"
69151        }
69152      },
69153      "parameters": [
69154        {
69155          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69156          "in": "query",
69157          "name": "allowWatchBookmarks",
69158          "type": "boolean",
69159          "uniqueItems": true
69160        },
69161        {
69162          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69163          "in": "query",
69164          "name": "continue",
69165          "type": "string",
69166          "uniqueItems": true
69167        },
69168        {
69169          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69170          "in": "query",
69171          "name": "fieldSelector",
69172          "type": "string",
69173          "uniqueItems": true
69174        },
69175        {
69176          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69177          "in": "query",
69178          "name": "labelSelector",
69179          "type": "string",
69180          "uniqueItems": true
69181        },
69182        {
69183          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69184          "in": "query",
69185          "name": "limit",
69186          "type": "integer",
69187          "uniqueItems": true
69188        },
69189        {
69190          "description": "name of the Event",
69191          "in": "path",
69192          "name": "name",
69193          "required": true,
69194          "type": "string",
69195          "uniqueItems": true
69196        },
69197        {
69198          "description": "object name and auth scope, such as for teams and projects",
69199          "in": "path",
69200          "name": "namespace",
69201          "required": true,
69202          "type": "string",
69203          "uniqueItems": true
69204        },
69205        {
69206          "description": "If 'true', then the output is pretty printed.",
69207          "in": "query",
69208          "name": "pretty",
69209          "type": "string",
69210          "uniqueItems": true
69211        },
69212        {
69213          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69214          "in": "query",
69215          "name": "resourceVersion",
69216          "type": "string",
69217          "uniqueItems": true
69218        },
69219        {
69220          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69221          "in": "query",
69222          "name": "resourceVersionMatch",
69223          "type": "string",
69224          "uniqueItems": true
69225        },
69226        {
69227          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69228          "in": "query",
69229          "name": "timeoutSeconds",
69230          "type": "integer",
69231          "uniqueItems": true
69232        },
69233        {
69234          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69235          "in": "query",
69236          "name": "watch",
69237          "type": "boolean",
69238          "uniqueItems": true
69239        }
69240      ]
69241    },
69242    "/apis/events.k8s.io/v1beta1/": {
69243      "get": {
69244        "consumes": [
69245          "application/json",
69246          "application/yaml",
69247          "application/vnd.kubernetes.protobuf"
69248        ],
69249        "description": "get available resources",
69250        "operationId": "getEventsV1beta1APIResources",
69251        "produces": [
69252          "application/json",
69253          "application/yaml",
69254          "application/vnd.kubernetes.protobuf"
69255        ],
69256        "responses": {
69257          "200": {
69258            "description": "OK",
69259            "schema": {
69260              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
69261            }
69262          },
69263          "401": {
69264            "description": "Unauthorized"
69265          }
69266        },
69267        "schemes": [
69268          "https"
69269        ],
69270        "tags": [
69271          "events_v1beta1"
69272        ]
69273      }
69274    },
69275    "/apis/events.k8s.io/v1beta1/events": {
69276      "get": {
69277        "consumes": [
69278          "*/*"
69279        ],
69280        "description": "list or watch objects of kind Event",
69281        "operationId": "listEventsV1beta1EventForAllNamespaces",
69282        "produces": [
69283          "application/json",
69284          "application/yaml",
69285          "application/vnd.kubernetes.protobuf",
69286          "application/json;stream=watch",
69287          "application/vnd.kubernetes.protobuf;stream=watch"
69288        ],
69289        "responses": {
69290          "200": {
69291            "description": "OK",
69292            "schema": {
69293              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
69294            }
69295          },
69296          "401": {
69297            "description": "Unauthorized"
69298          }
69299        },
69300        "schemes": [
69301          "https"
69302        ],
69303        "tags": [
69304          "events_v1beta1"
69305        ],
69306        "x-kubernetes-action": "list",
69307        "x-kubernetes-group-version-kind": {
69308          "group": "events.k8s.io",
69309          "kind": "Event",
69310          "version": "v1beta1"
69311        }
69312      },
69313      "parameters": [
69314        {
69315          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69316          "in": "query",
69317          "name": "allowWatchBookmarks",
69318          "type": "boolean",
69319          "uniqueItems": true
69320        },
69321        {
69322          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69323          "in": "query",
69324          "name": "continue",
69325          "type": "string",
69326          "uniqueItems": true
69327        },
69328        {
69329          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69330          "in": "query",
69331          "name": "fieldSelector",
69332          "type": "string",
69333          "uniqueItems": true
69334        },
69335        {
69336          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69337          "in": "query",
69338          "name": "labelSelector",
69339          "type": "string",
69340          "uniqueItems": true
69341        },
69342        {
69343          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69344          "in": "query",
69345          "name": "limit",
69346          "type": "integer",
69347          "uniqueItems": true
69348        },
69349        {
69350          "description": "If 'true', then the output is pretty printed.",
69351          "in": "query",
69352          "name": "pretty",
69353          "type": "string",
69354          "uniqueItems": true
69355        },
69356        {
69357          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69358          "in": "query",
69359          "name": "resourceVersion",
69360          "type": "string",
69361          "uniqueItems": true
69362        },
69363        {
69364          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69365          "in": "query",
69366          "name": "resourceVersionMatch",
69367          "type": "string",
69368          "uniqueItems": true
69369        },
69370        {
69371          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69372          "in": "query",
69373          "name": "timeoutSeconds",
69374          "type": "integer",
69375          "uniqueItems": true
69376        },
69377        {
69378          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69379          "in": "query",
69380          "name": "watch",
69381          "type": "boolean",
69382          "uniqueItems": true
69383        }
69384      ]
69385    },
69386    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events": {
69387      "delete": {
69388        "consumes": [
69389          "*/*"
69390        ],
69391        "description": "delete collection of Event",
69392        "operationId": "deleteEventsV1beta1CollectionNamespacedEvent",
69393        "parameters": [
69394          {
69395            "in": "body",
69396            "name": "body",
69397            "schema": {
69398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69399            }
69400          },
69401          {
69402            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69403            "in": "query",
69404            "name": "continue",
69405            "type": "string",
69406            "uniqueItems": true
69407          },
69408          {
69409            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69410            "in": "query",
69411            "name": "dryRun",
69412            "type": "string",
69413            "uniqueItems": true
69414          },
69415          {
69416            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69417            "in": "query",
69418            "name": "fieldSelector",
69419            "type": "string",
69420            "uniqueItems": true
69421          },
69422          {
69423            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69424            "in": "query",
69425            "name": "gracePeriodSeconds",
69426            "type": "integer",
69427            "uniqueItems": true
69428          },
69429          {
69430            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69431            "in": "query",
69432            "name": "labelSelector",
69433            "type": "string",
69434            "uniqueItems": true
69435          },
69436          {
69437            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69438            "in": "query",
69439            "name": "limit",
69440            "type": "integer",
69441            "uniqueItems": true
69442          },
69443          {
69444            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69445            "in": "query",
69446            "name": "orphanDependents",
69447            "type": "boolean",
69448            "uniqueItems": true
69449          },
69450          {
69451            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69452            "in": "query",
69453            "name": "propagationPolicy",
69454            "type": "string",
69455            "uniqueItems": true
69456          },
69457          {
69458            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69459            "in": "query",
69460            "name": "resourceVersion",
69461            "type": "string",
69462            "uniqueItems": true
69463          },
69464          {
69465            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69466            "in": "query",
69467            "name": "resourceVersionMatch",
69468            "type": "string",
69469            "uniqueItems": true
69470          },
69471          {
69472            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69473            "in": "query",
69474            "name": "timeoutSeconds",
69475            "type": "integer",
69476            "uniqueItems": true
69477          }
69478        ],
69479        "produces": [
69480          "application/json",
69481          "application/yaml",
69482          "application/vnd.kubernetes.protobuf"
69483        ],
69484        "responses": {
69485          "200": {
69486            "description": "OK",
69487            "schema": {
69488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69489            }
69490          },
69491          "401": {
69492            "description": "Unauthorized"
69493          }
69494        },
69495        "schemes": [
69496          "https"
69497        ],
69498        "tags": [
69499          "events_v1beta1"
69500        ],
69501        "x-kubernetes-action": "deletecollection",
69502        "x-kubernetes-group-version-kind": {
69503          "group": "events.k8s.io",
69504          "kind": "Event",
69505          "version": "v1beta1"
69506        }
69507      },
69508      "get": {
69509        "consumes": [
69510          "*/*"
69511        ],
69512        "description": "list or watch objects of kind Event",
69513        "operationId": "listEventsV1beta1NamespacedEvent",
69514        "parameters": [
69515          {
69516            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
69517            "in": "query",
69518            "name": "allowWatchBookmarks",
69519            "type": "boolean",
69520            "uniqueItems": true
69521          },
69522          {
69523            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69524            "in": "query",
69525            "name": "continue",
69526            "type": "string",
69527            "uniqueItems": true
69528          },
69529          {
69530            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69531            "in": "query",
69532            "name": "fieldSelector",
69533            "type": "string",
69534            "uniqueItems": true
69535          },
69536          {
69537            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69538            "in": "query",
69539            "name": "labelSelector",
69540            "type": "string",
69541            "uniqueItems": true
69542          },
69543          {
69544            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69545            "in": "query",
69546            "name": "limit",
69547            "type": "integer",
69548            "uniqueItems": true
69549          },
69550          {
69551            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69552            "in": "query",
69553            "name": "resourceVersion",
69554            "type": "string",
69555            "uniqueItems": true
69556          },
69557          {
69558            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69559            "in": "query",
69560            "name": "resourceVersionMatch",
69561            "type": "string",
69562            "uniqueItems": true
69563          },
69564          {
69565            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69566            "in": "query",
69567            "name": "timeoutSeconds",
69568            "type": "integer",
69569            "uniqueItems": true
69570          },
69571          {
69572            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69573            "in": "query",
69574            "name": "watch",
69575            "type": "boolean",
69576            "uniqueItems": true
69577          }
69578        ],
69579        "produces": [
69580          "application/json",
69581          "application/yaml",
69582          "application/vnd.kubernetes.protobuf",
69583          "application/json;stream=watch",
69584          "application/vnd.kubernetes.protobuf;stream=watch"
69585        ],
69586        "responses": {
69587          "200": {
69588            "description": "OK",
69589            "schema": {
69590              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
69591            }
69592          },
69593          "401": {
69594            "description": "Unauthorized"
69595          }
69596        },
69597        "schemes": [
69598          "https"
69599        ],
69600        "tags": [
69601          "events_v1beta1"
69602        ],
69603        "x-kubernetes-action": "list",
69604        "x-kubernetes-group-version-kind": {
69605          "group": "events.k8s.io",
69606          "kind": "Event",
69607          "version": "v1beta1"
69608        }
69609      },
69610      "parameters": [
69611        {
69612          "description": "object name and auth scope, such as for teams and projects",
69613          "in": "path",
69614          "name": "namespace",
69615          "required": true,
69616          "type": "string",
69617          "uniqueItems": true
69618        },
69619        {
69620          "description": "If 'true', then the output is pretty printed.",
69621          "in": "query",
69622          "name": "pretty",
69623          "type": "string",
69624          "uniqueItems": true
69625        }
69626      ],
69627      "post": {
69628        "consumes": [
69629          "*/*"
69630        ],
69631        "description": "create an Event",
69632        "operationId": "createEventsV1beta1NamespacedEvent",
69633        "parameters": [
69634          {
69635            "in": "body",
69636            "name": "body",
69637            "required": true,
69638            "schema": {
69639              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69640            }
69641          },
69642          {
69643            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69644            "in": "query",
69645            "name": "dryRun",
69646            "type": "string",
69647            "uniqueItems": true
69648          },
69649          {
69650            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69651            "in": "query",
69652            "name": "fieldManager",
69653            "type": "string",
69654            "uniqueItems": true
69655          }
69656        ],
69657        "produces": [
69658          "application/json",
69659          "application/yaml",
69660          "application/vnd.kubernetes.protobuf"
69661        ],
69662        "responses": {
69663          "200": {
69664            "description": "OK",
69665            "schema": {
69666              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69667            }
69668          },
69669          "201": {
69670            "description": "Created",
69671            "schema": {
69672              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69673            }
69674          },
69675          "202": {
69676            "description": "Accepted",
69677            "schema": {
69678              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69679            }
69680          },
69681          "401": {
69682            "description": "Unauthorized"
69683          }
69684        },
69685        "schemes": [
69686          "https"
69687        ],
69688        "tags": [
69689          "events_v1beta1"
69690        ],
69691        "x-kubernetes-action": "post",
69692        "x-kubernetes-group-version-kind": {
69693          "group": "events.k8s.io",
69694          "kind": "Event",
69695          "version": "v1beta1"
69696        }
69697      }
69698    },
69699    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}": {
69700      "delete": {
69701        "consumes": [
69702          "*/*"
69703        ],
69704        "description": "delete an Event",
69705        "operationId": "deleteEventsV1beta1NamespacedEvent",
69706        "parameters": [
69707          {
69708            "in": "body",
69709            "name": "body",
69710            "schema": {
69711              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69712            }
69713          },
69714          {
69715            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69716            "in": "query",
69717            "name": "dryRun",
69718            "type": "string",
69719            "uniqueItems": true
69720          },
69721          {
69722            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69723            "in": "query",
69724            "name": "gracePeriodSeconds",
69725            "type": "integer",
69726            "uniqueItems": true
69727          },
69728          {
69729            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69730            "in": "query",
69731            "name": "orphanDependents",
69732            "type": "boolean",
69733            "uniqueItems": true
69734          },
69735          {
69736            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69737            "in": "query",
69738            "name": "propagationPolicy",
69739            "type": "string",
69740            "uniqueItems": true
69741          }
69742        ],
69743        "produces": [
69744          "application/json",
69745          "application/yaml",
69746          "application/vnd.kubernetes.protobuf"
69747        ],
69748        "responses": {
69749          "200": {
69750            "description": "OK",
69751            "schema": {
69752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69753            }
69754          },
69755          "202": {
69756            "description": "Accepted",
69757            "schema": {
69758              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69759            }
69760          },
69761          "401": {
69762            "description": "Unauthorized"
69763          }
69764        },
69765        "schemes": [
69766          "https"
69767        ],
69768        "tags": [
69769          "events_v1beta1"
69770        ],
69771        "x-kubernetes-action": "delete",
69772        "x-kubernetes-group-version-kind": {
69773          "group": "events.k8s.io",
69774          "kind": "Event",
69775          "version": "v1beta1"
69776        }
69777      },
69778      "get": {
69779        "consumes": [
69780          "*/*"
69781        ],
69782        "description": "read the specified Event",
69783        "operationId": "readEventsV1beta1NamespacedEvent",
69784        "produces": [
69785          "application/json",
69786          "application/yaml",
69787          "application/vnd.kubernetes.protobuf"
69788        ],
69789        "responses": {
69790          "200": {
69791            "description": "OK",
69792            "schema": {
69793              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69794            }
69795          },
69796          "401": {
69797            "description": "Unauthorized"
69798          }
69799        },
69800        "schemes": [
69801          "https"
69802        ],
69803        "tags": [
69804          "events_v1beta1"
69805        ],
69806        "x-kubernetes-action": "get",
69807        "x-kubernetes-group-version-kind": {
69808          "group": "events.k8s.io",
69809          "kind": "Event",
69810          "version": "v1beta1"
69811        }
69812      },
69813      "parameters": [
69814        {
69815          "description": "name of the Event",
69816          "in": "path",
69817          "name": "name",
69818          "required": true,
69819          "type": "string",
69820          "uniqueItems": true
69821        },
69822        {
69823          "description": "object name and auth scope, such as for teams and projects",
69824          "in": "path",
69825          "name": "namespace",
69826          "required": true,
69827          "type": "string",
69828          "uniqueItems": true
69829        },
69830        {
69831          "description": "If 'true', then the output is pretty printed.",
69832          "in": "query",
69833          "name": "pretty",
69834          "type": "string",
69835          "uniqueItems": true
69836        }
69837      ],
69838      "patch": {
69839        "consumes": [
69840          "application/json-patch+json",
69841          "application/merge-patch+json",
69842          "application/strategic-merge-patch+json",
69843          "application/apply-patch+yaml"
69844        ],
69845        "description": "partially update the specified Event",
69846        "operationId": "patchEventsV1beta1NamespacedEvent",
69847        "parameters": [
69848          {
69849            "in": "body",
69850            "name": "body",
69851            "required": true,
69852            "schema": {
69853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
69854            }
69855          },
69856          {
69857            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69858            "in": "query",
69859            "name": "dryRun",
69860            "type": "string",
69861            "uniqueItems": true
69862          },
69863          {
69864            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
69865            "in": "query",
69866            "name": "fieldManager",
69867            "type": "string",
69868            "uniqueItems": true
69869          },
69870          {
69871            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
69872            "in": "query",
69873            "name": "force",
69874            "type": "boolean",
69875            "uniqueItems": true
69876          }
69877        ],
69878        "produces": [
69879          "application/json",
69880          "application/yaml",
69881          "application/vnd.kubernetes.protobuf"
69882        ],
69883        "responses": {
69884          "200": {
69885            "description": "OK",
69886            "schema": {
69887              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69888            }
69889          },
69890          "401": {
69891            "description": "Unauthorized"
69892          }
69893        },
69894        "schemes": [
69895          "https"
69896        ],
69897        "tags": [
69898          "events_v1beta1"
69899        ],
69900        "x-kubernetes-action": "patch",
69901        "x-kubernetes-group-version-kind": {
69902          "group": "events.k8s.io",
69903          "kind": "Event",
69904          "version": "v1beta1"
69905        }
69906      },
69907      "put": {
69908        "consumes": [
69909          "*/*"
69910        ],
69911        "description": "replace the specified Event",
69912        "operationId": "replaceEventsV1beta1NamespacedEvent",
69913        "parameters": [
69914          {
69915            "in": "body",
69916            "name": "body",
69917            "required": true,
69918            "schema": {
69919              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69920            }
69921          },
69922          {
69923            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69924            "in": "query",
69925            "name": "dryRun",
69926            "type": "string",
69927            "uniqueItems": true
69928          },
69929          {
69930            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69931            "in": "query",
69932            "name": "fieldManager",
69933            "type": "string",
69934            "uniqueItems": true
69935          }
69936        ],
69937        "produces": [
69938          "application/json",
69939          "application/yaml",
69940          "application/vnd.kubernetes.protobuf"
69941        ],
69942        "responses": {
69943          "200": {
69944            "description": "OK",
69945            "schema": {
69946              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69947            }
69948          },
69949          "201": {
69950            "description": "Created",
69951            "schema": {
69952              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
69953            }
69954          },
69955          "401": {
69956            "description": "Unauthorized"
69957          }
69958        },
69959        "schemes": [
69960          "https"
69961        ],
69962        "tags": [
69963          "events_v1beta1"
69964        ],
69965        "x-kubernetes-action": "put",
69966        "x-kubernetes-group-version-kind": {
69967          "group": "events.k8s.io",
69968          "kind": "Event",
69969          "version": "v1beta1"
69970        }
69971      }
69972    },
69973    "/apis/events.k8s.io/v1beta1/watch/events": {
69974      "get": {
69975        "consumes": [
69976          "*/*"
69977        ],
69978        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
69979        "operationId": "watchEventsV1beta1EventListForAllNamespaces",
69980        "produces": [
69981          "application/json",
69982          "application/yaml",
69983          "application/vnd.kubernetes.protobuf",
69984          "application/json;stream=watch",
69985          "application/vnd.kubernetes.protobuf;stream=watch"
69986        ],
69987        "responses": {
69988          "200": {
69989            "description": "OK",
69990            "schema": {
69991              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69992            }
69993          },
69994          "401": {
69995            "description": "Unauthorized"
69996          }
69997        },
69998        "schemes": [
69999          "https"
70000        ],
70001        "tags": [
70002          "events_v1beta1"
70003        ],
70004        "x-kubernetes-action": "watchlist",
70005        "x-kubernetes-group-version-kind": {
70006          "group": "events.k8s.io",
70007          "kind": "Event",
70008          "version": "v1beta1"
70009        }
70010      },
70011      "parameters": [
70012        {
70013          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70014          "in": "query",
70015          "name": "allowWatchBookmarks",
70016          "type": "boolean",
70017          "uniqueItems": true
70018        },
70019        {
70020          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70021          "in": "query",
70022          "name": "continue",
70023          "type": "string",
70024          "uniqueItems": true
70025        },
70026        {
70027          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70028          "in": "query",
70029          "name": "fieldSelector",
70030          "type": "string",
70031          "uniqueItems": true
70032        },
70033        {
70034          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70035          "in": "query",
70036          "name": "labelSelector",
70037          "type": "string",
70038          "uniqueItems": true
70039        },
70040        {
70041          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70042          "in": "query",
70043          "name": "limit",
70044          "type": "integer",
70045          "uniqueItems": true
70046        },
70047        {
70048          "description": "If 'true', then the output is pretty printed.",
70049          "in": "query",
70050          "name": "pretty",
70051          "type": "string",
70052          "uniqueItems": true
70053        },
70054        {
70055          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70056          "in": "query",
70057          "name": "resourceVersion",
70058          "type": "string",
70059          "uniqueItems": true
70060        },
70061        {
70062          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70063          "in": "query",
70064          "name": "resourceVersionMatch",
70065          "type": "string",
70066          "uniqueItems": true
70067        },
70068        {
70069          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70070          "in": "query",
70071          "name": "timeoutSeconds",
70072          "type": "integer",
70073          "uniqueItems": true
70074        },
70075        {
70076          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70077          "in": "query",
70078          "name": "watch",
70079          "type": "boolean",
70080          "uniqueItems": true
70081        }
70082      ]
70083    },
70084    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events": {
70085      "get": {
70086        "consumes": [
70087          "*/*"
70088        ],
70089        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
70090        "operationId": "watchEventsV1beta1NamespacedEventList",
70091        "produces": [
70092          "application/json",
70093          "application/yaml",
70094          "application/vnd.kubernetes.protobuf",
70095          "application/json;stream=watch",
70096          "application/vnd.kubernetes.protobuf;stream=watch"
70097        ],
70098        "responses": {
70099          "200": {
70100            "description": "OK",
70101            "schema": {
70102              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70103            }
70104          },
70105          "401": {
70106            "description": "Unauthorized"
70107          }
70108        },
70109        "schemes": [
70110          "https"
70111        ],
70112        "tags": [
70113          "events_v1beta1"
70114        ],
70115        "x-kubernetes-action": "watchlist",
70116        "x-kubernetes-group-version-kind": {
70117          "group": "events.k8s.io",
70118          "kind": "Event",
70119          "version": "v1beta1"
70120        }
70121      },
70122      "parameters": [
70123        {
70124          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70125          "in": "query",
70126          "name": "allowWatchBookmarks",
70127          "type": "boolean",
70128          "uniqueItems": true
70129        },
70130        {
70131          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70132          "in": "query",
70133          "name": "continue",
70134          "type": "string",
70135          "uniqueItems": true
70136        },
70137        {
70138          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70139          "in": "query",
70140          "name": "fieldSelector",
70141          "type": "string",
70142          "uniqueItems": true
70143        },
70144        {
70145          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70146          "in": "query",
70147          "name": "labelSelector",
70148          "type": "string",
70149          "uniqueItems": true
70150        },
70151        {
70152          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70153          "in": "query",
70154          "name": "limit",
70155          "type": "integer",
70156          "uniqueItems": true
70157        },
70158        {
70159          "description": "object name and auth scope, such as for teams and projects",
70160          "in": "path",
70161          "name": "namespace",
70162          "required": true,
70163          "type": "string",
70164          "uniqueItems": true
70165        },
70166        {
70167          "description": "If 'true', then the output is pretty printed.",
70168          "in": "query",
70169          "name": "pretty",
70170          "type": "string",
70171          "uniqueItems": true
70172        },
70173        {
70174          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70175          "in": "query",
70176          "name": "resourceVersion",
70177          "type": "string",
70178          "uniqueItems": true
70179        },
70180        {
70181          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70182          "in": "query",
70183          "name": "resourceVersionMatch",
70184          "type": "string",
70185          "uniqueItems": true
70186        },
70187        {
70188          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70189          "in": "query",
70190          "name": "timeoutSeconds",
70191          "type": "integer",
70192          "uniqueItems": true
70193        },
70194        {
70195          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70196          "in": "query",
70197          "name": "watch",
70198          "type": "boolean",
70199          "uniqueItems": true
70200        }
70201      ]
70202    },
70203    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}": {
70204      "get": {
70205        "consumes": [
70206          "*/*"
70207        ],
70208        "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.",
70209        "operationId": "watchEventsV1beta1NamespacedEvent",
70210        "produces": [
70211          "application/json",
70212          "application/yaml",
70213          "application/vnd.kubernetes.protobuf",
70214          "application/json;stream=watch",
70215          "application/vnd.kubernetes.protobuf;stream=watch"
70216        ],
70217        "responses": {
70218          "200": {
70219            "description": "OK",
70220            "schema": {
70221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70222            }
70223          },
70224          "401": {
70225            "description": "Unauthorized"
70226          }
70227        },
70228        "schemes": [
70229          "https"
70230        ],
70231        "tags": [
70232          "events_v1beta1"
70233        ],
70234        "x-kubernetes-action": "watch",
70235        "x-kubernetes-group-version-kind": {
70236          "group": "events.k8s.io",
70237          "kind": "Event",
70238          "version": "v1beta1"
70239        }
70240      },
70241      "parameters": [
70242        {
70243          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70244          "in": "query",
70245          "name": "allowWatchBookmarks",
70246          "type": "boolean",
70247          "uniqueItems": true
70248        },
70249        {
70250          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70251          "in": "query",
70252          "name": "continue",
70253          "type": "string",
70254          "uniqueItems": true
70255        },
70256        {
70257          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70258          "in": "query",
70259          "name": "fieldSelector",
70260          "type": "string",
70261          "uniqueItems": true
70262        },
70263        {
70264          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70265          "in": "query",
70266          "name": "labelSelector",
70267          "type": "string",
70268          "uniqueItems": true
70269        },
70270        {
70271          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70272          "in": "query",
70273          "name": "limit",
70274          "type": "integer",
70275          "uniqueItems": true
70276        },
70277        {
70278          "description": "name of the Event",
70279          "in": "path",
70280          "name": "name",
70281          "required": true,
70282          "type": "string",
70283          "uniqueItems": true
70284        },
70285        {
70286          "description": "object name and auth scope, such as for teams and projects",
70287          "in": "path",
70288          "name": "namespace",
70289          "required": true,
70290          "type": "string",
70291          "uniqueItems": true
70292        },
70293        {
70294          "description": "If 'true', then the output is pretty printed.",
70295          "in": "query",
70296          "name": "pretty",
70297          "type": "string",
70298          "uniqueItems": true
70299        },
70300        {
70301          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70302          "in": "query",
70303          "name": "resourceVersion",
70304          "type": "string",
70305          "uniqueItems": true
70306        },
70307        {
70308          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70309          "in": "query",
70310          "name": "resourceVersionMatch",
70311          "type": "string",
70312          "uniqueItems": true
70313        },
70314        {
70315          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70316          "in": "query",
70317          "name": "timeoutSeconds",
70318          "type": "integer",
70319          "uniqueItems": true
70320        },
70321        {
70322          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70323          "in": "query",
70324          "name": "watch",
70325          "type": "boolean",
70326          "uniqueItems": true
70327        }
70328      ]
70329    },
70330    "/apis/extensions/": {
70331      "get": {
70332        "consumes": [
70333          "application/json",
70334          "application/yaml",
70335          "application/vnd.kubernetes.protobuf"
70336        ],
70337        "description": "get information of a group",
70338        "operationId": "getExtensionsAPIGroup",
70339        "produces": [
70340          "application/json",
70341          "application/yaml",
70342          "application/vnd.kubernetes.protobuf"
70343        ],
70344        "responses": {
70345          "200": {
70346            "description": "OK",
70347            "schema": {
70348              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
70349            }
70350          },
70351          "401": {
70352            "description": "Unauthorized"
70353          }
70354        },
70355        "schemes": [
70356          "https"
70357        ],
70358        "tags": [
70359          "extensions"
70360        ]
70361      }
70362    },
70363    "/apis/extensions/v1beta1/": {
70364      "get": {
70365        "consumes": [
70366          "application/json",
70367          "application/yaml",
70368          "application/vnd.kubernetes.protobuf"
70369        ],
70370        "description": "get available resources",
70371        "operationId": "getExtensionsV1beta1APIResources",
70372        "produces": [
70373          "application/json",
70374          "application/yaml",
70375          "application/vnd.kubernetes.protobuf"
70376        ],
70377        "responses": {
70378          "200": {
70379            "description": "OK",
70380            "schema": {
70381              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
70382            }
70383          },
70384          "401": {
70385            "description": "Unauthorized"
70386          }
70387        },
70388        "schemes": [
70389          "https"
70390        ],
70391        "tags": [
70392          "extensions_v1beta1"
70393        ]
70394      }
70395    },
70396    "/apis/extensions/v1beta1/ingresses": {
70397      "get": {
70398        "consumes": [
70399          "*/*"
70400        ],
70401        "description": "list or watch objects of kind Ingress",
70402        "operationId": "listExtensionsV1beta1IngressForAllNamespaces",
70403        "produces": [
70404          "application/json",
70405          "application/yaml",
70406          "application/vnd.kubernetes.protobuf",
70407          "application/json;stream=watch",
70408          "application/vnd.kubernetes.protobuf;stream=watch"
70409        ],
70410        "responses": {
70411          "200": {
70412            "description": "OK",
70413            "schema": {
70414              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
70415            }
70416          },
70417          "401": {
70418            "description": "Unauthorized"
70419          }
70420        },
70421        "schemes": [
70422          "https"
70423        ],
70424        "tags": [
70425          "extensions_v1beta1"
70426        ],
70427        "x-kubernetes-action": "list",
70428        "x-kubernetes-group-version-kind": {
70429          "group": "extensions",
70430          "kind": "Ingress",
70431          "version": "v1beta1"
70432        }
70433      },
70434      "parameters": [
70435        {
70436          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70437          "in": "query",
70438          "name": "allowWatchBookmarks",
70439          "type": "boolean",
70440          "uniqueItems": true
70441        },
70442        {
70443          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70444          "in": "query",
70445          "name": "continue",
70446          "type": "string",
70447          "uniqueItems": true
70448        },
70449        {
70450          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70451          "in": "query",
70452          "name": "fieldSelector",
70453          "type": "string",
70454          "uniqueItems": true
70455        },
70456        {
70457          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70458          "in": "query",
70459          "name": "labelSelector",
70460          "type": "string",
70461          "uniqueItems": true
70462        },
70463        {
70464          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70465          "in": "query",
70466          "name": "limit",
70467          "type": "integer",
70468          "uniqueItems": true
70469        },
70470        {
70471          "description": "If 'true', then the output is pretty printed.",
70472          "in": "query",
70473          "name": "pretty",
70474          "type": "string",
70475          "uniqueItems": true
70476        },
70477        {
70478          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70479          "in": "query",
70480          "name": "resourceVersion",
70481          "type": "string",
70482          "uniqueItems": true
70483        },
70484        {
70485          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70486          "in": "query",
70487          "name": "resourceVersionMatch",
70488          "type": "string",
70489          "uniqueItems": true
70490        },
70491        {
70492          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70493          "in": "query",
70494          "name": "timeoutSeconds",
70495          "type": "integer",
70496          "uniqueItems": true
70497        },
70498        {
70499          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70500          "in": "query",
70501          "name": "watch",
70502          "type": "boolean",
70503          "uniqueItems": true
70504        }
70505      ]
70506    },
70507    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses": {
70508      "delete": {
70509        "consumes": [
70510          "*/*"
70511        ],
70512        "description": "delete collection of Ingress",
70513        "operationId": "deleteExtensionsV1beta1CollectionNamespacedIngress",
70514        "parameters": [
70515          {
70516            "in": "body",
70517            "name": "body",
70518            "schema": {
70519              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70520            }
70521          },
70522          {
70523            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70524            "in": "query",
70525            "name": "continue",
70526            "type": "string",
70527            "uniqueItems": true
70528          },
70529          {
70530            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70531            "in": "query",
70532            "name": "dryRun",
70533            "type": "string",
70534            "uniqueItems": true
70535          },
70536          {
70537            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70538            "in": "query",
70539            "name": "fieldSelector",
70540            "type": "string",
70541            "uniqueItems": true
70542          },
70543          {
70544            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70545            "in": "query",
70546            "name": "gracePeriodSeconds",
70547            "type": "integer",
70548            "uniqueItems": true
70549          },
70550          {
70551            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70552            "in": "query",
70553            "name": "labelSelector",
70554            "type": "string",
70555            "uniqueItems": true
70556          },
70557          {
70558            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70559            "in": "query",
70560            "name": "limit",
70561            "type": "integer",
70562            "uniqueItems": true
70563          },
70564          {
70565            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70566            "in": "query",
70567            "name": "orphanDependents",
70568            "type": "boolean",
70569            "uniqueItems": true
70570          },
70571          {
70572            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70573            "in": "query",
70574            "name": "propagationPolicy",
70575            "type": "string",
70576            "uniqueItems": true
70577          },
70578          {
70579            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70580            "in": "query",
70581            "name": "resourceVersion",
70582            "type": "string",
70583            "uniqueItems": true
70584          },
70585          {
70586            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70587            "in": "query",
70588            "name": "resourceVersionMatch",
70589            "type": "string",
70590            "uniqueItems": true
70591          },
70592          {
70593            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70594            "in": "query",
70595            "name": "timeoutSeconds",
70596            "type": "integer",
70597            "uniqueItems": true
70598          }
70599        ],
70600        "produces": [
70601          "application/json",
70602          "application/yaml",
70603          "application/vnd.kubernetes.protobuf"
70604        ],
70605        "responses": {
70606          "200": {
70607            "description": "OK",
70608            "schema": {
70609              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70610            }
70611          },
70612          "401": {
70613            "description": "Unauthorized"
70614          }
70615        },
70616        "schemes": [
70617          "https"
70618        ],
70619        "tags": [
70620          "extensions_v1beta1"
70621        ],
70622        "x-kubernetes-action": "deletecollection",
70623        "x-kubernetes-group-version-kind": {
70624          "group": "extensions",
70625          "kind": "Ingress",
70626          "version": "v1beta1"
70627        }
70628      },
70629      "get": {
70630        "consumes": [
70631          "*/*"
70632        ],
70633        "description": "list or watch objects of kind Ingress",
70634        "operationId": "listExtensionsV1beta1NamespacedIngress",
70635        "parameters": [
70636          {
70637            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
70638            "in": "query",
70639            "name": "allowWatchBookmarks",
70640            "type": "boolean",
70641            "uniqueItems": true
70642          },
70643          {
70644            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70645            "in": "query",
70646            "name": "continue",
70647            "type": "string",
70648            "uniqueItems": true
70649          },
70650          {
70651            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70652            "in": "query",
70653            "name": "fieldSelector",
70654            "type": "string",
70655            "uniqueItems": true
70656          },
70657          {
70658            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70659            "in": "query",
70660            "name": "labelSelector",
70661            "type": "string",
70662            "uniqueItems": true
70663          },
70664          {
70665            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70666            "in": "query",
70667            "name": "limit",
70668            "type": "integer",
70669            "uniqueItems": true
70670          },
70671          {
70672            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70673            "in": "query",
70674            "name": "resourceVersion",
70675            "type": "string",
70676            "uniqueItems": true
70677          },
70678          {
70679            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70680            "in": "query",
70681            "name": "resourceVersionMatch",
70682            "type": "string",
70683            "uniqueItems": true
70684          },
70685          {
70686            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70687            "in": "query",
70688            "name": "timeoutSeconds",
70689            "type": "integer",
70690            "uniqueItems": true
70691          },
70692          {
70693            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70694            "in": "query",
70695            "name": "watch",
70696            "type": "boolean",
70697            "uniqueItems": true
70698          }
70699        ],
70700        "produces": [
70701          "application/json",
70702          "application/yaml",
70703          "application/vnd.kubernetes.protobuf",
70704          "application/json;stream=watch",
70705          "application/vnd.kubernetes.protobuf;stream=watch"
70706        ],
70707        "responses": {
70708          "200": {
70709            "description": "OK",
70710            "schema": {
70711              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
70712            }
70713          },
70714          "401": {
70715            "description": "Unauthorized"
70716          }
70717        },
70718        "schemes": [
70719          "https"
70720        ],
70721        "tags": [
70722          "extensions_v1beta1"
70723        ],
70724        "x-kubernetes-action": "list",
70725        "x-kubernetes-group-version-kind": {
70726          "group": "extensions",
70727          "kind": "Ingress",
70728          "version": "v1beta1"
70729        }
70730      },
70731      "parameters": [
70732        {
70733          "description": "object name and auth scope, such as for teams and projects",
70734          "in": "path",
70735          "name": "namespace",
70736          "required": true,
70737          "type": "string",
70738          "uniqueItems": true
70739        },
70740        {
70741          "description": "If 'true', then the output is pretty printed.",
70742          "in": "query",
70743          "name": "pretty",
70744          "type": "string",
70745          "uniqueItems": true
70746        }
70747      ],
70748      "post": {
70749        "consumes": [
70750          "*/*"
70751        ],
70752        "description": "create an Ingress",
70753        "operationId": "createExtensionsV1beta1NamespacedIngress",
70754        "parameters": [
70755          {
70756            "in": "body",
70757            "name": "body",
70758            "required": true,
70759            "schema": {
70760              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70761            }
70762          },
70763          {
70764            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70765            "in": "query",
70766            "name": "dryRun",
70767            "type": "string",
70768            "uniqueItems": true
70769          },
70770          {
70771            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
70772            "in": "query",
70773            "name": "fieldManager",
70774            "type": "string",
70775            "uniqueItems": true
70776          }
70777        ],
70778        "produces": [
70779          "application/json",
70780          "application/yaml",
70781          "application/vnd.kubernetes.protobuf"
70782        ],
70783        "responses": {
70784          "200": {
70785            "description": "OK",
70786            "schema": {
70787              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70788            }
70789          },
70790          "201": {
70791            "description": "Created",
70792            "schema": {
70793              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70794            }
70795          },
70796          "202": {
70797            "description": "Accepted",
70798            "schema": {
70799              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70800            }
70801          },
70802          "401": {
70803            "description": "Unauthorized"
70804          }
70805        },
70806        "schemes": [
70807          "https"
70808        ],
70809        "tags": [
70810          "extensions_v1beta1"
70811        ],
70812        "x-kubernetes-action": "post",
70813        "x-kubernetes-group-version-kind": {
70814          "group": "extensions",
70815          "kind": "Ingress",
70816          "version": "v1beta1"
70817        }
70818      }
70819    },
70820    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}": {
70821      "delete": {
70822        "consumes": [
70823          "*/*"
70824        ],
70825        "description": "delete an Ingress",
70826        "operationId": "deleteExtensionsV1beta1NamespacedIngress",
70827        "parameters": [
70828          {
70829            "in": "body",
70830            "name": "body",
70831            "schema": {
70832              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70833            }
70834          },
70835          {
70836            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70837            "in": "query",
70838            "name": "dryRun",
70839            "type": "string",
70840            "uniqueItems": true
70841          },
70842          {
70843            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70844            "in": "query",
70845            "name": "gracePeriodSeconds",
70846            "type": "integer",
70847            "uniqueItems": true
70848          },
70849          {
70850            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70851            "in": "query",
70852            "name": "orphanDependents",
70853            "type": "boolean",
70854            "uniqueItems": true
70855          },
70856          {
70857            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70858            "in": "query",
70859            "name": "propagationPolicy",
70860            "type": "string",
70861            "uniqueItems": true
70862          }
70863        ],
70864        "produces": [
70865          "application/json",
70866          "application/yaml",
70867          "application/vnd.kubernetes.protobuf"
70868        ],
70869        "responses": {
70870          "200": {
70871            "description": "OK",
70872            "schema": {
70873              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70874            }
70875          },
70876          "202": {
70877            "description": "Accepted",
70878            "schema": {
70879              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70880            }
70881          },
70882          "401": {
70883            "description": "Unauthorized"
70884          }
70885        },
70886        "schemes": [
70887          "https"
70888        ],
70889        "tags": [
70890          "extensions_v1beta1"
70891        ],
70892        "x-kubernetes-action": "delete",
70893        "x-kubernetes-group-version-kind": {
70894          "group": "extensions",
70895          "kind": "Ingress",
70896          "version": "v1beta1"
70897        }
70898      },
70899      "get": {
70900        "consumes": [
70901          "*/*"
70902        ],
70903        "description": "read the specified Ingress",
70904        "operationId": "readExtensionsV1beta1NamespacedIngress",
70905        "produces": [
70906          "application/json",
70907          "application/yaml",
70908          "application/vnd.kubernetes.protobuf"
70909        ],
70910        "responses": {
70911          "200": {
70912            "description": "OK",
70913            "schema": {
70914              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
70915            }
70916          },
70917          "401": {
70918            "description": "Unauthorized"
70919          }
70920        },
70921        "schemes": [
70922          "https"
70923        ],
70924        "tags": [
70925          "extensions_v1beta1"
70926        ],
70927        "x-kubernetes-action": "get",
70928        "x-kubernetes-group-version-kind": {
70929          "group": "extensions",
70930          "kind": "Ingress",
70931          "version": "v1beta1"
70932        }
70933      },
70934      "parameters": [
70935        {
70936          "description": "name of the Ingress",
70937          "in": "path",
70938          "name": "name",
70939          "required": true,
70940          "type": "string",
70941          "uniqueItems": true
70942        },
70943        {
70944          "description": "object name and auth scope, such as for teams and projects",
70945          "in": "path",
70946          "name": "namespace",
70947          "required": true,
70948          "type": "string",
70949          "uniqueItems": true
70950        },
70951        {
70952          "description": "If 'true', then the output is pretty printed.",
70953          "in": "query",
70954          "name": "pretty",
70955          "type": "string",
70956          "uniqueItems": true
70957        }
70958      ],
70959      "patch": {
70960        "consumes": [
70961          "application/json-patch+json",
70962          "application/merge-patch+json",
70963          "application/strategic-merge-patch+json",
70964          "application/apply-patch+yaml"
70965        ],
70966        "description": "partially update the specified Ingress",
70967        "operationId": "patchExtensionsV1beta1NamespacedIngress",
70968        "parameters": [
70969          {
70970            "in": "body",
70971            "name": "body",
70972            "required": true,
70973            "schema": {
70974              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
70975            }
70976          },
70977          {
70978            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70979            "in": "query",
70980            "name": "dryRun",
70981            "type": "string",
70982            "uniqueItems": true
70983          },
70984          {
70985            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
70986            "in": "query",
70987            "name": "fieldManager",
70988            "type": "string",
70989            "uniqueItems": true
70990          },
70991          {
70992            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
70993            "in": "query",
70994            "name": "force",
70995            "type": "boolean",
70996            "uniqueItems": true
70997          }
70998        ],
70999        "produces": [
71000          "application/json",
71001          "application/yaml",
71002          "application/vnd.kubernetes.protobuf"
71003        ],
71004        "responses": {
71005          "200": {
71006            "description": "OK",
71007            "schema": {
71008              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71009            }
71010          },
71011          "401": {
71012            "description": "Unauthorized"
71013          }
71014        },
71015        "schemes": [
71016          "https"
71017        ],
71018        "tags": [
71019          "extensions_v1beta1"
71020        ],
71021        "x-kubernetes-action": "patch",
71022        "x-kubernetes-group-version-kind": {
71023          "group": "extensions",
71024          "kind": "Ingress",
71025          "version": "v1beta1"
71026        }
71027      },
71028      "put": {
71029        "consumes": [
71030          "*/*"
71031        ],
71032        "description": "replace the specified Ingress",
71033        "operationId": "replaceExtensionsV1beta1NamespacedIngress",
71034        "parameters": [
71035          {
71036            "in": "body",
71037            "name": "body",
71038            "required": true,
71039            "schema": {
71040              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71041            }
71042          },
71043          {
71044            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71045            "in": "query",
71046            "name": "dryRun",
71047            "type": "string",
71048            "uniqueItems": true
71049          },
71050          {
71051            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71052            "in": "query",
71053            "name": "fieldManager",
71054            "type": "string",
71055            "uniqueItems": true
71056          }
71057        ],
71058        "produces": [
71059          "application/json",
71060          "application/yaml",
71061          "application/vnd.kubernetes.protobuf"
71062        ],
71063        "responses": {
71064          "200": {
71065            "description": "OK",
71066            "schema": {
71067              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71068            }
71069          },
71070          "201": {
71071            "description": "Created",
71072            "schema": {
71073              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71074            }
71075          },
71076          "401": {
71077            "description": "Unauthorized"
71078          }
71079        },
71080        "schemes": [
71081          "https"
71082        ],
71083        "tags": [
71084          "extensions_v1beta1"
71085        ],
71086        "x-kubernetes-action": "put",
71087        "x-kubernetes-group-version-kind": {
71088          "group": "extensions",
71089          "kind": "Ingress",
71090          "version": "v1beta1"
71091        }
71092      }
71093    },
71094    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
71095      "get": {
71096        "consumes": [
71097          "*/*"
71098        ],
71099        "description": "read status of the specified Ingress",
71100        "operationId": "readExtensionsV1beta1NamespacedIngressStatus",
71101        "produces": [
71102          "application/json",
71103          "application/yaml",
71104          "application/vnd.kubernetes.protobuf"
71105        ],
71106        "responses": {
71107          "200": {
71108            "description": "OK",
71109            "schema": {
71110              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71111            }
71112          },
71113          "401": {
71114            "description": "Unauthorized"
71115          }
71116        },
71117        "schemes": [
71118          "https"
71119        ],
71120        "tags": [
71121          "extensions_v1beta1"
71122        ],
71123        "x-kubernetes-action": "get",
71124        "x-kubernetes-group-version-kind": {
71125          "group": "extensions",
71126          "kind": "Ingress",
71127          "version": "v1beta1"
71128        }
71129      },
71130      "parameters": [
71131        {
71132          "description": "name of the Ingress",
71133          "in": "path",
71134          "name": "name",
71135          "required": true,
71136          "type": "string",
71137          "uniqueItems": true
71138        },
71139        {
71140          "description": "object name and auth scope, such as for teams and projects",
71141          "in": "path",
71142          "name": "namespace",
71143          "required": true,
71144          "type": "string",
71145          "uniqueItems": true
71146        },
71147        {
71148          "description": "If 'true', then the output is pretty printed.",
71149          "in": "query",
71150          "name": "pretty",
71151          "type": "string",
71152          "uniqueItems": true
71153        }
71154      ],
71155      "patch": {
71156        "consumes": [
71157          "application/json-patch+json",
71158          "application/merge-patch+json",
71159          "application/strategic-merge-patch+json",
71160          "application/apply-patch+yaml"
71161        ],
71162        "description": "partially update status of the specified Ingress",
71163        "operationId": "patchExtensionsV1beta1NamespacedIngressStatus",
71164        "parameters": [
71165          {
71166            "in": "body",
71167            "name": "body",
71168            "required": true,
71169            "schema": {
71170              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71171            }
71172          },
71173          {
71174            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71175            "in": "query",
71176            "name": "dryRun",
71177            "type": "string",
71178            "uniqueItems": true
71179          },
71180          {
71181            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
71182            "in": "query",
71183            "name": "fieldManager",
71184            "type": "string",
71185            "uniqueItems": true
71186          },
71187          {
71188            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
71189            "in": "query",
71190            "name": "force",
71191            "type": "boolean",
71192            "uniqueItems": true
71193          }
71194        ],
71195        "produces": [
71196          "application/json",
71197          "application/yaml",
71198          "application/vnd.kubernetes.protobuf"
71199        ],
71200        "responses": {
71201          "200": {
71202            "description": "OK",
71203            "schema": {
71204              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71205            }
71206          },
71207          "401": {
71208            "description": "Unauthorized"
71209          }
71210        },
71211        "schemes": [
71212          "https"
71213        ],
71214        "tags": [
71215          "extensions_v1beta1"
71216        ],
71217        "x-kubernetes-action": "patch",
71218        "x-kubernetes-group-version-kind": {
71219          "group": "extensions",
71220          "kind": "Ingress",
71221          "version": "v1beta1"
71222        }
71223      },
71224      "put": {
71225        "consumes": [
71226          "*/*"
71227        ],
71228        "description": "replace status of the specified Ingress",
71229        "operationId": "replaceExtensionsV1beta1NamespacedIngressStatus",
71230        "parameters": [
71231          {
71232            "in": "body",
71233            "name": "body",
71234            "required": true,
71235            "schema": {
71236              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71237            }
71238          },
71239          {
71240            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71241            "in": "query",
71242            "name": "dryRun",
71243            "type": "string",
71244            "uniqueItems": true
71245          },
71246          {
71247            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71248            "in": "query",
71249            "name": "fieldManager",
71250            "type": "string",
71251            "uniqueItems": true
71252          }
71253        ],
71254        "produces": [
71255          "application/json",
71256          "application/yaml",
71257          "application/vnd.kubernetes.protobuf"
71258        ],
71259        "responses": {
71260          "200": {
71261            "description": "OK",
71262            "schema": {
71263              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71264            }
71265          },
71266          "201": {
71267            "description": "Created",
71268            "schema": {
71269              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
71270            }
71271          },
71272          "401": {
71273            "description": "Unauthorized"
71274          }
71275        },
71276        "schemes": [
71277          "https"
71278        ],
71279        "tags": [
71280          "extensions_v1beta1"
71281        ],
71282        "x-kubernetes-action": "put",
71283        "x-kubernetes-group-version-kind": {
71284          "group": "extensions",
71285          "kind": "Ingress",
71286          "version": "v1beta1"
71287        }
71288      }
71289    },
71290    "/apis/extensions/v1beta1/watch/ingresses": {
71291      "get": {
71292        "consumes": [
71293          "*/*"
71294        ],
71295        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
71296        "operationId": "watchExtensionsV1beta1IngressListForAllNamespaces",
71297        "produces": [
71298          "application/json",
71299          "application/yaml",
71300          "application/vnd.kubernetes.protobuf",
71301          "application/json;stream=watch",
71302          "application/vnd.kubernetes.protobuf;stream=watch"
71303        ],
71304        "responses": {
71305          "200": {
71306            "description": "OK",
71307            "schema": {
71308              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71309            }
71310          },
71311          "401": {
71312            "description": "Unauthorized"
71313          }
71314        },
71315        "schemes": [
71316          "https"
71317        ],
71318        "tags": [
71319          "extensions_v1beta1"
71320        ],
71321        "x-kubernetes-action": "watchlist",
71322        "x-kubernetes-group-version-kind": {
71323          "group": "extensions",
71324          "kind": "Ingress",
71325          "version": "v1beta1"
71326        }
71327      },
71328      "parameters": [
71329        {
71330          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71331          "in": "query",
71332          "name": "allowWatchBookmarks",
71333          "type": "boolean",
71334          "uniqueItems": true
71335        },
71336        {
71337          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71338          "in": "query",
71339          "name": "continue",
71340          "type": "string",
71341          "uniqueItems": true
71342        },
71343        {
71344          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71345          "in": "query",
71346          "name": "fieldSelector",
71347          "type": "string",
71348          "uniqueItems": true
71349        },
71350        {
71351          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71352          "in": "query",
71353          "name": "labelSelector",
71354          "type": "string",
71355          "uniqueItems": true
71356        },
71357        {
71358          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71359          "in": "query",
71360          "name": "limit",
71361          "type": "integer",
71362          "uniqueItems": true
71363        },
71364        {
71365          "description": "If 'true', then the output is pretty printed.",
71366          "in": "query",
71367          "name": "pretty",
71368          "type": "string",
71369          "uniqueItems": true
71370        },
71371        {
71372          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71373          "in": "query",
71374          "name": "resourceVersion",
71375          "type": "string",
71376          "uniqueItems": true
71377        },
71378        {
71379          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71380          "in": "query",
71381          "name": "resourceVersionMatch",
71382          "type": "string",
71383          "uniqueItems": true
71384        },
71385        {
71386          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71387          "in": "query",
71388          "name": "timeoutSeconds",
71389          "type": "integer",
71390          "uniqueItems": true
71391        },
71392        {
71393          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71394          "in": "query",
71395          "name": "watch",
71396          "type": "boolean",
71397          "uniqueItems": true
71398        }
71399      ]
71400    },
71401    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses": {
71402      "get": {
71403        "consumes": [
71404          "*/*"
71405        ],
71406        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
71407        "operationId": "watchExtensionsV1beta1NamespacedIngressList",
71408        "produces": [
71409          "application/json",
71410          "application/yaml",
71411          "application/vnd.kubernetes.protobuf",
71412          "application/json;stream=watch",
71413          "application/vnd.kubernetes.protobuf;stream=watch"
71414        ],
71415        "responses": {
71416          "200": {
71417            "description": "OK",
71418            "schema": {
71419              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71420            }
71421          },
71422          "401": {
71423            "description": "Unauthorized"
71424          }
71425        },
71426        "schemes": [
71427          "https"
71428        ],
71429        "tags": [
71430          "extensions_v1beta1"
71431        ],
71432        "x-kubernetes-action": "watchlist",
71433        "x-kubernetes-group-version-kind": {
71434          "group": "extensions",
71435          "kind": "Ingress",
71436          "version": "v1beta1"
71437        }
71438      },
71439      "parameters": [
71440        {
71441          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71442          "in": "query",
71443          "name": "allowWatchBookmarks",
71444          "type": "boolean",
71445          "uniqueItems": true
71446        },
71447        {
71448          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71449          "in": "query",
71450          "name": "continue",
71451          "type": "string",
71452          "uniqueItems": true
71453        },
71454        {
71455          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71456          "in": "query",
71457          "name": "fieldSelector",
71458          "type": "string",
71459          "uniqueItems": true
71460        },
71461        {
71462          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71463          "in": "query",
71464          "name": "labelSelector",
71465          "type": "string",
71466          "uniqueItems": true
71467        },
71468        {
71469          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71470          "in": "query",
71471          "name": "limit",
71472          "type": "integer",
71473          "uniqueItems": true
71474        },
71475        {
71476          "description": "object name and auth scope, such as for teams and projects",
71477          "in": "path",
71478          "name": "namespace",
71479          "required": true,
71480          "type": "string",
71481          "uniqueItems": true
71482        },
71483        {
71484          "description": "If 'true', then the output is pretty printed.",
71485          "in": "query",
71486          "name": "pretty",
71487          "type": "string",
71488          "uniqueItems": true
71489        },
71490        {
71491          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71492          "in": "query",
71493          "name": "resourceVersion",
71494          "type": "string",
71495          "uniqueItems": true
71496        },
71497        {
71498          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71499          "in": "query",
71500          "name": "resourceVersionMatch",
71501          "type": "string",
71502          "uniqueItems": true
71503        },
71504        {
71505          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71506          "in": "query",
71507          "name": "timeoutSeconds",
71508          "type": "integer",
71509          "uniqueItems": true
71510        },
71511        {
71512          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71513          "in": "query",
71514          "name": "watch",
71515          "type": "boolean",
71516          "uniqueItems": true
71517        }
71518      ]
71519    },
71520    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
71521      "get": {
71522        "consumes": [
71523          "*/*"
71524        ],
71525        "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.",
71526        "operationId": "watchExtensionsV1beta1NamespacedIngress",
71527        "produces": [
71528          "application/json",
71529          "application/yaml",
71530          "application/vnd.kubernetes.protobuf",
71531          "application/json;stream=watch",
71532          "application/vnd.kubernetes.protobuf;stream=watch"
71533        ],
71534        "responses": {
71535          "200": {
71536            "description": "OK",
71537            "schema": {
71538              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71539            }
71540          },
71541          "401": {
71542            "description": "Unauthorized"
71543          }
71544        },
71545        "schemes": [
71546          "https"
71547        ],
71548        "tags": [
71549          "extensions_v1beta1"
71550        ],
71551        "x-kubernetes-action": "watch",
71552        "x-kubernetes-group-version-kind": {
71553          "group": "extensions",
71554          "kind": "Ingress",
71555          "version": "v1beta1"
71556        }
71557      },
71558      "parameters": [
71559        {
71560          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71561          "in": "query",
71562          "name": "allowWatchBookmarks",
71563          "type": "boolean",
71564          "uniqueItems": true
71565        },
71566        {
71567          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71568          "in": "query",
71569          "name": "continue",
71570          "type": "string",
71571          "uniqueItems": true
71572        },
71573        {
71574          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71575          "in": "query",
71576          "name": "fieldSelector",
71577          "type": "string",
71578          "uniqueItems": true
71579        },
71580        {
71581          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71582          "in": "query",
71583          "name": "labelSelector",
71584          "type": "string",
71585          "uniqueItems": true
71586        },
71587        {
71588          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71589          "in": "query",
71590          "name": "limit",
71591          "type": "integer",
71592          "uniqueItems": true
71593        },
71594        {
71595          "description": "name of the Ingress",
71596          "in": "path",
71597          "name": "name",
71598          "required": true,
71599          "type": "string",
71600          "uniqueItems": true
71601        },
71602        {
71603          "description": "object name and auth scope, such as for teams and projects",
71604          "in": "path",
71605          "name": "namespace",
71606          "required": true,
71607          "type": "string",
71608          "uniqueItems": true
71609        },
71610        {
71611          "description": "If 'true', then the output is pretty printed.",
71612          "in": "query",
71613          "name": "pretty",
71614          "type": "string",
71615          "uniqueItems": true
71616        },
71617        {
71618          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71619          "in": "query",
71620          "name": "resourceVersion",
71621          "type": "string",
71622          "uniqueItems": true
71623        },
71624        {
71625          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71626          "in": "query",
71627          "name": "resourceVersionMatch",
71628          "type": "string",
71629          "uniqueItems": true
71630        },
71631        {
71632          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71633          "in": "query",
71634          "name": "timeoutSeconds",
71635          "type": "integer",
71636          "uniqueItems": true
71637        },
71638        {
71639          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71640          "in": "query",
71641          "name": "watch",
71642          "type": "boolean",
71643          "uniqueItems": true
71644        }
71645      ]
71646    },
71647    "/apis/flowcontrol.apiserver.k8s.io/": {
71648      "get": {
71649        "consumes": [
71650          "application/json",
71651          "application/yaml",
71652          "application/vnd.kubernetes.protobuf"
71653        ],
71654        "description": "get information of a group",
71655        "operationId": "getFlowcontrolApiserverAPIGroup",
71656        "produces": [
71657          "application/json",
71658          "application/yaml",
71659          "application/vnd.kubernetes.protobuf"
71660        ],
71661        "responses": {
71662          "200": {
71663            "description": "OK",
71664            "schema": {
71665              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
71666            }
71667          },
71668          "401": {
71669            "description": "Unauthorized"
71670          }
71671        },
71672        "schemes": [
71673          "https"
71674        ],
71675        "tags": [
71676          "flowcontrolApiserver"
71677        ]
71678      }
71679    },
71680    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/": {
71681      "get": {
71682        "consumes": [
71683          "application/json",
71684          "application/yaml",
71685          "application/vnd.kubernetes.protobuf"
71686        ],
71687        "description": "get available resources",
71688        "operationId": "getFlowcontrolApiserverV1alpha1APIResources",
71689        "produces": [
71690          "application/json",
71691          "application/yaml",
71692          "application/vnd.kubernetes.protobuf"
71693        ],
71694        "responses": {
71695          "200": {
71696            "description": "OK",
71697            "schema": {
71698              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
71699            }
71700          },
71701          "401": {
71702            "description": "Unauthorized"
71703          }
71704        },
71705        "schemes": [
71706          "https"
71707        ],
71708        "tags": [
71709          "flowcontrolApiserver_v1alpha1"
71710        ]
71711      }
71712    },
71713    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas": {
71714      "delete": {
71715        "consumes": [
71716          "*/*"
71717        ],
71718        "description": "delete collection of FlowSchema",
71719        "operationId": "deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema",
71720        "parameters": [
71721          {
71722            "in": "body",
71723            "name": "body",
71724            "schema": {
71725              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
71726            }
71727          },
71728          {
71729            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71730            "in": "query",
71731            "name": "continue",
71732            "type": "string",
71733            "uniqueItems": true
71734          },
71735          {
71736            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71737            "in": "query",
71738            "name": "dryRun",
71739            "type": "string",
71740            "uniqueItems": true
71741          },
71742          {
71743            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71744            "in": "query",
71745            "name": "fieldSelector",
71746            "type": "string",
71747            "uniqueItems": true
71748          },
71749          {
71750            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
71751            "in": "query",
71752            "name": "gracePeriodSeconds",
71753            "type": "integer",
71754            "uniqueItems": true
71755          },
71756          {
71757            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71758            "in": "query",
71759            "name": "labelSelector",
71760            "type": "string",
71761            "uniqueItems": true
71762          },
71763          {
71764            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71765            "in": "query",
71766            "name": "limit",
71767            "type": "integer",
71768            "uniqueItems": true
71769          },
71770          {
71771            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
71772            "in": "query",
71773            "name": "orphanDependents",
71774            "type": "boolean",
71775            "uniqueItems": true
71776          },
71777          {
71778            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
71779            "in": "query",
71780            "name": "propagationPolicy",
71781            "type": "string",
71782            "uniqueItems": true
71783          },
71784          {
71785            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71786            "in": "query",
71787            "name": "resourceVersion",
71788            "type": "string",
71789            "uniqueItems": true
71790          },
71791          {
71792            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71793            "in": "query",
71794            "name": "resourceVersionMatch",
71795            "type": "string",
71796            "uniqueItems": true
71797          },
71798          {
71799            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71800            "in": "query",
71801            "name": "timeoutSeconds",
71802            "type": "integer",
71803            "uniqueItems": true
71804          }
71805        ],
71806        "produces": [
71807          "application/json",
71808          "application/yaml",
71809          "application/vnd.kubernetes.protobuf"
71810        ],
71811        "responses": {
71812          "200": {
71813            "description": "OK",
71814            "schema": {
71815              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71816            }
71817          },
71818          "401": {
71819            "description": "Unauthorized"
71820          }
71821        },
71822        "schemes": [
71823          "https"
71824        ],
71825        "tags": [
71826          "flowcontrolApiserver_v1alpha1"
71827        ],
71828        "x-kubernetes-action": "deletecollection",
71829        "x-kubernetes-group-version-kind": {
71830          "group": "flowcontrol.apiserver.k8s.io",
71831          "kind": "FlowSchema",
71832          "version": "v1alpha1"
71833        }
71834      },
71835      "get": {
71836        "consumes": [
71837          "*/*"
71838        ],
71839        "description": "list or watch objects of kind FlowSchema",
71840        "operationId": "listFlowcontrolApiserverV1alpha1FlowSchema",
71841        "parameters": [
71842          {
71843            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
71844            "in": "query",
71845            "name": "allowWatchBookmarks",
71846            "type": "boolean",
71847            "uniqueItems": true
71848          },
71849          {
71850            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71851            "in": "query",
71852            "name": "continue",
71853            "type": "string",
71854            "uniqueItems": true
71855          },
71856          {
71857            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71858            "in": "query",
71859            "name": "fieldSelector",
71860            "type": "string",
71861            "uniqueItems": true
71862          },
71863          {
71864            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71865            "in": "query",
71866            "name": "labelSelector",
71867            "type": "string",
71868            "uniqueItems": true
71869          },
71870          {
71871            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71872            "in": "query",
71873            "name": "limit",
71874            "type": "integer",
71875            "uniqueItems": true
71876          },
71877          {
71878            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71879            "in": "query",
71880            "name": "resourceVersion",
71881            "type": "string",
71882            "uniqueItems": true
71883          },
71884          {
71885            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71886            "in": "query",
71887            "name": "resourceVersionMatch",
71888            "type": "string",
71889            "uniqueItems": true
71890          },
71891          {
71892            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71893            "in": "query",
71894            "name": "timeoutSeconds",
71895            "type": "integer",
71896            "uniqueItems": true
71897          },
71898          {
71899            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71900            "in": "query",
71901            "name": "watch",
71902            "type": "boolean",
71903            "uniqueItems": true
71904          }
71905        ],
71906        "produces": [
71907          "application/json",
71908          "application/yaml",
71909          "application/vnd.kubernetes.protobuf",
71910          "application/json;stream=watch",
71911          "application/vnd.kubernetes.protobuf;stream=watch"
71912        ],
71913        "responses": {
71914          "200": {
71915            "description": "OK",
71916            "schema": {
71917              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchemaList"
71918            }
71919          },
71920          "401": {
71921            "description": "Unauthorized"
71922          }
71923        },
71924        "schemes": [
71925          "https"
71926        ],
71927        "tags": [
71928          "flowcontrolApiserver_v1alpha1"
71929        ],
71930        "x-kubernetes-action": "list",
71931        "x-kubernetes-group-version-kind": {
71932          "group": "flowcontrol.apiserver.k8s.io",
71933          "kind": "FlowSchema",
71934          "version": "v1alpha1"
71935        }
71936      },
71937      "parameters": [
71938        {
71939          "description": "If 'true', then the output is pretty printed.",
71940          "in": "query",
71941          "name": "pretty",
71942          "type": "string",
71943          "uniqueItems": true
71944        }
71945      ],
71946      "post": {
71947        "consumes": [
71948          "*/*"
71949        ],
71950        "description": "create a FlowSchema",
71951        "operationId": "createFlowcontrolApiserverV1alpha1FlowSchema",
71952        "parameters": [
71953          {
71954            "in": "body",
71955            "name": "body",
71956            "required": true,
71957            "schema": {
71958              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
71959            }
71960          },
71961          {
71962            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71963            "in": "query",
71964            "name": "dryRun",
71965            "type": "string",
71966            "uniqueItems": true
71967          },
71968          {
71969            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71970            "in": "query",
71971            "name": "fieldManager",
71972            "type": "string",
71973            "uniqueItems": true
71974          }
71975        ],
71976        "produces": [
71977          "application/json",
71978          "application/yaml",
71979          "application/vnd.kubernetes.protobuf"
71980        ],
71981        "responses": {
71982          "200": {
71983            "description": "OK",
71984            "schema": {
71985              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
71986            }
71987          },
71988          "201": {
71989            "description": "Created",
71990            "schema": {
71991              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
71992            }
71993          },
71994          "202": {
71995            "description": "Accepted",
71996            "schema": {
71997              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
71998            }
71999          },
72000          "401": {
72001            "description": "Unauthorized"
72002          }
72003        },
72004        "schemes": [
72005          "https"
72006        ],
72007        "tags": [
72008          "flowcontrolApiserver_v1alpha1"
72009        ],
72010        "x-kubernetes-action": "post",
72011        "x-kubernetes-group-version-kind": {
72012          "group": "flowcontrol.apiserver.k8s.io",
72013          "kind": "FlowSchema",
72014          "version": "v1alpha1"
72015        }
72016      }
72017    },
72018    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}": {
72019      "delete": {
72020        "consumes": [
72021          "*/*"
72022        ],
72023        "description": "delete a FlowSchema",
72024        "operationId": "deleteFlowcontrolApiserverV1alpha1FlowSchema",
72025        "parameters": [
72026          {
72027            "in": "body",
72028            "name": "body",
72029            "schema": {
72030              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72031            }
72032          },
72033          {
72034            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72035            "in": "query",
72036            "name": "dryRun",
72037            "type": "string",
72038            "uniqueItems": true
72039          },
72040          {
72041            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72042            "in": "query",
72043            "name": "gracePeriodSeconds",
72044            "type": "integer",
72045            "uniqueItems": true
72046          },
72047          {
72048            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72049            "in": "query",
72050            "name": "orphanDependents",
72051            "type": "boolean",
72052            "uniqueItems": true
72053          },
72054          {
72055            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72056            "in": "query",
72057            "name": "propagationPolicy",
72058            "type": "string",
72059            "uniqueItems": true
72060          }
72061        ],
72062        "produces": [
72063          "application/json",
72064          "application/yaml",
72065          "application/vnd.kubernetes.protobuf"
72066        ],
72067        "responses": {
72068          "200": {
72069            "description": "OK",
72070            "schema": {
72071              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72072            }
72073          },
72074          "202": {
72075            "description": "Accepted",
72076            "schema": {
72077              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72078            }
72079          },
72080          "401": {
72081            "description": "Unauthorized"
72082          }
72083        },
72084        "schemes": [
72085          "https"
72086        ],
72087        "tags": [
72088          "flowcontrolApiserver_v1alpha1"
72089        ],
72090        "x-kubernetes-action": "delete",
72091        "x-kubernetes-group-version-kind": {
72092          "group": "flowcontrol.apiserver.k8s.io",
72093          "kind": "FlowSchema",
72094          "version": "v1alpha1"
72095        }
72096      },
72097      "get": {
72098        "consumes": [
72099          "*/*"
72100        ],
72101        "description": "read the specified FlowSchema",
72102        "operationId": "readFlowcontrolApiserverV1alpha1FlowSchema",
72103        "produces": [
72104          "application/json",
72105          "application/yaml",
72106          "application/vnd.kubernetes.protobuf"
72107        ],
72108        "responses": {
72109          "200": {
72110            "description": "OK",
72111            "schema": {
72112              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72113            }
72114          },
72115          "401": {
72116            "description": "Unauthorized"
72117          }
72118        },
72119        "schemes": [
72120          "https"
72121        ],
72122        "tags": [
72123          "flowcontrolApiserver_v1alpha1"
72124        ],
72125        "x-kubernetes-action": "get",
72126        "x-kubernetes-group-version-kind": {
72127          "group": "flowcontrol.apiserver.k8s.io",
72128          "kind": "FlowSchema",
72129          "version": "v1alpha1"
72130        }
72131      },
72132      "parameters": [
72133        {
72134          "description": "name of the FlowSchema",
72135          "in": "path",
72136          "name": "name",
72137          "required": true,
72138          "type": "string",
72139          "uniqueItems": true
72140        },
72141        {
72142          "description": "If 'true', then the output is pretty printed.",
72143          "in": "query",
72144          "name": "pretty",
72145          "type": "string",
72146          "uniqueItems": true
72147        }
72148      ],
72149      "patch": {
72150        "consumes": [
72151          "application/json-patch+json",
72152          "application/merge-patch+json",
72153          "application/strategic-merge-patch+json",
72154          "application/apply-patch+yaml"
72155        ],
72156        "description": "partially update the specified FlowSchema",
72157        "operationId": "patchFlowcontrolApiserverV1alpha1FlowSchema",
72158        "parameters": [
72159          {
72160            "in": "body",
72161            "name": "body",
72162            "required": true,
72163            "schema": {
72164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72165            }
72166          },
72167          {
72168            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72169            "in": "query",
72170            "name": "dryRun",
72171            "type": "string",
72172            "uniqueItems": true
72173          },
72174          {
72175            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
72176            "in": "query",
72177            "name": "fieldManager",
72178            "type": "string",
72179            "uniqueItems": true
72180          },
72181          {
72182            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
72183            "in": "query",
72184            "name": "force",
72185            "type": "boolean",
72186            "uniqueItems": true
72187          }
72188        ],
72189        "produces": [
72190          "application/json",
72191          "application/yaml",
72192          "application/vnd.kubernetes.protobuf"
72193        ],
72194        "responses": {
72195          "200": {
72196            "description": "OK",
72197            "schema": {
72198              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72199            }
72200          },
72201          "401": {
72202            "description": "Unauthorized"
72203          }
72204        },
72205        "schemes": [
72206          "https"
72207        ],
72208        "tags": [
72209          "flowcontrolApiserver_v1alpha1"
72210        ],
72211        "x-kubernetes-action": "patch",
72212        "x-kubernetes-group-version-kind": {
72213          "group": "flowcontrol.apiserver.k8s.io",
72214          "kind": "FlowSchema",
72215          "version": "v1alpha1"
72216        }
72217      },
72218      "put": {
72219        "consumes": [
72220          "*/*"
72221        ],
72222        "description": "replace the specified FlowSchema",
72223        "operationId": "replaceFlowcontrolApiserverV1alpha1FlowSchema",
72224        "parameters": [
72225          {
72226            "in": "body",
72227            "name": "body",
72228            "required": true,
72229            "schema": {
72230              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72231            }
72232          },
72233          {
72234            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72235            "in": "query",
72236            "name": "dryRun",
72237            "type": "string",
72238            "uniqueItems": true
72239          },
72240          {
72241            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72242            "in": "query",
72243            "name": "fieldManager",
72244            "type": "string",
72245            "uniqueItems": true
72246          }
72247        ],
72248        "produces": [
72249          "application/json",
72250          "application/yaml",
72251          "application/vnd.kubernetes.protobuf"
72252        ],
72253        "responses": {
72254          "200": {
72255            "description": "OK",
72256            "schema": {
72257              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72258            }
72259          },
72260          "201": {
72261            "description": "Created",
72262            "schema": {
72263              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72264            }
72265          },
72266          "401": {
72267            "description": "Unauthorized"
72268          }
72269        },
72270        "schemes": [
72271          "https"
72272        ],
72273        "tags": [
72274          "flowcontrolApiserver_v1alpha1"
72275        ],
72276        "x-kubernetes-action": "put",
72277        "x-kubernetes-group-version-kind": {
72278          "group": "flowcontrol.apiserver.k8s.io",
72279          "kind": "FlowSchema",
72280          "version": "v1alpha1"
72281        }
72282      }
72283    },
72284    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status": {
72285      "get": {
72286        "consumes": [
72287          "*/*"
72288        ],
72289        "description": "read status of the specified FlowSchema",
72290        "operationId": "readFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72291        "produces": [
72292          "application/json",
72293          "application/yaml",
72294          "application/vnd.kubernetes.protobuf"
72295        ],
72296        "responses": {
72297          "200": {
72298            "description": "OK",
72299            "schema": {
72300              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72301            }
72302          },
72303          "401": {
72304            "description": "Unauthorized"
72305          }
72306        },
72307        "schemes": [
72308          "https"
72309        ],
72310        "tags": [
72311          "flowcontrolApiserver_v1alpha1"
72312        ],
72313        "x-kubernetes-action": "get",
72314        "x-kubernetes-group-version-kind": {
72315          "group": "flowcontrol.apiserver.k8s.io",
72316          "kind": "FlowSchema",
72317          "version": "v1alpha1"
72318        }
72319      },
72320      "parameters": [
72321        {
72322          "description": "name of the FlowSchema",
72323          "in": "path",
72324          "name": "name",
72325          "required": true,
72326          "type": "string",
72327          "uniqueItems": true
72328        },
72329        {
72330          "description": "If 'true', then the output is pretty printed.",
72331          "in": "query",
72332          "name": "pretty",
72333          "type": "string",
72334          "uniqueItems": true
72335        }
72336      ],
72337      "patch": {
72338        "consumes": [
72339          "application/json-patch+json",
72340          "application/merge-patch+json",
72341          "application/strategic-merge-patch+json",
72342          "application/apply-patch+yaml"
72343        ],
72344        "description": "partially update status of the specified FlowSchema",
72345        "operationId": "patchFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72346        "parameters": [
72347          {
72348            "in": "body",
72349            "name": "body",
72350            "required": true,
72351            "schema": {
72352              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72353            }
72354          },
72355          {
72356            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72357            "in": "query",
72358            "name": "dryRun",
72359            "type": "string",
72360            "uniqueItems": true
72361          },
72362          {
72363            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
72364            "in": "query",
72365            "name": "fieldManager",
72366            "type": "string",
72367            "uniqueItems": true
72368          },
72369          {
72370            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
72371            "in": "query",
72372            "name": "force",
72373            "type": "boolean",
72374            "uniqueItems": true
72375          }
72376        ],
72377        "produces": [
72378          "application/json",
72379          "application/yaml",
72380          "application/vnd.kubernetes.protobuf"
72381        ],
72382        "responses": {
72383          "200": {
72384            "description": "OK",
72385            "schema": {
72386              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72387            }
72388          },
72389          "401": {
72390            "description": "Unauthorized"
72391          }
72392        },
72393        "schemes": [
72394          "https"
72395        ],
72396        "tags": [
72397          "flowcontrolApiserver_v1alpha1"
72398        ],
72399        "x-kubernetes-action": "patch",
72400        "x-kubernetes-group-version-kind": {
72401          "group": "flowcontrol.apiserver.k8s.io",
72402          "kind": "FlowSchema",
72403          "version": "v1alpha1"
72404        }
72405      },
72406      "put": {
72407        "consumes": [
72408          "*/*"
72409        ],
72410        "description": "replace status of the specified FlowSchema",
72411        "operationId": "replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus",
72412        "parameters": [
72413          {
72414            "in": "body",
72415            "name": "body",
72416            "required": true,
72417            "schema": {
72418              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72419            }
72420          },
72421          {
72422            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72423            "in": "query",
72424            "name": "dryRun",
72425            "type": "string",
72426            "uniqueItems": true
72427          },
72428          {
72429            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72430            "in": "query",
72431            "name": "fieldManager",
72432            "type": "string",
72433            "uniqueItems": true
72434          }
72435        ],
72436        "produces": [
72437          "application/json",
72438          "application/yaml",
72439          "application/vnd.kubernetes.protobuf"
72440        ],
72441        "responses": {
72442          "200": {
72443            "description": "OK",
72444            "schema": {
72445              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72446            }
72447          },
72448          "201": {
72449            "description": "Created",
72450            "schema": {
72451              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.FlowSchema"
72452            }
72453          },
72454          "401": {
72455            "description": "Unauthorized"
72456          }
72457        },
72458        "schemes": [
72459          "https"
72460        ],
72461        "tags": [
72462          "flowcontrolApiserver_v1alpha1"
72463        ],
72464        "x-kubernetes-action": "put",
72465        "x-kubernetes-group-version-kind": {
72466          "group": "flowcontrol.apiserver.k8s.io",
72467          "kind": "FlowSchema",
72468          "version": "v1alpha1"
72469        }
72470      }
72471    },
72472    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations": {
72473      "delete": {
72474        "consumes": [
72475          "*/*"
72476        ],
72477        "description": "delete collection of PriorityLevelConfiguration",
72478        "operationId": "deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration",
72479        "parameters": [
72480          {
72481            "in": "body",
72482            "name": "body",
72483            "schema": {
72484              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72485            }
72486          },
72487          {
72488            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72489            "in": "query",
72490            "name": "continue",
72491            "type": "string",
72492            "uniqueItems": true
72493          },
72494          {
72495            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72496            "in": "query",
72497            "name": "dryRun",
72498            "type": "string",
72499            "uniqueItems": true
72500          },
72501          {
72502            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72503            "in": "query",
72504            "name": "fieldSelector",
72505            "type": "string",
72506            "uniqueItems": true
72507          },
72508          {
72509            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72510            "in": "query",
72511            "name": "gracePeriodSeconds",
72512            "type": "integer",
72513            "uniqueItems": true
72514          },
72515          {
72516            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72517            "in": "query",
72518            "name": "labelSelector",
72519            "type": "string",
72520            "uniqueItems": true
72521          },
72522          {
72523            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72524            "in": "query",
72525            "name": "limit",
72526            "type": "integer",
72527            "uniqueItems": true
72528          },
72529          {
72530            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72531            "in": "query",
72532            "name": "orphanDependents",
72533            "type": "boolean",
72534            "uniqueItems": true
72535          },
72536          {
72537            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72538            "in": "query",
72539            "name": "propagationPolicy",
72540            "type": "string",
72541            "uniqueItems": true
72542          },
72543          {
72544            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72545            "in": "query",
72546            "name": "resourceVersion",
72547            "type": "string",
72548            "uniqueItems": true
72549          },
72550          {
72551            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72552            "in": "query",
72553            "name": "resourceVersionMatch",
72554            "type": "string",
72555            "uniqueItems": true
72556          },
72557          {
72558            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72559            "in": "query",
72560            "name": "timeoutSeconds",
72561            "type": "integer",
72562            "uniqueItems": true
72563          }
72564        ],
72565        "produces": [
72566          "application/json",
72567          "application/yaml",
72568          "application/vnd.kubernetes.protobuf"
72569        ],
72570        "responses": {
72571          "200": {
72572            "description": "OK",
72573            "schema": {
72574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72575            }
72576          },
72577          "401": {
72578            "description": "Unauthorized"
72579          }
72580        },
72581        "schemes": [
72582          "https"
72583        ],
72584        "tags": [
72585          "flowcontrolApiserver_v1alpha1"
72586        ],
72587        "x-kubernetes-action": "deletecollection",
72588        "x-kubernetes-group-version-kind": {
72589          "group": "flowcontrol.apiserver.k8s.io",
72590          "kind": "PriorityLevelConfiguration",
72591          "version": "v1alpha1"
72592        }
72593      },
72594      "get": {
72595        "consumes": [
72596          "*/*"
72597        ],
72598        "description": "list or watch objects of kind PriorityLevelConfiguration",
72599        "operationId": "listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72600        "parameters": [
72601          {
72602            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
72603            "in": "query",
72604            "name": "allowWatchBookmarks",
72605            "type": "boolean",
72606            "uniqueItems": true
72607          },
72608          {
72609            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72610            "in": "query",
72611            "name": "continue",
72612            "type": "string",
72613            "uniqueItems": true
72614          },
72615          {
72616            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72617            "in": "query",
72618            "name": "fieldSelector",
72619            "type": "string",
72620            "uniqueItems": true
72621          },
72622          {
72623            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72624            "in": "query",
72625            "name": "labelSelector",
72626            "type": "string",
72627            "uniqueItems": true
72628          },
72629          {
72630            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72631            "in": "query",
72632            "name": "limit",
72633            "type": "integer",
72634            "uniqueItems": true
72635          },
72636          {
72637            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72638            "in": "query",
72639            "name": "resourceVersion",
72640            "type": "string",
72641            "uniqueItems": true
72642          },
72643          {
72644            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72645            "in": "query",
72646            "name": "resourceVersionMatch",
72647            "type": "string",
72648            "uniqueItems": true
72649          },
72650          {
72651            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72652            "in": "query",
72653            "name": "timeoutSeconds",
72654            "type": "integer",
72655            "uniqueItems": true
72656          },
72657          {
72658            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72659            "in": "query",
72660            "name": "watch",
72661            "type": "boolean",
72662            "uniqueItems": true
72663          }
72664        ],
72665        "produces": [
72666          "application/json",
72667          "application/yaml",
72668          "application/vnd.kubernetes.protobuf",
72669          "application/json;stream=watch",
72670          "application/vnd.kubernetes.protobuf;stream=watch"
72671        ],
72672        "responses": {
72673          "200": {
72674            "description": "OK",
72675            "schema": {
72676              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfigurationList"
72677            }
72678          },
72679          "401": {
72680            "description": "Unauthorized"
72681          }
72682        },
72683        "schemes": [
72684          "https"
72685        ],
72686        "tags": [
72687          "flowcontrolApiserver_v1alpha1"
72688        ],
72689        "x-kubernetes-action": "list",
72690        "x-kubernetes-group-version-kind": {
72691          "group": "flowcontrol.apiserver.k8s.io",
72692          "kind": "PriorityLevelConfiguration",
72693          "version": "v1alpha1"
72694        }
72695      },
72696      "parameters": [
72697        {
72698          "description": "If 'true', then the output is pretty printed.",
72699          "in": "query",
72700          "name": "pretty",
72701          "type": "string",
72702          "uniqueItems": true
72703        }
72704      ],
72705      "post": {
72706        "consumes": [
72707          "*/*"
72708        ],
72709        "description": "create a PriorityLevelConfiguration",
72710        "operationId": "createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72711        "parameters": [
72712          {
72713            "in": "body",
72714            "name": "body",
72715            "required": true,
72716            "schema": {
72717              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72718            }
72719          },
72720          {
72721            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72722            "in": "query",
72723            "name": "dryRun",
72724            "type": "string",
72725            "uniqueItems": true
72726          },
72727          {
72728            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72729            "in": "query",
72730            "name": "fieldManager",
72731            "type": "string",
72732            "uniqueItems": true
72733          }
72734        ],
72735        "produces": [
72736          "application/json",
72737          "application/yaml",
72738          "application/vnd.kubernetes.protobuf"
72739        ],
72740        "responses": {
72741          "200": {
72742            "description": "OK",
72743            "schema": {
72744              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72745            }
72746          },
72747          "201": {
72748            "description": "Created",
72749            "schema": {
72750              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72751            }
72752          },
72753          "202": {
72754            "description": "Accepted",
72755            "schema": {
72756              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72757            }
72758          },
72759          "401": {
72760            "description": "Unauthorized"
72761          }
72762        },
72763        "schemes": [
72764          "https"
72765        ],
72766        "tags": [
72767          "flowcontrolApiserver_v1alpha1"
72768        ],
72769        "x-kubernetes-action": "post",
72770        "x-kubernetes-group-version-kind": {
72771          "group": "flowcontrol.apiserver.k8s.io",
72772          "kind": "PriorityLevelConfiguration",
72773          "version": "v1alpha1"
72774        }
72775      }
72776    },
72777    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}": {
72778      "delete": {
72779        "consumes": [
72780          "*/*"
72781        ],
72782        "description": "delete a PriorityLevelConfiguration",
72783        "operationId": "deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72784        "parameters": [
72785          {
72786            "in": "body",
72787            "name": "body",
72788            "schema": {
72789              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72790            }
72791          },
72792          {
72793            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72794            "in": "query",
72795            "name": "dryRun",
72796            "type": "string",
72797            "uniqueItems": true
72798          },
72799          {
72800            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72801            "in": "query",
72802            "name": "gracePeriodSeconds",
72803            "type": "integer",
72804            "uniqueItems": true
72805          },
72806          {
72807            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72808            "in": "query",
72809            "name": "orphanDependents",
72810            "type": "boolean",
72811            "uniqueItems": true
72812          },
72813          {
72814            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72815            "in": "query",
72816            "name": "propagationPolicy",
72817            "type": "string",
72818            "uniqueItems": true
72819          }
72820        ],
72821        "produces": [
72822          "application/json",
72823          "application/yaml",
72824          "application/vnd.kubernetes.protobuf"
72825        ],
72826        "responses": {
72827          "200": {
72828            "description": "OK",
72829            "schema": {
72830              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72831            }
72832          },
72833          "202": {
72834            "description": "Accepted",
72835            "schema": {
72836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72837            }
72838          },
72839          "401": {
72840            "description": "Unauthorized"
72841          }
72842        },
72843        "schemes": [
72844          "https"
72845        ],
72846        "tags": [
72847          "flowcontrolApiserver_v1alpha1"
72848        ],
72849        "x-kubernetes-action": "delete",
72850        "x-kubernetes-group-version-kind": {
72851          "group": "flowcontrol.apiserver.k8s.io",
72852          "kind": "PriorityLevelConfiguration",
72853          "version": "v1alpha1"
72854        }
72855      },
72856      "get": {
72857        "consumes": [
72858          "*/*"
72859        ],
72860        "description": "read the specified PriorityLevelConfiguration",
72861        "operationId": "readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72862        "produces": [
72863          "application/json",
72864          "application/yaml",
72865          "application/vnd.kubernetes.protobuf"
72866        ],
72867        "responses": {
72868          "200": {
72869            "description": "OK",
72870            "schema": {
72871              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72872            }
72873          },
72874          "401": {
72875            "description": "Unauthorized"
72876          }
72877        },
72878        "schemes": [
72879          "https"
72880        ],
72881        "tags": [
72882          "flowcontrolApiserver_v1alpha1"
72883        ],
72884        "x-kubernetes-action": "get",
72885        "x-kubernetes-group-version-kind": {
72886          "group": "flowcontrol.apiserver.k8s.io",
72887          "kind": "PriorityLevelConfiguration",
72888          "version": "v1alpha1"
72889        }
72890      },
72891      "parameters": [
72892        {
72893          "description": "name of the PriorityLevelConfiguration",
72894          "in": "path",
72895          "name": "name",
72896          "required": true,
72897          "type": "string",
72898          "uniqueItems": true
72899        },
72900        {
72901          "description": "If 'true', then the output is pretty printed.",
72902          "in": "query",
72903          "name": "pretty",
72904          "type": "string",
72905          "uniqueItems": true
72906        }
72907      ],
72908      "patch": {
72909        "consumes": [
72910          "application/json-patch+json",
72911          "application/merge-patch+json",
72912          "application/strategic-merge-patch+json",
72913          "application/apply-patch+yaml"
72914        ],
72915        "description": "partially update the specified PriorityLevelConfiguration",
72916        "operationId": "patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72917        "parameters": [
72918          {
72919            "in": "body",
72920            "name": "body",
72921            "required": true,
72922            "schema": {
72923              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72924            }
72925          },
72926          {
72927            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72928            "in": "query",
72929            "name": "dryRun",
72930            "type": "string",
72931            "uniqueItems": true
72932          },
72933          {
72934            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
72935            "in": "query",
72936            "name": "fieldManager",
72937            "type": "string",
72938            "uniqueItems": true
72939          },
72940          {
72941            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
72942            "in": "query",
72943            "name": "force",
72944            "type": "boolean",
72945            "uniqueItems": true
72946          }
72947        ],
72948        "produces": [
72949          "application/json",
72950          "application/yaml",
72951          "application/vnd.kubernetes.protobuf"
72952        ],
72953        "responses": {
72954          "200": {
72955            "description": "OK",
72956            "schema": {
72957              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72958            }
72959          },
72960          "401": {
72961            "description": "Unauthorized"
72962          }
72963        },
72964        "schemes": [
72965          "https"
72966        ],
72967        "tags": [
72968          "flowcontrolApiserver_v1alpha1"
72969        ],
72970        "x-kubernetes-action": "patch",
72971        "x-kubernetes-group-version-kind": {
72972          "group": "flowcontrol.apiserver.k8s.io",
72973          "kind": "PriorityLevelConfiguration",
72974          "version": "v1alpha1"
72975        }
72976      },
72977      "put": {
72978        "consumes": [
72979          "*/*"
72980        ],
72981        "description": "replace the specified PriorityLevelConfiguration",
72982        "operationId": "replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
72983        "parameters": [
72984          {
72985            "in": "body",
72986            "name": "body",
72987            "required": true,
72988            "schema": {
72989              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
72990            }
72991          },
72992          {
72993            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72994            "in": "query",
72995            "name": "dryRun",
72996            "type": "string",
72997            "uniqueItems": true
72998          },
72999          {
73000            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73001            "in": "query",
73002            "name": "fieldManager",
73003            "type": "string",
73004            "uniqueItems": true
73005          }
73006        ],
73007        "produces": [
73008          "application/json",
73009          "application/yaml",
73010          "application/vnd.kubernetes.protobuf"
73011        ],
73012        "responses": {
73013          "200": {
73014            "description": "OK",
73015            "schema": {
73016              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73017            }
73018          },
73019          "201": {
73020            "description": "Created",
73021            "schema": {
73022              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73023            }
73024          },
73025          "401": {
73026            "description": "Unauthorized"
73027          }
73028        },
73029        "schemes": [
73030          "https"
73031        ],
73032        "tags": [
73033          "flowcontrolApiserver_v1alpha1"
73034        ],
73035        "x-kubernetes-action": "put",
73036        "x-kubernetes-group-version-kind": {
73037          "group": "flowcontrol.apiserver.k8s.io",
73038          "kind": "PriorityLevelConfiguration",
73039          "version": "v1alpha1"
73040        }
73041      }
73042    },
73043    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status": {
73044      "get": {
73045        "consumes": [
73046          "*/*"
73047        ],
73048        "description": "read status of the specified PriorityLevelConfiguration",
73049        "operationId": "readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73050        "produces": [
73051          "application/json",
73052          "application/yaml",
73053          "application/vnd.kubernetes.protobuf"
73054        ],
73055        "responses": {
73056          "200": {
73057            "description": "OK",
73058            "schema": {
73059              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73060            }
73061          },
73062          "401": {
73063            "description": "Unauthorized"
73064          }
73065        },
73066        "schemes": [
73067          "https"
73068        ],
73069        "tags": [
73070          "flowcontrolApiserver_v1alpha1"
73071        ],
73072        "x-kubernetes-action": "get",
73073        "x-kubernetes-group-version-kind": {
73074          "group": "flowcontrol.apiserver.k8s.io",
73075          "kind": "PriorityLevelConfiguration",
73076          "version": "v1alpha1"
73077        }
73078      },
73079      "parameters": [
73080        {
73081          "description": "name of the PriorityLevelConfiguration",
73082          "in": "path",
73083          "name": "name",
73084          "required": true,
73085          "type": "string",
73086          "uniqueItems": true
73087        },
73088        {
73089          "description": "If 'true', then the output is pretty printed.",
73090          "in": "query",
73091          "name": "pretty",
73092          "type": "string",
73093          "uniqueItems": true
73094        }
73095      ],
73096      "patch": {
73097        "consumes": [
73098          "application/json-patch+json",
73099          "application/merge-patch+json",
73100          "application/strategic-merge-patch+json",
73101          "application/apply-patch+yaml"
73102        ],
73103        "description": "partially update status of the specified PriorityLevelConfiguration",
73104        "operationId": "patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73105        "parameters": [
73106          {
73107            "in": "body",
73108            "name": "body",
73109            "required": true,
73110            "schema": {
73111              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
73112            }
73113          },
73114          {
73115            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73116            "in": "query",
73117            "name": "dryRun",
73118            "type": "string",
73119            "uniqueItems": true
73120          },
73121          {
73122            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
73123            "in": "query",
73124            "name": "fieldManager",
73125            "type": "string",
73126            "uniqueItems": true
73127          },
73128          {
73129            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
73130            "in": "query",
73131            "name": "force",
73132            "type": "boolean",
73133            "uniqueItems": true
73134          }
73135        ],
73136        "produces": [
73137          "application/json",
73138          "application/yaml",
73139          "application/vnd.kubernetes.protobuf"
73140        ],
73141        "responses": {
73142          "200": {
73143            "description": "OK",
73144            "schema": {
73145              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73146            }
73147          },
73148          "401": {
73149            "description": "Unauthorized"
73150          }
73151        },
73152        "schemes": [
73153          "https"
73154        ],
73155        "tags": [
73156          "flowcontrolApiserver_v1alpha1"
73157        ],
73158        "x-kubernetes-action": "patch",
73159        "x-kubernetes-group-version-kind": {
73160          "group": "flowcontrol.apiserver.k8s.io",
73161          "kind": "PriorityLevelConfiguration",
73162          "version": "v1alpha1"
73163        }
73164      },
73165      "put": {
73166        "consumes": [
73167          "*/*"
73168        ],
73169        "description": "replace status of the specified PriorityLevelConfiguration",
73170        "operationId": "replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus",
73171        "parameters": [
73172          {
73173            "in": "body",
73174            "name": "body",
73175            "required": true,
73176            "schema": {
73177              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73178            }
73179          },
73180          {
73181            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73182            "in": "query",
73183            "name": "dryRun",
73184            "type": "string",
73185            "uniqueItems": true
73186          },
73187          {
73188            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73189            "in": "query",
73190            "name": "fieldManager",
73191            "type": "string",
73192            "uniqueItems": true
73193          }
73194        ],
73195        "produces": [
73196          "application/json",
73197          "application/yaml",
73198          "application/vnd.kubernetes.protobuf"
73199        ],
73200        "responses": {
73201          "200": {
73202            "description": "OK",
73203            "schema": {
73204              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73205            }
73206          },
73207          "201": {
73208            "description": "Created",
73209            "schema": {
73210              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1alpha1.PriorityLevelConfiguration"
73211            }
73212          },
73213          "401": {
73214            "description": "Unauthorized"
73215          }
73216        },
73217        "schemes": [
73218          "https"
73219        ],
73220        "tags": [
73221          "flowcontrolApiserver_v1alpha1"
73222        ],
73223        "x-kubernetes-action": "put",
73224        "x-kubernetes-group-version-kind": {
73225          "group": "flowcontrol.apiserver.k8s.io",
73226          "kind": "PriorityLevelConfiguration",
73227          "version": "v1alpha1"
73228        }
73229      }
73230    },
73231    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas": {
73232      "get": {
73233        "consumes": [
73234          "*/*"
73235        ],
73236        "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.",
73237        "operationId": "watchFlowcontrolApiserverV1alpha1FlowSchemaList",
73238        "produces": [
73239          "application/json",
73240          "application/yaml",
73241          "application/vnd.kubernetes.protobuf",
73242          "application/json;stream=watch",
73243          "application/vnd.kubernetes.protobuf;stream=watch"
73244        ],
73245        "responses": {
73246          "200": {
73247            "description": "OK",
73248            "schema": {
73249              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73250            }
73251          },
73252          "401": {
73253            "description": "Unauthorized"
73254          }
73255        },
73256        "schemes": [
73257          "https"
73258        ],
73259        "tags": [
73260          "flowcontrolApiserver_v1alpha1"
73261        ],
73262        "x-kubernetes-action": "watchlist",
73263        "x-kubernetes-group-version-kind": {
73264          "group": "flowcontrol.apiserver.k8s.io",
73265          "kind": "FlowSchema",
73266          "version": "v1alpha1"
73267        }
73268      },
73269      "parameters": [
73270        {
73271          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73272          "in": "query",
73273          "name": "allowWatchBookmarks",
73274          "type": "boolean",
73275          "uniqueItems": true
73276        },
73277        {
73278          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73279          "in": "query",
73280          "name": "continue",
73281          "type": "string",
73282          "uniqueItems": true
73283        },
73284        {
73285          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73286          "in": "query",
73287          "name": "fieldSelector",
73288          "type": "string",
73289          "uniqueItems": true
73290        },
73291        {
73292          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73293          "in": "query",
73294          "name": "labelSelector",
73295          "type": "string",
73296          "uniqueItems": true
73297        },
73298        {
73299          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73300          "in": "query",
73301          "name": "limit",
73302          "type": "integer",
73303          "uniqueItems": true
73304        },
73305        {
73306          "description": "If 'true', then the output is pretty printed.",
73307          "in": "query",
73308          "name": "pretty",
73309          "type": "string",
73310          "uniqueItems": true
73311        },
73312        {
73313          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73314          "in": "query",
73315          "name": "resourceVersion",
73316          "type": "string",
73317          "uniqueItems": true
73318        },
73319        {
73320          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73321          "in": "query",
73322          "name": "resourceVersionMatch",
73323          "type": "string",
73324          "uniqueItems": true
73325        },
73326        {
73327          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73328          "in": "query",
73329          "name": "timeoutSeconds",
73330          "type": "integer",
73331          "uniqueItems": true
73332        },
73333        {
73334          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73335          "in": "query",
73336          "name": "watch",
73337          "type": "boolean",
73338          "uniqueItems": true
73339        }
73340      ]
73341    },
73342    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/{name}": {
73343      "get": {
73344        "consumes": [
73345          "*/*"
73346        ],
73347        "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.",
73348        "operationId": "watchFlowcontrolApiserverV1alpha1FlowSchema",
73349        "produces": [
73350          "application/json",
73351          "application/yaml",
73352          "application/vnd.kubernetes.protobuf",
73353          "application/json;stream=watch",
73354          "application/vnd.kubernetes.protobuf;stream=watch"
73355        ],
73356        "responses": {
73357          "200": {
73358            "description": "OK",
73359            "schema": {
73360              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73361            }
73362          },
73363          "401": {
73364            "description": "Unauthorized"
73365          }
73366        },
73367        "schemes": [
73368          "https"
73369        ],
73370        "tags": [
73371          "flowcontrolApiserver_v1alpha1"
73372        ],
73373        "x-kubernetes-action": "watch",
73374        "x-kubernetes-group-version-kind": {
73375          "group": "flowcontrol.apiserver.k8s.io",
73376          "kind": "FlowSchema",
73377          "version": "v1alpha1"
73378        }
73379      },
73380      "parameters": [
73381        {
73382          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73383          "in": "query",
73384          "name": "allowWatchBookmarks",
73385          "type": "boolean",
73386          "uniqueItems": true
73387        },
73388        {
73389          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73390          "in": "query",
73391          "name": "continue",
73392          "type": "string",
73393          "uniqueItems": true
73394        },
73395        {
73396          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73397          "in": "query",
73398          "name": "fieldSelector",
73399          "type": "string",
73400          "uniqueItems": true
73401        },
73402        {
73403          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73404          "in": "query",
73405          "name": "labelSelector",
73406          "type": "string",
73407          "uniqueItems": true
73408        },
73409        {
73410          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73411          "in": "query",
73412          "name": "limit",
73413          "type": "integer",
73414          "uniqueItems": true
73415        },
73416        {
73417          "description": "name of the FlowSchema",
73418          "in": "path",
73419          "name": "name",
73420          "required": true,
73421          "type": "string",
73422          "uniqueItems": true
73423        },
73424        {
73425          "description": "If 'true', then the output is pretty printed.",
73426          "in": "query",
73427          "name": "pretty",
73428          "type": "string",
73429          "uniqueItems": true
73430        },
73431        {
73432          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73433          "in": "query",
73434          "name": "resourceVersion",
73435          "type": "string",
73436          "uniqueItems": true
73437        },
73438        {
73439          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73440          "in": "query",
73441          "name": "resourceVersionMatch",
73442          "type": "string",
73443          "uniqueItems": true
73444        },
73445        {
73446          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73447          "in": "query",
73448          "name": "timeoutSeconds",
73449          "type": "integer",
73450          "uniqueItems": true
73451        },
73452        {
73453          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73454          "in": "query",
73455          "name": "watch",
73456          "type": "boolean",
73457          "uniqueItems": true
73458        }
73459      ]
73460    },
73461    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations": {
73462      "get": {
73463        "consumes": [
73464          "*/*"
73465        ],
73466        "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
73467        "operationId": "watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList",
73468        "produces": [
73469          "application/json",
73470          "application/yaml",
73471          "application/vnd.kubernetes.protobuf",
73472          "application/json;stream=watch",
73473          "application/vnd.kubernetes.protobuf;stream=watch"
73474        ],
73475        "responses": {
73476          "200": {
73477            "description": "OK",
73478            "schema": {
73479              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73480            }
73481          },
73482          "401": {
73483            "description": "Unauthorized"
73484          }
73485        },
73486        "schemes": [
73487          "https"
73488        ],
73489        "tags": [
73490          "flowcontrolApiserver_v1alpha1"
73491        ],
73492        "x-kubernetes-action": "watchlist",
73493        "x-kubernetes-group-version-kind": {
73494          "group": "flowcontrol.apiserver.k8s.io",
73495          "kind": "PriorityLevelConfiguration",
73496          "version": "v1alpha1"
73497        }
73498      },
73499      "parameters": [
73500        {
73501          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73502          "in": "query",
73503          "name": "allowWatchBookmarks",
73504          "type": "boolean",
73505          "uniqueItems": true
73506        },
73507        {
73508          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73509          "in": "query",
73510          "name": "continue",
73511          "type": "string",
73512          "uniqueItems": true
73513        },
73514        {
73515          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73516          "in": "query",
73517          "name": "fieldSelector",
73518          "type": "string",
73519          "uniqueItems": true
73520        },
73521        {
73522          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73523          "in": "query",
73524          "name": "labelSelector",
73525          "type": "string",
73526          "uniqueItems": true
73527        },
73528        {
73529          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73530          "in": "query",
73531          "name": "limit",
73532          "type": "integer",
73533          "uniqueItems": true
73534        },
73535        {
73536          "description": "If 'true', then the output is pretty printed.",
73537          "in": "query",
73538          "name": "pretty",
73539          "type": "string",
73540          "uniqueItems": true
73541        },
73542        {
73543          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73544          "in": "query",
73545          "name": "resourceVersion",
73546          "type": "string",
73547          "uniqueItems": true
73548        },
73549        {
73550          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73551          "in": "query",
73552          "name": "resourceVersionMatch",
73553          "type": "string",
73554          "uniqueItems": true
73555        },
73556        {
73557          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73558          "in": "query",
73559          "name": "timeoutSeconds",
73560          "type": "integer",
73561          "uniqueItems": true
73562        },
73563        {
73564          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73565          "in": "query",
73566          "name": "watch",
73567          "type": "boolean",
73568          "uniqueItems": true
73569        }
73570      ]
73571    },
73572    "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/{name}": {
73573      "get": {
73574        "consumes": [
73575          "*/*"
73576        ],
73577        "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.",
73578        "operationId": "watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration",
73579        "produces": [
73580          "application/json",
73581          "application/yaml",
73582          "application/vnd.kubernetes.protobuf",
73583          "application/json;stream=watch",
73584          "application/vnd.kubernetes.protobuf;stream=watch"
73585        ],
73586        "responses": {
73587          "200": {
73588            "description": "OK",
73589            "schema": {
73590              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73591            }
73592          },
73593          "401": {
73594            "description": "Unauthorized"
73595          }
73596        },
73597        "schemes": [
73598          "https"
73599        ],
73600        "tags": [
73601          "flowcontrolApiserver_v1alpha1"
73602        ],
73603        "x-kubernetes-action": "watch",
73604        "x-kubernetes-group-version-kind": {
73605          "group": "flowcontrol.apiserver.k8s.io",
73606          "kind": "PriorityLevelConfiguration",
73607          "version": "v1alpha1"
73608        }
73609      },
73610      "parameters": [
73611        {
73612          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73613          "in": "query",
73614          "name": "allowWatchBookmarks",
73615          "type": "boolean",
73616          "uniqueItems": true
73617        },
73618        {
73619          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73620          "in": "query",
73621          "name": "continue",
73622          "type": "string",
73623          "uniqueItems": true
73624        },
73625        {
73626          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73627          "in": "query",
73628          "name": "fieldSelector",
73629          "type": "string",
73630          "uniqueItems": true
73631        },
73632        {
73633          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73634          "in": "query",
73635          "name": "labelSelector",
73636          "type": "string",
73637          "uniqueItems": true
73638        },
73639        {
73640          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73641          "in": "query",
73642          "name": "limit",
73643          "type": "integer",
73644          "uniqueItems": true
73645        },
73646        {
73647          "description": "name of the PriorityLevelConfiguration",
73648          "in": "path",
73649          "name": "name",
73650          "required": true,
73651          "type": "string",
73652          "uniqueItems": true
73653        },
73654        {
73655          "description": "If 'true', then the output is pretty printed.",
73656          "in": "query",
73657          "name": "pretty",
73658          "type": "string",
73659          "uniqueItems": true
73660        },
73661        {
73662          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73663          "in": "query",
73664          "name": "resourceVersion",
73665          "type": "string",
73666          "uniqueItems": true
73667        },
73668        {
73669          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73670          "in": "query",
73671          "name": "resourceVersionMatch",
73672          "type": "string",
73673          "uniqueItems": true
73674        },
73675        {
73676          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73677          "in": "query",
73678          "name": "timeoutSeconds",
73679          "type": "integer",
73680          "uniqueItems": true
73681        },
73682        {
73683          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73684          "in": "query",
73685          "name": "watch",
73686          "type": "boolean",
73687          "uniqueItems": true
73688        }
73689      ]
73690    },
73691    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/": {
73692      "get": {
73693        "consumes": [
73694          "application/json",
73695          "application/yaml",
73696          "application/vnd.kubernetes.protobuf"
73697        ],
73698        "description": "get available resources",
73699        "operationId": "getFlowcontrolApiserverV1beta1APIResources",
73700        "produces": [
73701          "application/json",
73702          "application/yaml",
73703          "application/vnd.kubernetes.protobuf"
73704        ],
73705        "responses": {
73706          "200": {
73707            "description": "OK",
73708            "schema": {
73709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
73710            }
73711          },
73712          "401": {
73713            "description": "Unauthorized"
73714          }
73715        },
73716        "schemes": [
73717          "https"
73718        ],
73719        "tags": [
73720          "flowcontrolApiserver_v1beta1"
73721        ]
73722      }
73723    },
73724    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas": {
73725      "delete": {
73726        "consumes": [
73727          "*/*"
73728        ],
73729        "description": "delete collection of FlowSchema",
73730        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionFlowSchema",
73731        "parameters": [
73732          {
73733            "in": "body",
73734            "name": "body",
73735            "schema": {
73736              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
73737            }
73738          },
73739          {
73740            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73741            "in": "query",
73742            "name": "continue",
73743            "type": "string",
73744            "uniqueItems": true
73745          },
73746          {
73747            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73748            "in": "query",
73749            "name": "dryRun",
73750            "type": "string",
73751            "uniqueItems": true
73752          },
73753          {
73754            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73755            "in": "query",
73756            "name": "fieldSelector",
73757            "type": "string",
73758            "uniqueItems": true
73759          },
73760          {
73761            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
73762            "in": "query",
73763            "name": "gracePeriodSeconds",
73764            "type": "integer",
73765            "uniqueItems": true
73766          },
73767          {
73768            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73769            "in": "query",
73770            "name": "labelSelector",
73771            "type": "string",
73772            "uniqueItems": true
73773          },
73774          {
73775            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73776            "in": "query",
73777            "name": "limit",
73778            "type": "integer",
73779            "uniqueItems": true
73780          },
73781          {
73782            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
73783            "in": "query",
73784            "name": "orphanDependents",
73785            "type": "boolean",
73786            "uniqueItems": true
73787          },
73788          {
73789            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
73790            "in": "query",
73791            "name": "propagationPolicy",
73792            "type": "string",
73793            "uniqueItems": true
73794          },
73795          {
73796            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73797            "in": "query",
73798            "name": "resourceVersion",
73799            "type": "string",
73800            "uniqueItems": true
73801          },
73802          {
73803            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73804            "in": "query",
73805            "name": "resourceVersionMatch",
73806            "type": "string",
73807            "uniqueItems": true
73808          },
73809          {
73810            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73811            "in": "query",
73812            "name": "timeoutSeconds",
73813            "type": "integer",
73814            "uniqueItems": true
73815          }
73816        ],
73817        "produces": [
73818          "application/json",
73819          "application/yaml",
73820          "application/vnd.kubernetes.protobuf"
73821        ],
73822        "responses": {
73823          "200": {
73824            "description": "OK",
73825            "schema": {
73826              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73827            }
73828          },
73829          "401": {
73830            "description": "Unauthorized"
73831          }
73832        },
73833        "schemes": [
73834          "https"
73835        ],
73836        "tags": [
73837          "flowcontrolApiserver_v1beta1"
73838        ],
73839        "x-kubernetes-action": "deletecollection",
73840        "x-kubernetes-group-version-kind": {
73841          "group": "flowcontrol.apiserver.k8s.io",
73842          "kind": "FlowSchema",
73843          "version": "v1beta1"
73844        }
73845      },
73846      "get": {
73847        "consumes": [
73848          "*/*"
73849        ],
73850        "description": "list or watch objects of kind FlowSchema",
73851        "operationId": "listFlowcontrolApiserverV1beta1FlowSchema",
73852        "parameters": [
73853          {
73854            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
73855            "in": "query",
73856            "name": "allowWatchBookmarks",
73857            "type": "boolean",
73858            "uniqueItems": true
73859          },
73860          {
73861            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73862            "in": "query",
73863            "name": "continue",
73864            "type": "string",
73865            "uniqueItems": true
73866          },
73867          {
73868            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73869            "in": "query",
73870            "name": "fieldSelector",
73871            "type": "string",
73872            "uniqueItems": true
73873          },
73874          {
73875            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73876            "in": "query",
73877            "name": "labelSelector",
73878            "type": "string",
73879            "uniqueItems": true
73880          },
73881          {
73882            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73883            "in": "query",
73884            "name": "limit",
73885            "type": "integer",
73886            "uniqueItems": true
73887          },
73888          {
73889            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73890            "in": "query",
73891            "name": "resourceVersion",
73892            "type": "string",
73893            "uniqueItems": true
73894          },
73895          {
73896            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73897            "in": "query",
73898            "name": "resourceVersionMatch",
73899            "type": "string",
73900            "uniqueItems": true
73901          },
73902          {
73903            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73904            "in": "query",
73905            "name": "timeoutSeconds",
73906            "type": "integer",
73907            "uniqueItems": true
73908          },
73909          {
73910            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73911            "in": "query",
73912            "name": "watch",
73913            "type": "boolean",
73914            "uniqueItems": true
73915          }
73916        ],
73917        "produces": [
73918          "application/json",
73919          "application/yaml",
73920          "application/vnd.kubernetes.protobuf",
73921          "application/json;stream=watch",
73922          "application/vnd.kubernetes.protobuf;stream=watch"
73923        ],
73924        "responses": {
73925          "200": {
73926            "description": "OK",
73927            "schema": {
73928              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaList"
73929            }
73930          },
73931          "401": {
73932            "description": "Unauthorized"
73933          }
73934        },
73935        "schemes": [
73936          "https"
73937        ],
73938        "tags": [
73939          "flowcontrolApiserver_v1beta1"
73940        ],
73941        "x-kubernetes-action": "list",
73942        "x-kubernetes-group-version-kind": {
73943          "group": "flowcontrol.apiserver.k8s.io",
73944          "kind": "FlowSchema",
73945          "version": "v1beta1"
73946        }
73947      },
73948      "parameters": [
73949        {
73950          "description": "If 'true', then the output is pretty printed.",
73951          "in": "query",
73952          "name": "pretty",
73953          "type": "string",
73954          "uniqueItems": true
73955        }
73956      ],
73957      "post": {
73958        "consumes": [
73959          "*/*"
73960        ],
73961        "description": "create a FlowSchema",
73962        "operationId": "createFlowcontrolApiserverV1beta1FlowSchema",
73963        "parameters": [
73964          {
73965            "in": "body",
73966            "name": "body",
73967            "required": true,
73968            "schema": {
73969              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
73970            }
73971          },
73972          {
73973            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73974            "in": "query",
73975            "name": "dryRun",
73976            "type": "string",
73977            "uniqueItems": true
73978          },
73979          {
73980            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73981            "in": "query",
73982            "name": "fieldManager",
73983            "type": "string",
73984            "uniqueItems": true
73985          }
73986        ],
73987        "produces": [
73988          "application/json",
73989          "application/yaml",
73990          "application/vnd.kubernetes.protobuf"
73991        ],
73992        "responses": {
73993          "200": {
73994            "description": "OK",
73995            "schema": {
73996              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
73997            }
73998          },
73999          "201": {
74000            "description": "Created",
74001            "schema": {
74002              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74003            }
74004          },
74005          "202": {
74006            "description": "Accepted",
74007            "schema": {
74008              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74009            }
74010          },
74011          "401": {
74012            "description": "Unauthorized"
74013          }
74014        },
74015        "schemes": [
74016          "https"
74017        ],
74018        "tags": [
74019          "flowcontrolApiserver_v1beta1"
74020        ],
74021        "x-kubernetes-action": "post",
74022        "x-kubernetes-group-version-kind": {
74023          "group": "flowcontrol.apiserver.k8s.io",
74024          "kind": "FlowSchema",
74025          "version": "v1beta1"
74026        }
74027      }
74028    },
74029    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}": {
74030      "delete": {
74031        "consumes": [
74032          "*/*"
74033        ],
74034        "description": "delete a FlowSchema",
74035        "operationId": "deleteFlowcontrolApiserverV1beta1FlowSchema",
74036        "parameters": [
74037          {
74038            "in": "body",
74039            "name": "body",
74040            "schema": {
74041              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74042            }
74043          },
74044          {
74045            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74046            "in": "query",
74047            "name": "dryRun",
74048            "type": "string",
74049            "uniqueItems": true
74050          },
74051          {
74052            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74053            "in": "query",
74054            "name": "gracePeriodSeconds",
74055            "type": "integer",
74056            "uniqueItems": true
74057          },
74058          {
74059            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74060            "in": "query",
74061            "name": "orphanDependents",
74062            "type": "boolean",
74063            "uniqueItems": true
74064          },
74065          {
74066            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74067            "in": "query",
74068            "name": "propagationPolicy",
74069            "type": "string",
74070            "uniqueItems": true
74071          }
74072        ],
74073        "produces": [
74074          "application/json",
74075          "application/yaml",
74076          "application/vnd.kubernetes.protobuf"
74077        ],
74078        "responses": {
74079          "200": {
74080            "description": "OK",
74081            "schema": {
74082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74083            }
74084          },
74085          "202": {
74086            "description": "Accepted",
74087            "schema": {
74088              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74089            }
74090          },
74091          "401": {
74092            "description": "Unauthorized"
74093          }
74094        },
74095        "schemes": [
74096          "https"
74097        ],
74098        "tags": [
74099          "flowcontrolApiserver_v1beta1"
74100        ],
74101        "x-kubernetes-action": "delete",
74102        "x-kubernetes-group-version-kind": {
74103          "group": "flowcontrol.apiserver.k8s.io",
74104          "kind": "FlowSchema",
74105          "version": "v1beta1"
74106        }
74107      },
74108      "get": {
74109        "consumes": [
74110          "*/*"
74111        ],
74112        "description": "read the specified FlowSchema",
74113        "operationId": "readFlowcontrolApiserverV1beta1FlowSchema",
74114        "produces": [
74115          "application/json",
74116          "application/yaml",
74117          "application/vnd.kubernetes.protobuf"
74118        ],
74119        "responses": {
74120          "200": {
74121            "description": "OK",
74122            "schema": {
74123              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74124            }
74125          },
74126          "401": {
74127            "description": "Unauthorized"
74128          }
74129        },
74130        "schemes": [
74131          "https"
74132        ],
74133        "tags": [
74134          "flowcontrolApiserver_v1beta1"
74135        ],
74136        "x-kubernetes-action": "get",
74137        "x-kubernetes-group-version-kind": {
74138          "group": "flowcontrol.apiserver.k8s.io",
74139          "kind": "FlowSchema",
74140          "version": "v1beta1"
74141        }
74142      },
74143      "parameters": [
74144        {
74145          "description": "name of the FlowSchema",
74146          "in": "path",
74147          "name": "name",
74148          "required": true,
74149          "type": "string",
74150          "uniqueItems": true
74151        },
74152        {
74153          "description": "If 'true', then the output is pretty printed.",
74154          "in": "query",
74155          "name": "pretty",
74156          "type": "string",
74157          "uniqueItems": true
74158        }
74159      ],
74160      "patch": {
74161        "consumes": [
74162          "application/json-patch+json",
74163          "application/merge-patch+json",
74164          "application/strategic-merge-patch+json",
74165          "application/apply-patch+yaml"
74166        ],
74167        "description": "partially update the specified FlowSchema",
74168        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchema",
74169        "parameters": [
74170          {
74171            "in": "body",
74172            "name": "body",
74173            "required": true,
74174            "schema": {
74175              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74176            }
74177          },
74178          {
74179            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74180            "in": "query",
74181            "name": "dryRun",
74182            "type": "string",
74183            "uniqueItems": true
74184          },
74185          {
74186            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
74187            "in": "query",
74188            "name": "fieldManager",
74189            "type": "string",
74190            "uniqueItems": true
74191          },
74192          {
74193            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
74194            "in": "query",
74195            "name": "force",
74196            "type": "boolean",
74197            "uniqueItems": true
74198          }
74199        ],
74200        "produces": [
74201          "application/json",
74202          "application/yaml",
74203          "application/vnd.kubernetes.protobuf"
74204        ],
74205        "responses": {
74206          "200": {
74207            "description": "OK",
74208            "schema": {
74209              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74210            }
74211          },
74212          "401": {
74213            "description": "Unauthorized"
74214          }
74215        },
74216        "schemes": [
74217          "https"
74218        ],
74219        "tags": [
74220          "flowcontrolApiserver_v1beta1"
74221        ],
74222        "x-kubernetes-action": "patch",
74223        "x-kubernetes-group-version-kind": {
74224          "group": "flowcontrol.apiserver.k8s.io",
74225          "kind": "FlowSchema",
74226          "version": "v1beta1"
74227        }
74228      },
74229      "put": {
74230        "consumes": [
74231          "*/*"
74232        ],
74233        "description": "replace the specified FlowSchema",
74234        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchema",
74235        "parameters": [
74236          {
74237            "in": "body",
74238            "name": "body",
74239            "required": true,
74240            "schema": {
74241              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74242            }
74243          },
74244          {
74245            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74246            "in": "query",
74247            "name": "dryRun",
74248            "type": "string",
74249            "uniqueItems": true
74250          },
74251          {
74252            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74253            "in": "query",
74254            "name": "fieldManager",
74255            "type": "string",
74256            "uniqueItems": true
74257          }
74258        ],
74259        "produces": [
74260          "application/json",
74261          "application/yaml",
74262          "application/vnd.kubernetes.protobuf"
74263        ],
74264        "responses": {
74265          "200": {
74266            "description": "OK",
74267            "schema": {
74268              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74269            }
74270          },
74271          "201": {
74272            "description": "Created",
74273            "schema": {
74274              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74275            }
74276          },
74277          "401": {
74278            "description": "Unauthorized"
74279          }
74280        },
74281        "schemes": [
74282          "https"
74283        ],
74284        "tags": [
74285          "flowcontrolApiserver_v1beta1"
74286        ],
74287        "x-kubernetes-action": "put",
74288        "x-kubernetes-group-version-kind": {
74289          "group": "flowcontrol.apiserver.k8s.io",
74290          "kind": "FlowSchema",
74291          "version": "v1beta1"
74292        }
74293      }
74294    },
74295    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status": {
74296      "get": {
74297        "consumes": [
74298          "*/*"
74299        ],
74300        "description": "read status of the specified FlowSchema",
74301        "operationId": "readFlowcontrolApiserverV1beta1FlowSchemaStatus",
74302        "produces": [
74303          "application/json",
74304          "application/yaml",
74305          "application/vnd.kubernetes.protobuf"
74306        ],
74307        "responses": {
74308          "200": {
74309            "description": "OK",
74310            "schema": {
74311              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74312            }
74313          },
74314          "401": {
74315            "description": "Unauthorized"
74316          }
74317        },
74318        "schemes": [
74319          "https"
74320        ],
74321        "tags": [
74322          "flowcontrolApiserver_v1beta1"
74323        ],
74324        "x-kubernetes-action": "get",
74325        "x-kubernetes-group-version-kind": {
74326          "group": "flowcontrol.apiserver.k8s.io",
74327          "kind": "FlowSchema",
74328          "version": "v1beta1"
74329        }
74330      },
74331      "parameters": [
74332        {
74333          "description": "name of the FlowSchema",
74334          "in": "path",
74335          "name": "name",
74336          "required": true,
74337          "type": "string",
74338          "uniqueItems": true
74339        },
74340        {
74341          "description": "If 'true', then the output is pretty printed.",
74342          "in": "query",
74343          "name": "pretty",
74344          "type": "string",
74345          "uniqueItems": true
74346        }
74347      ],
74348      "patch": {
74349        "consumes": [
74350          "application/json-patch+json",
74351          "application/merge-patch+json",
74352          "application/strategic-merge-patch+json",
74353          "application/apply-patch+yaml"
74354        ],
74355        "description": "partially update status of the specified FlowSchema",
74356        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchemaStatus",
74357        "parameters": [
74358          {
74359            "in": "body",
74360            "name": "body",
74361            "required": true,
74362            "schema": {
74363              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74364            }
74365          },
74366          {
74367            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74368            "in": "query",
74369            "name": "dryRun",
74370            "type": "string",
74371            "uniqueItems": true
74372          },
74373          {
74374            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
74375            "in": "query",
74376            "name": "fieldManager",
74377            "type": "string",
74378            "uniqueItems": true
74379          },
74380          {
74381            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
74382            "in": "query",
74383            "name": "force",
74384            "type": "boolean",
74385            "uniqueItems": true
74386          }
74387        ],
74388        "produces": [
74389          "application/json",
74390          "application/yaml",
74391          "application/vnd.kubernetes.protobuf"
74392        ],
74393        "responses": {
74394          "200": {
74395            "description": "OK",
74396            "schema": {
74397              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74398            }
74399          },
74400          "401": {
74401            "description": "Unauthorized"
74402          }
74403        },
74404        "schemes": [
74405          "https"
74406        ],
74407        "tags": [
74408          "flowcontrolApiserver_v1beta1"
74409        ],
74410        "x-kubernetes-action": "patch",
74411        "x-kubernetes-group-version-kind": {
74412          "group": "flowcontrol.apiserver.k8s.io",
74413          "kind": "FlowSchema",
74414          "version": "v1beta1"
74415        }
74416      },
74417      "put": {
74418        "consumes": [
74419          "*/*"
74420        ],
74421        "description": "replace status of the specified FlowSchema",
74422        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchemaStatus",
74423        "parameters": [
74424          {
74425            "in": "body",
74426            "name": "body",
74427            "required": true,
74428            "schema": {
74429              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74430            }
74431          },
74432          {
74433            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74434            "in": "query",
74435            "name": "dryRun",
74436            "type": "string",
74437            "uniqueItems": true
74438          },
74439          {
74440            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74441            "in": "query",
74442            "name": "fieldManager",
74443            "type": "string",
74444            "uniqueItems": true
74445          }
74446        ],
74447        "produces": [
74448          "application/json",
74449          "application/yaml",
74450          "application/vnd.kubernetes.protobuf"
74451        ],
74452        "responses": {
74453          "200": {
74454            "description": "OK",
74455            "schema": {
74456              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74457            }
74458          },
74459          "201": {
74460            "description": "Created",
74461            "schema": {
74462              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
74463            }
74464          },
74465          "401": {
74466            "description": "Unauthorized"
74467          }
74468        },
74469        "schemes": [
74470          "https"
74471        ],
74472        "tags": [
74473          "flowcontrolApiserver_v1beta1"
74474        ],
74475        "x-kubernetes-action": "put",
74476        "x-kubernetes-group-version-kind": {
74477          "group": "flowcontrol.apiserver.k8s.io",
74478          "kind": "FlowSchema",
74479          "version": "v1beta1"
74480        }
74481      }
74482    },
74483    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations": {
74484      "delete": {
74485        "consumes": [
74486          "*/*"
74487        ],
74488        "description": "delete collection of PriorityLevelConfiguration",
74489        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionPriorityLevelConfiguration",
74490        "parameters": [
74491          {
74492            "in": "body",
74493            "name": "body",
74494            "schema": {
74495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74496            }
74497          },
74498          {
74499            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74500            "in": "query",
74501            "name": "continue",
74502            "type": "string",
74503            "uniqueItems": true
74504          },
74505          {
74506            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74507            "in": "query",
74508            "name": "dryRun",
74509            "type": "string",
74510            "uniqueItems": true
74511          },
74512          {
74513            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74514            "in": "query",
74515            "name": "fieldSelector",
74516            "type": "string",
74517            "uniqueItems": true
74518          },
74519          {
74520            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74521            "in": "query",
74522            "name": "gracePeriodSeconds",
74523            "type": "integer",
74524            "uniqueItems": true
74525          },
74526          {
74527            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74528            "in": "query",
74529            "name": "labelSelector",
74530            "type": "string",
74531            "uniqueItems": true
74532          },
74533          {
74534            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74535            "in": "query",
74536            "name": "limit",
74537            "type": "integer",
74538            "uniqueItems": true
74539          },
74540          {
74541            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74542            "in": "query",
74543            "name": "orphanDependents",
74544            "type": "boolean",
74545            "uniqueItems": true
74546          },
74547          {
74548            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74549            "in": "query",
74550            "name": "propagationPolicy",
74551            "type": "string",
74552            "uniqueItems": true
74553          },
74554          {
74555            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74556            "in": "query",
74557            "name": "resourceVersion",
74558            "type": "string",
74559            "uniqueItems": true
74560          },
74561          {
74562            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74563            "in": "query",
74564            "name": "resourceVersionMatch",
74565            "type": "string",
74566            "uniqueItems": true
74567          },
74568          {
74569            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74570            "in": "query",
74571            "name": "timeoutSeconds",
74572            "type": "integer",
74573            "uniqueItems": true
74574          }
74575        ],
74576        "produces": [
74577          "application/json",
74578          "application/yaml",
74579          "application/vnd.kubernetes.protobuf"
74580        ],
74581        "responses": {
74582          "200": {
74583            "description": "OK",
74584            "schema": {
74585              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74586            }
74587          },
74588          "401": {
74589            "description": "Unauthorized"
74590          }
74591        },
74592        "schemes": [
74593          "https"
74594        ],
74595        "tags": [
74596          "flowcontrolApiserver_v1beta1"
74597        ],
74598        "x-kubernetes-action": "deletecollection",
74599        "x-kubernetes-group-version-kind": {
74600          "group": "flowcontrol.apiserver.k8s.io",
74601          "kind": "PriorityLevelConfiguration",
74602          "version": "v1beta1"
74603        }
74604      },
74605      "get": {
74606        "consumes": [
74607          "*/*"
74608        ],
74609        "description": "list or watch objects of kind PriorityLevelConfiguration",
74610        "operationId": "listFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74611        "parameters": [
74612          {
74613            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
74614            "in": "query",
74615            "name": "allowWatchBookmarks",
74616            "type": "boolean",
74617            "uniqueItems": true
74618          },
74619          {
74620            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74621            "in": "query",
74622            "name": "continue",
74623            "type": "string",
74624            "uniqueItems": true
74625          },
74626          {
74627            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74628            "in": "query",
74629            "name": "fieldSelector",
74630            "type": "string",
74631            "uniqueItems": true
74632          },
74633          {
74634            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74635            "in": "query",
74636            "name": "labelSelector",
74637            "type": "string",
74638            "uniqueItems": true
74639          },
74640          {
74641            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74642            "in": "query",
74643            "name": "limit",
74644            "type": "integer",
74645            "uniqueItems": true
74646          },
74647          {
74648            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74649            "in": "query",
74650            "name": "resourceVersion",
74651            "type": "string",
74652            "uniqueItems": true
74653          },
74654          {
74655            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74656            "in": "query",
74657            "name": "resourceVersionMatch",
74658            "type": "string",
74659            "uniqueItems": true
74660          },
74661          {
74662            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74663            "in": "query",
74664            "name": "timeoutSeconds",
74665            "type": "integer",
74666            "uniqueItems": true
74667          },
74668          {
74669            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74670            "in": "query",
74671            "name": "watch",
74672            "type": "boolean",
74673            "uniqueItems": true
74674          }
74675        ],
74676        "produces": [
74677          "application/json",
74678          "application/yaml",
74679          "application/vnd.kubernetes.protobuf",
74680          "application/json;stream=watch",
74681          "application/vnd.kubernetes.protobuf;stream=watch"
74682        ],
74683        "responses": {
74684          "200": {
74685            "description": "OK",
74686            "schema": {
74687              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList"
74688            }
74689          },
74690          "401": {
74691            "description": "Unauthorized"
74692          }
74693        },
74694        "schemes": [
74695          "https"
74696        ],
74697        "tags": [
74698          "flowcontrolApiserver_v1beta1"
74699        ],
74700        "x-kubernetes-action": "list",
74701        "x-kubernetes-group-version-kind": {
74702          "group": "flowcontrol.apiserver.k8s.io",
74703          "kind": "PriorityLevelConfiguration",
74704          "version": "v1beta1"
74705        }
74706      },
74707      "parameters": [
74708        {
74709          "description": "If 'true', then the output is pretty printed.",
74710          "in": "query",
74711          "name": "pretty",
74712          "type": "string",
74713          "uniqueItems": true
74714        }
74715      ],
74716      "post": {
74717        "consumes": [
74718          "*/*"
74719        ],
74720        "description": "create a PriorityLevelConfiguration",
74721        "operationId": "createFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74722        "parameters": [
74723          {
74724            "in": "body",
74725            "name": "body",
74726            "required": true,
74727            "schema": {
74728              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74729            }
74730          },
74731          {
74732            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74733            "in": "query",
74734            "name": "dryRun",
74735            "type": "string",
74736            "uniqueItems": true
74737          },
74738          {
74739            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74740            "in": "query",
74741            "name": "fieldManager",
74742            "type": "string",
74743            "uniqueItems": true
74744          }
74745        ],
74746        "produces": [
74747          "application/json",
74748          "application/yaml",
74749          "application/vnd.kubernetes.protobuf"
74750        ],
74751        "responses": {
74752          "200": {
74753            "description": "OK",
74754            "schema": {
74755              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74756            }
74757          },
74758          "201": {
74759            "description": "Created",
74760            "schema": {
74761              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74762            }
74763          },
74764          "202": {
74765            "description": "Accepted",
74766            "schema": {
74767              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74768            }
74769          },
74770          "401": {
74771            "description": "Unauthorized"
74772          }
74773        },
74774        "schemes": [
74775          "https"
74776        ],
74777        "tags": [
74778          "flowcontrolApiserver_v1beta1"
74779        ],
74780        "x-kubernetes-action": "post",
74781        "x-kubernetes-group-version-kind": {
74782          "group": "flowcontrol.apiserver.k8s.io",
74783          "kind": "PriorityLevelConfiguration",
74784          "version": "v1beta1"
74785        }
74786      }
74787    },
74788    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}": {
74789      "delete": {
74790        "consumes": [
74791          "*/*"
74792        ],
74793        "description": "delete a PriorityLevelConfiguration",
74794        "operationId": "deleteFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74795        "parameters": [
74796          {
74797            "in": "body",
74798            "name": "body",
74799            "schema": {
74800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74801            }
74802          },
74803          {
74804            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74805            "in": "query",
74806            "name": "dryRun",
74807            "type": "string",
74808            "uniqueItems": true
74809          },
74810          {
74811            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74812            "in": "query",
74813            "name": "gracePeriodSeconds",
74814            "type": "integer",
74815            "uniqueItems": true
74816          },
74817          {
74818            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74819            "in": "query",
74820            "name": "orphanDependents",
74821            "type": "boolean",
74822            "uniqueItems": true
74823          },
74824          {
74825            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74826            "in": "query",
74827            "name": "propagationPolicy",
74828            "type": "string",
74829            "uniqueItems": true
74830          }
74831        ],
74832        "produces": [
74833          "application/json",
74834          "application/yaml",
74835          "application/vnd.kubernetes.protobuf"
74836        ],
74837        "responses": {
74838          "200": {
74839            "description": "OK",
74840            "schema": {
74841              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74842            }
74843          },
74844          "202": {
74845            "description": "Accepted",
74846            "schema": {
74847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74848            }
74849          },
74850          "401": {
74851            "description": "Unauthorized"
74852          }
74853        },
74854        "schemes": [
74855          "https"
74856        ],
74857        "tags": [
74858          "flowcontrolApiserver_v1beta1"
74859        ],
74860        "x-kubernetes-action": "delete",
74861        "x-kubernetes-group-version-kind": {
74862          "group": "flowcontrol.apiserver.k8s.io",
74863          "kind": "PriorityLevelConfiguration",
74864          "version": "v1beta1"
74865        }
74866      },
74867      "get": {
74868        "consumes": [
74869          "*/*"
74870        ],
74871        "description": "read the specified PriorityLevelConfiguration",
74872        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74873        "produces": [
74874          "application/json",
74875          "application/yaml",
74876          "application/vnd.kubernetes.protobuf"
74877        ],
74878        "responses": {
74879          "200": {
74880            "description": "OK",
74881            "schema": {
74882              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74883            }
74884          },
74885          "401": {
74886            "description": "Unauthorized"
74887          }
74888        },
74889        "schemes": [
74890          "https"
74891        ],
74892        "tags": [
74893          "flowcontrolApiserver_v1beta1"
74894        ],
74895        "x-kubernetes-action": "get",
74896        "x-kubernetes-group-version-kind": {
74897          "group": "flowcontrol.apiserver.k8s.io",
74898          "kind": "PriorityLevelConfiguration",
74899          "version": "v1beta1"
74900        }
74901      },
74902      "parameters": [
74903        {
74904          "description": "name of the PriorityLevelConfiguration",
74905          "in": "path",
74906          "name": "name",
74907          "required": true,
74908          "type": "string",
74909          "uniqueItems": true
74910        },
74911        {
74912          "description": "If 'true', then the output is pretty printed.",
74913          "in": "query",
74914          "name": "pretty",
74915          "type": "string",
74916          "uniqueItems": true
74917        }
74918      ],
74919      "patch": {
74920        "consumes": [
74921          "application/json-patch+json",
74922          "application/merge-patch+json",
74923          "application/strategic-merge-patch+json",
74924          "application/apply-patch+yaml"
74925        ],
74926        "description": "partially update the specified PriorityLevelConfiguration",
74927        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74928        "parameters": [
74929          {
74930            "in": "body",
74931            "name": "body",
74932            "required": true,
74933            "schema": {
74934              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74935            }
74936          },
74937          {
74938            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74939            "in": "query",
74940            "name": "dryRun",
74941            "type": "string",
74942            "uniqueItems": true
74943          },
74944          {
74945            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
74946            "in": "query",
74947            "name": "fieldManager",
74948            "type": "string",
74949            "uniqueItems": true
74950          },
74951          {
74952            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
74953            "in": "query",
74954            "name": "force",
74955            "type": "boolean",
74956            "uniqueItems": true
74957          }
74958        ],
74959        "produces": [
74960          "application/json",
74961          "application/yaml",
74962          "application/vnd.kubernetes.protobuf"
74963        ],
74964        "responses": {
74965          "200": {
74966            "description": "OK",
74967            "schema": {
74968              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
74969            }
74970          },
74971          "401": {
74972            "description": "Unauthorized"
74973          }
74974        },
74975        "schemes": [
74976          "https"
74977        ],
74978        "tags": [
74979          "flowcontrolApiserver_v1beta1"
74980        ],
74981        "x-kubernetes-action": "patch",
74982        "x-kubernetes-group-version-kind": {
74983          "group": "flowcontrol.apiserver.k8s.io",
74984          "kind": "PriorityLevelConfiguration",
74985          "version": "v1beta1"
74986        }
74987      },
74988      "put": {
74989        "consumes": [
74990          "*/*"
74991        ],
74992        "description": "replace the specified PriorityLevelConfiguration",
74993        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
74994        "parameters": [
74995          {
74996            "in": "body",
74997            "name": "body",
74998            "required": true,
74999            "schema": {
75000              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75001            }
75002          },
75003          {
75004            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75005            "in": "query",
75006            "name": "dryRun",
75007            "type": "string",
75008            "uniqueItems": true
75009          },
75010          {
75011            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75012            "in": "query",
75013            "name": "fieldManager",
75014            "type": "string",
75015            "uniqueItems": true
75016          }
75017        ],
75018        "produces": [
75019          "application/json",
75020          "application/yaml",
75021          "application/vnd.kubernetes.protobuf"
75022        ],
75023        "responses": {
75024          "200": {
75025            "description": "OK",
75026            "schema": {
75027              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75028            }
75029          },
75030          "201": {
75031            "description": "Created",
75032            "schema": {
75033              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75034            }
75035          },
75036          "401": {
75037            "description": "Unauthorized"
75038          }
75039        },
75040        "schemes": [
75041          "https"
75042        ],
75043        "tags": [
75044          "flowcontrolApiserver_v1beta1"
75045        ],
75046        "x-kubernetes-action": "put",
75047        "x-kubernetes-group-version-kind": {
75048          "group": "flowcontrol.apiserver.k8s.io",
75049          "kind": "PriorityLevelConfiguration",
75050          "version": "v1beta1"
75051        }
75052      }
75053    },
75054    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status": {
75055      "get": {
75056        "consumes": [
75057          "*/*"
75058        ],
75059        "description": "read status of the specified PriorityLevelConfiguration",
75060        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75061        "produces": [
75062          "application/json",
75063          "application/yaml",
75064          "application/vnd.kubernetes.protobuf"
75065        ],
75066        "responses": {
75067          "200": {
75068            "description": "OK",
75069            "schema": {
75070              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75071            }
75072          },
75073          "401": {
75074            "description": "Unauthorized"
75075          }
75076        },
75077        "schemes": [
75078          "https"
75079        ],
75080        "tags": [
75081          "flowcontrolApiserver_v1beta1"
75082        ],
75083        "x-kubernetes-action": "get",
75084        "x-kubernetes-group-version-kind": {
75085          "group": "flowcontrol.apiserver.k8s.io",
75086          "kind": "PriorityLevelConfiguration",
75087          "version": "v1beta1"
75088        }
75089      },
75090      "parameters": [
75091        {
75092          "description": "name of the PriorityLevelConfiguration",
75093          "in": "path",
75094          "name": "name",
75095          "required": true,
75096          "type": "string",
75097          "uniqueItems": true
75098        },
75099        {
75100          "description": "If 'true', then the output is pretty printed.",
75101          "in": "query",
75102          "name": "pretty",
75103          "type": "string",
75104          "uniqueItems": true
75105        }
75106      ],
75107      "patch": {
75108        "consumes": [
75109          "application/json-patch+json",
75110          "application/merge-patch+json",
75111          "application/strategic-merge-patch+json",
75112          "application/apply-patch+yaml"
75113        ],
75114        "description": "partially update status of the specified PriorityLevelConfiguration",
75115        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75116        "parameters": [
75117          {
75118            "in": "body",
75119            "name": "body",
75120            "required": true,
75121            "schema": {
75122              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
75123            }
75124          },
75125          {
75126            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75127            "in": "query",
75128            "name": "dryRun",
75129            "type": "string",
75130            "uniqueItems": true
75131          },
75132          {
75133            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
75134            "in": "query",
75135            "name": "fieldManager",
75136            "type": "string",
75137            "uniqueItems": true
75138          },
75139          {
75140            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
75141            "in": "query",
75142            "name": "force",
75143            "type": "boolean",
75144            "uniqueItems": true
75145          }
75146        ],
75147        "produces": [
75148          "application/json",
75149          "application/yaml",
75150          "application/vnd.kubernetes.protobuf"
75151        ],
75152        "responses": {
75153          "200": {
75154            "description": "OK",
75155            "schema": {
75156              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75157            }
75158          },
75159          "401": {
75160            "description": "Unauthorized"
75161          }
75162        },
75163        "schemes": [
75164          "https"
75165        ],
75166        "tags": [
75167          "flowcontrolApiserver_v1beta1"
75168        ],
75169        "x-kubernetes-action": "patch",
75170        "x-kubernetes-group-version-kind": {
75171          "group": "flowcontrol.apiserver.k8s.io",
75172          "kind": "PriorityLevelConfiguration",
75173          "version": "v1beta1"
75174        }
75175      },
75176      "put": {
75177        "consumes": [
75178          "*/*"
75179        ],
75180        "description": "replace status of the specified PriorityLevelConfiguration",
75181        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
75182        "parameters": [
75183          {
75184            "in": "body",
75185            "name": "body",
75186            "required": true,
75187            "schema": {
75188              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75189            }
75190          },
75191          {
75192            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75193            "in": "query",
75194            "name": "dryRun",
75195            "type": "string",
75196            "uniqueItems": true
75197          },
75198          {
75199            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75200            "in": "query",
75201            "name": "fieldManager",
75202            "type": "string",
75203            "uniqueItems": true
75204          }
75205        ],
75206        "produces": [
75207          "application/json",
75208          "application/yaml",
75209          "application/vnd.kubernetes.protobuf"
75210        ],
75211        "responses": {
75212          "200": {
75213            "description": "OK",
75214            "schema": {
75215              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75216            }
75217          },
75218          "201": {
75219            "description": "Created",
75220            "schema": {
75221              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
75222            }
75223          },
75224          "401": {
75225            "description": "Unauthorized"
75226          }
75227        },
75228        "schemes": [
75229          "https"
75230        ],
75231        "tags": [
75232          "flowcontrolApiserver_v1beta1"
75233        ],
75234        "x-kubernetes-action": "put",
75235        "x-kubernetes-group-version-kind": {
75236          "group": "flowcontrol.apiserver.k8s.io",
75237          "kind": "PriorityLevelConfiguration",
75238          "version": "v1beta1"
75239        }
75240      }
75241    },
75242    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas": {
75243      "get": {
75244        "consumes": [
75245          "*/*"
75246        ],
75247        "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.",
75248        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchemaList",
75249        "produces": [
75250          "application/json",
75251          "application/yaml",
75252          "application/vnd.kubernetes.protobuf",
75253          "application/json;stream=watch",
75254          "application/vnd.kubernetes.protobuf;stream=watch"
75255        ],
75256        "responses": {
75257          "200": {
75258            "description": "OK",
75259            "schema": {
75260              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75261            }
75262          },
75263          "401": {
75264            "description": "Unauthorized"
75265          }
75266        },
75267        "schemes": [
75268          "https"
75269        ],
75270        "tags": [
75271          "flowcontrolApiserver_v1beta1"
75272        ],
75273        "x-kubernetes-action": "watchlist",
75274        "x-kubernetes-group-version-kind": {
75275          "group": "flowcontrol.apiserver.k8s.io",
75276          "kind": "FlowSchema",
75277          "version": "v1beta1"
75278        }
75279      },
75280      "parameters": [
75281        {
75282          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75283          "in": "query",
75284          "name": "allowWatchBookmarks",
75285          "type": "boolean",
75286          "uniqueItems": true
75287        },
75288        {
75289          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75290          "in": "query",
75291          "name": "continue",
75292          "type": "string",
75293          "uniqueItems": true
75294        },
75295        {
75296          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75297          "in": "query",
75298          "name": "fieldSelector",
75299          "type": "string",
75300          "uniqueItems": true
75301        },
75302        {
75303          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75304          "in": "query",
75305          "name": "labelSelector",
75306          "type": "string",
75307          "uniqueItems": true
75308        },
75309        {
75310          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75311          "in": "query",
75312          "name": "limit",
75313          "type": "integer",
75314          "uniqueItems": true
75315        },
75316        {
75317          "description": "If 'true', then the output is pretty printed.",
75318          "in": "query",
75319          "name": "pretty",
75320          "type": "string",
75321          "uniqueItems": true
75322        },
75323        {
75324          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75325          "in": "query",
75326          "name": "resourceVersion",
75327          "type": "string",
75328          "uniqueItems": true
75329        },
75330        {
75331          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75332          "in": "query",
75333          "name": "resourceVersionMatch",
75334          "type": "string",
75335          "uniqueItems": true
75336        },
75337        {
75338          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75339          "in": "query",
75340          "name": "timeoutSeconds",
75341          "type": "integer",
75342          "uniqueItems": true
75343        },
75344        {
75345          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75346          "in": "query",
75347          "name": "watch",
75348          "type": "boolean",
75349          "uniqueItems": true
75350        }
75351      ]
75352    },
75353    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas/{name}": {
75354      "get": {
75355        "consumes": [
75356          "*/*"
75357        ],
75358        "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.",
75359        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchema",
75360        "produces": [
75361          "application/json",
75362          "application/yaml",
75363          "application/vnd.kubernetes.protobuf",
75364          "application/json;stream=watch",
75365          "application/vnd.kubernetes.protobuf;stream=watch"
75366        ],
75367        "responses": {
75368          "200": {
75369            "description": "OK",
75370            "schema": {
75371              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75372            }
75373          },
75374          "401": {
75375            "description": "Unauthorized"
75376          }
75377        },
75378        "schemes": [
75379          "https"
75380        ],
75381        "tags": [
75382          "flowcontrolApiserver_v1beta1"
75383        ],
75384        "x-kubernetes-action": "watch",
75385        "x-kubernetes-group-version-kind": {
75386          "group": "flowcontrol.apiserver.k8s.io",
75387          "kind": "FlowSchema",
75388          "version": "v1beta1"
75389        }
75390      },
75391      "parameters": [
75392        {
75393          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75394          "in": "query",
75395          "name": "allowWatchBookmarks",
75396          "type": "boolean",
75397          "uniqueItems": true
75398        },
75399        {
75400          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75401          "in": "query",
75402          "name": "continue",
75403          "type": "string",
75404          "uniqueItems": true
75405        },
75406        {
75407          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75408          "in": "query",
75409          "name": "fieldSelector",
75410          "type": "string",
75411          "uniqueItems": true
75412        },
75413        {
75414          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75415          "in": "query",
75416          "name": "labelSelector",
75417          "type": "string",
75418          "uniqueItems": true
75419        },
75420        {
75421          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75422          "in": "query",
75423          "name": "limit",
75424          "type": "integer",
75425          "uniqueItems": true
75426        },
75427        {
75428          "description": "name of the FlowSchema",
75429          "in": "path",
75430          "name": "name",
75431          "required": true,
75432          "type": "string",
75433          "uniqueItems": true
75434        },
75435        {
75436          "description": "If 'true', then the output is pretty printed.",
75437          "in": "query",
75438          "name": "pretty",
75439          "type": "string",
75440          "uniqueItems": true
75441        },
75442        {
75443          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75444          "in": "query",
75445          "name": "resourceVersion",
75446          "type": "string",
75447          "uniqueItems": true
75448        },
75449        {
75450          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75451          "in": "query",
75452          "name": "resourceVersionMatch",
75453          "type": "string",
75454          "uniqueItems": true
75455        },
75456        {
75457          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75458          "in": "query",
75459          "name": "timeoutSeconds",
75460          "type": "integer",
75461          "uniqueItems": true
75462        },
75463        {
75464          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75465          "in": "query",
75466          "name": "watch",
75467          "type": "boolean",
75468          "uniqueItems": true
75469        }
75470      ]
75471    },
75472    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations": {
75473      "get": {
75474        "consumes": [
75475          "*/*"
75476        ],
75477        "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
75478        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfigurationList",
75479        "produces": [
75480          "application/json",
75481          "application/yaml",
75482          "application/vnd.kubernetes.protobuf",
75483          "application/json;stream=watch",
75484          "application/vnd.kubernetes.protobuf;stream=watch"
75485        ],
75486        "responses": {
75487          "200": {
75488            "description": "OK",
75489            "schema": {
75490              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75491            }
75492          },
75493          "401": {
75494            "description": "Unauthorized"
75495          }
75496        },
75497        "schemes": [
75498          "https"
75499        ],
75500        "tags": [
75501          "flowcontrolApiserver_v1beta1"
75502        ],
75503        "x-kubernetes-action": "watchlist",
75504        "x-kubernetes-group-version-kind": {
75505          "group": "flowcontrol.apiserver.k8s.io",
75506          "kind": "PriorityLevelConfiguration",
75507          "version": "v1beta1"
75508        }
75509      },
75510      "parameters": [
75511        {
75512          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75513          "in": "query",
75514          "name": "allowWatchBookmarks",
75515          "type": "boolean",
75516          "uniqueItems": true
75517        },
75518        {
75519          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75520          "in": "query",
75521          "name": "continue",
75522          "type": "string",
75523          "uniqueItems": true
75524        },
75525        {
75526          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75527          "in": "query",
75528          "name": "fieldSelector",
75529          "type": "string",
75530          "uniqueItems": true
75531        },
75532        {
75533          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75534          "in": "query",
75535          "name": "labelSelector",
75536          "type": "string",
75537          "uniqueItems": true
75538        },
75539        {
75540          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75541          "in": "query",
75542          "name": "limit",
75543          "type": "integer",
75544          "uniqueItems": true
75545        },
75546        {
75547          "description": "If 'true', then the output is pretty printed.",
75548          "in": "query",
75549          "name": "pretty",
75550          "type": "string",
75551          "uniqueItems": true
75552        },
75553        {
75554          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75555          "in": "query",
75556          "name": "resourceVersion",
75557          "type": "string",
75558          "uniqueItems": true
75559        },
75560        {
75561          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75562          "in": "query",
75563          "name": "resourceVersionMatch",
75564          "type": "string",
75565          "uniqueItems": true
75566        },
75567        {
75568          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75569          "in": "query",
75570          "name": "timeoutSeconds",
75571          "type": "integer",
75572          "uniqueItems": true
75573        },
75574        {
75575          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75576          "in": "query",
75577          "name": "watch",
75578          "type": "boolean",
75579          "uniqueItems": true
75580        }
75581      ]
75582    },
75583    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations/{name}": {
75584      "get": {
75585        "consumes": [
75586          "*/*"
75587        ],
75588        "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.",
75589        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
75590        "produces": [
75591          "application/json",
75592          "application/yaml",
75593          "application/vnd.kubernetes.protobuf",
75594          "application/json;stream=watch",
75595          "application/vnd.kubernetes.protobuf;stream=watch"
75596        ],
75597        "responses": {
75598          "200": {
75599            "description": "OK",
75600            "schema": {
75601              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75602            }
75603          },
75604          "401": {
75605            "description": "Unauthorized"
75606          }
75607        },
75608        "schemes": [
75609          "https"
75610        ],
75611        "tags": [
75612          "flowcontrolApiserver_v1beta1"
75613        ],
75614        "x-kubernetes-action": "watch",
75615        "x-kubernetes-group-version-kind": {
75616          "group": "flowcontrol.apiserver.k8s.io",
75617          "kind": "PriorityLevelConfiguration",
75618          "version": "v1beta1"
75619        }
75620      },
75621      "parameters": [
75622        {
75623          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75624          "in": "query",
75625          "name": "allowWatchBookmarks",
75626          "type": "boolean",
75627          "uniqueItems": true
75628        },
75629        {
75630          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75631          "in": "query",
75632          "name": "continue",
75633          "type": "string",
75634          "uniqueItems": true
75635        },
75636        {
75637          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75638          "in": "query",
75639          "name": "fieldSelector",
75640          "type": "string",
75641          "uniqueItems": true
75642        },
75643        {
75644          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75645          "in": "query",
75646          "name": "labelSelector",
75647          "type": "string",
75648          "uniqueItems": true
75649        },
75650        {
75651          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75652          "in": "query",
75653          "name": "limit",
75654          "type": "integer",
75655          "uniqueItems": true
75656        },
75657        {
75658          "description": "name of the PriorityLevelConfiguration",
75659          "in": "path",
75660          "name": "name",
75661          "required": true,
75662          "type": "string",
75663          "uniqueItems": true
75664        },
75665        {
75666          "description": "If 'true', then the output is pretty printed.",
75667          "in": "query",
75668          "name": "pretty",
75669          "type": "string",
75670          "uniqueItems": true
75671        },
75672        {
75673          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75674          "in": "query",
75675          "name": "resourceVersion",
75676          "type": "string",
75677          "uniqueItems": true
75678        },
75679        {
75680          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75681          "in": "query",
75682          "name": "resourceVersionMatch",
75683          "type": "string",
75684          "uniqueItems": true
75685        },
75686        {
75687          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75688          "in": "query",
75689          "name": "timeoutSeconds",
75690          "type": "integer",
75691          "uniqueItems": true
75692        },
75693        {
75694          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75695          "in": "query",
75696          "name": "watch",
75697          "type": "boolean",
75698          "uniqueItems": true
75699        }
75700      ]
75701    },
75702    "/apis/internal.apiserver.k8s.io/": {
75703      "get": {
75704        "consumes": [
75705          "application/json",
75706          "application/yaml",
75707          "application/vnd.kubernetes.protobuf"
75708        ],
75709        "description": "get information of a group",
75710        "operationId": "getInternalApiserverAPIGroup",
75711        "produces": [
75712          "application/json",
75713          "application/yaml",
75714          "application/vnd.kubernetes.protobuf"
75715        ],
75716        "responses": {
75717          "200": {
75718            "description": "OK",
75719            "schema": {
75720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
75721            }
75722          },
75723          "401": {
75724            "description": "Unauthorized"
75725          }
75726        },
75727        "schemes": [
75728          "https"
75729        ],
75730        "tags": [
75731          "internalApiserver"
75732        ]
75733      }
75734    },
75735    "/apis/internal.apiserver.k8s.io/v1alpha1/": {
75736      "get": {
75737        "consumes": [
75738          "application/json",
75739          "application/yaml",
75740          "application/vnd.kubernetes.protobuf"
75741        ],
75742        "description": "get available resources",
75743        "operationId": "getInternalApiserverV1alpha1APIResources",
75744        "produces": [
75745          "application/json",
75746          "application/yaml",
75747          "application/vnd.kubernetes.protobuf"
75748        ],
75749        "responses": {
75750          "200": {
75751            "description": "OK",
75752            "schema": {
75753              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
75754            }
75755          },
75756          "401": {
75757            "description": "Unauthorized"
75758          }
75759        },
75760        "schemes": [
75761          "https"
75762        ],
75763        "tags": [
75764          "internalApiserver_v1alpha1"
75765        ]
75766      }
75767    },
75768    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions": {
75769      "delete": {
75770        "consumes": [
75771          "*/*"
75772        ],
75773        "description": "delete collection of StorageVersion",
75774        "operationId": "deleteInternalApiserverV1alpha1CollectionStorageVersion",
75775        "parameters": [
75776          {
75777            "in": "body",
75778            "name": "body",
75779            "schema": {
75780              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75781            }
75782          },
75783          {
75784            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75785            "in": "query",
75786            "name": "continue",
75787            "type": "string",
75788            "uniqueItems": true
75789          },
75790          {
75791            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75792            "in": "query",
75793            "name": "dryRun",
75794            "type": "string",
75795            "uniqueItems": true
75796          },
75797          {
75798            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75799            "in": "query",
75800            "name": "fieldSelector",
75801            "type": "string",
75802            "uniqueItems": true
75803          },
75804          {
75805            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75806            "in": "query",
75807            "name": "gracePeriodSeconds",
75808            "type": "integer",
75809            "uniqueItems": true
75810          },
75811          {
75812            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75813            "in": "query",
75814            "name": "labelSelector",
75815            "type": "string",
75816            "uniqueItems": true
75817          },
75818          {
75819            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75820            "in": "query",
75821            "name": "limit",
75822            "type": "integer",
75823            "uniqueItems": true
75824          },
75825          {
75826            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75827            "in": "query",
75828            "name": "orphanDependents",
75829            "type": "boolean",
75830            "uniqueItems": true
75831          },
75832          {
75833            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75834            "in": "query",
75835            "name": "propagationPolicy",
75836            "type": "string",
75837            "uniqueItems": true
75838          },
75839          {
75840            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75841            "in": "query",
75842            "name": "resourceVersion",
75843            "type": "string",
75844            "uniqueItems": true
75845          },
75846          {
75847            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75848            "in": "query",
75849            "name": "resourceVersionMatch",
75850            "type": "string",
75851            "uniqueItems": true
75852          },
75853          {
75854            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75855            "in": "query",
75856            "name": "timeoutSeconds",
75857            "type": "integer",
75858            "uniqueItems": true
75859          }
75860        ],
75861        "produces": [
75862          "application/json",
75863          "application/yaml",
75864          "application/vnd.kubernetes.protobuf"
75865        ],
75866        "responses": {
75867          "200": {
75868            "description": "OK",
75869            "schema": {
75870              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75871            }
75872          },
75873          "401": {
75874            "description": "Unauthorized"
75875          }
75876        },
75877        "schemes": [
75878          "https"
75879        ],
75880        "tags": [
75881          "internalApiserver_v1alpha1"
75882        ],
75883        "x-kubernetes-action": "deletecollection",
75884        "x-kubernetes-group-version-kind": {
75885          "group": "internal.apiserver.k8s.io",
75886          "kind": "StorageVersion",
75887          "version": "v1alpha1"
75888        }
75889      },
75890      "get": {
75891        "consumes": [
75892          "*/*"
75893        ],
75894        "description": "list or watch objects of kind StorageVersion",
75895        "operationId": "listInternalApiserverV1alpha1StorageVersion",
75896        "parameters": [
75897          {
75898            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
75899            "in": "query",
75900            "name": "allowWatchBookmarks",
75901            "type": "boolean",
75902            "uniqueItems": true
75903          },
75904          {
75905            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75906            "in": "query",
75907            "name": "continue",
75908            "type": "string",
75909            "uniqueItems": true
75910          },
75911          {
75912            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75913            "in": "query",
75914            "name": "fieldSelector",
75915            "type": "string",
75916            "uniqueItems": true
75917          },
75918          {
75919            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75920            "in": "query",
75921            "name": "labelSelector",
75922            "type": "string",
75923            "uniqueItems": true
75924          },
75925          {
75926            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75927            "in": "query",
75928            "name": "limit",
75929            "type": "integer",
75930            "uniqueItems": true
75931          },
75932          {
75933            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75934            "in": "query",
75935            "name": "resourceVersion",
75936            "type": "string",
75937            "uniqueItems": true
75938          },
75939          {
75940            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75941            "in": "query",
75942            "name": "resourceVersionMatch",
75943            "type": "string",
75944            "uniqueItems": true
75945          },
75946          {
75947            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75948            "in": "query",
75949            "name": "timeoutSeconds",
75950            "type": "integer",
75951            "uniqueItems": true
75952          },
75953          {
75954            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75955            "in": "query",
75956            "name": "watch",
75957            "type": "boolean",
75958            "uniqueItems": true
75959          }
75960        ],
75961        "produces": [
75962          "application/json",
75963          "application/yaml",
75964          "application/vnd.kubernetes.protobuf",
75965          "application/json;stream=watch",
75966          "application/vnd.kubernetes.protobuf;stream=watch"
75967        ],
75968        "responses": {
75969          "200": {
75970            "description": "OK",
75971            "schema": {
75972              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList"
75973            }
75974          },
75975          "401": {
75976            "description": "Unauthorized"
75977          }
75978        },
75979        "schemes": [
75980          "https"
75981        ],
75982        "tags": [
75983          "internalApiserver_v1alpha1"
75984        ],
75985        "x-kubernetes-action": "list",
75986        "x-kubernetes-group-version-kind": {
75987          "group": "internal.apiserver.k8s.io",
75988          "kind": "StorageVersion",
75989          "version": "v1alpha1"
75990        }
75991      },
75992      "parameters": [
75993        {
75994          "description": "If 'true', then the output is pretty printed.",
75995          "in": "query",
75996          "name": "pretty",
75997          "type": "string",
75998          "uniqueItems": true
75999        }
76000      ],
76001      "post": {
76002        "consumes": [
76003          "*/*"
76004        ],
76005        "description": "create a StorageVersion",
76006        "operationId": "createInternalApiserverV1alpha1StorageVersion",
76007        "parameters": [
76008          {
76009            "in": "body",
76010            "name": "body",
76011            "required": true,
76012            "schema": {
76013              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76014            }
76015          },
76016          {
76017            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76018            "in": "query",
76019            "name": "dryRun",
76020            "type": "string",
76021            "uniqueItems": true
76022          },
76023          {
76024            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76025            "in": "query",
76026            "name": "fieldManager",
76027            "type": "string",
76028            "uniqueItems": true
76029          }
76030        ],
76031        "produces": [
76032          "application/json",
76033          "application/yaml",
76034          "application/vnd.kubernetes.protobuf"
76035        ],
76036        "responses": {
76037          "200": {
76038            "description": "OK",
76039            "schema": {
76040              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76041            }
76042          },
76043          "201": {
76044            "description": "Created",
76045            "schema": {
76046              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76047            }
76048          },
76049          "202": {
76050            "description": "Accepted",
76051            "schema": {
76052              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76053            }
76054          },
76055          "401": {
76056            "description": "Unauthorized"
76057          }
76058        },
76059        "schemes": [
76060          "https"
76061        ],
76062        "tags": [
76063          "internalApiserver_v1alpha1"
76064        ],
76065        "x-kubernetes-action": "post",
76066        "x-kubernetes-group-version-kind": {
76067          "group": "internal.apiserver.k8s.io",
76068          "kind": "StorageVersion",
76069          "version": "v1alpha1"
76070        }
76071      }
76072    },
76073    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}": {
76074      "delete": {
76075        "consumes": [
76076          "*/*"
76077        ],
76078        "description": "delete a StorageVersion",
76079        "operationId": "deleteInternalApiserverV1alpha1StorageVersion",
76080        "parameters": [
76081          {
76082            "in": "body",
76083            "name": "body",
76084            "schema": {
76085              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76086            }
76087          },
76088          {
76089            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76090            "in": "query",
76091            "name": "dryRun",
76092            "type": "string",
76093            "uniqueItems": true
76094          },
76095          {
76096            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76097            "in": "query",
76098            "name": "gracePeriodSeconds",
76099            "type": "integer",
76100            "uniqueItems": true
76101          },
76102          {
76103            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76104            "in": "query",
76105            "name": "orphanDependents",
76106            "type": "boolean",
76107            "uniqueItems": true
76108          },
76109          {
76110            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76111            "in": "query",
76112            "name": "propagationPolicy",
76113            "type": "string",
76114            "uniqueItems": true
76115          }
76116        ],
76117        "produces": [
76118          "application/json",
76119          "application/yaml",
76120          "application/vnd.kubernetes.protobuf"
76121        ],
76122        "responses": {
76123          "200": {
76124            "description": "OK",
76125            "schema": {
76126              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76127            }
76128          },
76129          "202": {
76130            "description": "Accepted",
76131            "schema": {
76132              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76133            }
76134          },
76135          "401": {
76136            "description": "Unauthorized"
76137          }
76138        },
76139        "schemes": [
76140          "https"
76141        ],
76142        "tags": [
76143          "internalApiserver_v1alpha1"
76144        ],
76145        "x-kubernetes-action": "delete",
76146        "x-kubernetes-group-version-kind": {
76147          "group": "internal.apiserver.k8s.io",
76148          "kind": "StorageVersion",
76149          "version": "v1alpha1"
76150        }
76151      },
76152      "get": {
76153        "consumes": [
76154          "*/*"
76155        ],
76156        "description": "read the specified StorageVersion",
76157        "operationId": "readInternalApiserverV1alpha1StorageVersion",
76158        "produces": [
76159          "application/json",
76160          "application/yaml",
76161          "application/vnd.kubernetes.protobuf"
76162        ],
76163        "responses": {
76164          "200": {
76165            "description": "OK",
76166            "schema": {
76167              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76168            }
76169          },
76170          "401": {
76171            "description": "Unauthorized"
76172          }
76173        },
76174        "schemes": [
76175          "https"
76176        ],
76177        "tags": [
76178          "internalApiserver_v1alpha1"
76179        ],
76180        "x-kubernetes-action": "get",
76181        "x-kubernetes-group-version-kind": {
76182          "group": "internal.apiserver.k8s.io",
76183          "kind": "StorageVersion",
76184          "version": "v1alpha1"
76185        }
76186      },
76187      "parameters": [
76188        {
76189          "description": "name of the StorageVersion",
76190          "in": "path",
76191          "name": "name",
76192          "required": true,
76193          "type": "string",
76194          "uniqueItems": true
76195        },
76196        {
76197          "description": "If 'true', then the output is pretty printed.",
76198          "in": "query",
76199          "name": "pretty",
76200          "type": "string",
76201          "uniqueItems": true
76202        }
76203      ],
76204      "patch": {
76205        "consumes": [
76206          "application/json-patch+json",
76207          "application/merge-patch+json",
76208          "application/strategic-merge-patch+json",
76209          "application/apply-patch+yaml"
76210        ],
76211        "description": "partially update the specified StorageVersion",
76212        "operationId": "patchInternalApiserverV1alpha1StorageVersion",
76213        "parameters": [
76214          {
76215            "in": "body",
76216            "name": "body",
76217            "required": true,
76218            "schema": {
76219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76220            }
76221          },
76222          {
76223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76224            "in": "query",
76225            "name": "dryRun",
76226            "type": "string",
76227            "uniqueItems": true
76228          },
76229          {
76230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
76231            "in": "query",
76232            "name": "fieldManager",
76233            "type": "string",
76234            "uniqueItems": true
76235          },
76236          {
76237            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
76238            "in": "query",
76239            "name": "force",
76240            "type": "boolean",
76241            "uniqueItems": true
76242          }
76243        ],
76244        "produces": [
76245          "application/json",
76246          "application/yaml",
76247          "application/vnd.kubernetes.protobuf"
76248        ],
76249        "responses": {
76250          "200": {
76251            "description": "OK",
76252            "schema": {
76253              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76254            }
76255          },
76256          "401": {
76257            "description": "Unauthorized"
76258          }
76259        },
76260        "schemes": [
76261          "https"
76262        ],
76263        "tags": [
76264          "internalApiserver_v1alpha1"
76265        ],
76266        "x-kubernetes-action": "patch",
76267        "x-kubernetes-group-version-kind": {
76268          "group": "internal.apiserver.k8s.io",
76269          "kind": "StorageVersion",
76270          "version": "v1alpha1"
76271        }
76272      },
76273      "put": {
76274        "consumes": [
76275          "*/*"
76276        ],
76277        "description": "replace the specified StorageVersion",
76278        "operationId": "replaceInternalApiserverV1alpha1StorageVersion",
76279        "parameters": [
76280          {
76281            "in": "body",
76282            "name": "body",
76283            "required": true,
76284            "schema": {
76285              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76286            }
76287          },
76288          {
76289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76290            "in": "query",
76291            "name": "dryRun",
76292            "type": "string",
76293            "uniqueItems": true
76294          },
76295          {
76296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76297            "in": "query",
76298            "name": "fieldManager",
76299            "type": "string",
76300            "uniqueItems": true
76301          }
76302        ],
76303        "produces": [
76304          "application/json",
76305          "application/yaml",
76306          "application/vnd.kubernetes.protobuf"
76307        ],
76308        "responses": {
76309          "200": {
76310            "description": "OK",
76311            "schema": {
76312              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76313            }
76314          },
76315          "201": {
76316            "description": "Created",
76317            "schema": {
76318              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76319            }
76320          },
76321          "401": {
76322            "description": "Unauthorized"
76323          }
76324        },
76325        "schemes": [
76326          "https"
76327        ],
76328        "tags": [
76329          "internalApiserver_v1alpha1"
76330        ],
76331        "x-kubernetes-action": "put",
76332        "x-kubernetes-group-version-kind": {
76333          "group": "internal.apiserver.k8s.io",
76334          "kind": "StorageVersion",
76335          "version": "v1alpha1"
76336        }
76337      }
76338    },
76339    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status": {
76340      "get": {
76341        "consumes": [
76342          "*/*"
76343        ],
76344        "description": "read status of the specified StorageVersion",
76345        "operationId": "readInternalApiserverV1alpha1StorageVersionStatus",
76346        "produces": [
76347          "application/json",
76348          "application/yaml",
76349          "application/vnd.kubernetes.protobuf"
76350        ],
76351        "responses": {
76352          "200": {
76353            "description": "OK",
76354            "schema": {
76355              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76356            }
76357          },
76358          "401": {
76359            "description": "Unauthorized"
76360          }
76361        },
76362        "schemes": [
76363          "https"
76364        ],
76365        "tags": [
76366          "internalApiserver_v1alpha1"
76367        ],
76368        "x-kubernetes-action": "get",
76369        "x-kubernetes-group-version-kind": {
76370          "group": "internal.apiserver.k8s.io",
76371          "kind": "StorageVersion",
76372          "version": "v1alpha1"
76373        }
76374      },
76375      "parameters": [
76376        {
76377          "description": "name of the StorageVersion",
76378          "in": "path",
76379          "name": "name",
76380          "required": true,
76381          "type": "string",
76382          "uniqueItems": true
76383        },
76384        {
76385          "description": "If 'true', then the output is pretty printed.",
76386          "in": "query",
76387          "name": "pretty",
76388          "type": "string",
76389          "uniqueItems": true
76390        }
76391      ],
76392      "patch": {
76393        "consumes": [
76394          "application/json-patch+json",
76395          "application/merge-patch+json",
76396          "application/strategic-merge-patch+json",
76397          "application/apply-patch+yaml"
76398        ],
76399        "description": "partially update status of the specified StorageVersion",
76400        "operationId": "patchInternalApiserverV1alpha1StorageVersionStatus",
76401        "parameters": [
76402          {
76403            "in": "body",
76404            "name": "body",
76405            "required": true,
76406            "schema": {
76407              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76408            }
76409          },
76410          {
76411            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76412            "in": "query",
76413            "name": "dryRun",
76414            "type": "string",
76415            "uniqueItems": true
76416          },
76417          {
76418            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
76419            "in": "query",
76420            "name": "fieldManager",
76421            "type": "string",
76422            "uniqueItems": true
76423          },
76424          {
76425            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
76426            "in": "query",
76427            "name": "force",
76428            "type": "boolean",
76429            "uniqueItems": true
76430          }
76431        ],
76432        "produces": [
76433          "application/json",
76434          "application/yaml",
76435          "application/vnd.kubernetes.protobuf"
76436        ],
76437        "responses": {
76438          "200": {
76439            "description": "OK",
76440            "schema": {
76441              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76442            }
76443          },
76444          "401": {
76445            "description": "Unauthorized"
76446          }
76447        },
76448        "schemes": [
76449          "https"
76450        ],
76451        "tags": [
76452          "internalApiserver_v1alpha1"
76453        ],
76454        "x-kubernetes-action": "patch",
76455        "x-kubernetes-group-version-kind": {
76456          "group": "internal.apiserver.k8s.io",
76457          "kind": "StorageVersion",
76458          "version": "v1alpha1"
76459        }
76460      },
76461      "put": {
76462        "consumes": [
76463          "*/*"
76464        ],
76465        "description": "replace status of the specified StorageVersion",
76466        "operationId": "replaceInternalApiserverV1alpha1StorageVersionStatus",
76467        "parameters": [
76468          {
76469            "in": "body",
76470            "name": "body",
76471            "required": true,
76472            "schema": {
76473              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76474            }
76475          },
76476          {
76477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76478            "in": "query",
76479            "name": "dryRun",
76480            "type": "string",
76481            "uniqueItems": true
76482          },
76483          {
76484            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76485            "in": "query",
76486            "name": "fieldManager",
76487            "type": "string",
76488            "uniqueItems": true
76489          }
76490        ],
76491        "produces": [
76492          "application/json",
76493          "application/yaml",
76494          "application/vnd.kubernetes.protobuf"
76495        ],
76496        "responses": {
76497          "200": {
76498            "description": "OK",
76499            "schema": {
76500              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76501            }
76502          },
76503          "201": {
76504            "description": "Created",
76505            "schema": {
76506              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
76507            }
76508          },
76509          "401": {
76510            "description": "Unauthorized"
76511          }
76512        },
76513        "schemes": [
76514          "https"
76515        ],
76516        "tags": [
76517          "internalApiserver_v1alpha1"
76518        ],
76519        "x-kubernetes-action": "put",
76520        "x-kubernetes-group-version-kind": {
76521          "group": "internal.apiserver.k8s.io",
76522          "kind": "StorageVersion",
76523          "version": "v1alpha1"
76524        }
76525      }
76526    },
76527    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions": {
76528      "get": {
76529        "consumes": [
76530          "*/*"
76531        ],
76532        "description": "watch individual changes to a list of StorageVersion. deprecated: use the 'watch' parameter with a list operation instead.",
76533        "operationId": "watchInternalApiserverV1alpha1StorageVersionList",
76534        "produces": [
76535          "application/json",
76536          "application/yaml",
76537          "application/vnd.kubernetes.protobuf",
76538          "application/json;stream=watch",
76539          "application/vnd.kubernetes.protobuf;stream=watch"
76540        ],
76541        "responses": {
76542          "200": {
76543            "description": "OK",
76544            "schema": {
76545              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
76546            }
76547          },
76548          "401": {
76549            "description": "Unauthorized"
76550          }
76551        },
76552        "schemes": [
76553          "https"
76554        ],
76555        "tags": [
76556          "internalApiserver_v1alpha1"
76557        ],
76558        "x-kubernetes-action": "watchlist",
76559        "x-kubernetes-group-version-kind": {
76560          "group": "internal.apiserver.k8s.io",
76561          "kind": "StorageVersion",
76562          "version": "v1alpha1"
76563        }
76564      },
76565      "parameters": [
76566        {
76567          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76568          "in": "query",
76569          "name": "allowWatchBookmarks",
76570          "type": "boolean",
76571          "uniqueItems": true
76572        },
76573        {
76574          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76575          "in": "query",
76576          "name": "continue",
76577          "type": "string",
76578          "uniqueItems": true
76579        },
76580        {
76581          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76582          "in": "query",
76583          "name": "fieldSelector",
76584          "type": "string",
76585          "uniqueItems": true
76586        },
76587        {
76588          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76589          "in": "query",
76590          "name": "labelSelector",
76591          "type": "string",
76592          "uniqueItems": true
76593        },
76594        {
76595          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76596          "in": "query",
76597          "name": "limit",
76598          "type": "integer",
76599          "uniqueItems": true
76600        },
76601        {
76602          "description": "If 'true', then the output is pretty printed.",
76603          "in": "query",
76604          "name": "pretty",
76605          "type": "string",
76606          "uniqueItems": true
76607        },
76608        {
76609          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76610          "in": "query",
76611          "name": "resourceVersion",
76612          "type": "string",
76613          "uniqueItems": true
76614        },
76615        {
76616          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76617          "in": "query",
76618          "name": "resourceVersionMatch",
76619          "type": "string",
76620          "uniqueItems": true
76621        },
76622        {
76623          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76624          "in": "query",
76625          "name": "timeoutSeconds",
76626          "type": "integer",
76627          "uniqueItems": true
76628        },
76629        {
76630          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76631          "in": "query",
76632          "name": "watch",
76633          "type": "boolean",
76634          "uniqueItems": true
76635        }
76636      ]
76637    },
76638    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions/{name}": {
76639      "get": {
76640        "consumes": [
76641          "*/*"
76642        ],
76643        "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.",
76644        "operationId": "watchInternalApiserverV1alpha1StorageVersion",
76645        "produces": [
76646          "application/json",
76647          "application/yaml",
76648          "application/vnd.kubernetes.protobuf",
76649          "application/json;stream=watch",
76650          "application/vnd.kubernetes.protobuf;stream=watch"
76651        ],
76652        "responses": {
76653          "200": {
76654            "description": "OK",
76655            "schema": {
76656              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
76657            }
76658          },
76659          "401": {
76660            "description": "Unauthorized"
76661          }
76662        },
76663        "schemes": [
76664          "https"
76665        ],
76666        "tags": [
76667          "internalApiserver_v1alpha1"
76668        ],
76669        "x-kubernetes-action": "watch",
76670        "x-kubernetes-group-version-kind": {
76671          "group": "internal.apiserver.k8s.io",
76672          "kind": "StorageVersion",
76673          "version": "v1alpha1"
76674        }
76675      },
76676      "parameters": [
76677        {
76678          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76679          "in": "query",
76680          "name": "allowWatchBookmarks",
76681          "type": "boolean",
76682          "uniqueItems": true
76683        },
76684        {
76685          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76686          "in": "query",
76687          "name": "continue",
76688          "type": "string",
76689          "uniqueItems": true
76690        },
76691        {
76692          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76693          "in": "query",
76694          "name": "fieldSelector",
76695          "type": "string",
76696          "uniqueItems": true
76697        },
76698        {
76699          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76700          "in": "query",
76701          "name": "labelSelector",
76702          "type": "string",
76703          "uniqueItems": true
76704        },
76705        {
76706          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76707          "in": "query",
76708          "name": "limit",
76709          "type": "integer",
76710          "uniqueItems": true
76711        },
76712        {
76713          "description": "name of the StorageVersion",
76714          "in": "path",
76715          "name": "name",
76716          "required": true,
76717          "type": "string",
76718          "uniqueItems": true
76719        },
76720        {
76721          "description": "If 'true', then the output is pretty printed.",
76722          "in": "query",
76723          "name": "pretty",
76724          "type": "string",
76725          "uniqueItems": true
76726        },
76727        {
76728          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76729          "in": "query",
76730          "name": "resourceVersion",
76731          "type": "string",
76732          "uniqueItems": true
76733        },
76734        {
76735          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76736          "in": "query",
76737          "name": "resourceVersionMatch",
76738          "type": "string",
76739          "uniqueItems": true
76740        },
76741        {
76742          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76743          "in": "query",
76744          "name": "timeoutSeconds",
76745          "type": "integer",
76746          "uniqueItems": true
76747        },
76748        {
76749          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76750          "in": "query",
76751          "name": "watch",
76752          "type": "boolean",
76753          "uniqueItems": true
76754        }
76755      ]
76756    },
76757    "/apis/networking.k8s.io/": {
76758      "get": {
76759        "consumes": [
76760          "application/json",
76761          "application/yaml",
76762          "application/vnd.kubernetes.protobuf"
76763        ],
76764        "description": "get information of a group",
76765        "operationId": "getNetworkingAPIGroup",
76766        "produces": [
76767          "application/json",
76768          "application/yaml",
76769          "application/vnd.kubernetes.protobuf"
76770        ],
76771        "responses": {
76772          "200": {
76773            "description": "OK",
76774            "schema": {
76775              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
76776            }
76777          },
76778          "401": {
76779            "description": "Unauthorized"
76780          }
76781        },
76782        "schemes": [
76783          "https"
76784        ],
76785        "tags": [
76786          "networking"
76787        ]
76788      }
76789    },
76790    "/apis/networking.k8s.io/v1/": {
76791      "get": {
76792        "consumes": [
76793          "application/json",
76794          "application/yaml",
76795          "application/vnd.kubernetes.protobuf"
76796        ],
76797        "description": "get available resources",
76798        "operationId": "getNetworkingV1APIResources",
76799        "produces": [
76800          "application/json",
76801          "application/yaml",
76802          "application/vnd.kubernetes.protobuf"
76803        ],
76804        "responses": {
76805          "200": {
76806            "description": "OK",
76807            "schema": {
76808              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
76809            }
76810          },
76811          "401": {
76812            "description": "Unauthorized"
76813          }
76814        },
76815        "schemes": [
76816          "https"
76817        ],
76818        "tags": [
76819          "networking_v1"
76820        ]
76821      }
76822    },
76823    "/apis/networking.k8s.io/v1/ingressclasses": {
76824      "delete": {
76825        "consumes": [
76826          "*/*"
76827        ],
76828        "description": "delete collection of IngressClass",
76829        "operationId": "deleteNetworkingV1CollectionIngressClass",
76830        "parameters": [
76831          {
76832            "in": "body",
76833            "name": "body",
76834            "schema": {
76835              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76836            }
76837          },
76838          {
76839            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76840            "in": "query",
76841            "name": "continue",
76842            "type": "string",
76843            "uniqueItems": true
76844          },
76845          {
76846            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76847            "in": "query",
76848            "name": "dryRun",
76849            "type": "string",
76850            "uniqueItems": true
76851          },
76852          {
76853            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76854            "in": "query",
76855            "name": "fieldSelector",
76856            "type": "string",
76857            "uniqueItems": true
76858          },
76859          {
76860            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76861            "in": "query",
76862            "name": "gracePeriodSeconds",
76863            "type": "integer",
76864            "uniqueItems": true
76865          },
76866          {
76867            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76868            "in": "query",
76869            "name": "labelSelector",
76870            "type": "string",
76871            "uniqueItems": true
76872          },
76873          {
76874            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76875            "in": "query",
76876            "name": "limit",
76877            "type": "integer",
76878            "uniqueItems": true
76879          },
76880          {
76881            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76882            "in": "query",
76883            "name": "orphanDependents",
76884            "type": "boolean",
76885            "uniqueItems": true
76886          },
76887          {
76888            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76889            "in": "query",
76890            "name": "propagationPolicy",
76891            "type": "string",
76892            "uniqueItems": true
76893          },
76894          {
76895            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76896            "in": "query",
76897            "name": "resourceVersion",
76898            "type": "string",
76899            "uniqueItems": true
76900          },
76901          {
76902            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76903            "in": "query",
76904            "name": "resourceVersionMatch",
76905            "type": "string",
76906            "uniqueItems": true
76907          },
76908          {
76909            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76910            "in": "query",
76911            "name": "timeoutSeconds",
76912            "type": "integer",
76913            "uniqueItems": true
76914          }
76915        ],
76916        "produces": [
76917          "application/json",
76918          "application/yaml",
76919          "application/vnd.kubernetes.protobuf"
76920        ],
76921        "responses": {
76922          "200": {
76923            "description": "OK",
76924            "schema": {
76925              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76926            }
76927          },
76928          "401": {
76929            "description": "Unauthorized"
76930          }
76931        },
76932        "schemes": [
76933          "https"
76934        ],
76935        "tags": [
76936          "networking_v1"
76937        ],
76938        "x-kubernetes-action": "deletecollection",
76939        "x-kubernetes-group-version-kind": {
76940          "group": "networking.k8s.io",
76941          "kind": "IngressClass",
76942          "version": "v1"
76943        }
76944      },
76945      "get": {
76946        "consumes": [
76947          "*/*"
76948        ],
76949        "description": "list or watch objects of kind IngressClass",
76950        "operationId": "listNetworkingV1IngressClass",
76951        "parameters": [
76952          {
76953            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
76954            "in": "query",
76955            "name": "allowWatchBookmarks",
76956            "type": "boolean",
76957            "uniqueItems": true
76958          },
76959          {
76960            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76961            "in": "query",
76962            "name": "continue",
76963            "type": "string",
76964            "uniqueItems": true
76965          },
76966          {
76967            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76968            "in": "query",
76969            "name": "fieldSelector",
76970            "type": "string",
76971            "uniqueItems": true
76972          },
76973          {
76974            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76975            "in": "query",
76976            "name": "labelSelector",
76977            "type": "string",
76978            "uniqueItems": true
76979          },
76980          {
76981            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76982            "in": "query",
76983            "name": "limit",
76984            "type": "integer",
76985            "uniqueItems": true
76986          },
76987          {
76988            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76989            "in": "query",
76990            "name": "resourceVersion",
76991            "type": "string",
76992            "uniqueItems": true
76993          },
76994          {
76995            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76996            "in": "query",
76997            "name": "resourceVersionMatch",
76998            "type": "string",
76999            "uniqueItems": true
77000          },
77001          {
77002            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77003            "in": "query",
77004            "name": "timeoutSeconds",
77005            "type": "integer",
77006            "uniqueItems": true
77007          },
77008          {
77009            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77010            "in": "query",
77011            "name": "watch",
77012            "type": "boolean",
77013            "uniqueItems": true
77014          }
77015        ],
77016        "produces": [
77017          "application/json",
77018          "application/yaml",
77019          "application/vnd.kubernetes.protobuf",
77020          "application/json;stream=watch",
77021          "application/vnd.kubernetes.protobuf;stream=watch"
77022        ],
77023        "responses": {
77024          "200": {
77025            "description": "OK",
77026            "schema": {
77027              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassList"
77028            }
77029          },
77030          "401": {
77031            "description": "Unauthorized"
77032          }
77033        },
77034        "schemes": [
77035          "https"
77036        ],
77037        "tags": [
77038          "networking_v1"
77039        ],
77040        "x-kubernetes-action": "list",
77041        "x-kubernetes-group-version-kind": {
77042          "group": "networking.k8s.io",
77043          "kind": "IngressClass",
77044          "version": "v1"
77045        }
77046      },
77047      "parameters": [
77048        {
77049          "description": "If 'true', then the output is pretty printed.",
77050          "in": "query",
77051          "name": "pretty",
77052          "type": "string",
77053          "uniqueItems": true
77054        }
77055      ],
77056      "post": {
77057        "consumes": [
77058          "*/*"
77059        ],
77060        "description": "create an IngressClass",
77061        "operationId": "createNetworkingV1IngressClass",
77062        "parameters": [
77063          {
77064            "in": "body",
77065            "name": "body",
77066            "required": true,
77067            "schema": {
77068              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77069            }
77070          },
77071          {
77072            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77073            "in": "query",
77074            "name": "dryRun",
77075            "type": "string",
77076            "uniqueItems": true
77077          },
77078          {
77079            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77080            "in": "query",
77081            "name": "fieldManager",
77082            "type": "string",
77083            "uniqueItems": true
77084          }
77085        ],
77086        "produces": [
77087          "application/json",
77088          "application/yaml",
77089          "application/vnd.kubernetes.protobuf"
77090        ],
77091        "responses": {
77092          "200": {
77093            "description": "OK",
77094            "schema": {
77095              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77096            }
77097          },
77098          "201": {
77099            "description": "Created",
77100            "schema": {
77101              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77102            }
77103          },
77104          "202": {
77105            "description": "Accepted",
77106            "schema": {
77107              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77108            }
77109          },
77110          "401": {
77111            "description": "Unauthorized"
77112          }
77113        },
77114        "schemes": [
77115          "https"
77116        ],
77117        "tags": [
77118          "networking_v1"
77119        ],
77120        "x-kubernetes-action": "post",
77121        "x-kubernetes-group-version-kind": {
77122          "group": "networking.k8s.io",
77123          "kind": "IngressClass",
77124          "version": "v1"
77125        }
77126      }
77127    },
77128    "/apis/networking.k8s.io/v1/ingressclasses/{name}": {
77129      "delete": {
77130        "consumes": [
77131          "*/*"
77132        ],
77133        "description": "delete an IngressClass",
77134        "operationId": "deleteNetworkingV1IngressClass",
77135        "parameters": [
77136          {
77137            "in": "body",
77138            "name": "body",
77139            "schema": {
77140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77141            }
77142          },
77143          {
77144            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77145            "in": "query",
77146            "name": "dryRun",
77147            "type": "string",
77148            "uniqueItems": true
77149          },
77150          {
77151            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77152            "in": "query",
77153            "name": "gracePeriodSeconds",
77154            "type": "integer",
77155            "uniqueItems": true
77156          },
77157          {
77158            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77159            "in": "query",
77160            "name": "orphanDependents",
77161            "type": "boolean",
77162            "uniqueItems": true
77163          },
77164          {
77165            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77166            "in": "query",
77167            "name": "propagationPolicy",
77168            "type": "string",
77169            "uniqueItems": true
77170          }
77171        ],
77172        "produces": [
77173          "application/json",
77174          "application/yaml",
77175          "application/vnd.kubernetes.protobuf"
77176        ],
77177        "responses": {
77178          "200": {
77179            "description": "OK",
77180            "schema": {
77181              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77182            }
77183          },
77184          "202": {
77185            "description": "Accepted",
77186            "schema": {
77187              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77188            }
77189          },
77190          "401": {
77191            "description": "Unauthorized"
77192          }
77193        },
77194        "schemes": [
77195          "https"
77196        ],
77197        "tags": [
77198          "networking_v1"
77199        ],
77200        "x-kubernetes-action": "delete",
77201        "x-kubernetes-group-version-kind": {
77202          "group": "networking.k8s.io",
77203          "kind": "IngressClass",
77204          "version": "v1"
77205        }
77206      },
77207      "get": {
77208        "consumes": [
77209          "*/*"
77210        ],
77211        "description": "read the specified IngressClass",
77212        "operationId": "readNetworkingV1IngressClass",
77213        "produces": [
77214          "application/json",
77215          "application/yaml",
77216          "application/vnd.kubernetes.protobuf"
77217        ],
77218        "responses": {
77219          "200": {
77220            "description": "OK",
77221            "schema": {
77222              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77223            }
77224          },
77225          "401": {
77226            "description": "Unauthorized"
77227          }
77228        },
77229        "schemes": [
77230          "https"
77231        ],
77232        "tags": [
77233          "networking_v1"
77234        ],
77235        "x-kubernetes-action": "get",
77236        "x-kubernetes-group-version-kind": {
77237          "group": "networking.k8s.io",
77238          "kind": "IngressClass",
77239          "version": "v1"
77240        }
77241      },
77242      "parameters": [
77243        {
77244          "description": "name of the IngressClass",
77245          "in": "path",
77246          "name": "name",
77247          "required": true,
77248          "type": "string",
77249          "uniqueItems": true
77250        },
77251        {
77252          "description": "If 'true', then the output is pretty printed.",
77253          "in": "query",
77254          "name": "pretty",
77255          "type": "string",
77256          "uniqueItems": true
77257        }
77258      ],
77259      "patch": {
77260        "consumes": [
77261          "application/json-patch+json",
77262          "application/merge-patch+json",
77263          "application/strategic-merge-patch+json",
77264          "application/apply-patch+yaml"
77265        ],
77266        "description": "partially update the specified IngressClass",
77267        "operationId": "patchNetworkingV1IngressClass",
77268        "parameters": [
77269          {
77270            "in": "body",
77271            "name": "body",
77272            "required": true,
77273            "schema": {
77274              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
77275            }
77276          },
77277          {
77278            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77279            "in": "query",
77280            "name": "dryRun",
77281            "type": "string",
77282            "uniqueItems": true
77283          },
77284          {
77285            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
77286            "in": "query",
77287            "name": "fieldManager",
77288            "type": "string",
77289            "uniqueItems": true
77290          },
77291          {
77292            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
77293            "in": "query",
77294            "name": "force",
77295            "type": "boolean",
77296            "uniqueItems": true
77297          }
77298        ],
77299        "produces": [
77300          "application/json",
77301          "application/yaml",
77302          "application/vnd.kubernetes.protobuf"
77303        ],
77304        "responses": {
77305          "200": {
77306            "description": "OK",
77307            "schema": {
77308              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77309            }
77310          },
77311          "401": {
77312            "description": "Unauthorized"
77313          }
77314        },
77315        "schemes": [
77316          "https"
77317        ],
77318        "tags": [
77319          "networking_v1"
77320        ],
77321        "x-kubernetes-action": "patch",
77322        "x-kubernetes-group-version-kind": {
77323          "group": "networking.k8s.io",
77324          "kind": "IngressClass",
77325          "version": "v1"
77326        }
77327      },
77328      "put": {
77329        "consumes": [
77330          "*/*"
77331        ],
77332        "description": "replace the specified IngressClass",
77333        "operationId": "replaceNetworkingV1IngressClass",
77334        "parameters": [
77335          {
77336            "in": "body",
77337            "name": "body",
77338            "required": true,
77339            "schema": {
77340              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77341            }
77342          },
77343          {
77344            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77345            "in": "query",
77346            "name": "dryRun",
77347            "type": "string",
77348            "uniqueItems": true
77349          },
77350          {
77351            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77352            "in": "query",
77353            "name": "fieldManager",
77354            "type": "string",
77355            "uniqueItems": true
77356          }
77357        ],
77358        "produces": [
77359          "application/json",
77360          "application/yaml",
77361          "application/vnd.kubernetes.protobuf"
77362        ],
77363        "responses": {
77364          "200": {
77365            "description": "OK",
77366            "schema": {
77367              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77368            }
77369          },
77370          "201": {
77371            "description": "Created",
77372            "schema": {
77373              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
77374            }
77375          },
77376          "401": {
77377            "description": "Unauthorized"
77378          }
77379        },
77380        "schemes": [
77381          "https"
77382        ],
77383        "tags": [
77384          "networking_v1"
77385        ],
77386        "x-kubernetes-action": "put",
77387        "x-kubernetes-group-version-kind": {
77388          "group": "networking.k8s.io",
77389          "kind": "IngressClass",
77390          "version": "v1"
77391        }
77392      }
77393    },
77394    "/apis/networking.k8s.io/v1/ingresses": {
77395      "get": {
77396        "consumes": [
77397          "*/*"
77398        ],
77399        "description": "list or watch objects of kind Ingress",
77400        "operationId": "listNetworkingV1IngressForAllNamespaces",
77401        "produces": [
77402          "application/json",
77403          "application/yaml",
77404          "application/vnd.kubernetes.protobuf",
77405          "application/json;stream=watch",
77406          "application/vnd.kubernetes.protobuf;stream=watch"
77407        ],
77408        "responses": {
77409          "200": {
77410            "description": "OK",
77411            "schema": {
77412              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
77413            }
77414          },
77415          "401": {
77416            "description": "Unauthorized"
77417          }
77418        },
77419        "schemes": [
77420          "https"
77421        ],
77422        "tags": [
77423          "networking_v1"
77424        ],
77425        "x-kubernetes-action": "list",
77426        "x-kubernetes-group-version-kind": {
77427          "group": "networking.k8s.io",
77428          "kind": "Ingress",
77429          "version": "v1"
77430        }
77431      },
77432      "parameters": [
77433        {
77434          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
77435          "in": "query",
77436          "name": "allowWatchBookmarks",
77437          "type": "boolean",
77438          "uniqueItems": true
77439        },
77440        {
77441          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77442          "in": "query",
77443          "name": "continue",
77444          "type": "string",
77445          "uniqueItems": true
77446        },
77447        {
77448          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77449          "in": "query",
77450          "name": "fieldSelector",
77451          "type": "string",
77452          "uniqueItems": true
77453        },
77454        {
77455          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77456          "in": "query",
77457          "name": "labelSelector",
77458          "type": "string",
77459          "uniqueItems": true
77460        },
77461        {
77462          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77463          "in": "query",
77464          "name": "limit",
77465          "type": "integer",
77466          "uniqueItems": true
77467        },
77468        {
77469          "description": "If 'true', then the output is pretty printed.",
77470          "in": "query",
77471          "name": "pretty",
77472          "type": "string",
77473          "uniqueItems": true
77474        },
77475        {
77476          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77477          "in": "query",
77478          "name": "resourceVersion",
77479          "type": "string",
77480          "uniqueItems": true
77481        },
77482        {
77483          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77484          "in": "query",
77485          "name": "resourceVersionMatch",
77486          "type": "string",
77487          "uniqueItems": true
77488        },
77489        {
77490          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77491          "in": "query",
77492          "name": "timeoutSeconds",
77493          "type": "integer",
77494          "uniqueItems": true
77495        },
77496        {
77497          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77498          "in": "query",
77499          "name": "watch",
77500          "type": "boolean",
77501          "uniqueItems": true
77502        }
77503      ]
77504    },
77505    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses": {
77506      "delete": {
77507        "consumes": [
77508          "*/*"
77509        ],
77510        "description": "delete collection of Ingress",
77511        "operationId": "deleteNetworkingV1CollectionNamespacedIngress",
77512        "parameters": [
77513          {
77514            "in": "body",
77515            "name": "body",
77516            "schema": {
77517              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77518            }
77519          },
77520          {
77521            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77522            "in": "query",
77523            "name": "continue",
77524            "type": "string",
77525            "uniqueItems": true
77526          },
77527          {
77528            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77529            "in": "query",
77530            "name": "dryRun",
77531            "type": "string",
77532            "uniqueItems": true
77533          },
77534          {
77535            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77536            "in": "query",
77537            "name": "fieldSelector",
77538            "type": "string",
77539            "uniqueItems": true
77540          },
77541          {
77542            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77543            "in": "query",
77544            "name": "gracePeriodSeconds",
77545            "type": "integer",
77546            "uniqueItems": true
77547          },
77548          {
77549            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77550            "in": "query",
77551            "name": "labelSelector",
77552            "type": "string",
77553            "uniqueItems": true
77554          },
77555          {
77556            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77557            "in": "query",
77558            "name": "limit",
77559            "type": "integer",
77560            "uniqueItems": true
77561          },
77562          {
77563            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77564            "in": "query",
77565            "name": "orphanDependents",
77566            "type": "boolean",
77567            "uniqueItems": true
77568          },
77569          {
77570            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77571            "in": "query",
77572            "name": "propagationPolicy",
77573            "type": "string",
77574            "uniqueItems": true
77575          },
77576          {
77577            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77578            "in": "query",
77579            "name": "resourceVersion",
77580            "type": "string",
77581            "uniqueItems": true
77582          },
77583          {
77584            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77585            "in": "query",
77586            "name": "resourceVersionMatch",
77587            "type": "string",
77588            "uniqueItems": true
77589          },
77590          {
77591            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77592            "in": "query",
77593            "name": "timeoutSeconds",
77594            "type": "integer",
77595            "uniqueItems": true
77596          }
77597        ],
77598        "produces": [
77599          "application/json",
77600          "application/yaml",
77601          "application/vnd.kubernetes.protobuf"
77602        ],
77603        "responses": {
77604          "200": {
77605            "description": "OK",
77606            "schema": {
77607              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77608            }
77609          },
77610          "401": {
77611            "description": "Unauthorized"
77612          }
77613        },
77614        "schemes": [
77615          "https"
77616        ],
77617        "tags": [
77618          "networking_v1"
77619        ],
77620        "x-kubernetes-action": "deletecollection",
77621        "x-kubernetes-group-version-kind": {
77622          "group": "networking.k8s.io",
77623          "kind": "Ingress",
77624          "version": "v1"
77625        }
77626      },
77627      "get": {
77628        "consumes": [
77629          "*/*"
77630        ],
77631        "description": "list or watch objects of kind Ingress",
77632        "operationId": "listNetworkingV1NamespacedIngress",
77633        "parameters": [
77634          {
77635            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
77636            "in": "query",
77637            "name": "allowWatchBookmarks",
77638            "type": "boolean",
77639            "uniqueItems": true
77640          },
77641          {
77642            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77643            "in": "query",
77644            "name": "continue",
77645            "type": "string",
77646            "uniqueItems": true
77647          },
77648          {
77649            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77650            "in": "query",
77651            "name": "fieldSelector",
77652            "type": "string",
77653            "uniqueItems": true
77654          },
77655          {
77656            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77657            "in": "query",
77658            "name": "labelSelector",
77659            "type": "string",
77660            "uniqueItems": true
77661          },
77662          {
77663            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77664            "in": "query",
77665            "name": "limit",
77666            "type": "integer",
77667            "uniqueItems": true
77668          },
77669          {
77670            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77671            "in": "query",
77672            "name": "resourceVersion",
77673            "type": "string",
77674            "uniqueItems": true
77675          },
77676          {
77677            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77678            "in": "query",
77679            "name": "resourceVersionMatch",
77680            "type": "string",
77681            "uniqueItems": true
77682          },
77683          {
77684            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77685            "in": "query",
77686            "name": "timeoutSeconds",
77687            "type": "integer",
77688            "uniqueItems": true
77689          },
77690          {
77691            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77692            "in": "query",
77693            "name": "watch",
77694            "type": "boolean",
77695            "uniqueItems": true
77696          }
77697        ],
77698        "produces": [
77699          "application/json",
77700          "application/yaml",
77701          "application/vnd.kubernetes.protobuf",
77702          "application/json;stream=watch",
77703          "application/vnd.kubernetes.protobuf;stream=watch"
77704        ],
77705        "responses": {
77706          "200": {
77707            "description": "OK",
77708            "schema": {
77709              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
77710            }
77711          },
77712          "401": {
77713            "description": "Unauthorized"
77714          }
77715        },
77716        "schemes": [
77717          "https"
77718        ],
77719        "tags": [
77720          "networking_v1"
77721        ],
77722        "x-kubernetes-action": "list",
77723        "x-kubernetes-group-version-kind": {
77724          "group": "networking.k8s.io",
77725          "kind": "Ingress",
77726          "version": "v1"
77727        }
77728      },
77729      "parameters": [
77730        {
77731          "description": "object name and auth scope, such as for teams and projects",
77732          "in": "path",
77733          "name": "namespace",
77734          "required": true,
77735          "type": "string",
77736          "uniqueItems": true
77737        },
77738        {
77739          "description": "If 'true', then the output is pretty printed.",
77740          "in": "query",
77741          "name": "pretty",
77742          "type": "string",
77743          "uniqueItems": true
77744        }
77745      ],
77746      "post": {
77747        "consumes": [
77748          "*/*"
77749        ],
77750        "description": "create an Ingress",
77751        "operationId": "createNetworkingV1NamespacedIngress",
77752        "parameters": [
77753          {
77754            "in": "body",
77755            "name": "body",
77756            "required": true,
77757            "schema": {
77758              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77759            }
77760          },
77761          {
77762            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77763            "in": "query",
77764            "name": "dryRun",
77765            "type": "string",
77766            "uniqueItems": true
77767          },
77768          {
77769            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77770            "in": "query",
77771            "name": "fieldManager",
77772            "type": "string",
77773            "uniqueItems": true
77774          }
77775        ],
77776        "produces": [
77777          "application/json",
77778          "application/yaml",
77779          "application/vnd.kubernetes.protobuf"
77780        ],
77781        "responses": {
77782          "200": {
77783            "description": "OK",
77784            "schema": {
77785              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77786            }
77787          },
77788          "201": {
77789            "description": "Created",
77790            "schema": {
77791              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77792            }
77793          },
77794          "202": {
77795            "description": "Accepted",
77796            "schema": {
77797              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77798            }
77799          },
77800          "401": {
77801            "description": "Unauthorized"
77802          }
77803        },
77804        "schemes": [
77805          "https"
77806        ],
77807        "tags": [
77808          "networking_v1"
77809        ],
77810        "x-kubernetes-action": "post",
77811        "x-kubernetes-group-version-kind": {
77812          "group": "networking.k8s.io",
77813          "kind": "Ingress",
77814          "version": "v1"
77815        }
77816      }
77817    },
77818    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}": {
77819      "delete": {
77820        "consumes": [
77821          "*/*"
77822        ],
77823        "description": "delete an Ingress",
77824        "operationId": "deleteNetworkingV1NamespacedIngress",
77825        "parameters": [
77826          {
77827            "in": "body",
77828            "name": "body",
77829            "schema": {
77830              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77831            }
77832          },
77833          {
77834            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77835            "in": "query",
77836            "name": "dryRun",
77837            "type": "string",
77838            "uniqueItems": true
77839          },
77840          {
77841            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
77842            "in": "query",
77843            "name": "gracePeriodSeconds",
77844            "type": "integer",
77845            "uniqueItems": true
77846          },
77847          {
77848            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
77849            "in": "query",
77850            "name": "orphanDependents",
77851            "type": "boolean",
77852            "uniqueItems": true
77853          },
77854          {
77855            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
77856            "in": "query",
77857            "name": "propagationPolicy",
77858            "type": "string",
77859            "uniqueItems": true
77860          }
77861        ],
77862        "produces": [
77863          "application/json",
77864          "application/yaml",
77865          "application/vnd.kubernetes.protobuf"
77866        ],
77867        "responses": {
77868          "200": {
77869            "description": "OK",
77870            "schema": {
77871              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77872            }
77873          },
77874          "202": {
77875            "description": "Accepted",
77876            "schema": {
77877              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77878            }
77879          },
77880          "401": {
77881            "description": "Unauthorized"
77882          }
77883        },
77884        "schemes": [
77885          "https"
77886        ],
77887        "tags": [
77888          "networking_v1"
77889        ],
77890        "x-kubernetes-action": "delete",
77891        "x-kubernetes-group-version-kind": {
77892          "group": "networking.k8s.io",
77893          "kind": "Ingress",
77894          "version": "v1"
77895        }
77896      },
77897      "get": {
77898        "consumes": [
77899          "*/*"
77900        ],
77901        "description": "read the specified Ingress",
77902        "operationId": "readNetworkingV1NamespacedIngress",
77903        "produces": [
77904          "application/json",
77905          "application/yaml",
77906          "application/vnd.kubernetes.protobuf"
77907        ],
77908        "responses": {
77909          "200": {
77910            "description": "OK",
77911            "schema": {
77912              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
77913            }
77914          },
77915          "401": {
77916            "description": "Unauthorized"
77917          }
77918        },
77919        "schemes": [
77920          "https"
77921        ],
77922        "tags": [
77923          "networking_v1"
77924        ],
77925        "x-kubernetes-action": "get",
77926        "x-kubernetes-group-version-kind": {
77927          "group": "networking.k8s.io",
77928          "kind": "Ingress",
77929          "version": "v1"
77930        }
77931      },
77932      "parameters": [
77933        {
77934          "description": "name of the Ingress",
77935          "in": "path",
77936          "name": "name",
77937          "required": true,
77938          "type": "string",
77939          "uniqueItems": true
77940        },
77941        {
77942          "description": "object name and auth scope, such as for teams and projects",
77943          "in": "path",
77944          "name": "namespace",
77945          "required": true,
77946          "type": "string",
77947          "uniqueItems": true
77948        },
77949        {
77950          "description": "If 'true', then the output is pretty printed.",
77951          "in": "query",
77952          "name": "pretty",
77953          "type": "string",
77954          "uniqueItems": true
77955        }
77956      ],
77957      "patch": {
77958        "consumes": [
77959          "application/json-patch+json",
77960          "application/merge-patch+json",
77961          "application/strategic-merge-patch+json",
77962          "application/apply-patch+yaml"
77963        ],
77964        "description": "partially update the specified Ingress",
77965        "operationId": "patchNetworkingV1NamespacedIngress",
77966        "parameters": [
77967          {
77968            "in": "body",
77969            "name": "body",
77970            "required": true,
77971            "schema": {
77972              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
77973            }
77974          },
77975          {
77976            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77977            "in": "query",
77978            "name": "dryRun",
77979            "type": "string",
77980            "uniqueItems": true
77981          },
77982          {
77983            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
77984            "in": "query",
77985            "name": "fieldManager",
77986            "type": "string",
77987            "uniqueItems": true
77988          },
77989          {
77990            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
77991            "in": "query",
77992            "name": "force",
77993            "type": "boolean",
77994            "uniqueItems": true
77995          }
77996        ],
77997        "produces": [
77998          "application/json",
77999          "application/yaml",
78000          "application/vnd.kubernetes.protobuf"
78001        ],
78002        "responses": {
78003          "200": {
78004            "description": "OK",
78005            "schema": {
78006              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78007            }
78008          },
78009          "401": {
78010            "description": "Unauthorized"
78011          }
78012        },
78013        "schemes": [
78014          "https"
78015        ],
78016        "tags": [
78017          "networking_v1"
78018        ],
78019        "x-kubernetes-action": "patch",
78020        "x-kubernetes-group-version-kind": {
78021          "group": "networking.k8s.io",
78022          "kind": "Ingress",
78023          "version": "v1"
78024        }
78025      },
78026      "put": {
78027        "consumes": [
78028          "*/*"
78029        ],
78030        "description": "replace the specified Ingress",
78031        "operationId": "replaceNetworkingV1NamespacedIngress",
78032        "parameters": [
78033          {
78034            "in": "body",
78035            "name": "body",
78036            "required": true,
78037            "schema": {
78038              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78039            }
78040          },
78041          {
78042            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78043            "in": "query",
78044            "name": "dryRun",
78045            "type": "string",
78046            "uniqueItems": true
78047          },
78048          {
78049            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78050            "in": "query",
78051            "name": "fieldManager",
78052            "type": "string",
78053            "uniqueItems": true
78054          }
78055        ],
78056        "produces": [
78057          "application/json",
78058          "application/yaml",
78059          "application/vnd.kubernetes.protobuf"
78060        ],
78061        "responses": {
78062          "200": {
78063            "description": "OK",
78064            "schema": {
78065              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78066            }
78067          },
78068          "201": {
78069            "description": "Created",
78070            "schema": {
78071              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78072            }
78073          },
78074          "401": {
78075            "description": "Unauthorized"
78076          }
78077        },
78078        "schemes": [
78079          "https"
78080        ],
78081        "tags": [
78082          "networking_v1"
78083        ],
78084        "x-kubernetes-action": "put",
78085        "x-kubernetes-group-version-kind": {
78086          "group": "networking.k8s.io",
78087          "kind": "Ingress",
78088          "version": "v1"
78089        }
78090      }
78091    },
78092    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status": {
78093      "get": {
78094        "consumes": [
78095          "*/*"
78096        ],
78097        "description": "read status of the specified Ingress",
78098        "operationId": "readNetworkingV1NamespacedIngressStatus",
78099        "produces": [
78100          "application/json",
78101          "application/yaml",
78102          "application/vnd.kubernetes.protobuf"
78103        ],
78104        "responses": {
78105          "200": {
78106            "description": "OK",
78107            "schema": {
78108              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78109            }
78110          },
78111          "401": {
78112            "description": "Unauthorized"
78113          }
78114        },
78115        "schemes": [
78116          "https"
78117        ],
78118        "tags": [
78119          "networking_v1"
78120        ],
78121        "x-kubernetes-action": "get",
78122        "x-kubernetes-group-version-kind": {
78123          "group": "networking.k8s.io",
78124          "kind": "Ingress",
78125          "version": "v1"
78126        }
78127      },
78128      "parameters": [
78129        {
78130          "description": "name of the Ingress",
78131          "in": "path",
78132          "name": "name",
78133          "required": true,
78134          "type": "string",
78135          "uniqueItems": true
78136        },
78137        {
78138          "description": "object name and auth scope, such as for teams and projects",
78139          "in": "path",
78140          "name": "namespace",
78141          "required": true,
78142          "type": "string",
78143          "uniqueItems": true
78144        },
78145        {
78146          "description": "If 'true', then the output is pretty printed.",
78147          "in": "query",
78148          "name": "pretty",
78149          "type": "string",
78150          "uniqueItems": true
78151        }
78152      ],
78153      "patch": {
78154        "consumes": [
78155          "application/json-patch+json",
78156          "application/merge-patch+json",
78157          "application/strategic-merge-patch+json",
78158          "application/apply-patch+yaml"
78159        ],
78160        "description": "partially update status of the specified Ingress",
78161        "operationId": "patchNetworkingV1NamespacedIngressStatus",
78162        "parameters": [
78163          {
78164            "in": "body",
78165            "name": "body",
78166            "required": true,
78167            "schema": {
78168              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78169            }
78170          },
78171          {
78172            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78173            "in": "query",
78174            "name": "dryRun",
78175            "type": "string",
78176            "uniqueItems": true
78177          },
78178          {
78179            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
78180            "in": "query",
78181            "name": "fieldManager",
78182            "type": "string",
78183            "uniqueItems": true
78184          },
78185          {
78186            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
78187            "in": "query",
78188            "name": "force",
78189            "type": "boolean",
78190            "uniqueItems": true
78191          }
78192        ],
78193        "produces": [
78194          "application/json",
78195          "application/yaml",
78196          "application/vnd.kubernetes.protobuf"
78197        ],
78198        "responses": {
78199          "200": {
78200            "description": "OK",
78201            "schema": {
78202              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78203            }
78204          },
78205          "401": {
78206            "description": "Unauthorized"
78207          }
78208        },
78209        "schemes": [
78210          "https"
78211        ],
78212        "tags": [
78213          "networking_v1"
78214        ],
78215        "x-kubernetes-action": "patch",
78216        "x-kubernetes-group-version-kind": {
78217          "group": "networking.k8s.io",
78218          "kind": "Ingress",
78219          "version": "v1"
78220        }
78221      },
78222      "put": {
78223        "consumes": [
78224          "*/*"
78225        ],
78226        "description": "replace status of the specified Ingress",
78227        "operationId": "replaceNetworkingV1NamespacedIngressStatus",
78228        "parameters": [
78229          {
78230            "in": "body",
78231            "name": "body",
78232            "required": true,
78233            "schema": {
78234              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78235            }
78236          },
78237          {
78238            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78239            "in": "query",
78240            "name": "dryRun",
78241            "type": "string",
78242            "uniqueItems": true
78243          },
78244          {
78245            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78246            "in": "query",
78247            "name": "fieldManager",
78248            "type": "string",
78249            "uniqueItems": true
78250          }
78251        ],
78252        "produces": [
78253          "application/json",
78254          "application/yaml",
78255          "application/vnd.kubernetes.protobuf"
78256        ],
78257        "responses": {
78258          "200": {
78259            "description": "OK",
78260            "schema": {
78261              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78262            }
78263          },
78264          "201": {
78265            "description": "Created",
78266            "schema": {
78267              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
78268            }
78269          },
78270          "401": {
78271            "description": "Unauthorized"
78272          }
78273        },
78274        "schemes": [
78275          "https"
78276        ],
78277        "tags": [
78278          "networking_v1"
78279        ],
78280        "x-kubernetes-action": "put",
78281        "x-kubernetes-group-version-kind": {
78282          "group": "networking.k8s.io",
78283          "kind": "Ingress",
78284          "version": "v1"
78285        }
78286      }
78287    },
78288    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": {
78289      "delete": {
78290        "consumes": [
78291          "*/*"
78292        ],
78293        "description": "delete collection of NetworkPolicy",
78294        "operationId": "deleteNetworkingV1CollectionNamespacedNetworkPolicy",
78295        "parameters": [
78296          {
78297            "in": "body",
78298            "name": "body",
78299            "schema": {
78300              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78301            }
78302          },
78303          {
78304            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78305            "in": "query",
78306            "name": "continue",
78307            "type": "string",
78308            "uniqueItems": true
78309          },
78310          {
78311            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78312            "in": "query",
78313            "name": "dryRun",
78314            "type": "string",
78315            "uniqueItems": true
78316          },
78317          {
78318            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78319            "in": "query",
78320            "name": "fieldSelector",
78321            "type": "string",
78322            "uniqueItems": true
78323          },
78324          {
78325            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78326            "in": "query",
78327            "name": "gracePeriodSeconds",
78328            "type": "integer",
78329            "uniqueItems": true
78330          },
78331          {
78332            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78333            "in": "query",
78334            "name": "labelSelector",
78335            "type": "string",
78336            "uniqueItems": true
78337          },
78338          {
78339            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78340            "in": "query",
78341            "name": "limit",
78342            "type": "integer",
78343            "uniqueItems": true
78344          },
78345          {
78346            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78347            "in": "query",
78348            "name": "orphanDependents",
78349            "type": "boolean",
78350            "uniqueItems": true
78351          },
78352          {
78353            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78354            "in": "query",
78355            "name": "propagationPolicy",
78356            "type": "string",
78357            "uniqueItems": true
78358          },
78359          {
78360            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78361            "in": "query",
78362            "name": "resourceVersion",
78363            "type": "string",
78364            "uniqueItems": true
78365          },
78366          {
78367            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78368            "in": "query",
78369            "name": "resourceVersionMatch",
78370            "type": "string",
78371            "uniqueItems": true
78372          },
78373          {
78374            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78375            "in": "query",
78376            "name": "timeoutSeconds",
78377            "type": "integer",
78378            "uniqueItems": true
78379          }
78380        ],
78381        "produces": [
78382          "application/json",
78383          "application/yaml",
78384          "application/vnd.kubernetes.protobuf"
78385        ],
78386        "responses": {
78387          "200": {
78388            "description": "OK",
78389            "schema": {
78390              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78391            }
78392          },
78393          "401": {
78394            "description": "Unauthorized"
78395          }
78396        },
78397        "schemes": [
78398          "https"
78399        ],
78400        "tags": [
78401          "networking_v1"
78402        ],
78403        "x-kubernetes-action": "deletecollection",
78404        "x-kubernetes-group-version-kind": {
78405          "group": "networking.k8s.io",
78406          "kind": "NetworkPolicy",
78407          "version": "v1"
78408        }
78409      },
78410      "get": {
78411        "consumes": [
78412          "*/*"
78413        ],
78414        "description": "list or watch objects of kind NetworkPolicy",
78415        "operationId": "listNetworkingV1NamespacedNetworkPolicy",
78416        "parameters": [
78417          {
78418            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
78419            "in": "query",
78420            "name": "allowWatchBookmarks",
78421            "type": "boolean",
78422            "uniqueItems": true
78423          },
78424          {
78425            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78426            "in": "query",
78427            "name": "continue",
78428            "type": "string",
78429            "uniqueItems": true
78430          },
78431          {
78432            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78433            "in": "query",
78434            "name": "fieldSelector",
78435            "type": "string",
78436            "uniqueItems": true
78437          },
78438          {
78439            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78440            "in": "query",
78441            "name": "labelSelector",
78442            "type": "string",
78443            "uniqueItems": true
78444          },
78445          {
78446            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78447            "in": "query",
78448            "name": "limit",
78449            "type": "integer",
78450            "uniqueItems": true
78451          },
78452          {
78453            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78454            "in": "query",
78455            "name": "resourceVersion",
78456            "type": "string",
78457            "uniqueItems": true
78458          },
78459          {
78460            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78461            "in": "query",
78462            "name": "resourceVersionMatch",
78463            "type": "string",
78464            "uniqueItems": true
78465          },
78466          {
78467            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78468            "in": "query",
78469            "name": "timeoutSeconds",
78470            "type": "integer",
78471            "uniqueItems": true
78472          },
78473          {
78474            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78475            "in": "query",
78476            "name": "watch",
78477            "type": "boolean",
78478            "uniqueItems": true
78479          }
78480        ],
78481        "produces": [
78482          "application/json",
78483          "application/yaml",
78484          "application/vnd.kubernetes.protobuf",
78485          "application/json;stream=watch",
78486          "application/vnd.kubernetes.protobuf;stream=watch"
78487        ],
78488        "responses": {
78489          "200": {
78490            "description": "OK",
78491            "schema": {
78492              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
78493            }
78494          },
78495          "401": {
78496            "description": "Unauthorized"
78497          }
78498        },
78499        "schemes": [
78500          "https"
78501        ],
78502        "tags": [
78503          "networking_v1"
78504        ],
78505        "x-kubernetes-action": "list",
78506        "x-kubernetes-group-version-kind": {
78507          "group": "networking.k8s.io",
78508          "kind": "NetworkPolicy",
78509          "version": "v1"
78510        }
78511      },
78512      "parameters": [
78513        {
78514          "description": "object name and auth scope, such as for teams and projects",
78515          "in": "path",
78516          "name": "namespace",
78517          "required": true,
78518          "type": "string",
78519          "uniqueItems": true
78520        },
78521        {
78522          "description": "If 'true', then the output is pretty printed.",
78523          "in": "query",
78524          "name": "pretty",
78525          "type": "string",
78526          "uniqueItems": true
78527        }
78528      ],
78529      "post": {
78530        "consumes": [
78531          "*/*"
78532        ],
78533        "description": "create a NetworkPolicy",
78534        "operationId": "createNetworkingV1NamespacedNetworkPolicy",
78535        "parameters": [
78536          {
78537            "in": "body",
78538            "name": "body",
78539            "required": true,
78540            "schema": {
78541              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78542            }
78543          },
78544          {
78545            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78546            "in": "query",
78547            "name": "dryRun",
78548            "type": "string",
78549            "uniqueItems": true
78550          },
78551          {
78552            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78553            "in": "query",
78554            "name": "fieldManager",
78555            "type": "string",
78556            "uniqueItems": true
78557          }
78558        ],
78559        "produces": [
78560          "application/json",
78561          "application/yaml",
78562          "application/vnd.kubernetes.protobuf"
78563        ],
78564        "responses": {
78565          "200": {
78566            "description": "OK",
78567            "schema": {
78568              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78569            }
78570          },
78571          "201": {
78572            "description": "Created",
78573            "schema": {
78574              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78575            }
78576          },
78577          "202": {
78578            "description": "Accepted",
78579            "schema": {
78580              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78581            }
78582          },
78583          "401": {
78584            "description": "Unauthorized"
78585          }
78586        },
78587        "schemes": [
78588          "https"
78589        ],
78590        "tags": [
78591          "networking_v1"
78592        ],
78593        "x-kubernetes-action": "post",
78594        "x-kubernetes-group-version-kind": {
78595          "group": "networking.k8s.io",
78596          "kind": "NetworkPolicy",
78597          "version": "v1"
78598        }
78599      }
78600    },
78601    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": {
78602      "delete": {
78603        "consumes": [
78604          "*/*"
78605        ],
78606        "description": "delete a NetworkPolicy",
78607        "operationId": "deleteNetworkingV1NamespacedNetworkPolicy",
78608        "parameters": [
78609          {
78610            "in": "body",
78611            "name": "body",
78612            "schema": {
78613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78614            }
78615          },
78616          {
78617            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78618            "in": "query",
78619            "name": "dryRun",
78620            "type": "string",
78621            "uniqueItems": true
78622          },
78623          {
78624            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78625            "in": "query",
78626            "name": "gracePeriodSeconds",
78627            "type": "integer",
78628            "uniqueItems": true
78629          },
78630          {
78631            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78632            "in": "query",
78633            "name": "orphanDependents",
78634            "type": "boolean",
78635            "uniqueItems": true
78636          },
78637          {
78638            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78639            "in": "query",
78640            "name": "propagationPolicy",
78641            "type": "string",
78642            "uniqueItems": true
78643          }
78644        ],
78645        "produces": [
78646          "application/json",
78647          "application/yaml",
78648          "application/vnd.kubernetes.protobuf"
78649        ],
78650        "responses": {
78651          "200": {
78652            "description": "OK",
78653            "schema": {
78654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78655            }
78656          },
78657          "202": {
78658            "description": "Accepted",
78659            "schema": {
78660              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78661            }
78662          },
78663          "401": {
78664            "description": "Unauthorized"
78665          }
78666        },
78667        "schemes": [
78668          "https"
78669        ],
78670        "tags": [
78671          "networking_v1"
78672        ],
78673        "x-kubernetes-action": "delete",
78674        "x-kubernetes-group-version-kind": {
78675          "group": "networking.k8s.io",
78676          "kind": "NetworkPolicy",
78677          "version": "v1"
78678        }
78679      },
78680      "get": {
78681        "consumes": [
78682          "*/*"
78683        ],
78684        "description": "read the specified NetworkPolicy",
78685        "operationId": "readNetworkingV1NamespacedNetworkPolicy",
78686        "produces": [
78687          "application/json",
78688          "application/yaml",
78689          "application/vnd.kubernetes.protobuf"
78690        ],
78691        "responses": {
78692          "200": {
78693            "description": "OK",
78694            "schema": {
78695              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78696            }
78697          },
78698          "401": {
78699            "description": "Unauthorized"
78700          }
78701        },
78702        "schemes": [
78703          "https"
78704        ],
78705        "tags": [
78706          "networking_v1"
78707        ],
78708        "x-kubernetes-action": "get",
78709        "x-kubernetes-group-version-kind": {
78710          "group": "networking.k8s.io",
78711          "kind": "NetworkPolicy",
78712          "version": "v1"
78713        }
78714      },
78715      "parameters": [
78716        {
78717          "description": "name of the NetworkPolicy",
78718          "in": "path",
78719          "name": "name",
78720          "required": true,
78721          "type": "string",
78722          "uniqueItems": true
78723        },
78724        {
78725          "description": "object name and auth scope, such as for teams and projects",
78726          "in": "path",
78727          "name": "namespace",
78728          "required": true,
78729          "type": "string",
78730          "uniqueItems": true
78731        },
78732        {
78733          "description": "If 'true', then the output is pretty printed.",
78734          "in": "query",
78735          "name": "pretty",
78736          "type": "string",
78737          "uniqueItems": true
78738        }
78739      ],
78740      "patch": {
78741        "consumes": [
78742          "application/json-patch+json",
78743          "application/merge-patch+json",
78744          "application/strategic-merge-patch+json",
78745          "application/apply-patch+yaml"
78746        ],
78747        "description": "partially update the specified NetworkPolicy",
78748        "operationId": "patchNetworkingV1NamespacedNetworkPolicy",
78749        "parameters": [
78750          {
78751            "in": "body",
78752            "name": "body",
78753            "required": true,
78754            "schema": {
78755              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78756            }
78757          },
78758          {
78759            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78760            "in": "query",
78761            "name": "dryRun",
78762            "type": "string",
78763            "uniqueItems": true
78764          },
78765          {
78766            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
78767            "in": "query",
78768            "name": "fieldManager",
78769            "type": "string",
78770            "uniqueItems": true
78771          },
78772          {
78773            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
78774            "in": "query",
78775            "name": "force",
78776            "type": "boolean",
78777            "uniqueItems": true
78778          }
78779        ],
78780        "produces": [
78781          "application/json",
78782          "application/yaml",
78783          "application/vnd.kubernetes.protobuf"
78784        ],
78785        "responses": {
78786          "200": {
78787            "description": "OK",
78788            "schema": {
78789              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78790            }
78791          },
78792          "401": {
78793            "description": "Unauthorized"
78794          }
78795        },
78796        "schemes": [
78797          "https"
78798        ],
78799        "tags": [
78800          "networking_v1"
78801        ],
78802        "x-kubernetes-action": "patch",
78803        "x-kubernetes-group-version-kind": {
78804          "group": "networking.k8s.io",
78805          "kind": "NetworkPolicy",
78806          "version": "v1"
78807        }
78808      },
78809      "put": {
78810        "consumes": [
78811          "*/*"
78812        ],
78813        "description": "replace the specified NetworkPolicy",
78814        "operationId": "replaceNetworkingV1NamespacedNetworkPolicy",
78815        "parameters": [
78816          {
78817            "in": "body",
78818            "name": "body",
78819            "required": true,
78820            "schema": {
78821              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78822            }
78823          },
78824          {
78825            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78826            "in": "query",
78827            "name": "dryRun",
78828            "type": "string",
78829            "uniqueItems": true
78830          },
78831          {
78832            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78833            "in": "query",
78834            "name": "fieldManager",
78835            "type": "string",
78836            "uniqueItems": true
78837          }
78838        ],
78839        "produces": [
78840          "application/json",
78841          "application/yaml",
78842          "application/vnd.kubernetes.protobuf"
78843        ],
78844        "responses": {
78845          "200": {
78846            "description": "OK",
78847            "schema": {
78848              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78849            }
78850          },
78851          "201": {
78852            "description": "Created",
78853            "schema": {
78854              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
78855            }
78856          },
78857          "401": {
78858            "description": "Unauthorized"
78859          }
78860        },
78861        "schemes": [
78862          "https"
78863        ],
78864        "tags": [
78865          "networking_v1"
78866        ],
78867        "x-kubernetes-action": "put",
78868        "x-kubernetes-group-version-kind": {
78869          "group": "networking.k8s.io",
78870          "kind": "NetworkPolicy",
78871          "version": "v1"
78872        }
78873      }
78874    },
78875    "/apis/networking.k8s.io/v1/networkpolicies": {
78876      "get": {
78877        "consumes": [
78878          "*/*"
78879        ],
78880        "description": "list or watch objects of kind NetworkPolicy",
78881        "operationId": "listNetworkingV1NetworkPolicyForAllNamespaces",
78882        "produces": [
78883          "application/json",
78884          "application/yaml",
78885          "application/vnd.kubernetes.protobuf",
78886          "application/json;stream=watch",
78887          "application/vnd.kubernetes.protobuf;stream=watch"
78888        ],
78889        "responses": {
78890          "200": {
78891            "description": "OK",
78892            "schema": {
78893              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
78894            }
78895          },
78896          "401": {
78897            "description": "Unauthorized"
78898          }
78899        },
78900        "schemes": [
78901          "https"
78902        ],
78903        "tags": [
78904          "networking_v1"
78905        ],
78906        "x-kubernetes-action": "list",
78907        "x-kubernetes-group-version-kind": {
78908          "group": "networking.k8s.io",
78909          "kind": "NetworkPolicy",
78910          "version": "v1"
78911        }
78912      },
78913      "parameters": [
78914        {
78915          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
78916          "in": "query",
78917          "name": "allowWatchBookmarks",
78918          "type": "boolean",
78919          "uniqueItems": true
78920        },
78921        {
78922          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78923          "in": "query",
78924          "name": "continue",
78925          "type": "string",
78926          "uniqueItems": true
78927        },
78928        {
78929          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78930          "in": "query",
78931          "name": "fieldSelector",
78932          "type": "string",
78933          "uniqueItems": true
78934        },
78935        {
78936          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78937          "in": "query",
78938          "name": "labelSelector",
78939          "type": "string",
78940          "uniqueItems": true
78941        },
78942        {
78943          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78944          "in": "query",
78945          "name": "limit",
78946          "type": "integer",
78947          "uniqueItems": true
78948        },
78949        {
78950          "description": "If 'true', then the output is pretty printed.",
78951          "in": "query",
78952          "name": "pretty",
78953          "type": "string",
78954          "uniqueItems": true
78955        },
78956        {
78957          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78958          "in": "query",
78959          "name": "resourceVersion",
78960          "type": "string",
78961          "uniqueItems": true
78962        },
78963        {
78964          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78965          "in": "query",
78966          "name": "resourceVersionMatch",
78967          "type": "string",
78968          "uniqueItems": true
78969        },
78970        {
78971          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78972          "in": "query",
78973          "name": "timeoutSeconds",
78974          "type": "integer",
78975          "uniqueItems": true
78976        },
78977        {
78978          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78979          "in": "query",
78980          "name": "watch",
78981          "type": "boolean",
78982          "uniqueItems": true
78983        }
78984      ]
78985    },
78986    "/apis/networking.k8s.io/v1/watch/ingressclasses": {
78987      "get": {
78988        "consumes": [
78989          "*/*"
78990        ],
78991        "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
78992        "operationId": "watchNetworkingV1IngressClassList",
78993        "produces": [
78994          "application/json",
78995          "application/yaml",
78996          "application/vnd.kubernetes.protobuf",
78997          "application/json;stream=watch",
78998          "application/vnd.kubernetes.protobuf;stream=watch"
78999        ],
79000        "responses": {
79001          "200": {
79002            "description": "OK",
79003            "schema": {
79004              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79005            }
79006          },
79007          "401": {
79008            "description": "Unauthorized"
79009          }
79010        },
79011        "schemes": [
79012          "https"
79013        ],
79014        "tags": [
79015          "networking_v1"
79016        ],
79017        "x-kubernetes-action": "watchlist",
79018        "x-kubernetes-group-version-kind": {
79019          "group": "networking.k8s.io",
79020          "kind": "IngressClass",
79021          "version": "v1"
79022        }
79023      },
79024      "parameters": [
79025        {
79026          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79027          "in": "query",
79028          "name": "allowWatchBookmarks",
79029          "type": "boolean",
79030          "uniqueItems": true
79031        },
79032        {
79033          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79034          "in": "query",
79035          "name": "continue",
79036          "type": "string",
79037          "uniqueItems": true
79038        },
79039        {
79040          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79041          "in": "query",
79042          "name": "fieldSelector",
79043          "type": "string",
79044          "uniqueItems": true
79045        },
79046        {
79047          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79048          "in": "query",
79049          "name": "labelSelector",
79050          "type": "string",
79051          "uniqueItems": true
79052        },
79053        {
79054          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79055          "in": "query",
79056          "name": "limit",
79057          "type": "integer",
79058          "uniqueItems": true
79059        },
79060        {
79061          "description": "If 'true', then the output is pretty printed.",
79062          "in": "query",
79063          "name": "pretty",
79064          "type": "string",
79065          "uniqueItems": true
79066        },
79067        {
79068          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79069          "in": "query",
79070          "name": "resourceVersion",
79071          "type": "string",
79072          "uniqueItems": true
79073        },
79074        {
79075          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79076          "in": "query",
79077          "name": "resourceVersionMatch",
79078          "type": "string",
79079          "uniqueItems": true
79080        },
79081        {
79082          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79083          "in": "query",
79084          "name": "timeoutSeconds",
79085          "type": "integer",
79086          "uniqueItems": true
79087        },
79088        {
79089          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79090          "in": "query",
79091          "name": "watch",
79092          "type": "boolean",
79093          "uniqueItems": true
79094        }
79095      ]
79096    },
79097    "/apis/networking.k8s.io/v1/watch/ingressclasses/{name}": {
79098      "get": {
79099        "consumes": [
79100          "*/*"
79101        ],
79102        "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.",
79103        "operationId": "watchNetworkingV1IngressClass",
79104        "produces": [
79105          "application/json",
79106          "application/yaml",
79107          "application/vnd.kubernetes.protobuf",
79108          "application/json;stream=watch",
79109          "application/vnd.kubernetes.protobuf;stream=watch"
79110        ],
79111        "responses": {
79112          "200": {
79113            "description": "OK",
79114            "schema": {
79115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79116            }
79117          },
79118          "401": {
79119            "description": "Unauthorized"
79120          }
79121        },
79122        "schemes": [
79123          "https"
79124        ],
79125        "tags": [
79126          "networking_v1"
79127        ],
79128        "x-kubernetes-action": "watch",
79129        "x-kubernetes-group-version-kind": {
79130          "group": "networking.k8s.io",
79131          "kind": "IngressClass",
79132          "version": "v1"
79133        }
79134      },
79135      "parameters": [
79136        {
79137          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79138          "in": "query",
79139          "name": "allowWatchBookmarks",
79140          "type": "boolean",
79141          "uniqueItems": true
79142        },
79143        {
79144          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79145          "in": "query",
79146          "name": "continue",
79147          "type": "string",
79148          "uniqueItems": true
79149        },
79150        {
79151          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79152          "in": "query",
79153          "name": "fieldSelector",
79154          "type": "string",
79155          "uniqueItems": true
79156        },
79157        {
79158          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79159          "in": "query",
79160          "name": "labelSelector",
79161          "type": "string",
79162          "uniqueItems": true
79163        },
79164        {
79165          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79166          "in": "query",
79167          "name": "limit",
79168          "type": "integer",
79169          "uniqueItems": true
79170        },
79171        {
79172          "description": "name of the IngressClass",
79173          "in": "path",
79174          "name": "name",
79175          "required": true,
79176          "type": "string",
79177          "uniqueItems": true
79178        },
79179        {
79180          "description": "If 'true', then the output is pretty printed.",
79181          "in": "query",
79182          "name": "pretty",
79183          "type": "string",
79184          "uniqueItems": true
79185        },
79186        {
79187          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79188          "in": "query",
79189          "name": "resourceVersion",
79190          "type": "string",
79191          "uniqueItems": true
79192        },
79193        {
79194          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79195          "in": "query",
79196          "name": "resourceVersionMatch",
79197          "type": "string",
79198          "uniqueItems": true
79199        },
79200        {
79201          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79202          "in": "query",
79203          "name": "timeoutSeconds",
79204          "type": "integer",
79205          "uniqueItems": true
79206        },
79207        {
79208          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79209          "in": "query",
79210          "name": "watch",
79211          "type": "boolean",
79212          "uniqueItems": true
79213        }
79214      ]
79215    },
79216    "/apis/networking.k8s.io/v1/watch/ingresses": {
79217      "get": {
79218        "consumes": [
79219          "*/*"
79220        ],
79221        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
79222        "operationId": "watchNetworkingV1IngressListForAllNamespaces",
79223        "produces": [
79224          "application/json",
79225          "application/yaml",
79226          "application/vnd.kubernetes.protobuf",
79227          "application/json;stream=watch",
79228          "application/vnd.kubernetes.protobuf;stream=watch"
79229        ],
79230        "responses": {
79231          "200": {
79232            "description": "OK",
79233            "schema": {
79234              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79235            }
79236          },
79237          "401": {
79238            "description": "Unauthorized"
79239          }
79240        },
79241        "schemes": [
79242          "https"
79243        ],
79244        "tags": [
79245          "networking_v1"
79246        ],
79247        "x-kubernetes-action": "watchlist",
79248        "x-kubernetes-group-version-kind": {
79249          "group": "networking.k8s.io",
79250          "kind": "Ingress",
79251          "version": "v1"
79252        }
79253      },
79254      "parameters": [
79255        {
79256          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79257          "in": "query",
79258          "name": "allowWatchBookmarks",
79259          "type": "boolean",
79260          "uniqueItems": true
79261        },
79262        {
79263          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79264          "in": "query",
79265          "name": "continue",
79266          "type": "string",
79267          "uniqueItems": true
79268        },
79269        {
79270          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79271          "in": "query",
79272          "name": "fieldSelector",
79273          "type": "string",
79274          "uniqueItems": true
79275        },
79276        {
79277          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79278          "in": "query",
79279          "name": "labelSelector",
79280          "type": "string",
79281          "uniqueItems": true
79282        },
79283        {
79284          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79285          "in": "query",
79286          "name": "limit",
79287          "type": "integer",
79288          "uniqueItems": true
79289        },
79290        {
79291          "description": "If 'true', then the output is pretty printed.",
79292          "in": "query",
79293          "name": "pretty",
79294          "type": "string",
79295          "uniqueItems": true
79296        },
79297        {
79298          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79299          "in": "query",
79300          "name": "resourceVersion",
79301          "type": "string",
79302          "uniqueItems": true
79303        },
79304        {
79305          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79306          "in": "query",
79307          "name": "resourceVersionMatch",
79308          "type": "string",
79309          "uniqueItems": true
79310        },
79311        {
79312          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79313          "in": "query",
79314          "name": "timeoutSeconds",
79315          "type": "integer",
79316          "uniqueItems": true
79317        },
79318        {
79319          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79320          "in": "query",
79321          "name": "watch",
79322          "type": "boolean",
79323          "uniqueItems": true
79324        }
79325      ]
79326    },
79327    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses": {
79328      "get": {
79329        "consumes": [
79330          "*/*"
79331        ],
79332        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
79333        "operationId": "watchNetworkingV1NamespacedIngressList",
79334        "produces": [
79335          "application/json",
79336          "application/yaml",
79337          "application/vnd.kubernetes.protobuf",
79338          "application/json;stream=watch",
79339          "application/vnd.kubernetes.protobuf;stream=watch"
79340        ],
79341        "responses": {
79342          "200": {
79343            "description": "OK",
79344            "schema": {
79345              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79346            }
79347          },
79348          "401": {
79349            "description": "Unauthorized"
79350          }
79351        },
79352        "schemes": [
79353          "https"
79354        ],
79355        "tags": [
79356          "networking_v1"
79357        ],
79358        "x-kubernetes-action": "watchlist",
79359        "x-kubernetes-group-version-kind": {
79360          "group": "networking.k8s.io",
79361          "kind": "Ingress",
79362          "version": "v1"
79363        }
79364      },
79365      "parameters": [
79366        {
79367          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79368          "in": "query",
79369          "name": "allowWatchBookmarks",
79370          "type": "boolean",
79371          "uniqueItems": true
79372        },
79373        {
79374          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79375          "in": "query",
79376          "name": "continue",
79377          "type": "string",
79378          "uniqueItems": true
79379        },
79380        {
79381          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79382          "in": "query",
79383          "name": "fieldSelector",
79384          "type": "string",
79385          "uniqueItems": true
79386        },
79387        {
79388          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79389          "in": "query",
79390          "name": "labelSelector",
79391          "type": "string",
79392          "uniqueItems": true
79393        },
79394        {
79395          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79396          "in": "query",
79397          "name": "limit",
79398          "type": "integer",
79399          "uniqueItems": true
79400        },
79401        {
79402          "description": "object name and auth scope, such as for teams and projects",
79403          "in": "path",
79404          "name": "namespace",
79405          "required": true,
79406          "type": "string",
79407          "uniqueItems": true
79408        },
79409        {
79410          "description": "If 'true', then the output is pretty printed.",
79411          "in": "query",
79412          "name": "pretty",
79413          "type": "string",
79414          "uniqueItems": true
79415        },
79416        {
79417          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79418          "in": "query",
79419          "name": "resourceVersion",
79420          "type": "string",
79421          "uniqueItems": true
79422        },
79423        {
79424          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79425          "in": "query",
79426          "name": "resourceVersionMatch",
79427          "type": "string",
79428          "uniqueItems": true
79429        },
79430        {
79431          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79432          "in": "query",
79433          "name": "timeoutSeconds",
79434          "type": "integer",
79435          "uniqueItems": true
79436        },
79437        {
79438          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79439          "in": "query",
79440          "name": "watch",
79441          "type": "boolean",
79442          "uniqueItems": true
79443        }
79444      ]
79445    },
79446    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses/{name}": {
79447      "get": {
79448        "consumes": [
79449          "*/*"
79450        ],
79451        "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.",
79452        "operationId": "watchNetworkingV1NamespacedIngress",
79453        "produces": [
79454          "application/json",
79455          "application/yaml",
79456          "application/vnd.kubernetes.protobuf",
79457          "application/json;stream=watch",
79458          "application/vnd.kubernetes.protobuf;stream=watch"
79459        ],
79460        "responses": {
79461          "200": {
79462            "description": "OK",
79463            "schema": {
79464              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79465            }
79466          },
79467          "401": {
79468            "description": "Unauthorized"
79469          }
79470        },
79471        "schemes": [
79472          "https"
79473        ],
79474        "tags": [
79475          "networking_v1"
79476        ],
79477        "x-kubernetes-action": "watch",
79478        "x-kubernetes-group-version-kind": {
79479          "group": "networking.k8s.io",
79480          "kind": "Ingress",
79481          "version": "v1"
79482        }
79483      },
79484      "parameters": [
79485        {
79486          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79487          "in": "query",
79488          "name": "allowWatchBookmarks",
79489          "type": "boolean",
79490          "uniqueItems": true
79491        },
79492        {
79493          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79494          "in": "query",
79495          "name": "continue",
79496          "type": "string",
79497          "uniqueItems": true
79498        },
79499        {
79500          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79501          "in": "query",
79502          "name": "fieldSelector",
79503          "type": "string",
79504          "uniqueItems": true
79505        },
79506        {
79507          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79508          "in": "query",
79509          "name": "labelSelector",
79510          "type": "string",
79511          "uniqueItems": true
79512        },
79513        {
79514          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79515          "in": "query",
79516          "name": "limit",
79517          "type": "integer",
79518          "uniqueItems": true
79519        },
79520        {
79521          "description": "name of the Ingress",
79522          "in": "path",
79523          "name": "name",
79524          "required": true,
79525          "type": "string",
79526          "uniqueItems": true
79527        },
79528        {
79529          "description": "object name and auth scope, such as for teams and projects",
79530          "in": "path",
79531          "name": "namespace",
79532          "required": true,
79533          "type": "string",
79534          "uniqueItems": true
79535        },
79536        {
79537          "description": "If 'true', then the output is pretty printed.",
79538          "in": "query",
79539          "name": "pretty",
79540          "type": "string",
79541          "uniqueItems": true
79542        },
79543        {
79544          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79545          "in": "query",
79546          "name": "resourceVersion",
79547          "type": "string",
79548          "uniqueItems": true
79549        },
79550        {
79551          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79552          "in": "query",
79553          "name": "resourceVersionMatch",
79554          "type": "string",
79555          "uniqueItems": true
79556        },
79557        {
79558          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79559          "in": "query",
79560          "name": "timeoutSeconds",
79561          "type": "integer",
79562          "uniqueItems": true
79563        },
79564        {
79565          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79566          "in": "query",
79567          "name": "watch",
79568          "type": "boolean",
79569          "uniqueItems": true
79570        }
79571      ]
79572    },
79573    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": {
79574      "get": {
79575        "consumes": [
79576          "*/*"
79577        ],
79578        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
79579        "operationId": "watchNetworkingV1NamespacedNetworkPolicyList",
79580        "produces": [
79581          "application/json",
79582          "application/yaml",
79583          "application/vnd.kubernetes.protobuf",
79584          "application/json;stream=watch",
79585          "application/vnd.kubernetes.protobuf;stream=watch"
79586        ],
79587        "responses": {
79588          "200": {
79589            "description": "OK",
79590            "schema": {
79591              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79592            }
79593          },
79594          "401": {
79595            "description": "Unauthorized"
79596          }
79597        },
79598        "schemes": [
79599          "https"
79600        ],
79601        "tags": [
79602          "networking_v1"
79603        ],
79604        "x-kubernetes-action": "watchlist",
79605        "x-kubernetes-group-version-kind": {
79606          "group": "networking.k8s.io",
79607          "kind": "NetworkPolicy",
79608          "version": "v1"
79609        }
79610      },
79611      "parameters": [
79612        {
79613          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79614          "in": "query",
79615          "name": "allowWatchBookmarks",
79616          "type": "boolean",
79617          "uniqueItems": true
79618        },
79619        {
79620          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79621          "in": "query",
79622          "name": "continue",
79623          "type": "string",
79624          "uniqueItems": true
79625        },
79626        {
79627          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79628          "in": "query",
79629          "name": "fieldSelector",
79630          "type": "string",
79631          "uniqueItems": true
79632        },
79633        {
79634          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79635          "in": "query",
79636          "name": "labelSelector",
79637          "type": "string",
79638          "uniqueItems": true
79639        },
79640        {
79641          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79642          "in": "query",
79643          "name": "limit",
79644          "type": "integer",
79645          "uniqueItems": true
79646        },
79647        {
79648          "description": "object name and auth scope, such as for teams and projects",
79649          "in": "path",
79650          "name": "namespace",
79651          "required": true,
79652          "type": "string",
79653          "uniqueItems": true
79654        },
79655        {
79656          "description": "If 'true', then the output is pretty printed.",
79657          "in": "query",
79658          "name": "pretty",
79659          "type": "string",
79660          "uniqueItems": true
79661        },
79662        {
79663          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79664          "in": "query",
79665          "name": "resourceVersion",
79666          "type": "string",
79667          "uniqueItems": true
79668        },
79669        {
79670          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79671          "in": "query",
79672          "name": "resourceVersionMatch",
79673          "type": "string",
79674          "uniqueItems": true
79675        },
79676        {
79677          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79678          "in": "query",
79679          "name": "timeoutSeconds",
79680          "type": "integer",
79681          "uniqueItems": true
79682        },
79683        {
79684          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79685          "in": "query",
79686          "name": "watch",
79687          "type": "boolean",
79688          "uniqueItems": true
79689        }
79690      ]
79691    },
79692    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": {
79693      "get": {
79694        "consumes": [
79695          "*/*"
79696        ],
79697        "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.",
79698        "operationId": "watchNetworkingV1NamespacedNetworkPolicy",
79699        "produces": [
79700          "application/json",
79701          "application/yaml",
79702          "application/vnd.kubernetes.protobuf",
79703          "application/json;stream=watch",
79704          "application/vnd.kubernetes.protobuf;stream=watch"
79705        ],
79706        "responses": {
79707          "200": {
79708            "description": "OK",
79709            "schema": {
79710              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79711            }
79712          },
79713          "401": {
79714            "description": "Unauthorized"
79715          }
79716        },
79717        "schemes": [
79718          "https"
79719        ],
79720        "tags": [
79721          "networking_v1"
79722        ],
79723        "x-kubernetes-action": "watch",
79724        "x-kubernetes-group-version-kind": {
79725          "group": "networking.k8s.io",
79726          "kind": "NetworkPolicy",
79727          "version": "v1"
79728        }
79729      },
79730      "parameters": [
79731        {
79732          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79733          "in": "query",
79734          "name": "allowWatchBookmarks",
79735          "type": "boolean",
79736          "uniqueItems": true
79737        },
79738        {
79739          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79740          "in": "query",
79741          "name": "continue",
79742          "type": "string",
79743          "uniqueItems": true
79744        },
79745        {
79746          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79747          "in": "query",
79748          "name": "fieldSelector",
79749          "type": "string",
79750          "uniqueItems": true
79751        },
79752        {
79753          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79754          "in": "query",
79755          "name": "labelSelector",
79756          "type": "string",
79757          "uniqueItems": true
79758        },
79759        {
79760          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79761          "in": "query",
79762          "name": "limit",
79763          "type": "integer",
79764          "uniqueItems": true
79765        },
79766        {
79767          "description": "name of the NetworkPolicy",
79768          "in": "path",
79769          "name": "name",
79770          "required": true,
79771          "type": "string",
79772          "uniqueItems": true
79773        },
79774        {
79775          "description": "object name and auth scope, such as for teams and projects",
79776          "in": "path",
79777          "name": "namespace",
79778          "required": true,
79779          "type": "string",
79780          "uniqueItems": true
79781        },
79782        {
79783          "description": "If 'true', then the output is pretty printed.",
79784          "in": "query",
79785          "name": "pretty",
79786          "type": "string",
79787          "uniqueItems": true
79788        },
79789        {
79790          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79791          "in": "query",
79792          "name": "resourceVersion",
79793          "type": "string",
79794          "uniqueItems": true
79795        },
79796        {
79797          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79798          "in": "query",
79799          "name": "resourceVersionMatch",
79800          "type": "string",
79801          "uniqueItems": true
79802        },
79803        {
79804          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79805          "in": "query",
79806          "name": "timeoutSeconds",
79807          "type": "integer",
79808          "uniqueItems": true
79809        },
79810        {
79811          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79812          "in": "query",
79813          "name": "watch",
79814          "type": "boolean",
79815          "uniqueItems": true
79816        }
79817      ]
79818    },
79819    "/apis/networking.k8s.io/v1/watch/networkpolicies": {
79820      "get": {
79821        "consumes": [
79822          "*/*"
79823        ],
79824        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
79825        "operationId": "watchNetworkingV1NetworkPolicyListForAllNamespaces",
79826        "produces": [
79827          "application/json",
79828          "application/yaml",
79829          "application/vnd.kubernetes.protobuf",
79830          "application/json;stream=watch",
79831          "application/vnd.kubernetes.protobuf;stream=watch"
79832        ],
79833        "responses": {
79834          "200": {
79835            "description": "OK",
79836            "schema": {
79837              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
79838            }
79839          },
79840          "401": {
79841            "description": "Unauthorized"
79842          }
79843        },
79844        "schemes": [
79845          "https"
79846        ],
79847        "tags": [
79848          "networking_v1"
79849        ],
79850        "x-kubernetes-action": "watchlist",
79851        "x-kubernetes-group-version-kind": {
79852          "group": "networking.k8s.io",
79853          "kind": "NetworkPolicy",
79854          "version": "v1"
79855        }
79856      },
79857      "parameters": [
79858        {
79859          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
79860          "in": "query",
79861          "name": "allowWatchBookmarks",
79862          "type": "boolean",
79863          "uniqueItems": true
79864        },
79865        {
79866          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79867          "in": "query",
79868          "name": "continue",
79869          "type": "string",
79870          "uniqueItems": true
79871        },
79872        {
79873          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79874          "in": "query",
79875          "name": "fieldSelector",
79876          "type": "string",
79877          "uniqueItems": true
79878        },
79879        {
79880          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79881          "in": "query",
79882          "name": "labelSelector",
79883          "type": "string",
79884          "uniqueItems": true
79885        },
79886        {
79887          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79888          "in": "query",
79889          "name": "limit",
79890          "type": "integer",
79891          "uniqueItems": true
79892        },
79893        {
79894          "description": "If 'true', then the output is pretty printed.",
79895          "in": "query",
79896          "name": "pretty",
79897          "type": "string",
79898          "uniqueItems": true
79899        },
79900        {
79901          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79902          "in": "query",
79903          "name": "resourceVersion",
79904          "type": "string",
79905          "uniqueItems": true
79906        },
79907        {
79908          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79909          "in": "query",
79910          "name": "resourceVersionMatch",
79911          "type": "string",
79912          "uniqueItems": true
79913        },
79914        {
79915          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79916          "in": "query",
79917          "name": "timeoutSeconds",
79918          "type": "integer",
79919          "uniqueItems": true
79920        },
79921        {
79922          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79923          "in": "query",
79924          "name": "watch",
79925          "type": "boolean",
79926          "uniqueItems": true
79927        }
79928      ]
79929    },
79930    "/apis/networking.k8s.io/v1beta1/": {
79931      "get": {
79932        "consumes": [
79933          "application/json",
79934          "application/yaml",
79935          "application/vnd.kubernetes.protobuf"
79936        ],
79937        "description": "get available resources",
79938        "operationId": "getNetworkingV1beta1APIResources",
79939        "produces": [
79940          "application/json",
79941          "application/yaml",
79942          "application/vnd.kubernetes.protobuf"
79943        ],
79944        "responses": {
79945          "200": {
79946            "description": "OK",
79947            "schema": {
79948              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
79949            }
79950          },
79951          "401": {
79952            "description": "Unauthorized"
79953          }
79954        },
79955        "schemes": [
79956          "https"
79957        ],
79958        "tags": [
79959          "networking_v1beta1"
79960        ]
79961      }
79962    },
79963    "/apis/networking.k8s.io/v1beta1/ingressclasses": {
79964      "delete": {
79965        "consumes": [
79966          "*/*"
79967        ],
79968        "description": "delete collection of IngressClass",
79969        "operationId": "deleteNetworkingV1beta1CollectionIngressClass",
79970        "parameters": [
79971          {
79972            "in": "body",
79973            "name": "body",
79974            "schema": {
79975              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79976            }
79977          },
79978          {
79979            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79980            "in": "query",
79981            "name": "continue",
79982            "type": "string",
79983            "uniqueItems": true
79984          },
79985          {
79986            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79987            "in": "query",
79988            "name": "dryRun",
79989            "type": "string",
79990            "uniqueItems": true
79991          },
79992          {
79993            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79994            "in": "query",
79995            "name": "fieldSelector",
79996            "type": "string",
79997            "uniqueItems": true
79998          },
79999          {
80000            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80001            "in": "query",
80002            "name": "gracePeriodSeconds",
80003            "type": "integer",
80004            "uniqueItems": true
80005          },
80006          {
80007            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80008            "in": "query",
80009            "name": "labelSelector",
80010            "type": "string",
80011            "uniqueItems": true
80012          },
80013          {
80014            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80015            "in": "query",
80016            "name": "limit",
80017            "type": "integer",
80018            "uniqueItems": true
80019          },
80020          {
80021            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80022            "in": "query",
80023            "name": "orphanDependents",
80024            "type": "boolean",
80025            "uniqueItems": true
80026          },
80027          {
80028            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80029            "in": "query",
80030            "name": "propagationPolicy",
80031            "type": "string",
80032            "uniqueItems": true
80033          },
80034          {
80035            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80036            "in": "query",
80037            "name": "resourceVersion",
80038            "type": "string",
80039            "uniqueItems": true
80040          },
80041          {
80042            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80043            "in": "query",
80044            "name": "resourceVersionMatch",
80045            "type": "string",
80046            "uniqueItems": true
80047          },
80048          {
80049            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80050            "in": "query",
80051            "name": "timeoutSeconds",
80052            "type": "integer",
80053            "uniqueItems": true
80054          }
80055        ],
80056        "produces": [
80057          "application/json",
80058          "application/yaml",
80059          "application/vnd.kubernetes.protobuf"
80060        ],
80061        "responses": {
80062          "200": {
80063            "description": "OK",
80064            "schema": {
80065              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80066            }
80067          },
80068          "401": {
80069            "description": "Unauthorized"
80070          }
80071        },
80072        "schemes": [
80073          "https"
80074        ],
80075        "tags": [
80076          "networking_v1beta1"
80077        ],
80078        "x-kubernetes-action": "deletecollection",
80079        "x-kubernetes-group-version-kind": {
80080          "group": "networking.k8s.io",
80081          "kind": "IngressClass",
80082          "version": "v1beta1"
80083        }
80084      },
80085      "get": {
80086        "consumes": [
80087          "*/*"
80088        ],
80089        "description": "list or watch objects of kind IngressClass",
80090        "operationId": "listNetworkingV1beta1IngressClass",
80091        "parameters": [
80092          {
80093            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80094            "in": "query",
80095            "name": "allowWatchBookmarks",
80096            "type": "boolean",
80097            "uniqueItems": true
80098          },
80099          {
80100            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80101            "in": "query",
80102            "name": "continue",
80103            "type": "string",
80104            "uniqueItems": true
80105          },
80106          {
80107            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80108            "in": "query",
80109            "name": "fieldSelector",
80110            "type": "string",
80111            "uniqueItems": true
80112          },
80113          {
80114            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80115            "in": "query",
80116            "name": "labelSelector",
80117            "type": "string",
80118            "uniqueItems": true
80119          },
80120          {
80121            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80122            "in": "query",
80123            "name": "limit",
80124            "type": "integer",
80125            "uniqueItems": true
80126          },
80127          {
80128            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80129            "in": "query",
80130            "name": "resourceVersion",
80131            "type": "string",
80132            "uniqueItems": true
80133          },
80134          {
80135            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80136            "in": "query",
80137            "name": "resourceVersionMatch",
80138            "type": "string",
80139            "uniqueItems": true
80140          },
80141          {
80142            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80143            "in": "query",
80144            "name": "timeoutSeconds",
80145            "type": "integer",
80146            "uniqueItems": true
80147          },
80148          {
80149            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80150            "in": "query",
80151            "name": "watch",
80152            "type": "boolean",
80153            "uniqueItems": true
80154          }
80155        ],
80156        "produces": [
80157          "application/json",
80158          "application/yaml",
80159          "application/vnd.kubernetes.protobuf",
80160          "application/json;stream=watch",
80161          "application/vnd.kubernetes.protobuf;stream=watch"
80162        ],
80163        "responses": {
80164          "200": {
80165            "description": "OK",
80166            "schema": {
80167              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClassList"
80168            }
80169          },
80170          "401": {
80171            "description": "Unauthorized"
80172          }
80173        },
80174        "schemes": [
80175          "https"
80176        ],
80177        "tags": [
80178          "networking_v1beta1"
80179        ],
80180        "x-kubernetes-action": "list",
80181        "x-kubernetes-group-version-kind": {
80182          "group": "networking.k8s.io",
80183          "kind": "IngressClass",
80184          "version": "v1beta1"
80185        }
80186      },
80187      "parameters": [
80188        {
80189          "description": "If 'true', then the output is pretty printed.",
80190          "in": "query",
80191          "name": "pretty",
80192          "type": "string",
80193          "uniqueItems": true
80194        }
80195      ],
80196      "post": {
80197        "consumes": [
80198          "*/*"
80199        ],
80200        "description": "create an IngressClass",
80201        "operationId": "createNetworkingV1beta1IngressClass",
80202        "parameters": [
80203          {
80204            "in": "body",
80205            "name": "body",
80206            "required": true,
80207            "schema": {
80208              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80209            }
80210          },
80211          {
80212            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80213            "in": "query",
80214            "name": "dryRun",
80215            "type": "string",
80216            "uniqueItems": true
80217          },
80218          {
80219            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80220            "in": "query",
80221            "name": "fieldManager",
80222            "type": "string",
80223            "uniqueItems": true
80224          }
80225        ],
80226        "produces": [
80227          "application/json",
80228          "application/yaml",
80229          "application/vnd.kubernetes.protobuf"
80230        ],
80231        "responses": {
80232          "200": {
80233            "description": "OK",
80234            "schema": {
80235              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80236            }
80237          },
80238          "201": {
80239            "description": "Created",
80240            "schema": {
80241              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80242            }
80243          },
80244          "202": {
80245            "description": "Accepted",
80246            "schema": {
80247              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80248            }
80249          },
80250          "401": {
80251            "description": "Unauthorized"
80252          }
80253        },
80254        "schemes": [
80255          "https"
80256        ],
80257        "tags": [
80258          "networking_v1beta1"
80259        ],
80260        "x-kubernetes-action": "post",
80261        "x-kubernetes-group-version-kind": {
80262          "group": "networking.k8s.io",
80263          "kind": "IngressClass",
80264          "version": "v1beta1"
80265        }
80266      }
80267    },
80268    "/apis/networking.k8s.io/v1beta1/ingressclasses/{name}": {
80269      "delete": {
80270        "consumes": [
80271          "*/*"
80272        ],
80273        "description": "delete an IngressClass",
80274        "operationId": "deleteNetworkingV1beta1IngressClass",
80275        "parameters": [
80276          {
80277            "in": "body",
80278            "name": "body",
80279            "schema": {
80280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80281            }
80282          },
80283          {
80284            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80285            "in": "query",
80286            "name": "dryRun",
80287            "type": "string",
80288            "uniqueItems": true
80289          },
80290          {
80291            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80292            "in": "query",
80293            "name": "gracePeriodSeconds",
80294            "type": "integer",
80295            "uniqueItems": true
80296          },
80297          {
80298            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80299            "in": "query",
80300            "name": "orphanDependents",
80301            "type": "boolean",
80302            "uniqueItems": true
80303          },
80304          {
80305            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80306            "in": "query",
80307            "name": "propagationPolicy",
80308            "type": "string",
80309            "uniqueItems": true
80310          }
80311        ],
80312        "produces": [
80313          "application/json",
80314          "application/yaml",
80315          "application/vnd.kubernetes.protobuf"
80316        ],
80317        "responses": {
80318          "200": {
80319            "description": "OK",
80320            "schema": {
80321              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80322            }
80323          },
80324          "202": {
80325            "description": "Accepted",
80326            "schema": {
80327              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80328            }
80329          },
80330          "401": {
80331            "description": "Unauthorized"
80332          }
80333        },
80334        "schemes": [
80335          "https"
80336        ],
80337        "tags": [
80338          "networking_v1beta1"
80339        ],
80340        "x-kubernetes-action": "delete",
80341        "x-kubernetes-group-version-kind": {
80342          "group": "networking.k8s.io",
80343          "kind": "IngressClass",
80344          "version": "v1beta1"
80345        }
80346      },
80347      "get": {
80348        "consumes": [
80349          "*/*"
80350        ],
80351        "description": "read the specified IngressClass",
80352        "operationId": "readNetworkingV1beta1IngressClass",
80353        "produces": [
80354          "application/json",
80355          "application/yaml",
80356          "application/vnd.kubernetes.protobuf"
80357        ],
80358        "responses": {
80359          "200": {
80360            "description": "OK",
80361            "schema": {
80362              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80363            }
80364          },
80365          "401": {
80366            "description": "Unauthorized"
80367          }
80368        },
80369        "schemes": [
80370          "https"
80371        ],
80372        "tags": [
80373          "networking_v1beta1"
80374        ],
80375        "x-kubernetes-action": "get",
80376        "x-kubernetes-group-version-kind": {
80377          "group": "networking.k8s.io",
80378          "kind": "IngressClass",
80379          "version": "v1beta1"
80380        }
80381      },
80382      "parameters": [
80383        {
80384          "description": "name of the IngressClass",
80385          "in": "path",
80386          "name": "name",
80387          "required": true,
80388          "type": "string",
80389          "uniqueItems": true
80390        },
80391        {
80392          "description": "If 'true', then the output is pretty printed.",
80393          "in": "query",
80394          "name": "pretty",
80395          "type": "string",
80396          "uniqueItems": true
80397        }
80398      ],
80399      "patch": {
80400        "consumes": [
80401          "application/json-patch+json",
80402          "application/merge-patch+json",
80403          "application/strategic-merge-patch+json",
80404          "application/apply-patch+yaml"
80405        ],
80406        "description": "partially update the specified IngressClass",
80407        "operationId": "patchNetworkingV1beta1IngressClass",
80408        "parameters": [
80409          {
80410            "in": "body",
80411            "name": "body",
80412            "required": true,
80413            "schema": {
80414              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80415            }
80416          },
80417          {
80418            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80419            "in": "query",
80420            "name": "dryRun",
80421            "type": "string",
80422            "uniqueItems": true
80423          },
80424          {
80425            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
80426            "in": "query",
80427            "name": "fieldManager",
80428            "type": "string",
80429            "uniqueItems": true
80430          },
80431          {
80432            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
80433            "in": "query",
80434            "name": "force",
80435            "type": "boolean",
80436            "uniqueItems": true
80437          }
80438        ],
80439        "produces": [
80440          "application/json",
80441          "application/yaml",
80442          "application/vnd.kubernetes.protobuf"
80443        ],
80444        "responses": {
80445          "200": {
80446            "description": "OK",
80447            "schema": {
80448              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80449            }
80450          },
80451          "401": {
80452            "description": "Unauthorized"
80453          }
80454        },
80455        "schemes": [
80456          "https"
80457        ],
80458        "tags": [
80459          "networking_v1beta1"
80460        ],
80461        "x-kubernetes-action": "patch",
80462        "x-kubernetes-group-version-kind": {
80463          "group": "networking.k8s.io",
80464          "kind": "IngressClass",
80465          "version": "v1beta1"
80466        }
80467      },
80468      "put": {
80469        "consumes": [
80470          "*/*"
80471        ],
80472        "description": "replace the specified IngressClass",
80473        "operationId": "replaceNetworkingV1beta1IngressClass",
80474        "parameters": [
80475          {
80476            "in": "body",
80477            "name": "body",
80478            "required": true,
80479            "schema": {
80480              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80481            }
80482          },
80483          {
80484            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80485            "in": "query",
80486            "name": "dryRun",
80487            "type": "string",
80488            "uniqueItems": true
80489          },
80490          {
80491            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80492            "in": "query",
80493            "name": "fieldManager",
80494            "type": "string",
80495            "uniqueItems": true
80496          }
80497        ],
80498        "produces": [
80499          "application/json",
80500          "application/yaml",
80501          "application/vnd.kubernetes.protobuf"
80502        ],
80503        "responses": {
80504          "200": {
80505            "description": "OK",
80506            "schema": {
80507              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80508            }
80509          },
80510          "201": {
80511            "description": "Created",
80512            "schema": {
80513              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressClass"
80514            }
80515          },
80516          "401": {
80517            "description": "Unauthorized"
80518          }
80519        },
80520        "schemes": [
80521          "https"
80522        ],
80523        "tags": [
80524          "networking_v1beta1"
80525        ],
80526        "x-kubernetes-action": "put",
80527        "x-kubernetes-group-version-kind": {
80528          "group": "networking.k8s.io",
80529          "kind": "IngressClass",
80530          "version": "v1beta1"
80531        }
80532      }
80533    },
80534    "/apis/networking.k8s.io/v1beta1/ingresses": {
80535      "get": {
80536        "consumes": [
80537          "*/*"
80538        ],
80539        "description": "list or watch objects of kind Ingress",
80540        "operationId": "listNetworkingV1beta1IngressForAllNamespaces",
80541        "produces": [
80542          "application/json",
80543          "application/yaml",
80544          "application/vnd.kubernetes.protobuf",
80545          "application/json;stream=watch",
80546          "application/vnd.kubernetes.protobuf;stream=watch"
80547        ],
80548        "responses": {
80549          "200": {
80550            "description": "OK",
80551            "schema": {
80552              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
80553            }
80554          },
80555          "401": {
80556            "description": "Unauthorized"
80557          }
80558        },
80559        "schemes": [
80560          "https"
80561        ],
80562        "tags": [
80563          "networking_v1beta1"
80564        ],
80565        "x-kubernetes-action": "list",
80566        "x-kubernetes-group-version-kind": {
80567          "group": "networking.k8s.io",
80568          "kind": "Ingress",
80569          "version": "v1beta1"
80570        }
80571      },
80572      "parameters": [
80573        {
80574          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80575          "in": "query",
80576          "name": "allowWatchBookmarks",
80577          "type": "boolean",
80578          "uniqueItems": true
80579        },
80580        {
80581          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80582          "in": "query",
80583          "name": "continue",
80584          "type": "string",
80585          "uniqueItems": true
80586        },
80587        {
80588          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80589          "in": "query",
80590          "name": "fieldSelector",
80591          "type": "string",
80592          "uniqueItems": true
80593        },
80594        {
80595          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80596          "in": "query",
80597          "name": "labelSelector",
80598          "type": "string",
80599          "uniqueItems": true
80600        },
80601        {
80602          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80603          "in": "query",
80604          "name": "limit",
80605          "type": "integer",
80606          "uniqueItems": true
80607        },
80608        {
80609          "description": "If 'true', then the output is pretty printed.",
80610          "in": "query",
80611          "name": "pretty",
80612          "type": "string",
80613          "uniqueItems": true
80614        },
80615        {
80616          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80617          "in": "query",
80618          "name": "resourceVersion",
80619          "type": "string",
80620          "uniqueItems": true
80621        },
80622        {
80623          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80624          "in": "query",
80625          "name": "resourceVersionMatch",
80626          "type": "string",
80627          "uniqueItems": true
80628        },
80629        {
80630          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80631          "in": "query",
80632          "name": "timeoutSeconds",
80633          "type": "integer",
80634          "uniqueItems": true
80635        },
80636        {
80637          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80638          "in": "query",
80639          "name": "watch",
80640          "type": "boolean",
80641          "uniqueItems": true
80642        }
80643      ]
80644    },
80645    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses": {
80646      "delete": {
80647        "consumes": [
80648          "*/*"
80649        ],
80650        "description": "delete collection of Ingress",
80651        "operationId": "deleteNetworkingV1beta1CollectionNamespacedIngress",
80652        "parameters": [
80653          {
80654            "in": "body",
80655            "name": "body",
80656            "schema": {
80657              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80658            }
80659          },
80660          {
80661            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80662            "in": "query",
80663            "name": "continue",
80664            "type": "string",
80665            "uniqueItems": true
80666          },
80667          {
80668            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80669            "in": "query",
80670            "name": "dryRun",
80671            "type": "string",
80672            "uniqueItems": true
80673          },
80674          {
80675            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80676            "in": "query",
80677            "name": "fieldSelector",
80678            "type": "string",
80679            "uniqueItems": true
80680          },
80681          {
80682            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80683            "in": "query",
80684            "name": "gracePeriodSeconds",
80685            "type": "integer",
80686            "uniqueItems": true
80687          },
80688          {
80689            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80690            "in": "query",
80691            "name": "labelSelector",
80692            "type": "string",
80693            "uniqueItems": true
80694          },
80695          {
80696            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80697            "in": "query",
80698            "name": "limit",
80699            "type": "integer",
80700            "uniqueItems": true
80701          },
80702          {
80703            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80704            "in": "query",
80705            "name": "orphanDependents",
80706            "type": "boolean",
80707            "uniqueItems": true
80708          },
80709          {
80710            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80711            "in": "query",
80712            "name": "propagationPolicy",
80713            "type": "string",
80714            "uniqueItems": true
80715          },
80716          {
80717            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80718            "in": "query",
80719            "name": "resourceVersion",
80720            "type": "string",
80721            "uniqueItems": true
80722          },
80723          {
80724            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80725            "in": "query",
80726            "name": "resourceVersionMatch",
80727            "type": "string",
80728            "uniqueItems": true
80729          },
80730          {
80731            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80732            "in": "query",
80733            "name": "timeoutSeconds",
80734            "type": "integer",
80735            "uniqueItems": true
80736          }
80737        ],
80738        "produces": [
80739          "application/json",
80740          "application/yaml",
80741          "application/vnd.kubernetes.protobuf"
80742        ],
80743        "responses": {
80744          "200": {
80745            "description": "OK",
80746            "schema": {
80747              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80748            }
80749          },
80750          "401": {
80751            "description": "Unauthorized"
80752          }
80753        },
80754        "schemes": [
80755          "https"
80756        ],
80757        "tags": [
80758          "networking_v1beta1"
80759        ],
80760        "x-kubernetes-action": "deletecollection",
80761        "x-kubernetes-group-version-kind": {
80762          "group": "networking.k8s.io",
80763          "kind": "Ingress",
80764          "version": "v1beta1"
80765        }
80766      },
80767      "get": {
80768        "consumes": [
80769          "*/*"
80770        ],
80771        "description": "list or watch objects of kind Ingress",
80772        "operationId": "listNetworkingV1beta1NamespacedIngress",
80773        "parameters": [
80774          {
80775            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
80776            "in": "query",
80777            "name": "allowWatchBookmarks",
80778            "type": "boolean",
80779            "uniqueItems": true
80780          },
80781          {
80782            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80783            "in": "query",
80784            "name": "continue",
80785            "type": "string",
80786            "uniqueItems": true
80787          },
80788          {
80789            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80790            "in": "query",
80791            "name": "fieldSelector",
80792            "type": "string",
80793            "uniqueItems": true
80794          },
80795          {
80796            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80797            "in": "query",
80798            "name": "labelSelector",
80799            "type": "string",
80800            "uniqueItems": true
80801          },
80802          {
80803            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80804            "in": "query",
80805            "name": "limit",
80806            "type": "integer",
80807            "uniqueItems": true
80808          },
80809          {
80810            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80811            "in": "query",
80812            "name": "resourceVersion",
80813            "type": "string",
80814            "uniqueItems": true
80815          },
80816          {
80817            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80818            "in": "query",
80819            "name": "resourceVersionMatch",
80820            "type": "string",
80821            "uniqueItems": true
80822          },
80823          {
80824            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80825            "in": "query",
80826            "name": "timeoutSeconds",
80827            "type": "integer",
80828            "uniqueItems": true
80829          },
80830          {
80831            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80832            "in": "query",
80833            "name": "watch",
80834            "type": "boolean",
80835            "uniqueItems": true
80836          }
80837        ],
80838        "produces": [
80839          "application/json",
80840          "application/yaml",
80841          "application/vnd.kubernetes.protobuf",
80842          "application/json;stream=watch",
80843          "application/vnd.kubernetes.protobuf;stream=watch"
80844        ],
80845        "responses": {
80846          "200": {
80847            "description": "OK",
80848            "schema": {
80849              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
80850            }
80851          },
80852          "401": {
80853            "description": "Unauthorized"
80854          }
80855        },
80856        "schemes": [
80857          "https"
80858        ],
80859        "tags": [
80860          "networking_v1beta1"
80861        ],
80862        "x-kubernetes-action": "list",
80863        "x-kubernetes-group-version-kind": {
80864          "group": "networking.k8s.io",
80865          "kind": "Ingress",
80866          "version": "v1beta1"
80867        }
80868      },
80869      "parameters": [
80870        {
80871          "description": "object name and auth scope, such as for teams and projects",
80872          "in": "path",
80873          "name": "namespace",
80874          "required": true,
80875          "type": "string",
80876          "uniqueItems": true
80877        },
80878        {
80879          "description": "If 'true', then the output is pretty printed.",
80880          "in": "query",
80881          "name": "pretty",
80882          "type": "string",
80883          "uniqueItems": true
80884        }
80885      ],
80886      "post": {
80887        "consumes": [
80888          "*/*"
80889        ],
80890        "description": "create an Ingress",
80891        "operationId": "createNetworkingV1beta1NamespacedIngress",
80892        "parameters": [
80893          {
80894            "in": "body",
80895            "name": "body",
80896            "required": true,
80897            "schema": {
80898              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80899            }
80900          },
80901          {
80902            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80903            "in": "query",
80904            "name": "dryRun",
80905            "type": "string",
80906            "uniqueItems": true
80907          },
80908          {
80909            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80910            "in": "query",
80911            "name": "fieldManager",
80912            "type": "string",
80913            "uniqueItems": true
80914          }
80915        ],
80916        "produces": [
80917          "application/json",
80918          "application/yaml",
80919          "application/vnd.kubernetes.protobuf"
80920        ],
80921        "responses": {
80922          "200": {
80923            "description": "OK",
80924            "schema": {
80925              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80926            }
80927          },
80928          "201": {
80929            "description": "Created",
80930            "schema": {
80931              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80932            }
80933          },
80934          "202": {
80935            "description": "Accepted",
80936            "schema": {
80937              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
80938            }
80939          },
80940          "401": {
80941            "description": "Unauthorized"
80942          }
80943        },
80944        "schemes": [
80945          "https"
80946        ],
80947        "tags": [
80948          "networking_v1beta1"
80949        ],
80950        "x-kubernetes-action": "post",
80951        "x-kubernetes-group-version-kind": {
80952          "group": "networking.k8s.io",
80953          "kind": "Ingress",
80954          "version": "v1beta1"
80955        }
80956      }
80957    },
80958    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}": {
80959      "delete": {
80960        "consumes": [
80961          "*/*"
80962        ],
80963        "description": "delete an Ingress",
80964        "operationId": "deleteNetworkingV1beta1NamespacedIngress",
80965        "parameters": [
80966          {
80967            "in": "body",
80968            "name": "body",
80969            "schema": {
80970              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80971            }
80972          },
80973          {
80974            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80975            "in": "query",
80976            "name": "dryRun",
80977            "type": "string",
80978            "uniqueItems": true
80979          },
80980          {
80981            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80982            "in": "query",
80983            "name": "gracePeriodSeconds",
80984            "type": "integer",
80985            "uniqueItems": true
80986          },
80987          {
80988            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80989            "in": "query",
80990            "name": "orphanDependents",
80991            "type": "boolean",
80992            "uniqueItems": true
80993          },
80994          {
80995            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80996            "in": "query",
80997            "name": "propagationPolicy",
80998            "type": "string",
80999            "uniqueItems": true
81000          }
81001        ],
81002        "produces": [
81003          "application/json",
81004          "application/yaml",
81005          "application/vnd.kubernetes.protobuf"
81006        ],
81007        "responses": {
81008          "200": {
81009            "description": "OK",
81010            "schema": {
81011              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81012            }
81013          },
81014          "202": {
81015            "description": "Accepted",
81016            "schema": {
81017              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81018            }
81019          },
81020          "401": {
81021            "description": "Unauthorized"
81022          }
81023        },
81024        "schemes": [
81025          "https"
81026        ],
81027        "tags": [
81028          "networking_v1beta1"
81029        ],
81030        "x-kubernetes-action": "delete",
81031        "x-kubernetes-group-version-kind": {
81032          "group": "networking.k8s.io",
81033          "kind": "Ingress",
81034          "version": "v1beta1"
81035        }
81036      },
81037      "get": {
81038        "consumes": [
81039          "*/*"
81040        ],
81041        "description": "read the specified Ingress",
81042        "operationId": "readNetworkingV1beta1NamespacedIngress",
81043        "produces": [
81044          "application/json",
81045          "application/yaml",
81046          "application/vnd.kubernetes.protobuf"
81047        ],
81048        "responses": {
81049          "200": {
81050            "description": "OK",
81051            "schema": {
81052              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81053            }
81054          },
81055          "401": {
81056            "description": "Unauthorized"
81057          }
81058        },
81059        "schemes": [
81060          "https"
81061        ],
81062        "tags": [
81063          "networking_v1beta1"
81064        ],
81065        "x-kubernetes-action": "get",
81066        "x-kubernetes-group-version-kind": {
81067          "group": "networking.k8s.io",
81068          "kind": "Ingress",
81069          "version": "v1beta1"
81070        }
81071      },
81072      "parameters": [
81073        {
81074          "description": "name of the Ingress",
81075          "in": "path",
81076          "name": "name",
81077          "required": true,
81078          "type": "string",
81079          "uniqueItems": true
81080        },
81081        {
81082          "description": "object name and auth scope, such as for teams and projects",
81083          "in": "path",
81084          "name": "namespace",
81085          "required": true,
81086          "type": "string",
81087          "uniqueItems": true
81088        },
81089        {
81090          "description": "If 'true', then the output is pretty printed.",
81091          "in": "query",
81092          "name": "pretty",
81093          "type": "string",
81094          "uniqueItems": true
81095        }
81096      ],
81097      "patch": {
81098        "consumes": [
81099          "application/json-patch+json",
81100          "application/merge-patch+json",
81101          "application/strategic-merge-patch+json",
81102          "application/apply-patch+yaml"
81103        ],
81104        "description": "partially update the specified Ingress",
81105        "operationId": "patchNetworkingV1beta1NamespacedIngress",
81106        "parameters": [
81107          {
81108            "in": "body",
81109            "name": "body",
81110            "required": true,
81111            "schema": {
81112              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
81113            }
81114          },
81115          {
81116            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81117            "in": "query",
81118            "name": "dryRun",
81119            "type": "string",
81120            "uniqueItems": true
81121          },
81122          {
81123            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
81124            "in": "query",
81125            "name": "fieldManager",
81126            "type": "string",
81127            "uniqueItems": true
81128          },
81129          {
81130            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
81131            "in": "query",
81132            "name": "force",
81133            "type": "boolean",
81134            "uniqueItems": true
81135          }
81136        ],
81137        "produces": [
81138          "application/json",
81139          "application/yaml",
81140          "application/vnd.kubernetes.protobuf"
81141        ],
81142        "responses": {
81143          "200": {
81144            "description": "OK",
81145            "schema": {
81146              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81147            }
81148          },
81149          "401": {
81150            "description": "Unauthorized"
81151          }
81152        },
81153        "schemes": [
81154          "https"
81155        ],
81156        "tags": [
81157          "networking_v1beta1"
81158        ],
81159        "x-kubernetes-action": "patch",
81160        "x-kubernetes-group-version-kind": {
81161          "group": "networking.k8s.io",
81162          "kind": "Ingress",
81163          "version": "v1beta1"
81164        }
81165      },
81166      "put": {
81167        "consumes": [
81168          "*/*"
81169        ],
81170        "description": "replace the specified Ingress",
81171        "operationId": "replaceNetworkingV1beta1NamespacedIngress",
81172        "parameters": [
81173          {
81174            "in": "body",
81175            "name": "body",
81176            "required": true,
81177            "schema": {
81178              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81179            }
81180          },
81181          {
81182            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81183            "in": "query",
81184            "name": "dryRun",
81185            "type": "string",
81186            "uniqueItems": true
81187          },
81188          {
81189            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81190            "in": "query",
81191            "name": "fieldManager",
81192            "type": "string",
81193            "uniqueItems": true
81194          }
81195        ],
81196        "produces": [
81197          "application/json",
81198          "application/yaml",
81199          "application/vnd.kubernetes.protobuf"
81200        ],
81201        "responses": {
81202          "200": {
81203            "description": "OK",
81204            "schema": {
81205              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81206            }
81207          },
81208          "201": {
81209            "description": "Created",
81210            "schema": {
81211              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81212            }
81213          },
81214          "401": {
81215            "description": "Unauthorized"
81216          }
81217        },
81218        "schemes": [
81219          "https"
81220        ],
81221        "tags": [
81222          "networking_v1beta1"
81223        ],
81224        "x-kubernetes-action": "put",
81225        "x-kubernetes-group-version-kind": {
81226          "group": "networking.k8s.io",
81227          "kind": "Ingress",
81228          "version": "v1beta1"
81229        }
81230      }
81231    },
81232    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
81233      "get": {
81234        "consumes": [
81235          "*/*"
81236        ],
81237        "description": "read status of the specified Ingress",
81238        "operationId": "readNetworkingV1beta1NamespacedIngressStatus",
81239        "produces": [
81240          "application/json",
81241          "application/yaml",
81242          "application/vnd.kubernetes.protobuf"
81243        ],
81244        "responses": {
81245          "200": {
81246            "description": "OK",
81247            "schema": {
81248              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81249            }
81250          },
81251          "401": {
81252            "description": "Unauthorized"
81253          }
81254        },
81255        "schemes": [
81256          "https"
81257        ],
81258        "tags": [
81259          "networking_v1beta1"
81260        ],
81261        "x-kubernetes-action": "get",
81262        "x-kubernetes-group-version-kind": {
81263          "group": "networking.k8s.io",
81264          "kind": "Ingress",
81265          "version": "v1beta1"
81266        }
81267      },
81268      "parameters": [
81269        {
81270          "description": "name of the Ingress",
81271          "in": "path",
81272          "name": "name",
81273          "required": true,
81274          "type": "string",
81275          "uniqueItems": true
81276        },
81277        {
81278          "description": "object name and auth scope, such as for teams and projects",
81279          "in": "path",
81280          "name": "namespace",
81281          "required": true,
81282          "type": "string",
81283          "uniqueItems": true
81284        },
81285        {
81286          "description": "If 'true', then the output is pretty printed.",
81287          "in": "query",
81288          "name": "pretty",
81289          "type": "string",
81290          "uniqueItems": true
81291        }
81292      ],
81293      "patch": {
81294        "consumes": [
81295          "application/json-patch+json",
81296          "application/merge-patch+json",
81297          "application/strategic-merge-patch+json",
81298          "application/apply-patch+yaml"
81299        ],
81300        "description": "partially update status of the specified Ingress",
81301        "operationId": "patchNetworkingV1beta1NamespacedIngressStatus",
81302        "parameters": [
81303          {
81304            "in": "body",
81305            "name": "body",
81306            "required": true,
81307            "schema": {
81308              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
81309            }
81310          },
81311          {
81312            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81313            "in": "query",
81314            "name": "dryRun",
81315            "type": "string",
81316            "uniqueItems": true
81317          },
81318          {
81319            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
81320            "in": "query",
81321            "name": "fieldManager",
81322            "type": "string",
81323            "uniqueItems": true
81324          },
81325          {
81326            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
81327            "in": "query",
81328            "name": "force",
81329            "type": "boolean",
81330            "uniqueItems": true
81331          }
81332        ],
81333        "produces": [
81334          "application/json",
81335          "application/yaml",
81336          "application/vnd.kubernetes.protobuf"
81337        ],
81338        "responses": {
81339          "200": {
81340            "description": "OK",
81341            "schema": {
81342              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81343            }
81344          },
81345          "401": {
81346            "description": "Unauthorized"
81347          }
81348        },
81349        "schemes": [
81350          "https"
81351        ],
81352        "tags": [
81353          "networking_v1beta1"
81354        ],
81355        "x-kubernetes-action": "patch",
81356        "x-kubernetes-group-version-kind": {
81357          "group": "networking.k8s.io",
81358          "kind": "Ingress",
81359          "version": "v1beta1"
81360        }
81361      },
81362      "put": {
81363        "consumes": [
81364          "*/*"
81365        ],
81366        "description": "replace status of the specified Ingress",
81367        "operationId": "replaceNetworkingV1beta1NamespacedIngressStatus",
81368        "parameters": [
81369          {
81370            "in": "body",
81371            "name": "body",
81372            "required": true,
81373            "schema": {
81374              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81375            }
81376          },
81377          {
81378            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81379            "in": "query",
81380            "name": "dryRun",
81381            "type": "string",
81382            "uniqueItems": true
81383          },
81384          {
81385            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81386            "in": "query",
81387            "name": "fieldManager",
81388            "type": "string",
81389            "uniqueItems": true
81390          }
81391        ],
81392        "produces": [
81393          "application/json",
81394          "application/yaml",
81395          "application/vnd.kubernetes.protobuf"
81396        ],
81397        "responses": {
81398          "200": {
81399            "description": "OK",
81400            "schema": {
81401              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81402            }
81403          },
81404          "201": {
81405            "description": "Created",
81406            "schema": {
81407              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
81408            }
81409          },
81410          "401": {
81411            "description": "Unauthorized"
81412          }
81413        },
81414        "schemes": [
81415          "https"
81416        ],
81417        "tags": [
81418          "networking_v1beta1"
81419        ],
81420        "x-kubernetes-action": "put",
81421        "x-kubernetes-group-version-kind": {
81422          "group": "networking.k8s.io",
81423          "kind": "Ingress",
81424          "version": "v1beta1"
81425        }
81426      }
81427    },
81428    "/apis/networking.k8s.io/v1beta1/watch/ingressclasses": {
81429      "get": {
81430        "consumes": [
81431          "*/*"
81432        ],
81433        "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
81434        "operationId": "watchNetworkingV1beta1IngressClassList",
81435        "produces": [
81436          "application/json",
81437          "application/yaml",
81438          "application/vnd.kubernetes.protobuf",
81439          "application/json;stream=watch",
81440          "application/vnd.kubernetes.protobuf;stream=watch"
81441        ],
81442        "responses": {
81443          "200": {
81444            "description": "OK",
81445            "schema": {
81446              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81447            }
81448          },
81449          "401": {
81450            "description": "Unauthorized"
81451          }
81452        },
81453        "schemes": [
81454          "https"
81455        ],
81456        "tags": [
81457          "networking_v1beta1"
81458        ],
81459        "x-kubernetes-action": "watchlist",
81460        "x-kubernetes-group-version-kind": {
81461          "group": "networking.k8s.io",
81462          "kind": "IngressClass",
81463          "version": "v1beta1"
81464        }
81465      },
81466      "parameters": [
81467        {
81468          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81469          "in": "query",
81470          "name": "allowWatchBookmarks",
81471          "type": "boolean",
81472          "uniqueItems": true
81473        },
81474        {
81475          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81476          "in": "query",
81477          "name": "continue",
81478          "type": "string",
81479          "uniqueItems": true
81480        },
81481        {
81482          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81483          "in": "query",
81484          "name": "fieldSelector",
81485          "type": "string",
81486          "uniqueItems": true
81487        },
81488        {
81489          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81490          "in": "query",
81491          "name": "labelSelector",
81492          "type": "string",
81493          "uniqueItems": true
81494        },
81495        {
81496          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81497          "in": "query",
81498          "name": "limit",
81499          "type": "integer",
81500          "uniqueItems": true
81501        },
81502        {
81503          "description": "If 'true', then the output is pretty printed.",
81504          "in": "query",
81505          "name": "pretty",
81506          "type": "string",
81507          "uniqueItems": true
81508        },
81509        {
81510          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81511          "in": "query",
81512          "name": "resourceVersion",
81513          "type": "string",
81514          "uniqueItems": true
81515        },
81516        {
81517          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81518          "in": "query",
81519          "name": "resourceVersionMatch",
81520          "type": "string",
81521          "uniqueItems": true
81522        },
81523        {
81524          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81525          "in": "query",
81526          "name": "timeoutSeconds",
81527          "type": "integer",
81528          "uniqueItems": true
81529        },
81530        {
81531          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81532          "in": "query",
81533          "name": "watch",
81534          "type": "boolean",
81535          "uniqueItems": true
81536        }
81537      ]
81538    },
81539    "/apis/networking.k8s.io/v1beta1/watch/ingressclasses/{name}": {
81540      "get": {
81541        "consumes": [
81542          "*/*"
81543        ],
81544        "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.",
81545        "operationId": "watchNetworkingV1beta1IngressClass",
81546        "produces": [
81547          "application/json",
81548          "application/yaml",
81549          "application/vnd.kubernetes.protobuf",
81550          "application/json;stream=watch",
81551          "application/vnd.kubernetes.protobuf;stream=watch"
81552        ],
81553        "responses": {
81554          "200": {
81555            "description": "OK",
81556            "schema": {
81557              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81558            }
81559          },
81560          "401": {
81561            "description": "Unauthorized"
81562          }
81563        },
81564        "schemes": [
81565          "https"
81566        ],
81567        "tags": [
81568          "networking_v1beta1"
81569        ],
81570        "x-kubernetes-action": "watch",
81571        "x-kubernetes-group-version-kind": {
81572          "group": "networking.k8s.io",
81573          "kind": "IngressClass",
81574          "version": "v1beta1"
81575        }
81576      },
81577      "parameters": [
81578        {
81579          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81580          "in": "query",
81581          "name": "allowWatchBookmarks",
81582          "type": "boolean",
81583          "uniqueItems": true
81584        },
81585        {
81586          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81587          "in": "query",
81588          "name": "continue",
81589          "type": "string",
81590          "uniqueItems": true
81591        },
81592        {
81593          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81594          "in": "query",
81595          "name": "fieldSelector",
81596          "type": "string",
81597          "uniqueItems": true
81598        },
81599        {
81600          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81601          "in": "query",
81602          "name": "labelSelector",
81603          "type": "string",
81604          "uniqueItems": true
81605        },
81606        {
81607          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81608          "in": "query",
81609          "name": "limit",
81610          "type": "integer",
81611          "uniqueItems": true
81612        },
81613        {
81614          "description": "name of the IngressClass",
81615          "in": "path",
81616          "name": "name",
81617          "required": true,
81618          "type": "string",
81619          "uniqueItems": true
81620        },
81621        {
81622          "description": "If 'true', then the output is pretty printed.",
81623          "in": "query",
81624          "name": "pretty",
81625          "type": "string",
81626          "uniqueItems": true
81627        },
81628        {
81629          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81630          "in": "query",
81631          "name": "resourceVersion",
81632          "type": "string",
81633          "uniqueItems": true
81634        },
81635        {
81636          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81637          "in": "query",
81638          "name": "resourceVersionMatch",
81639          "type": "string",
81640          "uniqueItems": true
81641        },
81642        {
81643          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81644          "in": "query",
81645          "name": "timeoutSeconds",
81646          "type": "integer",
81647          "uniqueItems": true
81648        },
81649        {
81650          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81651          "in": "query",
81652          "name": "watch",
81653          "type": "boolean",
81654          "uniqueItems": true
81655        }
81656      ]
81657    },
81658    "/apis/networking.k8s.io/v1beta1/watch/ingresses": {
81659      "get": {
81660        "consumes": [
81661          "*/*"
81662        ],
81663        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
81664        "operationId": "watchNetworkingV1beta1IngressListForAllNamespaces",
81665        "produces": [
81666          "application/json",
81667          "application/yaml",
81668          "application/vnd.kubernetes.protobuf",
81669          "application/json;stream=watch",
81670          "application/vnd.kubernetes.protobuf;stream=watch"
81671        ],
81672        "responses": {
81673          "200": {
81674            "description": "OK",
81675            "schema": {
81676              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81677            }
81678          },
81679          "401": {
81680            "description": "Unauthorized"
81681          }
81682        },
81683        "schemes": [
81684          "https"
81685        ],
81686        "tags": [
81687          "networking_v1beta1"
81688        ],
81689        "x-kubernetes-action": "watchlist",
81690        "x-kubernetes-group-version-kind": {
81691          "group": "networking.k8s.io",
81692          "kind": "Ingress",
81693          "version": "v1beta1"
81694        }
81695      },
81696      "parameters": [
81697        {
81698          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81699          "in": "query",
81700          "name": "allowWatchBookmarks",
81701          "type": "boolean",
81702          "uniqueItems": true
81703        },
81704        {
81705          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81706          "in": "query",
81707          "name": "continue",
81708          "type": "string",
81709          "uniqueItems": true
81710        },
81711        {
81712          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81713          "in": "query",
81714          "name": "fieldSelector",
81715          "type": "string",
81716          "uniqueItems": true
81717        },
81718        {
81719          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81720          "in": "query",
81721          "name": "labelSelector",
81722          "type": "string",
81723          "uniqueItems": true
81724        },
81725        {
81726          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81727          "in": "query",
81728          "name": "limit",
81729          "type": "integer",
81730          "uniqueItems": true
81731        },
81732        {
81733          "description": "If 'true', then the output is pretty printed.",
81734          "in": "query",
81735          "name": "pretty",
81736          "type": "string",
81737          "uniqueItems": true
81738        },
81739        {
81740          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81741          "in": "query",
81742          "name": "resourceVersion",
81743          "type": "string",
81744          "uniqueItems": true
81745        },
81746        {
81747          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81748          "in": "query",
81749          "name": "resourceVersionMatch",
81750          "type": "string",
81751          "uniqueItems": true
81752        },
81753        {
81754          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81755          "in": "query",
81756          "name": "timeoutSeconds",
81757          "type": "integer",
81758          "uniqueItems": true
81759        },
81760        {
81761          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81762          "in": "query",
81763          "name": "watch",
81764          "type": "boolean",
81765          "uniqueItems": true
81766        }
81767      ]
81768    },
81769    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses": {
81770      "get": {
81771        "consumes": [
81772          "*/*"
81773        ],
81774        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
81775        "operationId": "watchNetworkingV1beta1NamespacedIngressList",
81776        "produces": [
81777          "application/json",
81778          "application/yaml",
81779          "application/vnd.kubernetes.protobuf",
81780          "application/json;stream=watch",
81781          "application/vnd.kubernetes.protobuf;stream=watch"
81782        ],
81783        "responses": {
81784          "200": {
81785            "description": "OK",
81786            "schema": {
81787              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81788            }
81789          },
81790          "401": {
81791            "description": "Unauthorized"
81792          }
81793        },
81794        "schemes": [
81795          "https"
81796        ],
81797        "tags": [
81798          "networking_v1beta1"
81799        ],
81800        "x-kubernetes-action": "watchlist",
81801        "x-kubernetes-group-version-kind": {
81802          "group": "networking.k8s.io",
81803          "kind": "Ingress",
81804          "version": "v1beta1"
81805        }
81806      },
81807      "parameters": [
81808        {
81809          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81810          "in": "query",
81811          "name": "allowWatchBookmarks",
81812          "type": "boolean",
81813          "uniqueItems": true
81814        },
81815        {
81816          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81817          "in": "query",
81818          "name": "continue",
81819          "type": "string",
81820          "uniqueItems": true
81821        },
81822        {
81823          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81824          "in": "query",
81825          "name": "fieldSelector",
81826          "type": "string",
81827          "uniqueItems": true
81828        },
81829        {
81830          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81831          "in": "query",
81832          "name": "labelSelector",
81833          "type": "string",
81834          "uniqueItems": true
81835        },
81836        {
81837          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81838          "in": "query",
81839          "name": "limit",
81840          "type": "integer",
81841          "uniqueItems": true
81842        },
81843        {
81844          "description": "object name and auth scope, such as for teams and projects",
81845          "in": "path",
81846          "name": "namespace",
81847          "required": true,
81848          "type": "string",
81849          "uniqueItems": true
81850        },
81851        {
81852          "description": "If 'true', then the output is pretty printed.",
81853          "in": "query",
81854          "name": "pretty",
81855          "type": "string",
81856          "uniqueItems": true
81857        },
81858        {
81859          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81860          "in": "query",
81861          "name": "resourceVersion",
81862          "type": "string",
81863          "uniqueItems": true
81864        },
81865        {
81866          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81867          "in": "query",
81868          "name": "resourceVersionMatch",
81869          "type": "string",
81870          "uniqueItems": true
81871        },
81872        {
81873          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81874          "in": "query",
81875          "name": "timeoutSeconds",
81876          "type": "integer",
81877          "uniqueItems": true
81878        },
81879        {
81880          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81881          "in": "query",
81882          "name": "watch",
81883          "type": "boolean",
81884          "uniqueItems": true
81885        }
81886      ]
81887    },
81888    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
81889      "get": {
81890        "consumes": [
81891          "*/*"
81892        ],
81893        "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.",
81894        "operationId": "watchNetworkingV1beta1NamespacedIngress",
81895        "produces": [
81896          "application/json",
81897          "application/yaml",
81898          "application/vnd.kubernetes.protobuf",
81899          "application/json;stream=watch",
81900          "application/vnd.kubernetes.protobuf;stream=watch"
81901        ],
81902        "responses": {
81903          "200": {
81904            "description": "OK",
81905            "schema": {
81906              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81907            }
81908          },
81909          "401": {
81910            "description": "Unauthorized"
81911          }
81912        },
81913        "schemes": [
81914          "https"
81915        ],
81916        "tags": [
81917          "networking_v1beta1"
81918        ],
81919        "x-kubernetes-action": "watch",
81920        "x-kubernetes-group-version-kind": {
81921          "group": "networking.k8s.io",
81922          "kind": "Ingress",
81923          "version": "v1beta1"
81924        }
81925      },
81926      "parameters": [
81927        {
81928          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
81929          "in": "query",
81930          "name": "allowWatchBookmarks",
81931          "type": "boolean",
81932          "uniqueItems": true
81933        },
81934        {
81935          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81936          "in": "query",
81937          "name": "continue",
81938          "type": "string",
81939          "uniqueItems": true
81940        },
81941        {
81942          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81943          "in": "query",
81944          "name": "fieldSelector",
81945          "type": "string",
81946          "uniqueItems": true
81947        },
81948        {
81949          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81950          "in": "query",
81951          "name": "labelSelector",
81952          "type": "string",
81953          "uniqueItems": true
81954        },
81955        {
81956          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81957          "in": "query",
81958          "name": "limit",
81959          "type": "integer",
81960          "uniqueItems": true
81961        },
81962        {
81963          "description": "name of the Ingress",
81964          "in": "path",
81965          "name": "name",
81966          "required": true,
81967          "type": "string",
81968          "uniqueItems": true
81969        },
81970        {
81971          "description": "object name and auth scope, such as for teams and projects",
81972          "in": "path",
81973          "name": "namespace",
81974          "required": true,
81975          "type": "string",
81976          "uniqueItems": true
81977        },
81978        {
81979          "description": "If 'true', then the output is pretty printed.",
81980          "in": "query",
81981          "name": "pretty",
81982          "type": "string",
81983          "uniqueItems": true
81984        },
81985        {
81986          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81987          "in": "query",
81988          "name": "resourceVersion",
81989          "type": "string",
81990          "uniqueItems": true
81991        },
81992        {
81993          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81994          "in": "query",
81995          "name": "resourceVersionMatch",
81996          "type": "string",
81997          "uniqueItems": true
81998        },
81999        {
82000          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82001          "in": "query",
82002          "name": "timeoutSeconds",
82003          "type": "integer",
82004          "uniqueItems": true
82005        },
82006        {
82007          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82008          "in": "query",
82009          "name": "watch",
82010          "type": "boolean",
82011          "uniqueItems": true
82012        }
82013      ]
82014    },
82015    "/apis/node.k8s.io/": {
82016      "get": {
82017        "consumes": [
82018          "application/json",
82019          "application/yaml",
82020          "application/vnd.kubernetes.protobuf"
82021        ],
82022        "description": "get information of a group",
82023        "operationId": "getNodeAPIGroup",
82024        "produces": [
82025          "application/json",
82026          "application/yaml",
82027          "application/vnd.kubernetes.protobuf"
82028        ],
82029        "responses": {
82030          "200": {
82031            "description": "OK",
82032            "schema": {
82033              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
82034            }
82035          },
82036          "401": {
82037            "description": "Unauthorized"
82038          }
82039        },
82040        "schemes": [
82041          "https"
82042        ],
82043        "tags": [
82044          "node"
82045        ]
82046      }
82047    },
82048    "/apis/node.k8s.io/v1/": {
82049      "get": {
82050        "consumes": [
82051          "application/json",
82052          "application/yaml",
82053          "application/vnd.kubernetes.protobuf"
82054        ],
82055        "description": "get available resources",
82056        "operationId": "getNodeV1APIResources",
82057        "produces": [
82058          "application/json",
82059          "application/yaml",
82060          "application/vnd.kubernetes.protobuf"
82061        ],
82062        "responses": {
82063          "200": {
82064            "description": "OK",
82065            "schema": {
82066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82067            }
82068          },
82069          "401": {
82070            "description": "Unauthorized"
82071          }
82072        },
82073        "schemes": [
82074          "https"
82075        ],
82076        "tags": [
82077          "node_v1"
82078        ]
82079      }
82080    },
82081    "/apis/node.k8s.io/v1/runtimeclasses": {
82082      "delete": {
82083        "consumes": [
82084          "*/*"
82085        ],
82086        "description": "delete collection of RuntimeClass",
82087        "operationId": "deleteNodeV1CollectionRuntimeClass",
82088        "parameters": [
82089          {
82090            "in": "body",
82091            "name": "body",
82092            "schema": {
82093              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82094            }
82095          },
82096          {
82097            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82098            "in": "query",
82099            "name": "continue",
82100            "type": "string",
82101            "uniqueItems": true
82102          },
82103          {
82104            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82105            "in": "query",
82106            "name": "dryRun",
82107            "type": "string",
82108            "uniqueItems": true
82109          },
82110          {
82111            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82112            "in": "query",
82113            "name": "fieldSelector",
82114            "type": "string",
82115            "uniqueItems": true
82116          },
82117          {
82118            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82119            "in": "query",
82120            "name": "gracePeriodSeconds",
82121            "type": "integer",
82122            "uniqueItems": true
82123          },
82124          {
82125            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82126            "in": "query",
82127            "name": "labelSelector",
82128            "type": "string",
82129            "uniqueItems": true
82130          },
82131          {
82132            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82133            "in": "query",
82134            "name": "limit",
82135            "type": "integer",
82136            "uniqueItems": true
82137          },
82138          {
82139            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82140            "in": "query",
82141            "name": "orphanDependents",
82142            "type": "boolean",
82143            "uniqueItems": true
82144          },
82145          {
82146            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82147            "in": "query",
82148            "name": "propagationPolicy",
82149            "type": "string",
82150            "uniqueItems": true
82151          },
82152          {
82153            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82154            "in": "query",
82155            "name": "resourceVersion",
82156            "type": "string",
82157            "uniqueItems": true
82158          },
82159          {
82160            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82161            "in": "query",
82162            "name": "resourceVersionMatch",
82163            "type": "string",
82164            "uniqueItems": true
82165          },
82166          {
82167            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82168            "in": "query",
82169            "name": "timeoutSeconds",
82170            "type": "integer",
82171            "uniqueItems": true
82172          }
82173        ],
82174        "produces": [
82175          "application/json",
82176          "application/yaml",
82177          "application/vnd.kubernetes.protobuf"
82178        ],
82179        "responses": {
82180          "200": {
82181            "description": "OK",
82182            "schema": {
82183              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82184            }
82185          },
82186          "401": {
82187            "description": "Unauthorized"
82188          }
82189        },
82190        "schemes": [
82191          "https"
82192        ],
82193        "tags": [
82194          "node_v1"
82195        ],
82196        "x-kubernetes-action": "deletecollection",
82197        "x-kubernetes-group-version-kind": {
82198          "group": "node.k8s.io",
82199          "kind": "RuntimeClass",
82200          "version": "v1"
82201        }
82202      },
82203      "get": {
82204        "consumes": [
82205          "*/*"
82206        ],
82207        "description": "list or watch objects of kind RuntimeClass",
82208        "operationId": "listNodeV1RuntimeClass",
82209        "parameters": [
82210          {
82211            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82212            "in": "query",
82213            "name": "allowWatchBookmarks",
82214            "type": "boolean",
82215            "uniqueItems": true
82216          },
82217          {
82218            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82219            "in": "query",
82220            "name": "continue",
82221            "type": "string",
82222            "uniqueItems": true
82223          },
82224          {
82225            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82226            "in": "query",
82227            "name": "fieldSelector",
82228            "type": "string",
82229            "uniqueItems": true
82230          },
82231          {
82232            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82233            "in": "query",
82234            "name": "labelSelector",
82235            "type": "string",
82236            "uniqueItems": true
82237          },
82238          {
82239            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82240            "in": "query",
82241            "name": "limit",
82242            "type": "integer",
82243            "uniqueItems": true
82244          },
82245          {
82246            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82247            "in": "query",
82248            "name": "resourceVersion",
82249            "type": "string",
82250            "uniqueItems": true
82251          },
82252          {
82253            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82254            "in": "query",
82255            "name": "resourceVersionMatch",
82256            "type": "string",
82257            "uniqueItems": true
82258          },
82259          {
82260            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82261            "in": "query",
82262            "name": "timeoutSeconds",
82263            "type": "integer",
82264            "uniqueItems": true
82265          },
82266          {
82267            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82268            "in": "query",
82269            "name": "watch",
82270            "type": "boolean",
82271            "uniqueItems": true
82272          }
82273        ],
82274        "produces": [
82275          "application/json",
82276          "application/yaml",
82277          "application/vnd.kubernetes.protobuf",
82278          "application/json;stream=watch",
82279          "application/vnd.kubernetes.protobuf;stream=watch"
82280        ],
82281        "responses": {
82282          "200": {
82283            "description": "OK",
82284            "schema": {
82285              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClassList"
82286            }
82287          },
82288          "401": {
82289            "description": "Unauthorized"
82290          }
82291        },
82292        "schemes": [
82293          "https"
82294        ],
82295        "tags": [
82296          "node_v1"
82297        ],
82298        "x-kubernetes-action": "list",
82299        "x-kubernetes-group-version-kind": {
82300          "group": "node.k8s.io",
82301          "kind": "RuntimeClass",
82302          "version": "v1"
82303        }
82304      },
82305      "parameters": [
82306        {
82307          "description": "If 'true', then the output is pretty printed.",
82308          "in": "query",
82309          "name": "pretty",
82310          "type": "string",
82311          "uniqueItems": true
82312        }
82313      ],
82314      "post": {
82315        "consumes": [
82316          "*/*"
82317        ],
82318        "description": "create a RuntimeClass",
82319        "operationId": "createNodeV1RuntimeClass",
82320        "parameters": [
82321          {
82322            "in": "body",
82323            "name": "body",
82324            "required": true,
82325            "schema": {
82326              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82327            }
82328          },
82329          {
82330            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82331            "in": "query",
82332            "name": "dryRun",
82333            "type": "string",
82334            "uniqueItems": true
82335          },
82336          {
82337            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82338            "in": "query",
82339            "name": "fieldManager",
82340            "type": "string",
82341            "uniqueItems": true
82342          }
82343        ],
82344        "produces": [
82345          "application/json",
82346          "application/yaml",
82347          "application/vnd.kubernetes.protobuf"
82348        ],
82349        "responses": {
82350          "200": {
82351            "description": "OK",
82352            "schema": {
82353              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82354            }
82355          },
82356          "201": {
82357            "description": "Created",
82358            "schema": {
82359              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82360            }
82361          },
82362          "202": {
82363            "description": "Accepted",
82364            "schema": {
82365              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82366            }
82367          },
82368          "401": {
82369            "description": "Unauthorized"
82370          }
82371        },
82372        "schemes": [
82373          "https"
82374        ],
82375        "tags": [
82376          "node_v1"
82377        ],
82378        "x-kubernetes-action": "post",
82379        "x-kubernetes-group-version-kind": {
82380          "group": "node.k8s.io",
82381          "kind": "RuntimeClass",
82382          "version": "v1"
82383        }
82384      }
82385    },
82386    "/apis/node.k8s.io/v1/runtimeclasses/{name}": {
82387      "delete": {
82388        "consumes": [
82389          "*/*"
82390        ],
82391        "description": "delete a RuntimeClass",
82392        "operationId": "deleteNodeV1RuntimeClass",
82393        "parameters": [
82394          {
82395            "in": "body",
82396            "name": "body",
82397            "schema": {
82398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82399            }
82400          },
82401          {
82402            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82403            "in": "query",
82404            "name": "dryRun",
82405            "type": "string",
82406            "uniqueItems": true
82407          },
82408          {
82409            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82410            "in": "query",
82411            "name": "gracePeriodSeconds",
82412            "type": "integer",
82413            "uniqueItems": true
82414          },
82415          {
82416            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82417            "in": "query",
82418            "name": "orphanDependents",
82419            "type": "boolean",
82420            "uniqueItems": true
82421          },
82422          {
82423            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82424            "in": "query",
82425            "name": "propagationPolicy",
82426            "type": "string",
82427            "uniqueItems": true
82428          }
82429        ],
82430        "produces": [
82431          "application/json",
82432          "application/yaml",
82433          "application/vnd.kubernetes.protobuf"
82434        ],
82435        "responses": {
82436          "200": {
82437            "description": "OK",
82438            "schema": {
82439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82440            }
82441          },
82442          "202": {
82443            "description": "Accepted",
82444            "schema": {
82445              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82446            }
82447          },
82448          "401": {
82449            "description": "Unauthorized"
82450          }
82451        },
82452        "schemes": [
82453          "https"
82454        ],
82455        "tags": [
82456          "node_v1"
82457        ],
82458        "x-kubernetes-action": "delete",
82459        "x-kubernetes-group-version-kind": {
82460          "group": "node.k8s.io",
82461          "kind": "RuntimeClass",
82462          "version": "v1"
82463        }
82464      },
82465      "get": {
82466        "consumes": [
82467          "*/*"
82468        ],
82469        "description": "read the specified RuntimeClass",
82470        "operationId": "readNodeV1RuntimeClass",
82471        "produces": [
82472          "application/json",
82473          "application/yaml",
82474          "application/vnd.kubernetes.protobuf"
82475        ],
82476        "responses": {
82477          "200": {
82478            "description": "OK",
82479            "schema": {
82480              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82481            }
82482          },
82483          "401": {
82484            "description": "Unauthorized"
82485          }
82486        },
82487        "schemes": [
82488          "https"
82489        ],
82490        "tags": [
82491          "node_v1"
82492        ],
82493        "x-kubernetes-action": "get",
82494        "x-kubernetes-group-version-kind": {
82495          "group": "node.k8s.io",
82496          "kind": "RuntimeClass",
82497          "version": "v1"
82498        }
82499      },
82500      "parameters": [
82501        {
82502          "description": "name of the RuntimeClass",
82503          "in": "path",
82504          "name": "name",
82505          "required": true,
82506          "type": "string",
82507          "uniqueItems": true
82508        },
82509        {
82510          "description": "If 'true', then the output is pretty printed.",
82511          "in": "query",
82512          "name": "pretty",
82513          "type": "string",
82514          "uniqueItems": true
82515        }
82516      ],
82517      "patch": {
82518        "consumes": [
82519          "application/json-patch+json",
82520          "application/merge-patch+json",
82521          "application/strategic-merge-patch+json",
82522          "application/apply-patch+yaml"
82523        ],
82524        "description": "partially update the specified RuntimeClass",
82525        "operationId": "patchNodeV1RuntimeClass",
82526        "parameters": [
82527          {
82528            "in": "body",
82529            "name": "body",
82530            "required": true,
82531            "schema": {
82532              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
82533            }
82534          },
82535          {
82536            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82537            "in": "query",
82538            "name": "dryRun",
82539            "type": "string",
82540            "uniqueItems": true
82541          },
82542          {
82543            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
82544            "in": "query",
82545            "name": "fieldManager",
82546            "type": "string",
82547            "uniqueItems": true
82548          },
82549          {
82550            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
82551            "in": "query",
82552            "name": "force",
82553            "type": "boolean",
82554            "uniqueItems": true
82555          }
82556        ],
82557        "produces": [
82558          "application/json",
82559          "application/yaml",
82560          "application/vnd.kubernetes.protobuf"
82561        ],
82562        "responses": {
82563          "200": {
82564            "description": "OK",
82565            "schema": {
82566              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82567            }
82568          },
82569          "401": {
82570            "description": "Unauthorized"
82571          }
82572        },
82573        "schemes": [
82574          "https"
82575        ],
82576        "tags": [
82577          "node_v1"
82578        ],
82579        "x-kubernetes-action": "patch",
82580        "x-kubernetes-group-version-kind": {
82581          "group": "node.k8s.io",
82582          "kind": "RuntimeClass",
82583          "version": "v1"
82584        }
82585      },
82586      "put": {
82587        "consumes": [
82588          "*/*"
82589        ],
82590        "description": "replace the specified RuntimeClass",
82591        "operationId": "replaceNodeV1RuntimeClass",
82592        "parameters": [
82593          {
82594            "in": "body",
82595            "name": "body",
82596            "required": true,
82597            "schema": {
82598              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82599            }
82600          },
82601          {
82602            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82603            "in": "query",
82604            "name": "dryRun",
82605            "type": "string",
82606            "uniqueItems": true
82607          },
82608          {
82609            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82610            "in": "query",
82611            "name": "fieldManager",
82612            "type": "string",
82613            "uniqueItems": true
82614          }
82615        ],
82616        "produces": [
82617          "application/json",
82618          "application/yaml",
82619          "application/vnd.kubernetes.protobuf"
82620        ],
82621        "responses": {
82622          "200": {
82623            "description": "OK",
82624            "schema": {
82625              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82626            }
82627          },
82628          "201": {
82629            "description": "Created",
82630            "schema": {
82631              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
82632            }
82633          },
82634          "401": {
82635            "description": "Unauthorized"
82636          }
82637        },
82638        "schemes": [
82639          "https"
82640        ],
82641        "tags": [
82642          "node_v1"
82643        ],
82644        "x-kubernetes-action": "put",
82645        "x-kubernetes-group-version-kind": {
82646          "group": "node.k8s.io",
82647          "kind": "RuntimeClass",
82648          "version": "v1"
82649        }
82650      }
82651    },
82652    "/apis/node.k8s.io/v1/watch/runtimeclasses": {
82653      "get": {
82654        "consumes": [
82655          "*/*"
82656        ],
82657        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
82658        "operationId": "watchNodeV1RuntimeClassList",
82659        "produces": [
82660          "application/json",
82661          "application/yaml",
82662          "application/vnd.kubernetes.protobuf",
82663          "application/json;stream=watch",
82664          "application/vnd.kubernetes.protobuf;stream=watch"
82665        ],
82666        "responses": {
82667          "200": {
82668            "description": "OK",
82669            "schema": {
82670              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82671            }
82672          },
82673          "401": {
82674            "description": "Unauthorized"
82675          }
82676        },
82677        "schemes": [
82678          "https"
82679        ],
82680        "tags": [
82681          "node_v1"
82682        ],
82683        "x-kubernetes-action": "watchlist",
82684        "x-kubernetes-group-version-kind": {
82685          "group": "node.k8s.io",
82686          "kind": "RuntimeClass",
82687          "version": "v1"
82688        }
82689      },
82690      "parameters": [
82691        {
82692          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82693          "in": "query",
82694          "name": "allowWatchBookmarks",
82695          "type": "boolean",
82696          "uniqueItems": true
82697        },
82698        {
82699          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82700          "in": "query",
82701          "name": "continue",
82702          "type": "string",
82703          "uniqueItems": true
82704        },
82705        {
82706          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82707          "in": "query",
82708          "name": "fieldSelector",
82709          "type": "string",
82710          "uniqueItems": true
82711        },
82712        {
82713          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82714          "in": "query",
82715          "name": "labelSelector",
82716          "type": "string",
82717          "uniqueItems": true
82718        },
82719        {
82720          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82721          "in": "query",
82722          "name": "limit",
82723          "type": "integer",
82724          "uniqueItems": true
82725        },
82726        {
82727          "description": "If 'true', then the output is pretty printed.",
82728          "in": "query",
82729          "name": "pretty",
82730          "type": "string",
82731          "uniqueItems": true
82732        },
82733        {
82734          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82735          "in": "query",
82736          "name": "resourceVersion",
82737          "type": "string",
82738          "uniqueItems": true
82739        },
82740        {
82741          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82742          "in": "query",
82743          "name": "resourceVersionMatch",
82744          "type": "string",
82745          "uniqueItems": true
82746        },
82747        {
82748          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82749          "in": "query",
82750          "name": "timeoutSeconds",
82751          "type": "integer",
82752          "uniqueItems": true
82753        },
82754        {
82755          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82756          "in": "query",
82757          "name": "watch",
82758          "type": "boolean",
82759          "uniqueItems": true
82760        }
82761      ]
82762    },
82763    "/apis/node.k8s.io/v1/watch/runtimeclasses/{name}": {
82764      "get": {
82765        "consumes": [
82766          "*/*"
82767        ],
82768        "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.",
82769        "operationId": "watchNodeV1RuntimeClass",
82770        "produces": [
82771          "application/json",
82772          "application/yaml",
82773          "application/vnd.kubernetes.protobuf",
82774          "application/json;stream=watch",
82775          "application/vnd.kubernetes.protobuf;stream=watch"
82776        ],
82777        "responses": {
82778          "200": {
82779            "description": "OK",
82780            "schema": {
82781              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82782            }
82783          },
82784          "401": {
82785            "description": "Unauthorized"
82786          }
82787        },
82788        "schemes": [
82789          "https"
82790        ],
82791        "tags": [
82792          "node_v1"
82793        ],
82794        "x-kubernetes-action": "watch",
82795        "x-kubernetes-group-version-kind": {
82796          "group": "node.k8s.io",
82797          "kind": "RuntimeClass",
82798          "version": "v1"
82799        }
82800      },
82801      "parameters": [
82802        {
82803          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
82804          "in": "query",
82805          "name": "allowWatchBookmarks",
82806          "type": "boolean",
82807          "uniqueItems": true
82808        },
82809        {
82810          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82811          "in": "query",
82812          "name": "continue",
82813          "type": "string",
82814          "uniqueItems": true
82815        },
82816        {
82817          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82818          "in": "query",
82819          "name": "fieldSelector",
82820          "type": "string",
82821          "uniqueItems": true
82822        },
82823        {
82824          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82825          "in": "query",
82826          "name": "labelSelector",
82827          "type": "string",
82828          "uniqueItems": true
82829        },
82830        {
82831          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82832          "in": "query",
82833          "name": "limit",
82834          "type": "integer",
82835          "uniqueItems": true
82836        },
82837        {
82838          "description": "name of the RuntimeClass",
82839          "in": "path",
82840          "name": "name",
82841          "required": true,
82842          "type": "string",
82843          "uniqueItems": true
82844        },
82845        {
82846          "description": "If 'true', then the output is pretty printed.",
82847          "in": "query",
82848          "name": "pretty",
82849          "type": "string",
82850          "uniqueItems": true
82851        },
82852        {
82853          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82854          "in": "query",
82855          "name": "resourceVersion",
82856          "type": "string",
82857          "uniqueItems": true
82858        },
82859        {
82860          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82861          "in": "query",
82862          "name": "resourceVersionMatch",
82863          "type": "string",
82864          "uniqueItems": true
82865        },
82866        {
82867          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82868          "in": "query",
82869          "name": "timeoutSeconds",
82870          "type": "integer",
82871          "uniqueItems": true
82872        },
82873        {
82874          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82875          "in": "query",
82876          "name": "watch",
82877          "type": "boolean",
82878          "uniqueItems": true
82879        }
82880      ]
82881    },
82882    "/apis/node.k8s.io/v1alpha1/": {
82883      "get": {
82884        "consumes": [
82885          "application/json",
82886          "application/yaml",
82887          "application/vnd.kubernetes.protobuf"
82888        ],
82889        "description": "get available resources",
82890        "operationId": "getNodeV1alpha1APIResources",
82891        "produces": [
82892          "application/json",
82893          "application/yaml",
82894          "application/vnd.kubernetes.protobuf"
82895        ],
82896        "responses": {
82897          "200": {
82898            "description": "OK",
82899            "schema": {
82900              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82901            }
82902          },
82903          "401": {
82904            "description": "Unauthorized"
82905          }
82906        },
82907        "schemes": [
82908          "https"
82909        ],
82910        "tags": [
82911          "node_v1alpha1"
82912        ]
82913      }
82914    },
82915    "/apis/node.k8s.io/v1alpha1/runtimeclasses": {
82916      "delete": {
82917        "consumes": [
82918          "*/*"
82919        ],
82920        "description": "delete collection of RuntimeClass",
82921        "operationId": "deleteNodeV1alpha1CollectionRuntimeClass",
82922        "parameters": [
82923          {
82924            "in": "body",
82925            "name": "body",
82926            "schema": {
82927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82928            }
82929          },
82930          {
82931            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82932            "in": "query",
82933            "name": "continue",
82934            "type": "string",
82935            "uniqueItems": true
82936          },
82937          {
82938            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82939            "in": "query",
82940            "name": "dryRun",
82941            "type": "string",
82942            "uniqueItems": true
82943          },
82944          {
82945            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82946            "in": "query",
82947            "name": "fieldSelector",
82948            "type": "string",
82949            "uniqueItems": true
82950          },
82951          {
82952            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82953            "in": "query",
82954            "name": "gracePeriodSeconds",
82955            "type": "integer",
82956            "uniqueItems": true
82957          },
82958          {
82959            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82960            "in": "query",
82961            "name": "labelSelector",
82962            "type": "string",
82963            "uniqueItems": true
82964          },
82965          {
82966            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82967            "in": "query",
82968            "name": "limit",
82969            "type": "integer",
82970            "uniqueItems": true
82971          },
82972          {
82973            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82974            "in": "query",
82975            "name": "orphanDependents",
82976            "type": "boolean",
82977            "uniqueItems": true
82978          },
82979          {
82980            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82981            "in": "query",
82982            "name": "propagationPolicy",
82983            "type": "string",
82984            "uniqueItems": true
82985          },
82986          {
82987            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82988            "in": "query",
82989            "name": "resourceVersion",
82990            "type": "string",
82991            "uniqueItems": true
82992          },
82993          {
82994            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82995            "in": "query",
82996            "name": "resourceVersionMatch",
82997            "type": "string",
82998            "uniqueItems": true
82999          },
83000          {
83001            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83002            "in": "query",
83003            "name": "timeoutSeconds",
83004            "type": "integer",
83005            "uniqueItems": true
83006          }
83007        ],
83008        "produces": [
83009          "application/json",
83010          "application/yaml",
83011          "application/vnd.kubernetes.protobuf"
83012        ],
83013        "responses": {
83014          "200": {
83015            "description": "OK",
83016            "schema": {
83017              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83018            }
83019          },
83020          "401": {
83021            "description": "Unauthorized"
83022          }
83023        },
83024        "schemes": [
83025          "https"
83026        ],
83027        "tags": [
83028          "node_v1alpha1"
83029        ],
83030        "x-kubernetes-action": "deletecollection",
83031        "x-kubernetes-group-version-kind": {
83032          "group": "node.k8s.io",
83033          "kind": "RuntimeClass",
83034          "version": "v1alpha1"
83035        }
83036      },
83037      "get": {
83038        "consumes": [
83039          "*/*"
83040        ],
83041        "description": "list or watch objects of kind RuntimeClass",
83042        "operationId": "listNodeV1alpha1RuntimeClass",
83043        "parameters": [
83044          {
83045            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83046            "in": "query",
83047            "name": "allowWatchBookmarks",
83048            "type": "boolean",
83049            "uniqueItems": true
83050          },
83051          {
83052            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83053            "in": "query",
83054            "name": "continue",
83055            "type": "string",
83056            "uniqueItems": true
83057          },
83058          {
83059            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83060            "in": "query",
83061            "name": "fieldSelector",
83062            "type": "string",
83063            "uniqueItems": true
83064          },
83065          {
83066            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83067            "in": "query",
83068            "name": "labelSelector",
83069            "type": "string",
83070            "uniqueItems": true
83071          },
83072          {
83073            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83074            "in": "query",
83075            "name": "limit",
83076            "type": "integer",
83077            "uniqueItems": true
83078          },
83079          {
83080            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83081            "in": "query",
83082            "name": "resourceVersion",
83083            "type": "string",
83084            "uniqueItems": true
83085          },
83086          {
83087            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83088            "in": "query",
83089            "name": "resourceVersionMatch",
83090            "type": "string",
83091            "uniqueItems": true
83092          },
83093          {
83094            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83095            "in": "query",
83096            "name": "timeoutSeconds",
83097            "type": "integer",
83098            "uniqueItems": true
83099          },
83100          {
83101            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83102            "in": "query",
83103            "name": "watch",
83104            "type": "boolean",
83105            "uniqueItems": true
83106          }
83107        ],
83108        "produces": [
83109          "application/json",
83110          "application/yaml",
83111          "application/vnd.kubernetes.protobuf",
83112          "application/json;stream=watch",
83113          "application/vnd.kubernetes.protobuf;stream=watch"
83114        ],
83115        "responses": {
83116          "200": {
83117            "description": "OK",
83118            "schema": {
83119              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassList"
83120            }
83121          },
83122          "401": {
83123            "description": "Unauthorized"
83124          }
83125        },
83126        "schemes": [
83127          "https"
83128        ],
83129        "tags": [
83130          "node_v1alpha1"
83131        ],
83132        "x-kubernetes-action": "list",
83133        "x-kubernetes-group-version-kind": {
83134          "group": "node.k8s.io",
83135          "kind": "RuntimeClass",
83136          "version": "v1alpha1"
83137        }
83138      },
83139      "parameters": [
83140        {
83141          "description": "If 'true', then the output is pretty printed.",
83142          "in": "query",
83143          "name": "pretty",
83144          "type": "string",
83145          "uniqueItems": true
83146        }
83147      ],
83148      "post": {
83149        "consumes": [
83150          "*/*"
83151        ],
83152        "description": "create a RuntimeClass",
83153        "operationId": "createNodeV1alpha1RuntimeClass",
83154        "parameters": [
83155          {
83156            "in": "body",
83157            "name": "body",
83158            "required": true,
83159            "schema": {
83160              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83161            }
83162          },
83163          {
83164            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83165            "in": "query",
83166            "name": "dryRun",
83167            "type": "string",
83168            "uniqueItems": true
83169          },
83170          {
83171            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83172            "in": "query",
83173            "name": "fieldManager",
83174            "type": "string",
83175            "uniqueItems": true
83176          }
83177        ],
83178        "produces": [
83179          "application/json",
83180          "application/yaml",
83181          "application/vnd.kubernetes.protobuf"
83182        ],
83183        "responses": {
83184          "200": {
83185            "description": "OK",
83186            "schema": {
83187              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83188            }
83189          },
83190          "201": {
83191            "description": "Created",
83192            "schema": {
83193              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83194            }
83195          },
83196          "202": {
83197            "description": "Accepted",
83198            "schema": {
83199              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83200            }
83201          },
83202          "401": {
83203            "description": "Unauthorized"
83204          }
83205        },
83206        "schemes": [
83207          "https"
83208        ],
83209        "tags": [
83210          "node_v1alpha1"
83211        ],
83212        "x-kubernetes-action": "post",
83213        "x-kubernetes-group-version-kind": {
83214          "group": "node.k8s.io",
83215          "kind": "RuntimeClass",
83216          "version": "v1alpha1"
83217        }
83218      }
83219    },
83220    "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}": {
83221      "delete": {
83222        "consumes": [
83223          "*/*"
83224        ],
83225        "description": "delete a RuntimeClass",
83226        "operationId": "deleteNodeV1alpha1RuntimeClass",
83227        "parameters": [
83228          {
83229            "in": "body",
83230            "name": "body",
83231            "schema": {
83232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83233            }
83234          },
83235          {
83236            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83237            "in": "query",
83238            "name": "dryRun",
83239            "type": "string",
83240            "uniqueItems": true
83241          },
83242          {
83243            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83244            "in": "query",
83245            "name": "gracePeriodSeconds",
83246            "type": "integer",
83247            "uniqueItems": true
83248          },
83249          {
83250            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83251            "in": "query",
83252            "name": "orphanDependents",
83253            "type": "boolean",
83254            "uniqueItems": true
83255          },
83256          {
83257            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83258            "in": "query",
83259            "name": "propagationPolicy",
83260            "type": "string",
83261            "uniqueItems": true
83262          }
83263        ],
83264        "produces": [
83265          "application/json",
83266          "application/yaml",
83267          "application/vnd.kubernetes.protobuf"
83268        ],
83269        "responses": {
83270          "200": {
83271            "description": "OK",
83272            "schema": {
83273              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83274            }
83275          },
83276          "202": {
83277            "description": "Accepted",
83278            "schema": {
83279              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83280            }
83281          },
83282          "401": {
83283            "description": "Unauthorized"
83284          }
83285        },
83286        "schemes": [
83287          "https"
83288        ],
83289        "tags": [
83290          "node_v1alpha1"
83291        ],
83292        "x-kubernetes-action": "delete",
83293        "x-kubernetes-group-version-kind": {
83294          "group": "node.k8s.io",
83295          "kind": "RuntimeClass",
83296          "version": "v1alpha1"
83297        }
83298      },
83299      "get": {
83300        "consumes": [
83301          "*/*"
83302        ],
83303        "description": "read the specified RuntimeClass",
83304        "operationId": "readNodeV1alpha1RuntimeClass",
83305        "produces": [
83306          "application/json",
83307          "application/yaml",
83308          "application/vnd.kubernetes.protobuf"
83309        ],
83310        "responses": {
83311          "200": {
83312            "description": "OK",
83313            "schema": {
83314              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83315            }
83316          },
83317          "401": {
83318            "description": "Unauthorized"
83319          }
83320        },
83321        "schemes": [
83322          "https"
83323        ],
83324        "tags": [
83325          "node_v1alpha1"
83326        ],
83327        "x-kubernetes-action": "get",
83328        "x-kubernetes-group-version-kind": {
83329          "group": "node.k8s.io",
83330          "kind": "RuntimeClass",
83331          "version": "v1alpha1"
83332        }
83333      },
83334      "parameters": [
83335        {
83336          "description": "name of the RuntimeClass",
83337          "in": "path",
83338          "name": "name",
83339          "required": true,
83340          "type": "string",
83341          "uniqueItems": true
83342        },
83343        {
83344          "description": "If 'true', then the output is pretty printed.",
83345          "in": "query",
83346          "name": "pretty",
83347          "type": "string",
83348          "uniqueItems": true
83349        }
83350      ],
83351      "patch": {
83352        "consumes": [
83353          "application/json-patch+json",
83354          "application/merge-patch+json",
83355          "application/strategic-merge-patch+json",
83356          "application/apply-patch+yaml"
83357        ],
83358        "description": "partially update the specified RuntimeClass",
83359        "operationId": "patchNodeV1alpha1RuntimeClass",
83360        "parameters": [
83361          {
83362            "in": "body",
83363            "name": "body",
83364            "required": true,
83365            "schema": {
83366              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
83367            }
83368          },
83369          {
83370            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83371            "in": "query",
83372            "name": "dryRun",
83373            "type": "string",
83374            "uniqueItems": true
83375          },
83376          {
83377            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
83378            "in": "query",
83379            "name": "fieldManager",
83380            "type": "string",
83381            "uniqueItems": true
83382          },
83383          {
83384            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
83385            "in": "query",
83386            "name": "force",
83387            "type": "boolean",
83388            "uniqueItems": true
83389          }
83390        ],
83391        "produces": [
83392          "application/json",
83393          "application/yaml",
83394          "application/vnd.kubernetes.protobuf"
83395        ],
83396        "responses": {
83397          "200": {
83398            "description": "OK",
83399            "schema": {
83400              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83401            }
83402          },
83403          "401": {
83404            "description": "Unauthorized"
83405          }
83406        },
83407        "schemes": [
83408          "https"
83409        ],
83410        "tags": [
83411          "node_v1alpha1"
83412        ],
83413        "x-kubernetes-action": "patch",
83414        "x-kubernetes-group-version-kind": {
83415          "group": "node.k8s.io",
83416          "kind": "RuntimeClass",
83417          "version": "v1alpha1"
83418        }
83419      },
83420      "put": {
83421        "consumes": [
83422          "*/*"
83423        ],
83424        "description": "replace the specified RuntimeClass",
83425        "operationId": "replaceNodeV1alpha1RuntimeClass",
83426        "parameters": [
83427          {
83428            "in": "body",
83429            "name": "body",
83430            "required": true,
83431            "schema": {
83432              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83433            }
83434          },
83435          {
83436            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83437            "in": "query",
83438            "name": "dryRun",
83439            "type": "string",
83440            "uniqueItems": true
83441          },
83442          {
83443            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83444            "in": "query",
83445            "name": "fieldManager",
83446            "type": "string",
83447            "uniqueItems": true
83448          }
83449        ],
83450        "produces": [
83451          "application/json",
83452          "application/yaml",
83453          "application/vnd.kubernetes.protobuf"
83454        ],
83455        "responses": {
83456          "200": {
83457            "description": "OK",
83458            "schema": {
83459              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83460            }
83461          },
83462          "201": {
83463            "description": "Created",
83464            "schema": {
83465              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
83466            }
83467          },
83468          "401": {
83469            "description": "Unauthorized"
83470          }
83471        },
83472        "schemes": [
83473          "https"
83474        ],
83475        "tags": [
83476          "node_v1alpha1"
83477        ],
83478        "x-kubernetes-action": "put",
83479        "x-kubernetes-group-version-kind": {
83480          "group": "node.k8s.io",
83481          "kind": "RuntimeClass",
83482          "version": "v1alpha1"
83483        }
83484      }
83485    },
83486    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses": {
83487      "get": {
83488        "consumes": [
83489          "*/*"
83490        ],
83491        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
83492        "operationId": "watchNodeV1alpha1RuntimeClassList",
83493        "produces": [
83494          "application/json",
83495          "application/yaml",
83496          "application/vnd.kubernetes.protobuf",
83497          "application/json;stream=watch",
83498          "application/vnd.kubernetes.protobuf;stream=watch"
83499        ],
83500        "responses": {
83501          "200": {
83502            "description": "OK",
83503            "schema": {
83504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83505            }
83506          },
83507          "401": {
83508            "description": "Unauthorized"
83509          }
83510        },
83511        "schemes": [
83512          "https"
83513        ],
83514        "tags": [
83515          "node_v1alpha1"
83516        ],
83517        "x-kubernetes-action": "watchlist",
83518        "x-kubernetes-group-version-kind": {
83519          "group": "node.k8s.io",
83520          "kind": "RuntimeClass",
83521          "version": "v1alpha1"
83522        }
83523      },
83524      "parameters": [
83525        {
83526          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83527          "in": "query",
83528          "name": "allowWatchBookmarks",
83529          "type": "boolean",
83530          "uniqueItems": true
83531        },
83532        {
83533          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83534          "in": "query",
83535          "name": "continue",
83536          "type": "string",
83537          "uniqueItems": true
83538        },
83539        {
83540          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83541          "in": "query",
83542          "name": "fieldSelector",
83543          "type": "string",
83544          "uniqueItems": true
83545        },
83546        {
83547          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83548          "in": "query",
83549          "name": "labelSelector",
83550          "type": "string",
83551          "uniqueItems": true
83552        },
83553        {
83554          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83555          "in": "query",
83556          "name": "limit",
83557          "type": "integer",
83558          "uniqueItems": true
83559        },
83560        {
83561          "description": "If 'true', then the output is pretty printed.",
83562          "in": "query",
83563          "name": "pretty",
83564          "type": "string",
83565          "uniqueItems": true
83566        },
83567        {
83568          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83569          "in": "query",
83570          "name": "resourceVersion",
83571          "type": "string",
83572          "uniqueItems": true
83573        },
83574        {
83575          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83576          "in": "query",
83577          "name": "resourceVersionMatch",
83578          "type": "string",
83579          "uniqueItems": true
83580        },
83581        {
83582          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83583          "in": "query",
83584          "name": "timeoutSeconds",
83585          "type": "integer",
83586          "uniqueItems": true
83587        },
83588        {
83589          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83590          "in": "query",
83591          "name": "watch",
83592          "type": "boolean",
83593          "uniqueItems": true
83594        }
83595      ]
83596    },
83597    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/{name}": {
83598      "get": {
83599        "consumes": [
83600          "*/*"
83601        ],
83602        "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.",
83603        "operationId": "watchNodeV1alpha1RuntimeClass",
83604        "produces": [
83605          "application/json",
83606          "application/yaml",
83607          "application/vnd.kubernetes.protobuf",
83608          "application/json;stream=watch",
83609          "application/vnd.kubernetes.protobuf;stream=watch"
83610        ],
83611        "responses": {
83612          "200": {
83613            "description": "OK",
83614            "schema": {
83615              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83616            }
83617          },
83618          "401": {
83619            "description": "Unauthorized"
83620          }
83621        },
83622        "schemes": [
83623          "https"
83624        ],
83625        "tags": [
83626          "node_v1alpha1"
83627        ],
83628        "x-kubernetes-action": "watch",
83629        "x-kubernetes-group-version-kind": {
83630          "group": "node.k8s.io",
83631          "kind": "RuntimeClass",
83632          "version": "v1alpha1"
83633        }
83634      },
83635      "parameters": [
83636        {
83637          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83638          "in": "query",
83639          "name": "allowWatchBookmarks",
83640          "type": "boolean",
83641          "uniqueItems": true
83642        },
83643        {
83644          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83645          "in": "query",
83646          "name": "continue",
83647          "type": "string",
83648          "uniqueItems": true
83649        },
83650        {
83651          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83652          "in": "query",
83653          "name": "fieldSelector",
83654          "type": "string",
83655          "uniqueItems": true
83656        },
83657        {
83658          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83659          "in": "query",
83660          "name": "labelSelector",
83661          "type": "string",
83662          "uniqueItems": true
83663        },
83664        {
83665          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83666          "in": "query",
83667          "name": "limit",
83668          "type": "integer",
83669          "uniqueItems": true
83670        },
83671        {
83672          "description": "name of the RuntimeClass",
83673          "in": "path",
83674          "name": "name",
83675          "required": true,
83676          "type": "string",
83677          "uniqueItems": true
83678        },
83679        {
83680          "description": "If 'true', then the output is pretty printed.",
83681          "in": "query",
83682          "name": "pretty",
83683          "type": "string",
83684          "uniqueItems": true
83685        },
83686        {
83687          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83688          "in": "query",
83689          "name": "resourceVersion",
83690          "type": "string",
83691          "uniqueItems": true
83692        },
83693        {
83694          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83695          "in": "query",
83696          "name": "resourceVersionMatch",
83697          "type": "string",
83698          "uniqueItems": true
83699        },
83700        {
83701          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83702          "in": "query",
83703          "name": "timeoutSeconds",
83704          "type": "integer",
83705          "uniqueItems": true
83706        },
83707        {
83708          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83709          "in": "query",
83710          "name": "watch",
83711          "type": "boolean",
83712          "uniqueItems": true
83713        }
83714      ]
83715    },
83716    "/apis/node.k8s.io/v1beta1/": {
83717      "get": {
83718        "consumes": [
83719          "application/json",
83720          "application/yaml",
83721          "application/vnd.kubernetes.protobuf"
83722        ],
83723        "description": "get available resources",
83724        "operationId": "getNodeV1beta1APIResources",
83725        "produces": [
83726          "application/json",
83727          "application/yaml",
83728          "application/vnd.kubernetes.protobuf"
83729        ],
83730        "responses": {
83731          "200": {
83732            "description": "OK",
83733            "schema": {
83734              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
83735            }
83736          },
83737          "401": {
83738            "description": "Unauthorized"
83739          }
83740        },
83741        "schemes": [
83742          "https"
83743        ],
83744        "tags": [
83745          "node_v1beta1"
83746        ]
83747      }
83748    },
83749    "/apis/node.k8s.io/v1beta1/runtimeclasses": {
83750      "delete": {
83751        "consumes": [
83752          "*/*"
83753        ],
83754        "description": "delete collection of RuntimeClass",
83755        "operationId": "deleteNodeV1beta1CollectionRuntimeClass",
83756        "parameters": [
83757          {
83758            "in": "body",
83759            "name": "body",
83760            "schema": {
83761              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83762            }
83763          },
83764          {
83765            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83766            "in": "query",
83767            "name": "continue",
83768            "type": "string",
83769            "uniqueItems": true
83770          },
83771          {
83772            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83773            "in": "query",
83774            "name": "dryRun",
83775            "type": "string",
83776            "uniqueItems": true
83777          },
83778          {
83779            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83780            "in": "query",
83781            "name": "fieldSelector",
83782            "type": "string",
83783            "uniqueItems": true
83784          },
83785          {
83786            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83787            "in": "query",
83788            "name": "gracePeriodSeconds",
83789            "type": "integer",
83790            "uniqueItems": true
83791          },
83792          {
83793            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83794            "in": "query",
83795            "name": "labelSelector",
83796            "type": "string",
83797            "uniqueItems": true
83798          },
83799          {
83800            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83801            "in": "query",
83802            "name": "limit",
83803            "type": "integer",
83804            "uniqueItems": true
83805          },
83806          {
83807            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83808            "in": "query",
83809            "name": "orphanDependents",
83810            "type": "boolean",
83811            "uniqueItems": true
83812          },
83813          {
83814            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83815            "in": "query",
83816            "name": "propagationPolicy",
83817            "type": "string",
83818            "uniqueItems": true
83819          },
83820          {
83821            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83822            "in": "query",
83823            "name": "resourceVersion",
83824            "type": "string",
83825            "uniqueItems": true
83826          },
83827          {
83828            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83829            "in": "query",
83830            "name": "resourceVersionMatch",
83831            "type": "string",
83832            "uniqueItems": true
83833          },
83834          {
83835            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83836            "in": "query",
83837            "name": "timeoutSeconds",
83838            "type": "integer",
83839            "uniqueItems": true
83840          }
83841        ],
83842        "produces": [
83843          "application/json",
83844          "application/yaml",
83845          "application/vnd.kubernetes.protobuf"
83846        ],
83847        "responses": {
83848          "200": {
83849            "description": "OK",
83850            "schema": {
83851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83852            }
83853          },
83854          "401": {
83855            "description": "Unauthorized"
83856          }
83857        },
83858        "schemes": [
83859          "https"
83860        ],
83861        "tags": [
83862          "node_v1beta1"
83863        ],
83864        "x-kubernetes-action": "deletecollection",
83865        "x-kubernetes-group-version-kind": {
83866          "group": "node.k8s.io",
83867          "kind": "RuntimeClass",
83868          "version": "v1beta1"
83869        }
83870      },
83871      "get": {
83872        "consumes": [
83873          "*/*"
83874        ],
83875        "description": "list or watch objects of kind RuntimeClass",
83876        "operationId": "listNodeV1beta1RuntimeClass",
83877        "parameters": [
83878          {
83879            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
83880            "in": "query",
83881            "name": "allowWatchBookmarks",
83882            "type": "boolean",
83883            "uniqueItems": true
83884          },
83885          {
83886            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83887            "in": "query",
83888            "name": "continue",
83889            "type": "string",
83890            "uniqueItems": true
83891          },
83892          {
83893            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83894            "in": "query",
83895            "name": "fieldSelector",
83896            "type": "string",
83897            "uniqueItems": true
83898          },
83899          {
83900            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83901            "in": "query",
83902            "name": "labelSelector",
83903            "type": "string",
83904            "uniqueItems": true
83905          },
83906          {
83907            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83908            "in": "query",
83909            "name": "limit",
83910            "type": "integer",
83911            "uniqueItems": true
83912          },
83913          {
83914            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83915            "in": "query",
83916            "name": "resourceVersion",
83917            "type": "string",
83918            "uniqueItems": true
83919          },
83920          {
83921            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83922            "in": "query",
83923            "name": "resourceVersionMatch",
83924            "type": "string",
83925            "uniqueItems": true
83926          },
83927          {
83928            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83929            "in": "query",
83930            "name": "timeoutSeconds",
83931            "type": "integer",
83932            "uniqueItems": true
83933          },
83934          {
83935            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83936            "in": "query",
83937            "name": "watch",
83938            "type": "boolean",
83939            "uniqueItems": true
83940          }
83941        ],
83942        "produces": [
83943          "application/json",
83944          "application/yaml",
83945          "application/vnd.kubernetes.protobuf",
83946          "application/json;stream=watch",
83947          "application/vnd.kubernetes.protobuf;stream=watch"
83948        ],
83949        "responses": {
83950          "200": {
83951            "description": "OK",
83952            "schema": {
83953              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClassList"
83954            }
83955          },
83956          "401": {
83957            "description": "Unauthorized"
83958          }
83959        },
83960        "schemes": [
83961          "https"
83962        ],
83963        "tags": [
83964          "node_v1beta1"
83965        ],
83966        "x-kubernetes-action": "list",
83967        "x-kubernetes-group-version-kind": {
83968          "group": "node.k8s.io",
83969          "kind": "RuntimeClass",
83970          "version": "v1beta1"
83971        }
83972      },
83973      "parameters": [
83974        {
83975          "description": "If 'true', then the output is pretty printed.",
83976          "in": "query",
83977          "name": "pretty",
83978          "type": "string",
83979          "uniqueItems": true
83980        }
83981      ],
83982      "post": {
83983        "consumes": [
83984          "*/*"
83985        ],
83986        "description": "create a RuntimeClass",
83987        "operationId": "createNodeV1beta1RuntimeClass",
83988        "parameters": [
83989          {
83990            "in": "body",
83991            "name": "body",
83992            "required": true,
83993            "schema": {
83994              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
83995            }
83996          },
83997          {
83998            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83999            "in": "query",
84000            "name": "dryRun",
84001            "type": "string",
84002            "uniqueItems": true
84003          },
84004          {
84005            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84006            "in": "query",
84007            "name": "fieldManager",
84008            "type": "string",
84009            "uniqueItems": true
84010          }
84011        ],
84012        "produces": [
84013          "application/json",
84014          "application/yaml",
84015          "application/vnd.kubernetes.protobuf"
84016        ],
84017        "responses": {
84018          "200": {
84019            "description": "OK",
84020            "schema": {
84021              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84022            }
84023          },
84024          "201": {
84025            "description": "Created",
84026            "schema": {
84027              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84028            }
84029          },
84030          "202": {
84031            "description": "Accepted",
84032            "schema": {
84033              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84034            }
84035          },
84036          "401": {
84037            "description": "Unauthorized"
84038          }
84039        },
84040        "schemes": [
84041          "https"
84042        ],
84043        "tags": [
84044          "node_v1beta1"
84045        ],
84046        "x-kubernetes-action": "post",
84047        "x-kubernetes-group-version-kind": {
84048          "group": "node.k8s.io",
84049          "kind": "RuntimeClass",
84050          "version": "v1beta1"
84051        }
84052      }
84053    },
84054    "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}": {
84055      "delete": {
84056        "consumes": [
84057          "*/*"
84058        ],
84059        "description": "delete a RuntimeClass",
84060        "operationId": "deleteNodeV1beta1RuntimeClass",
84061        "parameters": [
84062          {
84063            "in": "body",
84064            "name": "body",
84065            "schema": {
84066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84067            }
84068          },
84069          {
84070            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84071            "in": "query",
84072            "name": "dryRun",
84073            "type": "string",
84074            "uniqueItems": true
84075          },
84076          {
84077            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84078            "in": "query",
84079            "name": "gracePeriodSeconds",
84080            "type": "integer",
84081            "uniqueItems": true
84082          },
84083          {
84084            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84085            "in": "query",
84086            "name": "orphanDependents",
84087            "type": "boolean",
84088            "uniqueItems": true
84089          },
84090          {
84091            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84092            "in": "query",
84093            "name": "propagationPolicy",
84094            "type": "string",
84095            "uniqueItems": true
84096          }
84097        ],
84098        "produces": [
84099          "application/json",
84100          "application/yaml",
84101          "application/vnd.kubernetes.protobuf"
84102        ],
84103        "responses": {
84104          "200": {
84105            "description": "OK",
84106            "schema": {
84107              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84108            }
84109          },
84110          "202": {
84111            "description": "Accepted",
84112            "schema": {
84113              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84114            }
84115          },
84116          "401": {
84117            "description": "Unauthorized"
84118          }
84119        },
84120        "schemes": [
84121          "https"
84122        ],
84123        "tags": [
84124          "node_v1beta1"
84125        ],
84126        "x-kubernetes-action": "delete",
84127        "x-kubernetes-group-version-kind": {
84128          "group": "node.k8s.io",
84129          "kind": "RuntimeClass",
84130          "version": "v1beta1"
84131        }
84132      },
84133      "get": {
84134        "consumes": [
84135          "*/*"
84136        ],
84137        "description": "read the specified RuntimeClass",
84138        "operationId": "readNodeV1beta1RuntimeClass",
84139        "produces": [
84140          "application/json",
84141          "application/yaml",
84142          "application/vnd.kubernetes.protobuf"
84143        ],
84144        "responses": {
84145          "200": {
84146            "description": "OK",
84147            "schema": {
84148              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84149            }
84150          },
84151          "401": {
84152            "description": "Unauthorized"
84153          }
84154        },
84155        "schemes": [
84156          "https"
84157        ],
84158        "tags": [
84159          "node_v1beta1"
84160        ],
84161        "x-kubernetes-action": "get",
84162        "x-kubernetes-group-version-kind": {
84163          "group": "node.k8s.io",
84164          "kind": "RuntimeClass",
84165          "version": "v1beta1"
84166        }
84167      },
84168      "parameters": [
84169        {
84170          "description": "name of the RuntimeClass",
84171          "in": "path",
84172          "name": "name",
84173          "required": true,
84174          "type": "string",
84175          "uniqueItems": true
84176        },
84177        {
84178          "description": "If 'true', then the output is pretty printed.",
84179          "in": "query",
84180          "name": "pretty",
84181          "type": "string",
84182          "uniqueItems": true
84183        }
84184      ],
84185      "patch": {
84186        "consumes": [
84187          "application/json-patch+json",
84188          "application/merge-patch+json",
84189          "application/strategic-merge-patch+json",
84190          "application/apply-patch+yaml"
84191        ],
84192        "description": "partially update the specified RuntimeClass",
84193        "operationId": "patchNodeV1beta1RuntimeClass",
84194        "parameters": [
84195          {
84196            "in": "body",
84197            "name": "body",
84198            "required": true,
84199            "schema": {
84200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
84201            }
84202          },
84203          {
84204            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84205            "in": "query",
84206            "name": "dryRun",
84207            "type": "string",
84208            "uniqueItems": true
84209          },
84210          {
84211            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
84212            "in": "query",
84213            "name": "fieldManager",
84214            "type": "string",
84215            "uniqueItems": true
84216          },
84217          {
84218            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
84219            "in": "query",
84220            "name": "force",
84221            "type": "boolean",
84222            "uniqueItems": true
84223          }
84224        ],
84225        "produces": [
84226          "application/json",
84227          "application/yaml",
84228          "application/vnd.kubernetes.protobuf"
84229        ],
84230        "responses": {
84231          "200": {
84232            "description": "OK",
84233            "schema": {
84234              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84235            }
84236          },
84237          "401": {
84238            "description": "Unauthorized"
84239          }
84240        },
84241        "schemes": [
84242          "https"
84243        ],
84244        "tags": [
84245          "node_v1beta1"
84246        ],
84247        "x-kubernetes-action": "patch",
84248        "x-kubernetes-group-version-kind": {
84249          "group": "node.k8s.io",
84250          "kind": "RuntimeClass",
84251          "version": "v1beta1"
84252        }
84253      },
84254      "put": {
84255        "consumes": [
84256          "*/*"
84257        ],
84258        "description": "replace the specified RuntimeClass",
84259        "operationId": "replaceNodeV1beta1RuntimeClass",
84260        "parameters": [
84261          {
84262            "in": "body",
84263            "name": "body",
84264            "required": true,
84265            "schema": {
84266              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84267            }
84268          },
84269          {
84270            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84271            "in": "query",
84272            "name": "dryRun",
84273            "type": "string",
84274            "uniqueItems": true
84275          },
84276          {
84277            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84278            "in": "query",
84279            "name": "fieldManager",
84280            "type": "string",
84281            "uniqueItems": true
84282          }
84283        ],
84284        "produces": [
84285          "application/json",
84286          "application/yaml",
84287          "application/vnd.kubernetes.protobuf"
84288        ],
84289        "responses": {
84290          "200": {
84291            "description": "OK",
84292            "schema": {
84293              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84294            }
84295          },
84296          "201": {
84297            "description": "Created",
84298            "schema": {
84299              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
84300            }
84301          },
84302          "401": {
84303            "description": "Unauthorized"
84304          }
84305        },
84306        "schemes": [
84307          "https"
84308        ],
84309        "tags": [
84310          "node_v1beta1"
84311        ],
84312        "x-kubernetes-action": "put",
84313        "x-kubernetes-group-version-kind": {
84314          "group": "node.k8s.io",
84315          "kind": "RuntimeClass",
84316          "version": "v1beta1"
84317        }
84318      }
84319    },
84320    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses": {
84321      "get": {
84322        "consumes": [
84323          "*/*"
84324        ],
84325        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
84326        "operationId": "watchNodeV1beta1RuntimeClassList",
84327        "produces": [
84328          "application/json",
84329          "application/yaml",
84330          "application/vnd.kubernetes.protobuf",
84331          "application/json;stream=watch",
84332          "application/vnd.kubernetes.protobuf;stream=watch"
84333        ],
84334        "responses": {
84335          "200": {
84336            "description": "OK",
84337            "schema": {
84338              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84339            }
84340          },
84341          "401": {
84342            "description": "Unauthorized"
84343          }
84344        },
84345        "schemes": [
84346          "https"
84347        ],
84348        "tags": [
84349          "node_v1beta1"
84350        ],
84351        "x-kubernetes-action": "watchlist",
84352        "x-kubernetes-group-version-kind": {
84353          "group": "node.k8s.io",
84354          "kind": "RuntimeClass",
84355          "version": "v1beta1"
84356        }
84357      },
84358      "parameters": [
84359        {
84360          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84361          "in": "query",
84362          "name": "allowWatchBookmarks",
84363          "type": "boolean",
84364          "uniqueItems": true
84365        },
84366        {
84367          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84368          "in": "query",
84369          "name": "continue",
84370          "type": "string",
84371          "uniqueItems": true
84372        },
84373        {
84374          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84375          "in": "query",
84376          "name": "fieldSelector",
84377          "type": "string",
84378          "uniqueItems": true
84379        },
84380        {
84381          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84382          "in": "query",
84383          "name": "labelSelector",
84384          "type": "string",
84385          "uniqueItems": true
84386        },
84387        {
84388          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84389          "in": "query",
84390          "name": "limit",
84391          "type": "integer",
84392          "uniqueItems": true
84393        },
84394        {
84395          "description": "If 'true', then the output is pretty printed.",
84396          "in": "query",
84397          "name": "pretty",
84398          "type": "string",
84399          "uniqueItems": true
84400        },
84401        {
84402          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84403          "in": "query",
84404          "name": "resourceVersion",
84405          "type": "string",
84406          "uniqueItems": true
84407        },
84408        {
84409          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84410          "in": "query",
84411          "name": "resourceVersionMatch",
84412          "type": "string",
84413          "uniqueItems": true
84414        },
84415        {
84416          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84417          "in": "query",
84418          "name": "timeoutSeconds",
84419          "type": "integer",
84420          "uniqueItems": true
84421        },
84422        {
84423          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84424          "in": "query",
84425          "name": "watch",
84426          "type": "boolean",
84427          "uniqueItems": true
84428        }
84429      ]
84430    },
84431    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses/{name}": {
84432      "get": {
84433        "consumes": [
84434          "*/*"
84435        ],
84436        "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.",
84437        "operationId": "watchNodeV1beta1RuntimeClass",
84438        "produces": [
84439          "application/json",
84440          "application/yaml",
84441          "application/vnd.kubernetes.protobuf",
84442          "application/json;stream=watch",
84443          "application/vnd.kubernetes.protobuf;stream=watch"
84444        ],
84445        "responses": {
84446          "200": {
84447            "description": "OK",
84448            "schema": {
84449              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84450            }
84451          },
84452          "401": {
84453            "description": "Unauthorized"
84454          }
84455        },
84456        "schemes": [
84457          "https"
84458        ],
84459        "tags": [
84460          "node_v1beta1"
84461        ],
84462        "x-kubernetes-action": "watch",
84463        "x-kubernetes-group-version-kind": {
84464          "group": "node.k8s.io",
84465          "kind": "RuntimeClass",
84466          "version": "v1beta1"
84467        }
84468      },
84469      "parameters": [
84470        {
84471          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84472          "in": "query",
84473          "name": "allowWatchBookmarks",
84474          "type": "boolean",
84475          "uniqueItems": true
84476        },
84477        {
84478          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84479          "in": "query",
84480          "name": "continue",
84481          "type": "string",
84482          "uniqueItems": true
84483        },
84484        {
84485          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84486          "in": "query",
84487          "name": "fieldSelector",
84488          "type": "string",
84489          "uniqueItems": true
84490        },
84491        {
84492          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84493          "in": "query",
84494          "name": "labelSelector",
84495          "type": "string",
84496          "uniqueItems": true
84497        },
84498        {
84499          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84500          "in": "query",
84501          "name": "limit",
84502          "type": "integer",
84503          "uniqueItems": true
84504        },
84505        {
84506          "description": "name of the RuntimeClass",
84507          "in": "path",
84508          "name": "name",
84509          "required": true,
84510          "type": "string",
84511          "uniqueItems": true
84512        },
84513        {
84514          "description": "If 'true', then the output is pretty printed.",
84515          "in": "query",
84516          "name": "pretty",
84517          "type": "string",
84518          "uniqueItems": true
84519        },
84520        {
84521          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84522          "in": "query",
84523          "name": "resourceVersion",
84524          "type": "string",
84525          "uniqueItems": true
84526        },
84527        {
84528          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84529          "in": "query",
84530          "name": "resourceVersionMatch",
84531          "type": "string",
84532          "uniqueItems": true
84533        },
84534        {
84535          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84536          "in": "query",
84537          "name": "timeoutSeconds",
84538          "type": "integer",
84539          "uniqueItems": true
84540        },
84541        {
84542          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84543          "in": "query",
84544          "name": "watch",
84545          "type": "boolean",
84546          "uniqueItems": true
84547        }
84548      ]
84549    },
84550    "/apis/policy/": {
84551      "get": {
84552        "consumes": [
84553          "application/json",
84554          "application/yaml",
84555          "application/vnd.kubernetes.protobuf"
84556        ],
84557        "description": "get information of a group",
84558        "operationId": "getPolicyAPIGroup",
84559        "produces": [
84560          "application/json",
84561          "application/yaml",
84562          "application/vnd.kubernetes.protobuf"
84563        ],
84564        "responses": {
84565          "200": {
84566            "description": "OK",
84567            "schema": {
84568              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
84569            }
84570          },
84571          "401": {
84572            "description": "Unauthorized"
84573          }
84574        },
84575        "schemes": [
84576          "https"
84577        ],
84578        "tags": [
84579          "policy"
84580        ]
84581      }
84582    },
84583    "/apis/policy/v1beta1/": {
84584      "get": {
84585        "consumes": [
84586          "application/json",
84587          "application/yaml",
84588          "application/vnd.kubernetes.protobuf"
84589        ],
84590        "description": "get available resources",
84591        "operationId": "getPolicyV1beta1APIResources",
84592        "produces": [
84593          "application/json",
84594          "application/yaml",
84595          "application/vnd.kubernetes.protobuf"
84596        ],
84597        "responses": {
84598          "200": {
84599            "description": "OK",
84600            "schema": {
84601              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
84602            }
84603          },
84604          "401": {
84605            "description": "Unauthorized"
84606          }
84607        },
84608        "schemes": [
84609          "https"
84610        ],
84611        "tags": [
84612          "policy_v1beta1"
84613        ]
84614      }
84615    },
84616    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets": {
84617      "delete": {
84618        "consumes": [
84619          "*/*"
84620        ],
84621        "description": "delete collection of PodDisruptionBudget",
84622        "operationId": "deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget",
84623        "parameters": [
84624          {
84625            "in": "body",
84626            "name": "body",
84627            "schema": {
84628              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84629            }
84630          },
84631          {
84632            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84633            "in": "query",
84634            "name": "continue",
84635            "type": "string",
84636            "uniqueItems": true
84637          },
84638          {
84639            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84640            "in": "query",
84641            "name": "dryRun",
84642            "type": "string",
84643            "uniqueItems": true
84644          },
84645          {
84646            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84647            "in": "query",
84648            "name": "fieldSelector",
84649            "type": "string",
84650            "uniqueItems": true
84651          },
84652          {
84653            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84654            "in": "query",
84655            "name": "gracePeriodSeconds",
84656            "type": "integer",
84657            "uniqueItems": true
84658          },
84659          {
84660            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84661            "in": "query",
84662            "name": "labelSelector",
84663            "type": "string",
84664            "uniqueItems": true
84665          },
84666          {
84667            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84668            "in": "query",
84669            "name": "limit",
84670            "type": "integer",
84671            "uniqueItems": true
84672          },
84673          {
84674            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84675            "in": "query",
84676            "name": "orphanDependents",
84677            "type": "boolean",
84678            "uniqueItems": true
84679          },
84680          {
84681            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84682            "in": "query",
84683            "name": "propagationPolicy",
84684            "type": "string",
84685            "uniqueItems": true
84686          },
84687          {
84688            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84689            "in": "query",
84690            "name": "resourceVersion",
84691            "type": "string",
84692            "uniqueItems": true
84693          },
84694          {
84695            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84696            "in": "query",
84697            "name": "resourceVersionMatch",
84698            "type": "string",
84699            "uniqueItems": true
84700          },
84701          {
84702            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84703            "in": "query",
84704            "name": "timeoutSeconds",
84705            "type": "integer",
84706            "uniqueItems": true
84707          }
84708        ],
84709        "produces": [
84710          "application/json",
84711          "application/yaml",
84712          "application/vnd.kubernetes.protobuf"
84713        ],
84714        "responses": {
84715          "200": {
84716            "description": "OK",
84717            "schema": {
84718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84719            }
84720          },
84721          "401": {
84722            "description": "Unauthorized"
84723          }
84724        },
84725        "schemes": [
84726          "https"
84727        ],
84728        "tags": [
84729          "policy_v1beta1"
84730        ],
84731        "x-kubernetes-action": "deletecollection",
84732        "x-kubernetes-group-version-kind": {
84733          "group": "policy",
84734          "kind": "PodDisruptionBudget",
84735          "version": "v1beta1"
84736        }
84737      },
84738      "get": {
84739        "consumes": [
84740          "*/*"
84741        ],
84742        "description": "list or watch objects of kind PodDisruptionBudget",
84743        "operationId": "listPolicyV1beta1NamespacedPodDisruptionBudget",
84744        "parameters": [
84745          {
84746            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
84747            "in": "query",
84748            "name": "allowWatchBookmarks",
84749            "type": "boolean",
84750            "uniqueItems": true
84751          },
84752          {
84753            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84754            "in": "query",
84755            "name": "continue",
84756            "type": "string",
84757            "uniqueItems": true
84758          },
84759          {
84760            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84761            "in": "query",
84762            "name": "fieldSelector",
84763            "type": "string",
84764            "uniqueItems": true
84765          },
84766          {
84767            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84768            "in": "query",
84769            "name": "labelSelector",
84770            "type": "string",
84771            "uniqueItems": true
84772          },
84773          {
84774            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84775            "in": "query",
84776            "name": "limit",
84777            "type": "integer",
84778            "uniqueItems": true
84779          },
84780          {
84781            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84782            "in": "query",
84783            "name": "resourceVersion",
84784            "type": "string",
84785            "uniqueItems": true
84786          },
84787          {
84788            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84789            "in": "query",
84790            "name": "resourceVersionMatch",
84791            "type": "string",
84792            "uniqueItems": true
84793          },
84794          {
84795            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84796            "in": "query",
84797            "name": "timeoutSeconds",
84798            "type": "integer",
84799            "uniqueItems": true
84800          },
84801          {
84802            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84803            "in": "query",
84804            "name": "watch",
84805            "type": "boolean",
84806            "uniqueItems": true
84807          }
84808        ],
84809        "produces": [
84810          "application/json",
84811          "application/yaml",
84812          "application/vnd.kubernetes.protobuf",
84813          "application/json;stream=watch",
84814          "application/vnd.kubernetes.protobuf;stream=watch"
84815        ],
84816        "responses": {
84817          "200": {
84818            "description": "OK",
84819            "schema": {
84820              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
84821            }
84822          },
84823          "401": {
84824            "description": "Unauthorized"
84825          }
84826        },
84827        "schemes": [
84828          "https"
84829        ],
84830        "tags": [
84831          "policy_v1beta1"
84832        ],
84833        "x-kubernetes-action": "list",
84834        "x-kubernetes-group-version-kind": {
84835          "group": "policy",
84836          "kind": "PodDisruptionBudget",
84837          "version": "v1beta1"
84838        }
84839      },
84840      "parameters": [
84841        {
84842          "description": "object name and auth scope, such as for teams and projects",
84843          "in": "path",
84844          "name": "namespace",
84845          "required": true,
84846          "type": "string",
84847          "uniqueItems": true
84848        },
84849        {
84850          "description": "If 'true', then the output is pretty printed.",
84851          "in": "query",
84852          "name": "pretty",
84853          "type": "string",
84854          "uniqueItems": true
84855        }
84856      ],
84857      "post": {
84858        "consumes": [
84859          "*/*"
84860        ],
84861        "description": "create a PodDisruptionBudget",
84862        "operationId": "createPolicyV1beta1NamespacedPodDisruptionBudget",
84863        "parameters": [
84864          {
84865            "in": "body",
84866            "name": "body",
84867            "required": true,
84868            "schema": {
84869              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84870            }
84871          },
84872          {
84873            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84874            "in": "query",
84875            "name": "dryRun",
84876            "type": "string",
84877            "uniqueItems": true
84878          },
84879          {
84880            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84881            "in": "query",
84882            "name": "fieldManager",
84883            "type": "string",
84884            "uniqueItems": true
84885          }
84886        ],
84887        "produces": [
84888          "application/json",
84889          "application/yaml",
84890          "application/vnd.kubernetes.protobuf"
84891        ],
84892        "responses": {
84893          "200": {
84894            "description": "OK",
84895            "schema": {
84896              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84897            }
84898          },
84899          "201": {
84900            "description": "Created",
84901            "schema": {
84902              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84903            }
84904          },
84905          "202": {
84906            "description": "Accepted",
84907            "schema": {
84908              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
84909            }
84910          },
84911          "401": {
84912            "description": "Unauthorized"
84913          }
84914        },
84915        "schemes": [
84916          "https"
84917        ],
84918        "tags": [
84919          "policy_v1beta1"
84920        ],
84921        "x-kubernetes-action": "post",
84922        "x-kubernetes-group-version-kind": {
84923          "group": "policy",
84924          "kind": "PodDisruptionBudget",
84925          "version": "v1beta1"
84926        }
84927      }
84928    },
84929    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
84930      "delete": {
84931        "consumes": [
84932          "*/*"
84933        ],
84934        "description": "delete a PodDisruptionBudget",
84935        "operationId": "deletePolicyV1beta1NamespacedPodDisruptionBudget",
84936        "parameters": [
84937          {
84938            "in": "body",
84939            "name": "body",
84940            "schema": {
84941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84942            }
84943          },
84944          {
84945            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84946            "in": "query",
84947            "name": "dryRun",
84948            "type": "string",
84949            "uniqueItems": true
84950          },
84951          {
84952            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84953            "in": "query",
84954            "name": "gracePeriodSeconds",
84955            "type": "integer",
84956            "uniqueItems": true
84957          },
84958          {
84959            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84960            "in": "query",
84961            "name": "orphanDependents",
84962            "type": "boolean",
84963            "uniqueItems": true
84964          },
84965          {
84966            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84967            "in": "query",
84968            "name": "propagationPolicy",
84969            "type": "string",
84970            "uniqueItems": true
84971          }
84972        ],
84973        "produces": [
84974          "application/json",
84975          "application/yaml",
84976          "application/vnd.kubernetes.protobuf"
84977        ],
84978        "responses": {
84979          "200": {
84980            "description": "OK",
84981            "schema": {
84982              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84983            }
84984          },
84985          "202": {
84986            "description": "Accepted",
84987            "schema": {
84988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84989            }
84990          },
84991          "401": {
84992            "description": "Unauthorized"
84993          }
84994        },
84995        "schemes": [
84996          "https"
84997        ],
84998        "tags": [
84999          "policy_v1beta1"
85000        ],
85001        "x-kubernetes-action": "delete",
85002        "x-kubernetes-group-version-kind": {
85003          "group": "policy",
85004          "kind": "PodDisruptionBudget",
85005          "version": "v1beta1"
85006        }
85007      },
85008      "get": {
85009        "consumes": [
85010          "*/*"
85011        ],
85012        "description": "read the specified PodDisruptionBudget",
85013        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudget",
85014        "produces": [
85015          "application/json",
85016          "application/yaml",
85017          "application/vnd.kubernetes.protobuf"
85018        ],
85019        "responses": {
85020          "200": {
85021            "description": "OK",
85022            "schema": {
85023              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85024            }
85025          },
85026          "401": {
85027            "description": "Unauthorized"
85028          }
85029        },
85030        "schemes": [
85031          "https"
85032        ],
85033        "tags": [
85034          "policy_v1beta1"
85035        ],
85036        "x-kubernetes-action": "get",
85037        "x-kubernetes-group-version-kind": {
85038          "group": "policy",
85039          "kind": "PodDisruptionBudget",
85040          "version": "v1beta1"
85041        }
85042      },
85043      "parameters": [
85044        {
85045          "description": "name of the PodDisruptionBudget",
85046          "in": "path",
85047          "name": "name",
85048          "required": true,
85049          "type": "string",
85050          "uniqueItems": true
85051        },
85052        {
85053          "description": "object name and auth scope, such as for teams and projects",
85054          "in": "path",
85055          "name": "namespace",
85056          "required": true,
85057          "type": "string",
85058          "uniqueItems": true
85059        },
85060        {
85061          "description": "If 'true', then the output is pretty printed.",
85062          "in": "query",
85063          "name": "pretty",
85064          "type": "string",
85065          "uniqueItems": true
85066        }
85067      ],
85068      "patch": {
85069        "consumes": [
85070          "application/json-patch+json",
85071          "application/merge-patch+json",
85072          "application/strategic-merge-patch+json",
85073          "application/apply-patch+yaml"
85074        ],
85075        "description": "partially update the specified PodDisruptionBudget",
85076        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudget",
85077        "parameters": [
85078          {
85079            "in": "body",
85080            "name": "body",
85081            "required": true,
85082            "schema": {
85083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85084            }
85085          },
85086          {
85087            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85088            "in": "query",
85089            "name": "dryRun",
85090            "type": "string",
85091            "uniqueItems": true
85092          },
85093          {
85094            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
85095            "in": "query",
85096            "name": "fieldManager",
85097            "type": "string",
85098            "uniqueItems": true
85099          },
85100          {
85101            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
85102            "in": "query",
85103            "name": "force",
85104            "type": "boolean",
85105            "uniqueItems": true
85106          }
85107        ],
85108        "produces": [
85109          "application/json",
85110          "application/yaml",
85111          "application/vnd.kubernetes.protobuf"
85112        ],
85113        "responses": {
85114          "200": {
85115            "description": "OK",
85116            "schema": {
85117              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85118            }
85119          },
85120          "401": {
85121            "description": "Unauthorized"
85122          }
85123        },
85124        "schemes": [
85125          "https"
85126        ],
85127        "tags": [
85128          "policy_v1beta1"
85129        ],
85130        "x-kubernetes-action": "patch",
85131        "x-kubernetes-group-version-kind": {
85132          "group": "policy",
85133          "kind": "PodDisruptionBudget",
85134          "version": "v1beta1"
85135        }
85136      },
85137      "put": {
85138        "consumes": [
85139          "*/*"
85140        ],
85141        "description": "replace the specified PodDisruptionBudget",
85142        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudget",
85143        "parameters": [
85144          {
85145            "in": "body",
85146            "name": "body",
85147            "required": true,
85148            "schema": {
85149              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85150            }
85151          },
85152          {
85153            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85154            "in": "query",
85155            "name": "dryRun",
85156            "type": "string",
85157            "uniqueItems": true
85158          },
85159          {
85160            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85161            "in": "query",
85162            "name": "fieldManager",
85163            "type": "string",
85164            "uniqueItems": true
85165          }
85166        ],
85167        "produces": [
85168          "application/json",
85169          "application/yaml",
85170          "application/vnd.kubernetes.protobuf"
85171        ],
85172        "responses": {
85173          "200": {
85174            "description": "OK",
85175            "schema": {
85176              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85177            }
85178          },
85179          "201": {
85180            "description": "Created",
85181            "schema": {
85182              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85183            }
85184          },
85185          "401": {
85186            "description": "Unauthorized"
85187          }
85188        },
85189        "schemes": [
85190          "https"
85191        ],
85192        "tags": [
85193          "policy_v1beta1"
85194        ],
85195        "x-kubernetes-action": "put",
85196        "x-kubernetes-group-version-kind": {
85197          "group": "policy",
85198          "kind": "PodDisruptionBudget",
85199          "version": "v1beta1"
85200        }
85201      }
85202    },
85203    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
85204      "get": {
85205        "consumes": [
85206          "*/*"
85207        ],
85208        "description": "read status of the specified PodDisruptionBudget",
85209        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85210        "produces": [
85211          "application/json",
85212          "application/yaml",
85213          "application/vnd.kubernetes.protobuf"
85214        ],
85215        "responses": {
85216          "200": {
85217            "description": "OK",
85218            "schema": {
85219              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85220            }
85221          },
85222          "401": {
85223            "description": "Unauthorized"
85224          }
85225        },
85226        "schemes": [
85227          "https"
85228        ],
85229        "tags": [
85230          "policy_v1beta1"
85231        ],
85232        "x-kubernetes-action": "get",
85233        "x-kubernetes-group-version-kind": {
85234          "group": "policy",
85235          "kind": "PodDisruptionBudget",
85236          "version": "v1beta1"
85237        }
85238      },
85239      "parameters": [
85240        {
85241          "description": "name of the PodDisruptionBudget",
85242          "in": "path",
85243          "name": "name",
85244          "required": true,
85245          "type": "string",
85246          "uniqueItems": true
85247        },
85248        {
85249          "description": "object name and auth scope, such as for teams and projects",
85250          "in": "path",
85251          "name": "namespace",
85252          "required": true,
85253          "type": "string",
85254          "uniqueItems": true
85255        },
85256        {
85257          "description": "If 'true', then the output is pretty printed.",
85258          "in": "query",
85259          "name": "pretty",
85260          "type": "string",
85261          "uniqueItems": true
85262        }
85263      ],
85264      "patch": {
85265        "consumes": [
85266          "application/json-patch+json",
85267          "application/merge-patch+json",
85268          "application/strategic-merge-patch+json",
85269          "application/apply-patch+yaml"
85270        ],
85271        "description": "partially update status of the specified PodDisruptionBudget",
85272        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85273        "parameters": [
85274          {
85275            "in": "body",
85276            "name": "body",
85277            "required": true,
85278            "schema": {
85279              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85280            }
85281          },
85282          {
85283            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85284            "in": "query",
85285            "name": "dryRun",
85286            "type": "string",
85287            "uniqueItems": true
85288          },
85289          {
85290            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
85291            "in": "query",
85292            "name": "fieldManager",
85293            "type": "string",
85294            "uniqueItems": true
85295          },
85296          {
85297            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
85298            "in": "query",
85299            "name": "force",
85300            "type": "boolean",
85301            "uniqueItems": true
85302          }
85303        ],
85304        "produces": [
85305          "application/json",
85306          "application/yaml",
85307          "application/vnd.kubernetes.protobuf"
85308        ],
85309        "responses": {
85310          "200": {
85311            "description": "OK",
85312            "schema": {
85313              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85314            }
85315          },
85316          "401": {
85317            "description": "Unauthorized"
85318          }
85319        },
85320        "schemes": [
85321          "https"
85322        ],
85323        "tags": [
85324          "policy_v1beta1"
85325        ],
85326        "x-kubernetes-action": "patch",
85327        "x-kubernetes-group-version-kind": {
85328          "group": "policy",
85329          "kind": "PodDisruptionBudget",
85330          "version": "v1beta1"
85331        }
85332      },
85333      "put": {
85334        "consumes": [
85335          "*/*"
85336        ],
85337        "description": "replace status of the specified PodDisruptionBudget",
85338        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus",
85339        "parameters": [
85340          {
85341            "in": "body",
85342            "name": "body",
85343            "required": true,
85344            "schema": {
85345              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85346            }
85347          },
85348          {
85349            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85350            "in": "query",
85351            "name": "dryRun",
85352            "type": "string",
85353            "uniqueItems": true
85354          },
85355          {
85356            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85357            "in": "query",
85358            "name": "fieldManager",
85359            "type": "string",
85360            "uniqueItems": true
85361          }
85362        ],
85363        "produces": [
85364          "application/json",
85365          "application/yaml",
85366          "application/vnd.kubernetes.protobuf"
85367        ],
85368        "responses": {
85369          "200": {
85370            "description": "OK",
85371            "schema": {
85372              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85373            }
85374          },
85375          "201": {
85376            "description": "Created",
85377            "schema": {
85378              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
85379            }
85380          },
85381          "401": {
85382            "description": "Unauthorized"
85383          }
85384        },
85385        "schemes": [
85386          "https"
85387        ],
85388        "tags": [
85389          "policy_v1beta1"
85390        ],
85391        "x-kubernetes-action": "put",
85392        "x-kubernetes-group-version-kind": {
85393          "group": "policy",
85394          "kind": "PodDisruptionBudget",
85395          "version": "v1beta1"
85396        }
85397      }
85398    },
85399    "/apis/policy/v1beta1/poddisruptionbudgets": {
85400      "get": {
85401        "consumes": [
85402          "*/*"
85403        ],
85404        "description": "list or watch objects of kind PodDisruptionBudget",
85405        "operationId": "listPolicyV1beta1PodDisruptionBudgetForAllNamespaces",
85406        "produces": [
85407          "application/json",
85408          "application/yaml",
85409          "application/vnd.kubernetes.protobuf",
85410          "application/json;stream=watch",
85411          "application/vnd.kubernetes.protobuf;stream=watch"
85412        ],
85413        "responses": {
85414          "200": {
85415            "description": "OK",
85416            "schema": {
85417              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
85418            }
85419          },
85420          "401": {
85421            "description": "Unauthorized"
85422          }
85423        },
85424        "schemes": [
85425          "https"
85426        ],
85427        "tags": [
85428          "policy_v1beta1"
85429        ],
85430        "x-kubernetes-action": "list",
85431        "x-kubernetes-group-version-kind": {
85432          "group": "policy",
85433          "kind": "PodDisruptionBudget",
85434          "version": "v1beta1"
85435        }
85436      },
85437      "parameters": [
85438        {
85439          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
85440          "in": "query",
85441          "name": "allowWatchBookmarks",
85442          "type": "boolean",
85443          "uniqueItems": true
85444        },
85445        {
85446          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85447          "in": "query",
85448          "name": "continue",
85449          "type": "string",
85450          "uniqueItems": true
85451        },
85452        {
85453          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85454          "in": "query",
85455          "name": "fieldSelector",
85456          "type": "string",
85457          "uniqueItems": true
85458        },
85459        {
85460          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85461          "in": "query",
85462          "name": "labelSelector",
85463          "type": "string",
85464          "uniqueItems": true
85465        },
85466        {
85467          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85468          "in": "query",
85469          "name": "limit",
85470          "type": "integer",
85471          "uniqueItems": true
85472        },
85473        {
85474          "description": "If 'true', then the output is pretty printed.",
85475          "in": "query",
85476          "name": "pretty",
85477          "type": "string",
85478          "uniqueItems": true
85479        },
85480        {
85481          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85482          "in": "query",
85483          "name": "resourceVersion",
85484          "type": "string",
85485          "uniqueItems": true
85486        },
85487        {
85488          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85489          "in": "query",
85490          "name": "resourceVersionMatch",
85491          "type": "string",
85492          "uniqueItems": true
85493        },
85494        {
85495          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85496          "in": "query",
85497          "name": "timeoutSeconds",
85498          "type": "integer",
85499          "uniqueItems": true
85500        },
85501        {
85502          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85503          "in": "query",
85504          "name": "watch",
85505          "type": "boolean",
85506          "uniqueItems": true
85507        }
85508      ]
85509    },
85510    "/apis/policy/v1beta1/podsecuritypolicies": {
85511      "delete": {
85512        "consumes": [
85513          "*/*"
85514        ],
85515        "description": "delete collection of PodSecurityPolicy",
85516        "operationId": "deletePolicyV1beta1CollectionPodSecurityPolicy",
85517        "parameters": [
85518          {
85519            "in": "body",
85520            "name": "body",
85521            "schema": {
85522              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85523            }
85524          },
85525          {
85526            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85527            "in": "query",
85528            "name": "continue",
85529            "type": "string",
85530            "uniqueItems": true
85531          },
85532          {
85533            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85534            "in": "query",
85535            "name": "dryRun",
85536            "type": "string",
85537            "uniqueItems": true
85538          },
85539          {
85540            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85541            "in": "query",
85542            "name": "fieldSelector",
85543            "type": "string",
85544            "uniqueItems": true
85545          },
85546          {
85547            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85548            "in": "query",
85549            "name": "gracePeriodSeconds",
85550            "type": "integer",
85551            "uniqueItems": true
85552          },
85553          {
85554            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85555            "in": "query",
85556            "name": "labelSelector",
85557            "type": "string",
85558            "uniqueItems": true
85559          },
85560          {
85561            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85562            "in": "query",
85563            "name": "limit",
85564            "type": "integer",
85565            "uniqueItems": true
85566          },
85567          {
85568            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85569            "in": "query",
85570            "name": "orphanDependents",
85571            "type": "boolean",
85572            "uniqueItems": true
85573          },
85574          {
85575            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85576            "in": "query",
85577            "name": "propagationPolicy",
85578            "type": "string",
85579            "uniqueItems": true
85580          },
85581          {
85582            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85583            "in": "query",
85584            "name": "resourceVersion",
85585            "type": "string",
85586            "uniqueItems": true
85587          },
85588          {
85589            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85590            "in": "query",
85591            "name": "resourceVersionMatch",
85592            "type": "string",
85593            "uniqueItems": true
85594          },
85595          {
85596            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85597            "in": "query",
85598            "name": "timeoutSeconds",
85599            "type": "integer",
85600            "uniqueItems": true
85601          }
85602        ],
85603        "produces": [
85604          "application/json",
85605          "application/yaml",
85606          "application/vnd.kubernetes.protobuf"
85607        ],
85608        "responses": {
85609          "200": {
85610            "description": "OK",
85611            "schema": {
85612              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85613            }
85614          },
85615          "401": {
85616            "description": "Unauthorized"
85617          }
85618        },
85619        "schemes": [
85620          "https"
85621        ],
85622        "tags": [
85623          "policy_v1beta1"
85624        ],
85625        "x-kubernetes-action": "deletecollection",
85626        "x-kubernetes-group-version-kind": {
85627          "group": "policy",
85628          "kind": "PodSecurityPolicy",
85629          "version": "v1beta1"
85630        }
85631      },
85632      "get": {
85633        "consumes": [
85634          "*/*"
85635        ],
85636        "description": "list or watch objects of kind PodSecurityPolicy",
85637        "operationId": "listPolicyV1beta1PodSecurityPolicy",
85638        "parameters": [
85639          {
85640            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
85641            "in": "query",
85642            "name": "allowWatchBookmarks",
85643            "type": "boolean",
85644            "uniqueItems": true
85645          },
85646          {
85647            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85648            "in": "query",
85649            "name": "continue",
85650            "type": "string",
85651            "uniqueItems": true
85652          },
85653          {
85654            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85655            "in": "query",
85656            "name": "fieldSelector",
85657            "type": "string",
85658            "uniqueItems": true
85659          },
85660          {
85661            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85662            "in": "query",
85663            "name": "labelSelector",
85664            "type": "string",
85665            "uniqueItems": true
85666          },
85667          {
85668            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85669            "in": "query",
85670            "name": "limit",
85671            "type": "integer",
85672            "uniqueItems": true
85673          },
85674          {
85675            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85676            "in": "query",
85677            "name": "resourceVersion",
85678            "type": "string",
85679            "uniqueItems": true
85680          },
85681          {
85682            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85683            "in": "query",
85684            "name": "resourceVersionMatch",
85685            "type": "string",
85686            "uniqueItems": true
85687          },
85688          {
85689            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85690            "in": "query",
85691            "name": "timeoutSeconds",
85692            "type": "integer",
85693            "uniqueItems": true
85694          },
85695          {
85696            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85697            "in": "query",
85698            "name": "watch",
85699            "type": "boolean",
85700            "uniqueItems": true
85701          }
85702        ],
85703        "produces": [
85704          "application/json",
85705          "application/yaml",
85706          "application/vnd.kubernetes.protobuf",
85707          "application/json;stream=watch",
85708          "application/vnd.kubernetes.protobuf;stream=watch"
85709        ],
85710        "responses": {
85711          "200": {
85712            "description": "OK",
85713            "schema": {
85714              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicyList"
85715            }
85716          },
85717          "401": {
85718            "description": "Unauthorized"
85719          }
85720        },
85721        "schemes": [
85722          "https"
85723        ],
85724        "tags": [
85725          "policy_v1beta1"
85726        ],
85727        "x-kubernetes-action": "list",
85728        "x-kubernetes-group-version-kind": {
85729          "group": "policy",
85730          "kind": "PodSecurityPolicy",
85731          "version": "v1beta1"
85732        }
85733      },
85734      "parameters": [
85735        {
85736          "description": "If 'true', then the output is pretty printed.",
85737          "in": "query",
85738          "name": "pretty",
85739          "type": "string",
85740          "uniqueItems": true
85741        }
85742      ],
85743      "post": {
85744        "consumes": [
85745          "*/*"
85746        ],
85747        "description": "create a PodSecurityPolicy",
85748        "operationId": "createPolicyV1beta1PodSecurityPolicy",
85749        "parameters": [
85750          {
85751            "in": "body",
85752            "name": "body",
85753            "required": true,
85754            "schema": {
85755              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85756            }
85757          },
85758          {
85759            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85760            "in": "query",
85761            "name": "dryRun",
85762            "type": "string",
85763            "uniqueItems": true
85764          },
85765          {
85766            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85767            "in": "query",
85768            "name": "fieldManager",
85769            "type": "string",
85770            "uniqueItems": true
85771          }
85772        ],
85773        "produces": [
85774          "application/json",
85775          "application/yaml",
85776          "application/vnd.kubernetes.protobuf"
85777        ],
85778        "responses": {
85779          "200": {
85780            "description": "OK",
85781            "schema": {
85782              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85783            }
85784          },
85785          "201": {
85786            "description": "Created",
85787            "schema": {
85788              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85789            }
85790          },
85791          "202": {
85792            "description": "Accepted",
85793            "schema": {
85794              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85795            }
85796          },
85797          "401": {
85798            "description": "Unauthorized"
85799          }
85800        },
85801        "schemes": [
85802          "https"
85803        ],
85804        "tags": [
85805          "policy_v1beta1"
85806        ],
85807        "x-kubernetes-action": "post",
85808        "x-kubernetes-group-version-kind": {
85809          "group": "policy",
85810          "kind": "PodSecurityPolicy",
85811          "version": "v1beta1"
85812        }
85813      }
85814    },
85815    "/apis/policy/v1beta1/podsecuritypolicies/{name}": {
85816      "delete": {
85817        "consumes": [
85818          "*/*"
85819        ],
85820        "description": "delete a PodSecurityPolicy",
85821        "operationId": "deletePolicyV1beta1PodSecurityPolicy",
85822        "parameters": [
85823          {
85824            "in": "body",
85825            "name": "body",
85826            "schema": {
85827              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85828            }
85829          },
85830          {
85831            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85832            "in": "query",
85833            "name": "dryRun",
85834            "type": "string",
85835            "uniqueItems": true
85836          },
85837          {
85838            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85839            "in": "query",
85840            "name": "gracePeriodSeconds",
85841            "type": "integer",
85842            "uniqueItems": true
85843          },
85844          {
85845            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85846            "in": "query",
85847            "name": "orphanDependents",
85848            "type": "boolean",
85849            "uniqueItems": true
85850          },
85851          {
85852            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85853            "in": "query",
85854            "name": "propagationPolicy",
85855            "type": "string",
85856            "uniqueItems": true
85857          }
85858        ],
85859        "produces": [
85860          "application/json",
85861          "application/yaml",
85862          "application/vnd.kubernetes.protobuf"
85863        ],
85864        "responses": {
85865          "200": {
85866            "description": "OK",
85867            "schema": {
85868              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85869            }
85870          },
85871          "202": {
85872            "description": "Accepted",
85873            "schema": {
85874              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85875            }
85876          },
85877          "401": {
85878            "description": "Unauthorized"
85879          }
85880        },
85881        "schemes": [
85882          "https"
85883        ],
85884        "tags": [
85885          "policy_v1beta1"
85886        ],
85887        "x-kubernetes-action": "delete",
85888        "x-kubernetes-group-version-kind": {
85889          "group": "policy",
85890          "kind": "PodSecurityPolicy",
85891          "version": "v1beta1"
85892        }
85893      },
85894      "get": {
85895        "consumes": [
85896          "*/*"
85897        ],
85898        "description": "read the specified PodSecurityPolicy",
85899        "operationId": "readPolicyV1beta1PodSecurityPolicy",
85900        "produces": [
85901          "application/json",
85902          "application/yaml",
85903          "application/vnd.kubernetes.protobuf"
85904        ],
85905        "responses": {
85906          "200": {
85907            "description": "OK",
85908            "schema": {
85909              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85910            }
85911          },
85912          "401": {
85913            "description": "Unauthorized"
85914          }
85915        },
85916        "schemes": [
85917          "https"
85918        ],
85919        "tags": [
85920          "policy_v1beta1"
85921        ],
85922        "x-kubernetes-action": "get",
85923        "x-kubernetes-group-version-kind": {
85924          "group": "policy",
85925          "kind": "PodSecurityPolicy",
85926          "version": "v1beta1"
85927        }
85928      },
85929      "parameters": [
85930        {
85931          "description": "name of the PodSecurityPolicy",
85932          "in": "path",
85933          "name": "name",
85934          "required": true,
85935          "type": "string",
85936          "uniqueItems": true
85937        },
85938        {
85939          "description": "If 'true', then the output is pretty printed.",
85940          "in": "query",
85941          "name": "pretty",
85942          "type": "string",
85943          "uniqueItems": true
85944        }
85945      ],
85946      "patch": {
85947        "consumes": [
85948          "application/json-patch+json",
85949          "application/merge-patch+json",
85950          "application/strategic-merge-patch+json",
85951          "application/apply-patch+yaml"
85952        ],
85953        "description": "partially update the specified PodSecurityPolicy",
85954        "operationId": "patchPolicyV1beta1PodSecurityPolicy",
85955        "parameters": [
85956          {
85957            "in": "body",
85958            "name": "body",
85959            "required": true,
85960            "schema": {
85961              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85962            }
85963          },
85964          {
85965            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85966            "in": "query",
85967            "name": "dryRun",
85968            "type": "string",
85969            "uniqueItems": true
85970          },
85971          {
85972            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
85973            "in": "query",
85974            "name": "fieldManager",
85975            "type": "string",
85976            "uniqueItems": true
85977          },
85978          {
85979            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
85980            "in": "query",
85981            "name": "force",
85982            "type": "boolean",
85983            "uniqueItems": true
85984          }
85985        ],
85986        "produces": [
85987          "application/json",
85988          "application/yaml",
85989          "application/vnd.kubernetes.protobuf"
85990        ],
85991        "responses": {
85992          "200": {
85993            "description": "OK",
85994            "schema": {
85995              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
85996            }
85997          },
85998          "401": {
85999            "description": "Unauthorized"
86000          }
86001        },
86002        "schemes": [
86003          "https"
86004        ],
86005        "tags": [
86006          "policy_v1beta1"
86007        ],
86008        "x-kubernetes-action": "patch",
86009        "x-kubernetes-group-version-kind": {
86010          "group": "policy",
86011          "kind": "PodSecurityPolicy",
86012          "version": "v1beta1"
86013        }
86014      },
86015      "put": {
86016        "consumes": [
86017          "*/*"
86018        ],
86019        "description": "replace the specified PodSecurityPolicy",
86020        "operationId": "replacePolicyV1beta1PodSecurityPolicy",
86021        "parameters": [
86022          {
86023            "in": "body",
86024            "name": "body",
86025            "required": true,
86026            "schema": {
86027              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86028            }
86029          },
86030          {
86031            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86032            "in": "query",
86033            "name": "dryRun",
86034            "type": "string",
86035            "uniqueItems": true
86036          },
86037          {
86038            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86039            "in": "query",
86040            "name": "fieldManager",
86041            "type": "string",
86042            "uniqueItems": true
86043          }
86044        ],
86045        "produces": [
86046          "application/json",
86047          "application/yaml",
86048          "application/vnd.kubernetes.protobuf"
86049        ],
86050        "responses": {
86051          "200": {
86052            "description": "OK",
86053            "schema": {
86054              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86055            }
86056          },
86057          "201": {
86058            "description": "Created",
86059            "schema": {
86060              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
86061            }
86062          },
86063          "401": {
86064            "description": "Unauthorized"
86065          }
86066        },
86067        "schemes": [
86068          "https"
86069        ],
86070        "tags": [
86071          "policy_v1beta1"
86072        ],
86073        "x-kubernetes-action": "put",
86074        "x-kubernetes-group-version-kind": {
86075          "group": "policy",
86076          "kind": "PodSecurityPolicy",
86077          "version": "v1beta1"
86078        }
86079      }
86080    },
86081    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets": {
86082      "get": {
86083        "consumes": [
86084          "*/*"
86085        ],
86086        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
86087        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudgetList",
86088        "produces": [
86089          "application/json",
86090          "application/yaml",
86091          "application/vnd.kubernetes.protobuf",
86092          "application/json;stream=watch",
86093          "application/vnd.kubernetes.protobuf;stream=watch"
86094        ],
86095        "responses": {
86096          "200": {
86097            "description": "OK",
86098            "schema": {
86099              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86100            }
86101          },
86102          "401": {
86103            "description": "Unauthorized"
86104          }
86105        },
86106        "schemes": [
86107          "https"
86108        ],
86109        "tags": [
86110          "policy_v1beta1"
86111        ],
86112        "x-kubernetes-action": "watchlist",
86113        "x-kubernetes-group-version-kind": {
86114          "group": "policy",
86115          "kind": "PodDisruptionBudget",
86116          "version": "v1beta1"
86117        }
86118      },
86119      "parameters": [
86120        {
86121          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86122          "in": "query",
86123          "name": "allowWatchBookmarks",
86124          "type": "boolean",
86125          "uniqueItems": true
86126        },
86127        {
86128          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86129          "in": "query",
86130          "name": "continue",
86131          "type": "string",
86132          "uniqueItems": true
86133        },
86134        {
86135          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86136          "in": "query",
86137          "name": "fieldSelector",
86138          "type": "string",
86139          "uniqueItems": true
86140        },
86141        {
86142          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86143          "in": "query",
86144          "name": "labelSelector",
86145          "type": "string",
86146          "uniqueItems": true
86147        },
86148        {
86149          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86150          "in": "query",
86151          "name": "limit",
86152          "type": "integer",
86153          "uniqueItems": true
86154        },
86155        {
86156          "description": "object name and auth scope, such as for teams and projects",
86157          "in": "path",
86158          "name": "namespace",
86159          "required": true,
86160          "type": "string",
86161          "uniqueItems": true
86162        },
86163        {
86164          "description": "If 'true', then the output is pretty printed.",
86165          "in": "query",
86166          "name": "pretty",
86167          "type": "string",
86168          "uniqueItems": true
86169        },
86170        {
86171          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86172          "in": "query",
86173          "name": "resourceVersion",
86174          "type": "string",
86175          "uniqueItems": true
86176        },
86177        {
86178          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86179          "in": "query",
86180          "name": "resourceVersionMatch",
86181          "type": "string",
86182          "uniqueItems": true
86183        },
86184        {
86185          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86186          "in": "query",
86187          "name": "timeoutSeconds",
86188          "type": "integer",
86189          "uniqueItems": true
86190        },
86191        {
86192          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86193          "in": "query",
86194          "name": "watch",
86195          "type": "boolean",
86196          "uniqueItems": true
86197        }
86198      ]
86199    },
86200    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
86201      "get": {
86202        "consumes": [
86203          "*/*"
86204        ],
86205        "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.",
86206        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudget",
86207        "produces": [
86208          "application/json",
86209          "application/yaml",
86210          "application/vnd.kubernetes.protobuf",
86211          "application/json;stream=watch",
86212          "application/vnd.kubernetes.protobuf;stream=watch"
86213        ],
86214        "responses": {
86215          "200": {
86216            "description": "OK",
86217            "schema": {
86218              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86219            }
86220          },
86221          "401": {
86222            "description": "Unauthorized"
86223          }
86224        },
86225        "schemes": [
86226          "https"
86227        ],
86228        "tags": [
86229          "policy_v1beta1"
86230        ],
86231        "x-kubernetes-action": "watch",
86232        "x-kubernetes-group-version-kind": {
86233          "group": "policy",
86234          "kind": "PodDisruptionBudget",
86235          "version": "v1beta1"
86236        }
86237      },
86238      "parameters": [
86239        {
86240          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86241          "in": "query",
86242          "name": "allowWatchBookmarks",
86243          "type": "boolean",
86244          "uniqueItems": true
86245        },
86246        {
86247          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86248          "in": "query",
86249          "name": "continue",
86250          "type": "string",
86251          "uniqueItems": true
86252        },
86253        {
86254          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86255          "in": "query",
86256          "name": "fieldSelector",
86257          "type": "string",
86258          "uniqueItems": true
86259        },
86260        {
86261          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86262          "in": "query",
86263          "name": "labelSelector",
86264          "type": "string",
86265          "uniqueItems": true
86266        },
86267        {
86268          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86269          "in": "query",
86270          "name": "limit",
86271          "type": "integer",
86272          "uniqueItems": true
86273        },
86274        {
86275          "description": "name of the PodDisruptionBudget",
86276          "in": "path",
86277          "name": "name",
86278          "required": true,
86279          "type": "string",
86280          "uniqueItems": true
86281        },
86282        {
86283          "description": "object name and auth scope, such as for teams and projects",
86284          "in": "path",
86285          "name": "namespace",
86286          "required": true,
86287          "type": "string",
86288          "uniqueItems": true
86289        },
86290        {
86291          "description": "If 'true', then the output is pretty printed.",
86292          "in": "query",
86293          "name": "pretty",
86294          "type": "string",
86295          "uniqueItems": true
86296        },
86297        {
86298          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86299          "in": "query",
86300          "name": "resourceVersion",
86301          "type": "string",
86302          "uniqueItems": true
86303        },
86304        {
86305          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86306          "in": "query",
86307          "name": "resourceVersionMatch",
86308          "type": "string",
86309          "uniqueItems": true
86310        },
86311        {
86312          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86313          "in": "query",
86314          "name": "timeoutSeconds",
86315          "type": "integer",
86316          "uniqueItems": true
86317        },
86318        {
86319          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86320          "in": "query",
86321          "name": "watch",
86322          "type": "boolean",
86323          "uniqueItems": true
86324        }
86325      ]
86326    },
86327    "/apis/policy/v1beta1/watch/poddisruptionbudgets": {
86328      "get": {
86329        "consumes": [
86330          "*/*"
86331        ],
86332        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
86333        "operationId": "watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces",
86334        "produces": [
86335          "application/json",
86336          "application/yaml",
86337          "application/vnd.kubernetes.protobuf",
86338          "application/json;stream=watch",
86339          "application/vnd.kubernetes.protobuf;stream=watch"
86340        ],
86341        "responses": {
86342          "200": {
86343            "description": "OK",
86344            "schema": {
86345              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86346            }
86347          },
86348          "401": {
86349            "description": "Unauthorized"
86350          }
86351        },
86352        "schemes": [
86353          "https"
86354        ],
86355        "tags": [
86356          "policy_v1beta1"
86357        ],
86358        "x-kubernetes-action": "watchlist",
86359        "x-kubernetes-group-version-kind": {
86360          "group": "policy",
86361          "kind": "PodDisruptionBudget",
86362          "version": "v1beta1"
86363        }
86364      },
86365      "parameters": [
86366        {
86367          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86368          "in": "query",
86369          "name": "allowWatchBookmarks",
86370          "type": "boolean",
86371          "uniqueItems": true
86372        },
86373        {
86374          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86375          "in": "query",
86376          "name": "continue",
86377          "type": "string",
86378          "uniqueItems": true
86379        },
86380        {
86381          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86382          "in": "query",
86383          "name": "fieldSelector",
86384          "type": "string",
86385          "uniqueItems": true
86386        },
86387        {
86388          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86389          "in": "query",
86390          "name": "labelSelector",
86391          "type": "string",
86392          "uniqueItems": true
86393        },
86394        {
86395          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86396          "in": "query",
86397          "name": "limit",
86398          "type": "integer",
86399          "uniqueItems": true
86400        },
86401        {
86402          "description": "If 'true', then the output is pretty printed.",
86403          "in": "query",
86404          "name": "pretty",
86405          "type": "string",
86406          "uniqueItems": true
86407        },
86408        {
86409          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86410          "in": "query",
86411          "name": "resourceVersion",
86412          "type": "string",
86413          "uniqueItems": true
86414        },
86415        {
86416          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86417          "in": "query",
86418          "name": "resourceVersionMatch",
86419          "type": "string",
86420          "uniqueItems": true
86421        },
86422        {
86423          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86424          "in": "query",
86425          "name": "timeoutSeconds",
86426          "type": "integer",
86427          "uniqueItems": true
86428        },
86429        {
86430          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86431          "in": "query",
86432          "name": "watch",
86433          "type": "boolean",
86434          "uniqueItems": true
86435        }
86436      ]
86437    },
86438    "/apis/policy/v1beta1/watch/podsecuritypolicies": {
86439      "get": {
86440        "consumes": [
86441          "*/*"
86442        ],
86443        "description": "watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
86444        "operationId": "watchPolicyV1beta1PodSecurityPolicyList",
86445        "produces": [
86446          "application/json",
86447          "application/yaml",
86448          "application/vnd.kubernetes.protobuf",
86449          "application/json;stream=watch",
86450          "application/vnd.kubernetes.protobuf;stream=watch"
86451        ],
86452        "responses": {
86453          "200": {
86454            "description": "OK",
86455            "schema": {
86456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86457            }
86458          },
86459          "401": {
86460            "description": "Unauthorized"
86461          }
86462        },
86463        "schemes": [
86464          "https"
86465        ],
86466        "tags": [
86467          "policy_v1beta1"
86468        ],
86469        "x-kubernetes-action": "watchlist",
86470        "x-kubernetes-group-version-kind": {
86471          "group": "policy",
86472          "kind": "PodSecurityPolicy",
86473          "version": "v1beta1"
86474        }
86475      },
86476      "parameters": [
86477        {
86478          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86479          "in": "query",
86480          "name": "allowWatchBookmarks",
86481          "type": "boolean",
86482          "uniqueItems": true
86483        },
86484        {
86485          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86486          "in": "query",
86487          "name": "continue",
86488          "type": "string",
86489          "uniqueItems": true
86490        },
86491        {
86492          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86493          "in": "query",
86494          "name": "fieldSelector",
86495          "type": "string",
86496          "uniqueItems": true
86497        },
86498        {
86499          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86500          "in": "query",
86501          "name": "labelSelector",
86502          "type": "string",
86503          "uniqueItems": true
86504        },
86505        {
86506          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86507          "in": "query",
86508          "name": "limit",
86509          "type": "integer",
86510          "uniqueItems": true
86511        },
86512        {
86513          "description": "If 'true', then the output is pretty printed.",
86514          "in": "query",
86515          "name": "pretty",
86516          "type": "string",
86517          "uniqueItems": true
86518        },
86519        {
86520          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86521          "in": "query",
86522          "name": "resourceVersion",
86523          "type": "string",
86524          "uniqueItems": true
86525        },
86526        {
86527          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86528          "in": "query",
86529          "name": "resourceVersionMatch",
86530          "type": "string",
86531          "uniqueItems": true
86532        },
86533        {
86534          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86535          "in": "query",
86536          "name": "timeoutSeconds",
86537          "type": "integer",
86538          "uniqueItems": true
86539        },
86540        {
86541          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86542          "in": "query",
86543          "name": "watch",
86544          "type": "boolean",
86545          "uniqueItems": true
86546        }
86547      ]
86548    },
86549    "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}": {
86550      "get": {
86551        "consumes": [
86552          "*/*"
86553        ],
86554        "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.",
86555        "operationId": "watchPolicyV1beta1PodSecurityPolicy",
86556        "produces": [
86557          "application/json",
86558          "application/yaml",
86559          "application/vnd.kubernetes.protobuf",
86560          "application/json;stream=watch",
86561          "application/vnd.kubernetes.protobuf;stream=watch"
86562        ],
86563        "responses": {
86564          "200": {
86565            "description": "OK",
86566            "schema": {
86567              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86568            }
86569          },
86570          "401": {
86571            "description": "Unauthorized"
86572          }
86573        },
86574        "schemes": [
86575          "https"
86576        ],
86577        "tags": [
86578          "policy_v1beta1"
86579        ],
86580        "x-kubernetes-action": "watch",
86581        "x-kubernetes-group-version-kind": {
86582          "group": "policy",
86583          "kind": "PodSecurityPolicy",
86584          "version": "v1beta1"
86585        }
86586      },
86587      "parameters": [
86588        {
86589          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86590          "in": "query",
86591          "name": "allowWatchBookmarks",
86592          "type": "boolean",
86593          "uniqueItems": true
86594        },
86595        {
86596          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86597          "in": "query",
86598          "name": "continue",
86599          "type": "string",
86600          "uniqueItems": true
86601        },
86602        {
86603          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86604          "in": "query",
86605          "name": "fieldSelector",
86606          "type": "string",
86607          "uniqueItems": true
86608        },
86609        {
86610          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86611          "in": "query",
86612          "name": "labelSelector",
86613          "type": "string",
86614          "uniqueItems": true
86615        },
86616        {
86617          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86618          "in": "query",
86619          "name": "limit",
86620          "type": "integer",
86621          "uniqueItems": true
86622        },
86623        {
86624          "description": "name of the PodSecurityPolicy",
86625          "in": "path",
86626          "name": "name",
86627          "required": true,
86628          "type": "string",
86629          "uniqueItems": true
86630        },
86631        {
86632          "description": "If 'true', then the output is pretty printed.",
86633          "in": "query",
86634          "name": "pretty",
86635          "type": "string",
86636          "uniqueItems": true
86637        },
86638        {
86639          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86640          "in": "query",
86641          "name": "resourceVersion",
86642          "type": "string",
86643          "uniqueItems": true
86644        },
86645        {
86646          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86647          "in": "query",
86648          "name": "resourceVersionMatch",
86649          "type": "string",
86650          "uniqueItems": true
86651        },
86652        {
86653          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86654          "in": "query",
86655          "name": "timeoutSeconds",
86656          "type": "integer",
86657          "uniqueItems": true
86658        },
86659        {
86660          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86661          "in": "query",
86662          "name": "watch",
86663          "type": "boolean",
86664          "uniqueItems": true
86665        }
86666      ]
86667    },
86668    "/apis/rbac.authorization.k8s.io/": {
86669      "get": {
86670        "consumes": [
86671          "application/json",
86672          "application/yaml",
86673          "application/vnd.kubernetes.protobuf"
86674        ],
86675        "description": "get information of a group",
86676        "operationId": "getRbacAuthorizationAPIGroup",
86677        "produces": [
86678          "application/json",
86679          "application/yaml",
86680          "application/vnd.kubernetes.protobuf"
86681        ],
86682        "responses": {
86683          "200": {
86684            "description": "OK",
86685            "schema": {
86686              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
86687            }
86688          },
86689          "401": {
86690            "description": "Unauthorized"
86691          }
86692        },
86693        "schemes": [
86694          "https"
86695        ],
86696        "tags": [
86697          "rbacAuthorization"
86698        ]
86699      }
86700    },
86701    "/apis/rbac.authorization.k8s.io/v1/": {
86702      "get": {
86703        "consumes": [
86704          "application/json",
86705          "application/yaml",
86706          "application/vnd.kubernetes.protobuf"
86707        ],
86708        "description": "get available resources",
86709        "operationId": "getRbacAuthorizationV1APIResources",
86710        "produces": [
86711          "application/json",
86712          "application/yaml",
86713          "application/vnd.kubernetes.protobuf"
86714        ],
86715        "responses": {
86716          "200": {
86717            "description": "OK",
86718            "schema": {
86719              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
86720            }
86721          },
86722          "401": {
86723            "description": "Unauthorized"
86724          }
86725        },
86726        "schemes": [
86727          "https"
86728        ],
86729        "tags": [
86730          "rbacAuthorization_v1"
86731        ]
86732      }
86733    },
86734    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": {
86735      "delete": {
86736        "consumes": [
86737          "*/*"
86738        ],
86739        "description": "delete collection of ClusterRoleBinding",
86740        "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding",
86741        "parameters": [
86742          {
86743            "in": "body",
86744            "name": "body",
86745            "schema": {
86746              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
86747            }
86748          },
86749          {
86750            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86751            "in": "query",
86752            "name": "continue",
86753            "type": "string",
86754            "uniqueItems": true
86755          },
86756          {
86757            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86758            "in": "query",
86759            "name": "dryRun",
86760            "type": "string",
86761            "uniqueItems": true
86762          },
86763          {
86764            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86765            "in": "query",
86766            "name": "fieldSelector",
86767            "type": "string",
86768            "uniqueItems": true
86769          },
86770          {
86771            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
86772            "in": "query",
86773            "name": "gracePeriodSeconds",
86774            "type": "integer",
86775            "uniqueItems": true
86776          },
86777          {
86778            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86779            "in": "query",
86780            "name": "labelSelector",
86781            "type": "string",
86782            "uniqueItems": true
86783          },
86784          {
86785            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86786            "in": "query",
86787            "name": "limit",
86788            "type": "integer",
86789            "uniqueItems": true
86790          },
86791          {
86792            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
86793            "in": "query",
86794            "name": "orphanDependents",
86795            "type": "boolean",
86796            "uniqueItems": true
86797          },
86798          {
86799            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
86800            "in": "query",
86801            "name": "propagationPolicy",
86802            "type": "string",
86803            "uniqueItems": true
86804          },
86805          {
86806            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86807            "in": "query",
86808            "name": "resourceVersion",
86809            "type": "string",
86810            "uniqueItems": true
86811          },
86812          {
86813            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86814            "in": "query",
86815            "name": "resourceVersionMatch",
86816            "type": "string",
86817            "uniqueItems": true
86818          },
86819          {
86820            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86821            "in": "query",
86822            "name": "timeoutSeconds",
86823            "type": "integer",
86824            "uniqueItems": true
86825          }
86826        ],
86827        "produces": [
86828          "application/json",
86829          "application/yaml",
86830          "application/vnd.kubernetes.protobuf"
86831        ],
86832        "responses": {
86833          "200": {
86834            "description": "OK",
86835            "schema": {
86836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86837            }
86838          },
86839          "401": {
86840            "description": "Unauthorized"
86841          }
86842        },
86843        "schemes": [
86844          "https"
86845        ],
86846        "tags": [
86847          "rbacAuthorization_v1"
86848        ],
86849        "x-kubernetes-action": "deletecollection",
86850        "x-kubernetes-group-version-kind": {
86851          "group": "rbac.authorization.k8s.io",
86852          "kind": "ClusterRoleBinding",
86853          "version": "v1"
86854        }
86855      },
86856      "get": {
86857        "consumes": [
86858          "*/*"
86859        ],
86860        "description": "list or watch objects of kind ClusterRoleBinding",
86861        "operationId": "listRbacAuthorizationV1ClusterRoleBinding",
86862        "parameters": [
86863          {
86864            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
86865            "in": "query",
86866            "name": "allowWatchBookmarks",
86867            "type": "boolean",
86868            "uniqueItems": true
86869          },
86870          {
86871            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86872            "in": "query",
86873            "name": "continue",
86874            "type": "string",
86875            "uniqueItems": true
86876          },
86877          {
86878            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86879            "in": "query",
86880            "name": "fieldSelector",
86881            "type": "string",
86882            "uniqueItems": true
86883          },
86884          {
86885            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86886            "in": "query",
86887            "name": "labelSelector",
86888            "type": "string",
86889            "uniqueItems": true
86890          },
86891          {
86892            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86893            "in": "query",
86894            "name": "limit",
86895            "type": "integer",
86896            "uniqueItems": true
86897          },
86898          {
86899            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86900            "in": "query",
86901            "name": "resourceVersion",
86902            "type": "string",
86903            "uniqueItems": true
86904          },
86905          {
86906            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86907            "in": "query",
86908            "name": "resourceVersionMatch",
86909            "type": "string",
86910            "uniqueItems": true
86911          },
86912          {
86913            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86914            "in": "query",
86915            "name": "timeoutSeconds",
86916            "type": "integer",
86917            "uniqueItems": true
86918          },
86919          {
86920            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86921            "in": "query",
86922            "name": "watch",
86923            "type": "boolean",
86924            "uniqueItems": true
86925          }
86926        ],
86927        "produces": [
86928          "application/json",
86929          "application/yaml",
86930          "application/vnd.kubernetes.protobuf",
86931          "application/json;stream=watch",
86932          "application/vnd.kubernetes.protobuf;stream=watch"
86933        ],
86934        "responses": {
86935          "200": {
86936            "description": "OK",
86937            "schema": {
86938              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBindingList"
86939            }
86940          },
86941          "401": {
86942            "description": "Unauthorized"
86943          }
86944        },
86945        "schemes": [
86946          "https"
86947        ],
86948        "tags": [
86949          "rbacAuthorization_v1"
86950        ],
86951        "x-kubernetes-action": "list",
86952        "x-kubernetes-group-version-kind": {
86953          "group": "rbac.authorization.k8s.io",
86954          "kind": "ClusterRoleBinding",
86955          "version": "v1"
86956        }
86957      },
86958      "parameters": [
86959        {
86960          "description": "If 'true', then the output is pretty printed.",
86961          "in": "query",
86962          "name": "pretty",
86963          "type": "string",
86964          "uniqueItems": true
86965        }
86966      ],
86967      "post": {
86968        "consumes": [
86969          "*/*"
86970        ],
86971        "description": "create a ClusterRoleBinding",
86972        "operationId": "createRbacAuthorizationV1ClusterRoleBinding",
86973        "parameters": [
86974          {
86975            "in": "body",
86976            "name": "body",
86977            "required": true,
86978            "schema": {
86979              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
86980            }
86981          },
86982          {
86983            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86984            "in": "query",
86985            "name": "dryRun",
86986            "type": "string",
86987            "uniqueItems": true
86988          },
86989          {
86990            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86991            "in": "query",
86992            "name": "fieldManager",
86993            "type": "string",
86994            "uniqueItems": true
86995          }
86996        ],
86997        "produces": [
86998          "application/json",
86999          "application/yaml",
87000          "application/vnd.kubernetes.protobuf"
87001        ],
87002        "responses": {
87003          "200": {
87004            "description": "OK",
87005            "schema": {
87006              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87007            }
87008          },
87009          "201": {
87010            "description": "Created",
87011            "schema": {
87012              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87013            }
87014          },
87015          "202": {
87016            "description": "Accepted",
87017            "schema": {
87018              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87019            }
87020          },
87021          "401": {
87022            "description": "Unauthorized"
87023          }
87024        },
87025        "schemes": [
87026          "https"
87027        ],
87028        "tags": [
87029          "rbacAuthorization_v1"
87030        ],
87031        "x-kubernetes-action": "post",
87032        "x-kubernetes-group-version-kind": {
87033          "group": "rbac.authorization.k8s.io",
87034          "kind": "ClusterRoleBinding",
87035          "version": "v1"
87036        }
87037      }
87038    },
87039    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": {
87040      "delete": {
87041        "consumes": [
87042          "*/*"
87043        ],
87044        "description": "delete a ClusterRoleBinding",
87045        "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding",
87046        "parameters": [
87047          {
87048            "in": "body",
87049            "name": "body",
87050            "schema": {
87051              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87052            }
87053          },
87054          {
87055            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87056            "in": "query",
87057            "name": "dryRun",
87058            "type": "string",
87059            "uniqueItems": true
87060          },
87061          {
87062            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87063            "in": "query",
87064            "name": "gracePeriodSeconds",
87065            "type": "integer",
87066            "uniqueItems": true
87067          },
87068          {
87069            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87070            "in": "query",
87071            "name": "orphanDependents",
87072            "type": "boolean",
87073            "uniqueItems": true
87074          },
87075          {
87076            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87077            "in": "query",
87078            "name": "propagationPolicy",
87079            "type": "string",
87080            "uniqueItems": true
87081          }
87082        ],
87083        "produces": [
87084          "application/json",
87085          "application/yaml",
87086          "application/vnd.kubernetes.protobuf"
87087        ],
87088        "responses": {
87089          "200": {
87090            "description": "OK",
87091            "schema": {
87092              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87093            }
87094          },
87095          "202": {
87096            "description": "Accepted",
87097            "schema": {
87098              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87099            }
87100          },
87101          "401": {
87102            "description": "Unauthorized"
87103          }
87104        },
87105        "schemes": [
87106          "https"
87107        ],
87108        "tags": [
87109          "rbacAuthorization_v1"
87110        ],
87111        "x-kubernetes-action": "delete",
87112        "x-kubernetes-group-version-kind": {
87113          "group": "rbac.authorization.k8s.io",
87114          "kind": "ClusterRoleBinding",
87115          "version": "v1"
87116        }
87117      },
87118      "get": {
87119        "consumes": [
87120          "*/*"
87121        ],
87122        "description": "read the specified ClusterRoleBinding",
87123        "operationId": "readRbacAuthorizationV1ClusterRoleBinding",
87124        "produces": [
87125          "application/json",
87126          "application/yaml",
87127          "application/vnd.kubernetes.protobuf"
87128        ],
87129        "responses": {
87130          "200": {
87131            "description": "OK",
87132            "schema": {
87133              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87134            }
87135          },
87136          "401": {
87137            "description": "Unauthorized"
87138          }
87139        },
87140        "schemes": [
87141          "https"
87142        ],
87143        "tags": [
87144          "rbacAuthorization_v1"
87145        ],
87146        "x-kubernetes-action": "get",
87147        "x-kubernetes-group-version-kind": {
87148          "group": "rbac.authorization.k8s.io",
87149          "kind": "ClusterRoleBinding",
87150          "version": "v1"
87151        }
87152      },
87153      "parameters": [
87154        {
87155          "description": "name of the ClusterRoleBinding",
87156          "in": "path",
87157          "name": "name",
87158          "required": true,
87159          "type": "string",
87160          "uniqueItems": true
87161        },
87162        {
87163          "description": "If 'true', then the output is pretty printed.",
87164          "in": "query",
87165          "name": "pretty",
87166          "type": "string",
87167          "uniqueItems": true
87168        }
87169      ],
87170      "patch": {
87171        "consumes": [
87172          "application/json-patch+json",
87173          "application/merge-patch+json",
87174          "application/strategic-merge-patch+json",
87175          "application/apply-patch+yaml"
87176        ],
87177        "description": "partially update the specified ClusterRoleBinding",
87178        "operationId": "patchRbacAuthorizationV1ClusterRoleBinding",
87179        "parameters": [
87180          {
87181            "in": "body",
87182            "name": "body",
87183            "required": true,
87184            "schema": {
87185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87186            }
87187          },
87188          {
87189            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87190            "in": "query",
87191            "name": "dryRun",
87192            "type": "string",
87193            "uniqueItems": true
87194          },
87195          {
87196            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
87197            "in": "query",
87198            "name": "fieldManager",
87199            "type": "string",
87200            "uniqueItems": true
87201          },
87202          {
87203            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
87204            "in": "query",
87205            "name": "force",
87206            "type": "boolean",
87207            "uniqueItems": true
87208          }
87209        ],
87210        "produces": [
87211          "application/json",
87212          "application/yaml",
87213          "application/vnd.kubernetes.protobuf"
87214        ],
87215        "responses": {
87216          "200": {
87217            "description": "OK",
87218            "schema": {
87219              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87220            }
87221          },
87222          "401": {
87223            "description": "Unauthorized"
87224          }
87225        },
87226        "schemes": [
87227          "https"
87228        ],
87229        "tags": [
87230          "rbacAuthorization_v1"
87231        ],
87232        "x-kubernetes-action": "patch",
87233        "x-kubernetes-group-version-kind": {
87234          "group": "rbac.authorization.k8s.io",
87235          "kind": "ClusterRoleBinding",
87236          "version": "v1"
87237        }
87238      },
87239      "put": {
87240        "consumes": [
87241          "*/*"
87242        ],
87243        "description": "replace the specified ClusterRoleBinding",
87244        "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding",
87245        "parameters": [
87246          {
87247            "in": "body",
87248            "name": "body",
87249            "required": true,
87250            "schema": {
87251              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87252            }
87253          },
87254          {
87255            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87256            "in": "query",
87257            "name": "dryRun",
87258            "type": "string",
87259            "uniqueItems": true
87260          },
87261          {
87262            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87263            "in": "query",
87264            "name": "fieldManager",
87265            "type": "string",
87266            "uniqueItems": true
87267          }
87268        ],
87269        "produces": [
87270          "application/json",
87271          "application/yaml",
87272          "application/vnd.kubernetes.protobuf"
87273        ],
87274        "responses": {
87275          "200": {
87276            "description": "OK",
87277            "schema": {
87278              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87279            }
87280          },
87281          "201": {
87282            "description": "Created",
87283            "schema": {
87284              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
87285            }
87286          },
87287          "401": {
87288            "description": "Unauthorized"
87289          }
87290        },
87291        "schemes": [
87292          "https"
87293        ],
87294        "tags": [
87295          "rbacAuthorization_v1"
87296        ],
87297        "x-kubernetes-action": "put",
87298        "x-kubernetes-group-version-kind": {
87299          "group": "rbac.authorization.k8s.io",
87300          "kind": "ClusterRoleBinding",
87301          "version": "v1"
87302        }
87303      }
87304    },
87305    "/apis/rbac.authorization.k8s.io/v1/clusterroles": {
87306      "delete": {
87307        "consumes": [
87308          "*/*"
87309        ],
87310        "description": "delete collection of ClusterRole",
87311        "operationId": "deleteRbacAuthorizationV1CollectionClusterRole",
87312        "parameters": [
87313          {
87314            "in": "body",
87315            "name": "body",
87316            "schema": {
87317              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87318            }
87319          },
87320          {
87321            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87322            "in": "query",
87323            "name": "continue",
87324            "type": "string",
87325            "uniqueItems": true
87326          },
87327          {
87328            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87329            "in": "query",
87330            "name": "dryRun",
87331            "type": "string",
87332            "uniqueItems": true
87333          },
87334          {
87335            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87336            "in": "query",
87337            "name": "fieldSelector",
87338            "type": "string",
87339            "uniqueItems": true
87340          },
87341          {
87342            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87343            "in": "query",
87344            "name": "gracePeriodSeconds",
87345            "type": "integer",
87346            "uniqueItems": true
87347          },
87348          {
87349            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87350            "in": "query",
87351            "name": "labelSelector",
87352            "type": "string",
87353            "uniqueItems": true
87354          },
87355          {
87356            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87357            "in": "query",
87358            "name": "limit",
87359            "type": "integer",
87360            "uniqueItems": true
87361          },
87362          {
87363            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87364            "in": "query",
87365            "name": "orphanDependents",
87366            "type": "boolean",
87367            "uniqueItems": true
87368          },
87369          {
87370            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87371            "in": "query",
87372            "name": "propagationPolicy",
87373            "type": "string",
87374            "uniqueItems": true
87375          },
87376          {
87377            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87378            "in": "query",
87379            "name": "resourceVersion",
87380            "type": "string",
87381            "uniqueItems": true
87382          },
87383          {
87384            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87385            "in": "query",
87386            "name": "resourceVersionMatch",
87387            "type": "string",
87388            "uniqueItems": true
87389          },
87390          {
87391            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87392            "in": "query",
87393            "name": "timeoutSeconds",
87394            "type": "integer",
87395            "uniqueItems": true
87396          }
87397        ],
87398        "produces": [
87399          "application/json",
87400          "application/yaml",
87401          "application/vnd.kubernetes.protobuf"
87402        ],
87403        "responses": {
87404          "200": {
87405            "description": "OK",
87406            "schema": {
87407              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87408            }
87409          },
87410          "401": {
87411            "description": "Unauthorized"
87412          }
87413        },
87414        "schemes": [
87415          "https"
87416        ],
87417        "tags": [
87418          "rbacAuthorization_v1"
87419        ],
87420        "x-kubernetes-action": "deletecollection",
87421        "x-kubernetes-group-version-kind": {
87422          "group": "rbac.authorization.k8s.io",
87423          "kind": "ClusterRole",
87424          "version": "v1"
87425        }
87426      },
87427      "get": {
87428        "consumes": [
87429          "*/*"
87430        ],
87431        "description": "list or watch objects of kind ClusterRole",
87432        "operationId": "listRbacAuthorizationV1ClusterRole",
87433        "parameters": [
87434          {
87435            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
87436            "in": "query",
87437            "name": "allowWatchBookmarks",
87438            "type": "boolean",
87439            "uniqueItems": true
87440          },
87441          {
87442            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87443            "in": "query",
87444            "name": "continue",
87445            "type": "string",
87446            "uniqueItems": true
87447          },
87448          {
87449            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87450            "in": "query",
87451            "name": "fieldSelector",
87452            "type": "string",
87453            "uniqueItems": true
87454          },
87455          {
87456            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87457            "in": "query",
87458            "name": "labelSelector",
87459            "type": "string",
87460            "uniqueItems": true
87461          },
87462          {
87463            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87464            "in": "query",
87465            "name": "limit",
87466            "type": "integer",
87467            "uniqueItems": true
87468          },
87469          {
87470            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87471            "in": "query",
87472            "name": "resourceVersion",
87473            "type": "string",
87474            "uniqueItems": true
87475          },
87476          {
87477            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87478            "in": "query",
87479            "name": "resourceVersionMatch",
87480            "type": "string",
87481            "uniqueItems": true
87482          },
87483          {
87484            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87485            "in": "query",
87486            "name": "timeoutSeconds",
87487            "type": "integer",
87488            "uniqueItems": true
87489          },
87490          {
87491            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87492            "in": "query",
87493            "name": "watch",
87494            "type": "boolean",
87495            "uniqueItems": true
87496          }
87497        ],
87498        "produces": [
87499          "application/json",
87500          "application/yaml",
87501          "application/vnd.kubernetes.protobuf",
87502          "application/json;stream=watch",
87503          "application/vnd.kubernetes.protobuf;stream=watch"
87504        ],
87505        "responses": {
87506          "200": {
87507            "description": "OK",
87508            "schema": {
87509              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleList"
87510            }
87511          },
87512          "401": {
87513            "description": "Unauthorized"
87514          }
87515        },
87516        "schemes": [
87517          "https"
87518        ],
87519        "tags": [
87520          "rbacAuthorization_v1"
87521        ],
87522        "x-kubernetes-action": "list",
87523        "x-kubernetes-group-version-kind": {
87524          "group": "rbac.authorization.k8s.io",
87525          "kind": "ClusterRole",
87526          "version": "v1"
87527        }
87528      },
87529      "parameters": [
87530        {
87531          "description": "If 'true', then the output is pretty printed.",
87532          "in": "query",
87533          "name": "pretty",
87534          "type": "string",
87535          "uniqueItems": true
87536        }
87537      ],
87538      "post": {
87539        "consumes": [
87540          "*/*"
87541        ],
87542        "description": "create a ClusterRole",
87543        "operationId": "createRbacAuthorizationV1ClusterRole",
87544        "parameters": [
87545          {
87546            "in": "body",
87547            "name": "body",
87548            "required": true,
87549            "schema": {
87550              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87551            }
87552          },
87553          {
87554            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87555            "in": "query",
87556            "name": "dryRun",
87557            "type": "string",
87558            "uniqueItems": true
87559          },
87560          {
87561            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87562            "in": "query",
87563            "name": "fieldManager",
87564            "type": "string",
87565            "uniqueItems": true
87566          }
87567        ],
87568        "produces": [
87569          "application/json",
87570          "application/yaml",
87571          "application/vnd.kubernetes.protobuf"
87572        ],
87573        "responses": {
87574          "200": {
87575            "description": "OK",
87576            "schema": {
87577              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87578            }
87579          },
87580          "201": {
87581            "description": "Created",
87582            "schema": {
87583              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87584            }
87585          },
87586          "202": {
87587            "description": "Accepted",
87588            "schema": {
87589              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87590            }
87591          },
87592          "401": {
87593            "description": "Unauthorized"
87594          }
87595        },
87596        "schemes": [
87597          "https"
87598        ],
87599        "tags": [
87600          "rbacAuthorization_v1"
87601        ],
87602        "x-kubernetes-action": "post",
87603        "x-kubernetes-group-version-kind": {
87604          "group": "rbac.authorization.k8s.io",
87605          "kind": "ClusterRole",
87606          "version": "v1"
87607        }
87608      }
87609    },
87610    "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": {
87611      "delete": {
87612        "consumes": [
87613          "*/*"
87614        ],
87615        "description": "delete a ClusterRole",
87616        "operationId": "deleteRbacAuthorizationV1ClusterRole",
87617        "parameters": [
87618          {
87619            "in": "body",
87620            "name": "body",
87621            "schema": {
87622              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87623            }
87624          },
87625          {
87626            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87627            "in": "query",
87628            "name": "dryRun",
87629            "type": "string",
87630            "uniqueItems": true
87631          },
87632          {
87633            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87634            "in": "query",
87635            "name": "gracePeriodSeconds",
87636            "type": "integer",
87637            "uniqueItems": true
87638          },
87639          {
87640            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87641            "in": "query",
87642            "name": "orphanDependents",
87643            "type": "boolean",
87644            "uniqueItems": true
87645          },
87646          {
87647            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87648            "in": "query",
87649            "name": "propagationPolicy",
87650            "type": "string",
87651            "uniqueItems": true
87652          }
87653        ],
87654        "produces": [
87655          "application/json",
87656          "application/yaml",
87657          "application/vnd.kubernetes.protobuf"
87658        ],
87659        "responses": {
87660          "200": {
87661            "description": "OK",
87662            "schema": {
87663              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87664            }
87665          },
87666          "202": {
87667            "description": "Accepted",
87668            "schema": {
87669              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87670            }
87671          },
87672          "401": {
87673            "description": "Unauthorized"
87674          }
87675        },
87676        "schemes": [
87677          "https"
87678        ],
87679        "tags": [
87680          "rbacAuthorization_v1"
87681        ],
87682        "x-kubernetes-action": "delete",
87683        "x-kubernetes-group-version-kind": {
87684          "group": "rbac.authorization.k8s.io",
87685          "kind": "ClusterRole",
87686          "version": "v1"
87687        }
87688      },
87689      "get": {
87690        "consumes": [
87691          "*/*"
87692        ],
87693        "description": "read the specified ClusterRole",
87694        "operationId": "readRbacAuthorizationV1ClusterRole",
87695        "produces": [
87696          "application/json",
87697          "application/yaml",
87698          "application/vnd.kubernetes.protobuf"
87699        ],
87700        "responses": {
87701          "200": {
87702            "description": "OK",
87703            "schema": {
87704              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87705            }
87706          },
87707          "401": {
87708            "description": "Unauthorized"
87709          }
87710        },
87711        "schemes": [
87712          "https"
87713        ],
87714        "tags": [
87715          "rbacAuthorization_v1"
87716        ],
87717        "x-kubernetes-action": "get",
87718        "x-kubernetes-group-version-kind": {
87719          "group": "rbac.authorization.k8s.io",
87720          "kind": "ClusterRole",
87721          "version": "v1"
87722        }
87723      },
87724      "parameters": [
87725        {
87726          "description": "name of the ClusterRole",
87727          "in": "path",
87728          "name": "name",
87729          "required": true,
87730          "type": "string",
87731          "uniqueItems": true
87732        },
87733        {
87734          "description": "If 'true', then the output is pretty printed.",
87735          "in": "query",
87736          "name": "pretty",
87737          "type": "string",
87738          "uniqueItems": true
87739        }
87740      ],
87741      "patch": {
87742        "consumes": [
87743          "application/json-patch+json",
87744          "application/merge-patch+json",
87745          "application/strategic-merge-patch+json",
87746          "application/apply-patch+yaml"
87747        ],
87748        "description": "partially update the specified ClusterRole",
87749        "operationId": "patchRbacAuthorizationV1ClusterRole",
87750        "parameters": [
87751          {
87752            "in": "body",
87753            "name": "body",
87754            "required": true,
87755            "schema": {
87756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87757            }
87758          },
87759          {
87760            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87761            "in": "query",
87762            "name": "dryRun",
87763            "type": "string",
87764            "uniqueItems": true
87765          },
87766          {
87767            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
87768            "in": "query",
87769            "name": "fieldManager",
87770            "type": "string",
87771            "uniqueItems": true
87772          },
87773          {
87774            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
87775            "in": "query",
87776            "name": "force",
87777            "type": "boolean",
87778            "uniqueItems": true
87779          }
87780        ],
87781        "produces": [
87782          "application/json",
87783          "application/yaml",
87784          "application/vnd.kubernetes.protobuf"
87785        ],
87786        "responses": {
87787          "200": {
87788            "description": "OK",
87789            "schema": {
87790              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87791            }
87792          },
87793          "401": {
87794            "description": "Unauthorized"
87795          }
87796        },
87797        "schemes": [
87798          "https"
87799        ],
87800        "tags": [
87801          "rbacAuthorization_v1"
87802        ],
87803        "x-kubernetes-action": "patch",
87804        "x-kubernetes-group-version-kind": {
87805          "group": "rbac.authorization.k8s.io",
87806          "kind": "ClusterRole",
87807          "version": "v1"
87808        }
87809      },
87810      "put": {
87811        "consumes": [
87812          "*/*"
87813        ],
87814        "description": "replace the specified ClusterRole",
87815        "operationId": "replaceRbacAuthorizationV1ClusterRole",
87816        "parameters": [
87817          {
87818            "in": "body",
87819            "name": "body",
87820            "required": true,
87821            "schema": {
87822              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87823            }
87824          },
87825          {
87826            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87827            "in": "query",
87828            "name": "dryRun",
87829            "type": "string",
87830            "uniqueItems": true
87831          },
87832          {
87833            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87834            "in": "query",
87835            "name": "fieldManager",
87836            "type": "string",
87837            "uniqueItems": true
87838          }
87839        ],
87840        "produces": [
87841          "application/json",
87842          "application/yaml",
87843          "application/vnd.kubernetes.protobuf"
87844        ],
87845        "responses": {
87846          "200": {
87847            "description": "OK",
87848            "schema": {
87849              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87850            }
87851          },
87852          "201": {
87853            "description": "Created",
87854            "schema": {
87855              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
87856            }
87857          },
87858          "401": {
87859            "description": "Unauthorized"
87860          }
87861        },
87862        "schemes": [
87863          "https"
87864        ],
87865        "tags": [
87866          "rbacAuthorization_v1"
87867        ],
87868        "x-kubernetes-action": "put",
87869        "x-kubernetes-group-version-kind": {
87870          "group": "rbac.authorization.k8s.io",
87871          "kind": "ClusterRole",
87872          "version": "v1"
87873        }
87874      }
87875    },
87876    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": {
87877      "delete": {
87878        "consumes": [
87879          "*/*"
87880        ],
87881        "description": "delete collection of RoleBinding",
87882        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding",
87883        "parameters": [
87884          {
87885            "in": "body",
87886            "name": "body",
87887            "schema": {
87888              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87889            }
87890          },
87891          {
87892            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87893            "in": "query",
87894            "name": "continue",
87895            "type": "string",
87896            "uniqueItems": true
87897          },
87898          {
87899            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87900            "in": "query",
87901            "name": "dryRun",
87902            "type": "string",
87903            "uniqueItems": true
87904          },
87905          {
87906            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87907            "in": "query",
87908            "name": "fieldSelector",
87909            "type": "string",
87910            "uniqueItems": true
87911          },
87912          {
87913            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87914            "in": "query",
87915            "name": "gracePeriodSeconds",
87916            "type": "integer",
87917            "uniqueItems": true
87918          },
87919          {
87920            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87921            "in": "query",
87922            "name": "labelSelector",
87923            "type": "string",
87924            "uniqueItems": true
87925          },
87926          {
87927            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87928            "in": "query",
87929            "name": "limit",
87930            "type": "integer",
87931            "uniqueItems": true
87932          },
87933          {
87934            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87935            "in": "query",
87936            "name": "orphanDependents",
87937            "type": "boolean",
87938            "uniqueItems": true
87939          },
87940          {
87941            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87942            "in": "query",
87943            "name": "propagationPolicy",
87944            "type": "string",
87945            "uniqueItems": true
87946          },
87947          {
87948            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87949            "in": "query",
87950            "name": "resourceVersion",
87951            "type": "string",
87952            "uniqueItems": true
87953          },
87954          {
87955            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87956            "in": "query",
87957            "name": "resourceVersionMatch",
87958            "type": "string",
87959            "uniqueItems": true
87960          },
87961          {
87962            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87963            "in": "query",
87964            "name": "timeoutSeconds",
87965            "type": "integer",
87966            "uniqueItems": true
87967          }
87968        ],
87969        "produces": [
87970          "application/json",
87971          "application/yaml",
87972          "application/vnd.kubernetes.protobuf"
87973        ],
87974        "responses": {
87975          "200": {
87976            "description": "OK",
87977            "schema": {
87978              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87979            }
87980          },
87981          "401": {
87982            "description": "Unauthorized"
87983          }
87984        },
87985        "schemes": [
87986          "https"
87987        ],
87988        "tags": [
87989          "rbacAuthorization_v1"
87990        ],
87991        "x-kubernetes-action": "deletecollection",
87992        "x-kubernetes-group-version-kind": {
87993          "group": "rbac.authorization.k8s.io",
87994          "kind": "RoleBinding",
87995          "version": "v1"
87996        }
87997      },
87998      "get": {
87999        "consumes": [
88000          "*/*"
88001        ],
88002        "description": "list or watch objects of kind RoleBinding",
88003        "operationId": "listRbacAuthorizationV1NamespacedRoleBinding",
88004        "parameters": [
88005          {
88006            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
88007            "in": "query",
88008            "name": "allowWatchBookmarks",
88009            "type": "boolean",
88010            "uniqueItems": true
88011          },
88012          {
88013            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88014            "in": "query",
88015            "name": "continue",
88016            "type": "string",
88017            "uniqueItems": true
88018          },
88019          {
88020            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88021            "in": "query",
88022            "name": "fieldSelector",
88023            "type": "string",
88024            "uniqueItems": true
88025          },
88026          {
88027            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88028            "in": "query",
88029            "name": "labelSelector",
88030            "type": "string",
88031            "uniqueItems": true
88032          },
88033          {
88034            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88035            "in": "query",
88036            "name": "limit",
88037            "type": "integer",
88038            "uniqueItems": true
88039          },
88040          {
88041            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88042            "in": "query",
88043            "name": "resourceVersion",
88044            "type": "string",
88045            "uniqueItems": true
88046          },
88047          {
88048            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88049            "in": "query",
88050            "name": "resourceVersionMatch",
88051            "type": "string",
88052            "uniqueItems": true
88053          },
88054          {
88055            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88056            "in": "query",
88057            "name": "timeoutSeconds",
88058            "type": "integer",
88059            "uniqueItems": true
88060          },
88061          {
88062            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88063            "in": "query",
88064            "name": "watch",
88065            "type": "boolean",
88066            "uniqueItems": true
88067          }
88068        ],
88069        "produces": [
88070          "application/json",
88071          "application/yaml",
88072          "application/vnd.kubernetes.protobuf",
88073          "application/json;stream=watch",
88074          "application/vnd.kubernetes.protobuf;stream=watch"
88075        ],
88076        "responses": {
88077          "200": {
88078            "description": "OK",
88079            "schema": {
88080              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
88081            }
88082          },
88083          "401": {
88084            "description": "Unauthorized"
88085          }
88086        },
88087        "schemes": [
88088          "https"
88089        ],
88090        "tags": [
88091          "rbacAuthorization_v1"
88092        ],
88093        "x-kubernetes-action": "list",
88094        "x-kubernetes-group-version-kind": {
88095          "group": "rbac.authorization.k8s.io",
88096          "kind": "RoleBinding",
88097          "version": "v1"
88098        }
88099      },
88100      "parameters": [
88101        {
88102          "description": "object name and auth scope, such as for teams and projects",
88103          "in": "path",
88104          "name": "namespace",
88105          "required": true,
88106          "type": "string",
88107          "uniqueItems": true
88108        },
88109        {
88110          "description": "If 'true', then the output is pretty printed.",
88111          "in": "query",
88112          "name": "pretty",
88113          "type": "string",
88114          "uniqueItems": true
88115        }
88116      ],
88117      "post": {
88118        "consumes": [
88119          "*/*"
88120        ],
88121        "description": "create a RoleBinding",
88122        "operationId": "createRbacAuthorizationV1NamespacedRoleBinding",
88123        "parameters": [
88124          {
88125            "in": "body",
88126            "name": "body",
88127            "required": true,
88128            "schema": {
88129              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88130            }
88131          },
88132          {
88133            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88134            "in": "query",
88135            "name": "dryRun",
88136            "type": "string",
88137            "uniqueItems": true
88138          },
88139          {
88140            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88141            "in": "query",
88142            "name": "fieldManager",
88143            "type": "string",
88144            "uniqueItems": true
88145          }
88146        ],
88147        "produces": [
88148          "application/json",
88149          "application/yaml",
88150          "application/vnd.kubernetes.protobuf"
88151        ],
88152        "responses": {
88153          "200": {
88154            "description": "OK",
88155            "schema": {
88156              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88157            }
88158          },
88159          "201": {
88160            "description": "Created",
88161            "schema": {
88162              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88163            }
88164          },
88165          "202": {
88166            "description": "Accepted",
88167            "schema": {
88168              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88169            }
88170          },
88171          "401": {
88172            "description": "Unauthorized"
88173          }
88174        },
88175        "schemes": [
88176          "https"
88177        ],
88178        "tags": [
88179          "rbacAuthorization_v1"
88180        ],
88181        "x-kubernetes-action": "post",
88182        "x-kubernetes-group-version-kind": {
88183          "group": "rbac.authorization.k8s.io",
88184          "kind": "RoleBinding",
88185          "version": "v1"
88186        }
88187      }
88188    },
88189    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": {
88190      "delete": {
88191        "consumes": [
88192          "*/*"
88193        ],
88194        "description": "delete a RoleBinding",
88195        "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding",
88196        "parameters": [
88197          {
88198            "in": "body",
88199            "name": "body",
88200            "schema": {
88201              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88202            }
88203          },
88204          {
88205            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88206            "in": "query",
88207            "name": "dryRun",
88208            "type": "string",
88209            "uniqueItems": true
88210          },
88211          {
88212            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88213            "in": "query",
88214            "name": "gracePeriodSeconds",
88215            "type": "integer",
88216            "uniqueItems": true
88217          },
88218          {
88219            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88220            "in": "query",
88221            "name": "orphanDependents",
88222            "type": "boolean",
88223            "uniqueItems": true
88224          },
88225          {
88226            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88227            "in": "query",
88228            "name": "propagationPolicy",
88229            "type": "string",
88230            "uniqueItems": true
88231          }
88232        ],
88233        "produces": [
88234          "application/json",
88235          "application/yaml",
88236          "application/vnd.kubernetes.protobuf"
88237        ],
88238        "responses": {
88239          "200": {
88240            "description": "OK",
88241            "schema": {
88242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88243            }
88244          },
88245          "202": {
88246            "description": "Accepted",
88247            "schema": {
88248              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88249            }
88250          },
88251          "401": {
88252            "description": "Unauthorized"
88253          }
88254        },
88255        "schemes": [
88256          "https"
88257        ],
88258        "tags": [
88259          "rbacAuthorization_v1"
88260        ],
88261        "x-kubernetes-action": "delete",
88262        "x-kubernetes-group-version-kind": {
88263          "group": "rbac.authorization.k8s.io",
88264          "kind": "RoleBinding",
88265          "version": "v1"
88266        }
88267      },
88268      "get": {
88269        "consumes": [
88270          "*/*"
88271        ],
88272        "description": "read the specified RoleBinding",
88273        "operationId": "readRbacAuthorizationV1NamespacedRoleBinding",
88274        "produces": [
88275          "application/json",
88276          "application/yaml",
88277          "application/vnd.kubernetes.protobuf"
88278        ],
88279        "responses": {
88280          "200": {
88281            "description": "OK",
88282            "schema": {
88283              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88284            }
88285          },
88286          "401": {
88287            "description": "Unauthorized"
88288          }
88289        },
88290        "schemes": [
88291          "https"
88292        ],
88293        "tags": [
88294          "rbacAuthorization_v1"
88295        ],
88296        "x-kubernetes-action": "get",
88297        "x-kubernetes-group-version-kind": {
88298          "group": "rbac.authorization.k8s.io",
88299          "kind": "RoleBinding",
88300          "version": "v1"
88301        }
88302      },
88303      "parameters": [
88304        {
88305          "description": "name of the RoleBinding",
88306          "in": "path",
88307          "name": "name",
88308          "required": true,
88309          "type": "string",
88310          "uniqueItems": true
88311        },
88312        {
88313          "description": "object name and auth scope, such as for teams and projects",
88314          "in": "path",
88315          "name": "namespace",
88316          "required": true,
88317          "type": "string",
88318          "uniqueItems": true
88319        },
88320        {
88321          "description": "If 'true', then the output is pretty printed.",
88322          "in": "query",
88323          "name": "pretty",
88324          "type": "string",
88325          "uniqueItems": true
88326        }
88327      ],
88328      "patch": {
88329        "consumes": [
88330          "application/json-patch+json",
88331          "application/merge-patch+json",
88332          "application/strategic-merge-patch+json",
88333          "application/apply-patch+yaml"
88334        ],
88335        "description": "partially update the specified RoleBinding",
88336        "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding",
88337        "parameters": [
88338          {
88339            "in": "body",
88340            "name": "body",
88341            "required": true,
88342            "schema": {
88343              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88344            }
88345          },
88346          {
88347            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88348            "in": "query",
88349            "name": "dryRun",
88350            "type": "string",
88351            "uniqueItems": true
88352          },
88353          {
88354            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
88355            "in": "query",
88356            "name": "fieldManager",
88357            "type": "string",
88358            "uniqueItems": true
88359          },
88360          {
88361            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
88362            "in": "query",
88363            "name": "force",
88364            "type": "boolean",
88365            "uniqueItems": true
88366          }
88367        ],
88368        "produces": [
88369          "application/json",
88370          "application/yaml",
88371          "application/vnd.kubernetes.protobuf"
88372        ],
88373        "responses": {
88374          "200": {
88375            "description": "OK",
88376            "schema": {
88377              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88378            }
88379          },
88380          "401": {
88381            "description": "Unauthorized"
88382          }
88383        },
88384        "schemes": [
88385          "https"
88386        ],
88387        "tags": [
88388          "rbacAuthorization_v1"
88389        ],
88390        "x-kubernetes-action": "patch",
88391        "x-kubernetes-group-version-kind": {
88392          "group": "rbac.authorization.k8s.io",
88393          "kind": "RoleBinding",
88394          "version": "v1"
88395        }
88396      },
88397      "put": {
88398        "consumes": [
88399          "*/*"
88400        ],
88401        "description": "replace the specified RoleBinding",
88402        "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding",
88403        "parameters": [
88404          {
88405            "in": "body",
88406            "name": "body",
88407            "required": true,
88408            "schema": {
88409              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88410            }
88411          },
88412          {
88413            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88414            "in": "query",
88415            "name": "dryRun",
88416            "type": "string",
88417            "uniqueItems": true
88418          },
88419          {
88420            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88421            "in": "query",
88422            "name": "fieldManager",
88423            "type": "string",
88424            "uniqueItems": true
88425          }
88426        ],
88427        "produces": [
88428          "application/json",
88429          "application/yaml",
88430          "application/vnd.kubernetes.protobuf"
88431        ],
88432        "responses": {
88433          "200": {
88434            "description": "OK",
88435            "schema": {
88436              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88437            }
88438          },
88439          "201": {
88440            "description": "Created",
88441            "schema": {
88442              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
88443            }
88444          },
88445          "401": {
88446            "description": "Unauthorized"
88447          }
88448        },
88449        "schemes": [
88450          "https"
88451        ],
88452        "tags": [
88453          "rbacAuthorization_v1"
88454        ],
88455        "x-kubernetes-action": "put",
88456        "x-kubernetes-group-version-kind": {
88457          "group": "rbac.authorization.k8s.io",
88458          "kind": "RoleBinding",
88459          "version": "v1"
88460        }
88461      }
88462    },
88463    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": {
88464      "delete": {
88465        "consumes": [
88466          "*/*"
88467        ],
88468        "description": "delete collection of Role",
88469        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole",
88470        "parameters": [
88471          {
88472            "in": "body",
88473            "name": "body",
88474            "schema": {
88475              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88476            }
88477          },
88478          {
88479            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88480            "in": "query",
88481            "name": "continue",
88482            "type": "string",
88483            "uniqueItems": true
88484          },
88485          {
88486            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88487            "in": "query",
88488            "name": "dryRun",
88489            "type": "string",
88490            "uniqueItems": true
88491          },
88492          {
88493            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88494            "in": "query",
88495            "name": "fieldSelector",
88496            "type": "string",
88497            "uniqueItems": true
88498          },
88499          {
88500            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88501            "in": "query",
88502            "name": "gracePeriodSeconds",
88503            "type": "integer",
88504            "uniqueItems": true
88505          },
88506          {
88507            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88508            "in": "query",
88509            "name": "labelSelector",
88510            "type": "string",
88511            "uniqueItems": true
88512          },
88513          {
88514            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88515            "in": "query",
88516            "name": "limit",
88517            "type": "integer",
88518            "uniqueItems": true
88519          },
88520          {
88521            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88522            "in": "query",
88523            "name": "orphanDependents",
88524            "type": "boolean",
88525            "uniqueItems": true
88526          },
88527          {
88528            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88529            "in": "query",
88530            "name": "propagationPolicy",
88531            "type": "string",
88532            "uniqueItems": true
88533          },
88534          {
88535            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88536            "in": "query",
88537            "name": "resourceVersion",
88538            "type": "string",
88539            "uniqueItems": true
88540          },
88541          {
88542            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88543            "in": "query",
88544            "name": "resourceVersionMatch",
88545            "type": "string",
88546            "uniqueItems": true
88547          },
88548          {
88549            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88550            "in": "query",
88551            "name": "timeoutSeconds",
88552            "type": "integer",
88553            "uniqueItems": true
88554          }
88555        ],
88556        "produces": [
88557          "application/json",
88558          "application/yaml",
88559          "application/vnd.kubernetes.protobuf"
88560        ],
88561        "responses": {
88562          "200": {
88563            "description": "OK",
88564            "schema": {
88565              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88566            }
88567          },
88568          "401": {
88569            "description": "Unauthorized"
88570          }
88571        },
88572        "schemes": [
88573          "https"
88574        ],
88575        "tags": [
88576          "rbacAuthorization_v1"
88577        ],
88578        "x-kubernetes-action": "deletecollection",
88579        "x-kubernetes-group-version-kind": {
88580          "group": "rbac.authorization.k8s.io",
88581          "kind": "Role",
88582          "version": "v1"
88583        }
88584      },
88585      "get": {
88586        "consumes": [
88587          "*/*"
88588        ],
88589        "description": "list or watch objects of kind Role",
88590        "operationId": "listRbacAuthorizationV1NamespacedRole",
88591        "parameters": [
88592          {
88593            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
88594            "in": "query",
88595            "name": "allowWatchBookmarks",
88596            "type": "boolean",
88597            "uniqueItems": true
88598          },
88599          {
88600            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88601            "in": "query",
88602            "name": "continue",
88603            "type": "string",
88604            "uniqueItems": true
88605          },
88606          {
88607            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88608            "in": "query",
88609            "name": "fieldSelector",
88610            "type": "string",
88611            "uniqueItems": true
88612          },
88613          {
88614            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88615            "in": "query",
88616            "name": "labelSelector",
88617            "type": "string",
88618            "uniqueItems": true
88619          },
88620          {
88621            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88622            "in": "query",
88623            "name": "limit",
88624            "type": "integer",
88625            "uniqueItems": true
88626          },
88627          {
88628            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88629            "in": "query",
88630            "name": "resourceVersion",
88631            "type": "string",
88632            "uniqueItems": true
88633          },
88634          {
88635            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88636            "in": "query",
88637            "name": "resourceVersionMatch",
88638            "type": "string",
88639            "uniqueItems": true
88640          },
88641          {
88642            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88643            "in": "query",
88644            "name": "timeoutSeconds",
88645            "type": "integer",
88646            "uniqueItems": true
88647          },
88648          {
88649            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88650            "in": "query",
88651            "name": "watch",
88652            "type": "boolean",
88653            "uniqueItems": true
88654          }
88655        ],
88656        "produces": [
88657          "application/json",
88658          "application/yaml",
88659          "application/vnd.kubernetes.protobuf",
88660          "application/json;stream=watch",
88661          "application/vnd.kubernetes.protobuf;stream=watch"
88662        ],
88663        "responses": {
88664          "200": {
88665            "description": "OK",
88666            "schema": {
88667              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
88668            }
88669          },
88670          "401": {
88671            "description": "Unauthorized"
88672          }
88673        },
88674        "schemes": [
88675          "https"
88676        ],
88677        "tags": [
88678          "rbacAuthorization_v1"
88679        ],
88680        "x-kubernetes-action": "list",
88681        "x-kubernetes-group-version-kind": {
88682          "group": "rbac.authorization.k8s.io",
88683          "kind": "Role",
88684          "version": "v1"
88685        }
88686      },
88687      "parameters": [
88688        {
88689          "description": "object name and auth scope, such as for teams and projects",
88690          "in": "path",
88691          "name": "namespace",
88692          "required": true,
88693          "type": "string",
88694          "uniqueItems": true
88695        },
88696        {
88697          "description": "If 'true', then the output is pretty printed.",
88698          "in": "query",
88699          "name": "pretty",
88700          "type": "string",
88701          "uniqueItems": true
88702        }
88703      ],
88704      "post": {
88705        "consumes": [
88706          "*/*"
88707        ],
88708        "description": "create a Role",
88709        "operationId": "createRbacAuthorizationV1NamespacedRole",
88710        "parameters": [
88711          {
88712            "in": "body",
88713            "name": "body",
88714            "required": true,
88715            "schema": {
88716              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88717            }
88718          },
88719          {
88720            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88721            "in": "query",
88722            "name": "dryRun",
88723            "type": "string",
88724            "uniqueItems": true
88725          },
88726          {
88727            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88728            "in": "query",
88729            "name": "fieldManager",
88730            "type": "string",
88731            "uniqueItems": true
88732          }
88733        ],
88734        "produces": [
88735          "application/json",
88736          "application/yaml",
88737          "application/vnd.kubernetes.protobuf"
88738        ],
88739        "responses": {
88740          "200": {
88741            "description": "OK",
88742            "schema": {
88743              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88744            }
88745          },
88746          "201": {
88747            "description": "Created",
88748            "schema": {
88749              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88750            }
88751          },
88752          "202": {
88753            "description": "Accepted",
88754            "schema": {
88755              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88756            }
88757          },
88758          "401": {
88759            "description": "Unauthorized"
88760          }
88761        },
88762        "schemes": [
88763          "https"
88764        ],
88765        "tags": [
88766          "rbacAuthorization_v1"
88767        ],
88768        "x-kubernetes-action": "post",
88769        "x-kubernetes-group-version-kind": {
88770          "group": "rbac.authorization.k8s.io",
88771          "kind": "Role",
88772          "version": "v1"
88773        }
88774      }
88775    },
88776    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": {
88777      "delete": {
88778        "consumes": [
88779          "*/*"
88780        ],
88781        "description": "delete a Role",
88782        "operationId": "deleteRbacAuthorizationV1NamespacedRole",
88783        "parameters": [
88784          {
88785            "in": "body",
88786            "name": "body",
88787            "schema": {
88788              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88789            }
88790          },
88791          {
88792            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88793            "in": "query",
88794            "name": "dryRun",
88795            "type": "string",
88796            "uniqueItems": true
88797          },
88798          {
88799            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88800            "in": "query",
88801            "name": "gracePeriodSeconds",
88802            "type": "integer",
88803            "uniqueItems": true
88804          },
88805          {
88806            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88807            "in": "query",
88808            "name": "orphanDependents",
88809            "type": "boolean",
88810            "uniqueItems": true
88811          },
88812          {
88813            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88814            "in": "query",
88815            "name": "propagationPolicy",
88816            "type": "string",
88817            "uniqueItems": true
88818          }
88819        ],
88820        "produces": [
88821          "application/json",
88822          "application/yaml",
88823          "application/vnd.kubernetes.protobuf"
88824        ],
88825        "responses": {
88826          "200": {
88827            "description": "OK",
88828            "schema": {
88829              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88830            }
88831          },
88832          "202": {
88833            "description": "Accepted",
88834            "schema": {
88835              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88836            }
88837          },
88838          "401": {
88839            "description": "Unauthorized"
88840          }
88841        },
88842        "schemes": [
88843          "https"
88844        ],
88845        "tags": [
88846          "rbacAuthorization_v1"
88847        ],
88848        "x-kubernetes-action": "delete",
88849        "x-kubernetes-group-version-kind": {
88850          "group": "rbac.authorization.k8s.io",
88851          "kind": "Role",
88852          "version": "v1"
88853        }
88854      },
88855      "get": {
88856        "consumes": [
88857          "*/*"
88858        ],
88859        "description": "read the specified Role",
88860        "operationId": "readRbacAuthorizationV1NamespacedRole",
88861        "produces": [
88862          "application/json",
88863          "application/yaml",
88864          "application/vnd.kubernetes.protobuf"
88865        ],
88866        "responses": {
88867          "200": {
88868            "description": "OK",
88869            "schema": {
88870              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88871            }
88872          },
88873          "401": {
88874            "description": "Unauthorized"
88875          }
88876        },
88877        "schemes": [
88878          "https"
88879        ],
88880        "tags": [
88881          "rbacAuthorization_v1"
88882        ],
88883        "x-kubernetes-action": "get",
88884        "x-kubernetes-group-version-kind": {
88885          "group": "rbac.authorization.k8s.io",
88886          "kind": "Role",
88887          "version": "v1"
88888        }
88889      },
88890      "parameters": [
88891        {
88892          "description": "name of the Role",
88893          "in": "path",
88894          "name": "name",
88895          "required": true,
88896          "type": "string",
88897          "uniqueItems": true
88898        },
88899        {
88900          "description": "object name and auth scope, such as for teams and projects",
88901          "in": "path",
88902          "name": "namespace",
88903          "required": true,
88904          "type": "string",
88905          "uniqueItems": true
88906        },
88907        {
88908          "description": "If 'true', then the output is pretty printed.",
88909          "in": "query",
88910          "name": "pretty",
88911          "type": "string",
88912          "uniqueItems": true
88913        }
88914      ],
88915      "patch": {
88916        "consumes": [
88917          "application/json-patch+json",
88918          "application/merge-patch+json",
88919          "application/strategic-merge-patch+json",
88920          "application/apply-patch+yaml"
88921        ],
88922        "description": "partially update the specified Role",
88923        "operationId": "patchRbacAuthorizationV1NamespacedRole",
88924        "parameters": [
88925          {
88926            "in": "body",
88927            "name": "body",
88928            "required": true,
88929            "schema": {
88930              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88931            }
88932          },
88933          {
88934            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88935            "in": "query",
88936            "name": "dryRun",
88937            "type": "string",
88938            "uniqueItems": true
88939          },
88940          {
88941            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
88942            "in": "query",
88943            "name": "fieldManager",
88944            "type": "string",
88945            "uniqueItems": true
88946          },
88947          {
88948            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
88949            "in": "query",
88950            "name": "force",
88951            "type": "boolean",
88952            "uniqueItems": true
88953          }
88954        ],
88955        "produces": [
88956          "application/json",
88957          "application/yaml",
88958          "application/vnd.kubernetes.protobuf"
88959        ],
88960        "responses": {
88961          "200": {
88962            "description": "OK",
88963            "schema": {
88964              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88965            }
88966          },
88967          "401": {
88968            "description": "Unauthorized"
88969          }
88970        },
88971        "schemes": [
88972          "https"
88973        ],
88974        "tags": [
88975          "rbacAuthorization_v1"
88976        ],
88977        "x-kubernetes-action": "patch",
88978        "x-kubernetes-group-version-kind": {
88979          "group": "rbac.authorization.k8s.io",
88980          "kind": "Role",
88981          "version": "v1"
88982        }
88983      },
88984      "put": {
88985        "consumes": [
88986          "*/*"
88987        ],
88988        "description": "replace the specified Role",
88989        "operationId": "replaceRbacAuthorizationV1NamespacedRole",
88990        "parameters": [
88991          {
88992            "in": "body",
88993            "name": "body",
88994            "required": true,
88995            "schema": {
88996              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
88997            }
88998          },
88999          {
89000            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89001            "in": "query",
89002            "name": "dryRun",
89003            "type": "string",
89004            "uniqueItems": true
89005          },
89006          {
89007            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
89008            "in": "query",
89009            "name": "fieldManager",
89010            "type": "string",
89011            "uniqueItems": true
89012          }
89013        ],
89014        "produces": [
89015          "application/json",
89016          "application/yaml",
89017          "application/vnd.kubernetes.protobuf"
89018        ],
89019        "responses": {
89020          "200": {
89021            "description": "OK",
89022            "schema": {
89023              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
89024            }
89025          },
89026          "201": {
89027            "description": "Created",
89028            "schema": {
89029              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
89030            }
89031          },
89032          "401": {
89033            "description": "Unauthorized"
89034          }
89035        },
89036        "schemes": [
89037          "https"
89038        ],
89039        "tags": [
89040          "rbacAuthorization_v1"
89041        ],
89042        "x-kubernetes-action": "put",
89043        "x-kubernetes-group-version-kind": {
89044          "group": "rbac.authorization.k8s.io",
89045          "kind": "Role",
89046          "version": "v1"
89047        }
89048      }
89049    },
89050    "/apis/rbac.authorization.k8s.io/v1/rolebindings": {
89051      "get": {
89052        "consumes": [
89053          "*/*"
89054        ],
89055        "description": "list or watch objects of kind RoleBinding",
89056        "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces",
89057        "produces": [
89058          "application/json",
89059          "application/yaml",
89060          "application/vnd.kubernetes.protobuf",
89061          "application/json;stream=watch",
89062          "application/vnd.kubernetes.protobuf;stream=watch"
89063        ],
89064        "responses": {
89065          "200": {
89066            "description": "OK",
89067            "schema": {
89068              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
89069            }
89070          },
89071          "401": {
89072            "description": "Unauthorized"
89073          }
89074        },
89075        "schemes": [
89076          "https"
89077        ],
89078        "tags": [
89079          "rbacAuthorization_v1"
89080        ],
89081        "x-kubernetes-action": "list",
89082        "x-kubernetes-group-version-kind": {
89083          "group": "rbac.authorization.k8s.io",
89084          "kind": "RoleBinding",
89085          "version": "v1"
89086        }
89087      },
89088      "parameters": [
89089        {
89090          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89091          "in": "query",
89092          "name": "allowWatchBookmarks",
89093          "type": "boolean",
89094          "uniqueItems": true
89095        },
89096        {
89097          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89098          "in": "query",
89099          "name": "continue",
89100          "type": "string",
89101          "uniqueItems": true
89102        },
89103        {
89104          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89105          "in": "query",
89106          "name": "fieldSelector",
89107          "type": "string",
89108          "uniqueItems": true
89109        },
89110        {
89111          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89112          "in": "query",
89113          "name": "labelSelector",
89114          "type": "string",
89115          "uniqueItems": true
89116        },
89117        {
89118          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89119          "in": "query",
89120          "name": "limit",
89121          "type": "integer",
89122          "uniqueItems": true
89123        },
89124        {
89125          "description": "If 'true', then the output is pretty printed.",
89126          "in": "query",
89127          "name": "pretty",
89128          "type": "string",
89129          "uniqueItems": true
89130        },
89131        {
89132          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89133          "in": "query",
89134          "name": "resourceVersion",
89135          "type": "string",
89136          "uniqueItems": true
89137        },
89138        {
89139          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89140          "in": "query",
89141          "name": "resourceVersionMatch",
89142          "type": "string",
89143          "uniqueItems": true
89144        },
89145        {
89146          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89147          "in": "query",
89148          "name": "timeoutSeconds",
89149          "type": "integer",
89150          "uniqueItems": true
89151        },
89152        {
89153          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89154          "in": "query",
89155          "name": "watch",
89156          "type": "boolean",
89157          "uniqueItems": true
89158        }
89159      ]
89160    },
89161    "/apis/rbac.authorization.k8s.io/v1/roles": {
89162      "get": {
89163        "consumes": [
89164          "*/*"
89165        ],
89166        "description": "list or watch objects of kind Role",
89167        "operationId": "listRbacAuthorizationV1RoleForAllNamespaces",
89168        "produces": [
89169          "application/json",
89170          "application/yaml",
89171          "application/vnd.kubernetes.protobuf",
89172          "application/json;stream=watch",
89173          "application/vnd.kubernetes.protobuf;stream=watch"
89174        ],
89175        "responses": {
89176          "200": {
89177            "description": "OK",
89178            "schema": {
89179              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
89180            }
89181          },
89182          "401": {
89183            "description": "Unauthorized"
89184          }
89185        },
89186        "schemes": [
89187          "https"
89188        ],
89189        "tags": [
89190          "rbacAuthorization_v1"
89191        ],
89192        "x-kubernetes-action": "list",
89193        "x-kubernetes-group-version-kind": {
89194          "group": "rbac.authorization.k8s.io",
89195          "kind": "Role",
89196          "version": "v1"
89197        }
89198      },
89199      "parameters": [
89200        {
89201          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89202          "in": "query",
89203          "name": "allowWatchBookmarks",
89204          "type": "boolean",
89205          "uniqueItems": true
89206        },
89207        {
89208          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89209          "in": "query",
89210          "name": "continue",
89211          "type": "string",
89212          "uniqueItems": true
89213        },
89214        {
89215          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89216          "in": "query",
89217          "name": "fieldSelector",
89218          "type": "string",
89219          "uniqueItems": true
89220        },
89221        {
89222          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89223          "in": "query",
89224          "name": "labelSelector",
89225          "type": "string",
89226          "uniqueItems": true
89227        },
89228        {
89229          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89230          "in": "query",
89231          "name": "limit",
89232          "type": "integer",
89233          "uniqueItems": true
89234        },
89235        {
89236          "description": "If 'true', then the output is pretty printed.",
89237          "in": "query",
89238          "name": "pretty",
89239          "type": "string",
89240          "uniqueItems": true
89241        },
89242        {
89243          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89244          "in": "query",
89245          "name": "resourceVersion",
89246          "type": "string",
89247          "uniqueItems": true
89248        },
89249        {
89250          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89251          "in": "query",
89252          "name": "resourceVersionMatch",
89253          "type": "string",
89254          "uniqueItems": true
89255        },
89256        {
89257          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89258          "in": "query",
89259          "name": "timeoutSeconds",
89260          "type": "integer",
89261          "uniqueItems": true
89262        },
89263        {
89264          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89265          "in": "query",
89266          "name": "watch",
89267          "type": "boolean",
89268          "uniqueItems": true
89269        }
89270      ]
89271    },
89272    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": {
89273      "get": {
89274        "consumes": [
89275          "*/*"
89276        ],
89277        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
89278        "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList",
89279        "produces": [
89280          "application/json",
89281          "application/yaml",
89282          "application/vnd.kubernetes.protobuf",
89283          "application/json;stream=watch",
89284          "application/vnd.kubernetes.protobuf;stream=watch"
89285        ],
89286        "responses": {
89287          "200": {
89288            "description": "OK",
89289            "schema": {
89290              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89291            }
89292          },
89293          "401": {
89294            "description": "Unauthorized"
89295          }
89296        },
89297        "schemes": [
89298          "https"
89299        ],
89300        "tags": [
89301          "rbacAuthorization_v1"
89302        ],
89303        "x-kubernetes-action": "watchlist",
89304        "x-kubernetes-group-version-kind": {
89305          "group": "rbac.authorization.k8s.io",
89306          "kind": "ClusterRoleBinding",
89307          "version": "v1"
89308        }
89309      },
89310      "parameters": [
89311        {
89312          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89313          "in": "query",
89314          "name": "allowWatchBookmarks",
89315          "type": "boolean",
89316          "uniqueItems": true
89317        },
89318        {
89319          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89320          "in": "query",
89321          "name": "continue",
89322          "type": "string",
89323          "uniqueItems": true
89324        },
89325        {
89326          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89327          "in": "query",
89328          "name": "fieldSelector",
89329          "type": "string",
89330          "uniqueItems": true
89331        },
89332        {
89333          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89334          "in": "query",
89335          "name": "labelSelector",
89336          "type": "string",
89337          "uniqueItems": true
89338        },
89339        {
89340          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89341          "in": "query",
89342          "name": "limit",
89343          "type": "integer",
89344          "uniqueItems": true
89345        },
89346        {
89347          "description": "If 'true', then the output is pretty printed.",
89348          "in": "query",
89349          "name": "pretty",
89350          "type": "string",
89351          "uniqueItems": true
89352        },
89353        {
89354          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89355          "in": "query",
89356          "name": "resourceVersion",
89357          "type": "string",
89358          "uniqueItems": true
89359        },
89360        {
89361          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89362          "in": "query",
89363          "name": "resourceVersionMatch",
89364          "type": "string",
89365          "uniqueItems": true
89366        },
89367        {
89368          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89369          "in": "query",
89370          "name": "timeoutSeconds",
89371          "type": "integer",
89372          "uniqueItems": true
89373        },
89374        {
89375          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89376          "in": "query",
89377          "name": "watch",
89378          "type": "boolean",
89379          "uniqueItems": true
89380        }
89381      ]
89382    },
89383    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": {
89384      "get": {
89385        "consumes": [
89386          "*/*"
89387        ],
89388        "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.",
89389        "operationId": "watchRbacAuthorizationV1ClusterRoleBinding",
89390        "produces": [
89391          "application/json",
89392          "application/yaml",
89393          "application/vnd.kubernetes.protobuf",
89394          "application/json;stream=watch",
89395          "application/vnd.kubernetes.protobuf;stream=watch"
89396        ],
89397        "responses": {
89398          "200": {
89399            "description": "OK",
89400            "schema": {
89401              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89402            }
89403          },
89404          "401": {
89405            "description": "Unauthorized"
89406          }
89407        },
89408        "schemes": [
89409          "https"
89410        ],
89411        "tags": [
89412          "rbacAuthorization_v1"
89413        ],
89414        "x-kubernetes-action": "watch",
89415        "x-kubernetes-group-version-kind": {
89416          "group": "rbac.authorization.k8s.io",
89417          "kind": "ClusterRoleBinding",
89418          "version": "v1"
89419        }
89420      },
89421      "parameters": [
89422        {
89423          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89424          "in": "query",
89425          "name": "allowWatchBookmarks",
89426          "type": "boolean",
89427          "uniqueItems": true
89428        },
89429        {
89430          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89431          "in": "query",
89432          "name": "continue",
89433          "type": "string",
89434          "uniqueItems": true
89435        },
89436        {
89437          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89438          "in": "query",
89439          "name": "fieldSelector",
89440          "type": "string",
89441          "uniqueItems": true
89442        },
89443        {
89444          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89445          "in": "query",
89446          "name": "labelSelector",
89447          "type": "string",
89448          "uniqueItems": true
89449        },
89450        {
89451          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89452          "in": "query",
89453          "name": "limit",
89454          "type": "integer",
89455          "uniqueItems": true
89456        },
89457        {
89458          "description": "name of the ClusterRoleBinding",
89459          "in": "path",
89460          "name": "name",
89461          "required": true,
89462          "type": "string",
89463          "uniqueItems": true
89464        },
89465        {
89466          "description": "If 'true', then the output is pretty printed.",
89467          "in": "query",
89468          "name": "pretty",
89469          "type": "string",
89470          "uniqueItems": true
89471        },
89472        {
89473          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89474          "in": "query",
89475          "name": "resourceVersion",
89476          "type": "string",
89477          "uniqueItems": true
89478        },
89479        {
89480          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89481          "in": "query",
89482          "name": "resourceVersionMatch",
89483          "type": "string",
89484          "uniqueItems": true
89485        },
89486        {
89487          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89488          "in": "query",
89489          "name": "timeoutSeconds",
89490          "type": "integer",
89491          "uniqueItems": true
89492        },
89493        {
89494          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89495          "in": "query",
89496          "name": "watch",
89497          "type": "boolean",
89498          "uniqueItems": true
89499        }
89500      ]
89501    },
89502    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": {
89503      "get": {
89504        "consumes": [
89505          "*/*"
89506        ],
89507        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
89508        "operationId": "watchRbacAuthorizationV1ClusterRoleList",
89509        "produces": [
89510          "application/json",
89511          "application/yaml",
89512          "application/vnd.kubernetes.protobuf",
89513          "application/json;stream=watch",
89514          "application/vnd.kubernetes.protobuf;stream=watch"
89515        ],
89516        "responses": {
89517          "200": {
89518            "description": "OK",
89519            "schema": {
89520              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89521            }
89522          },
89523          "401": {
89524            "description": "Unauthorized"
89525          }
89526        },
89527        "schemes": [
89528          "https"
89529        ],
89530        "tags": [
89531          "rbacAuthorization_v1"
89532        ],
89533        "x-kubernetes-action": "watchlist",
89534        "x-kubernetes-group-version-kind": {
89535          "group": "rbac.authorization.k8s.io",
89536          "kind": "ClusterRole",
89537          "version": "v1"
89538        }
89539      },
89540      "parameters": [
89541        {
89542          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89543          "in": "query",
89544          "name": "allowWatchBookmarks",
89545          "type": "boolean",
89546          "uniqueItems": true
89547        },
89548        {
89549          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89550          "in": "query",
89551          "name": "continue",
89552          "type": "string",
89553          "uniqueItems": true
89554        },
89555        {
89556          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89557          "in": "query",
89558          "name": "fieldSelector",
89559          "type": "string",
89560          "uniqueItems": true
89561        },
89562        {
89563          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89564          "in": "query",
89565          "name": "labelSelector",
89566          "type": "string",
89567          "uniqueItems": true
89568        },
89569        {
89570          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89571          "in": "query",
89572          "name": "limit",
89573          "type": "integer",
89574          "uniqueItems": true
89575        },
89576        {
89577          "description": "If 'true', then the output is pretty printed.",
89578          "in": "query",
89579          "name": "pretty",
89580          "type": "string",
89581          "uniqueItems": true
89582        },
89583        {
89584          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89585          "in": "query",
89586          "name": "resourceVersion",
89587          "type": "string",
89588          "uniqueItems": true
89589        },
89590        {
89591          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89592          "in": "query",
89593          "name": "resourceVersionMatch",
89594          "type": "string",
89595          "uniqueItems": true
89596        },
89597        {
89598          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89599          "in": "query",
89600          "name": "timeoutSeconds",
89601          "type": "integer",
89602          "uniqueItems": true
89603        },
89604        {
89605          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89606          "in": "query",
89607          "name": "watch",
89608          "type": "boolean",
89609          "uniqueItems": true
89610        }
89611      ]
89612    },
89613    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": {
89614      "get": {
89615        "consumes": [
89616          "*/*"
89617        ],
89618        "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.",
89619        "operationId": "watchRbacAuthorizationV1ClusterRole",
89620        "produces": [
89621          "application/json",
89622          "application/yaml",
89623          "application/vnd.kubernetes.protobuf",
89624          "application/json;stream=watch",
89625          "application/vnd.kubernetes.protobuf;stream=watch"
89626        ],
89627        "responses": {
89628          "200": {
89629            "description": "OK",
89630            "schema": {
89631              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89632            }
89633          },
89634          "401": {
89635            "description": "Unauthorized"
89636          }
89637        },
89638        "schemes": [
89639          "https"
89640        ],
89641        "tags": [
89642          "rbacAuthorization_v1"
89643        ],
89644        "x-kubernetes-action": "watch",
89645        "x-kubernetes-group-version-kind": {
89646          "group": "rbac.authorization.k8s.io",
89647          "kind": "ClusterRole",
89648          "version": "v1"
89649        }
89650      },
89651      "parameters": [
89652        {
89653          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89654          "in": "query",
89655          "name": "allowWatchBookmarks",
89656          "type": "boolean",
89657          "uniqueItems": true
89658        },
89659        {
89660          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89661          "in": "query",
89662          "name": "continue",
89663          "type": "string",
89664          "uniqueItems": true
89665        },
89666        {
89667          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89668          "in": "query",
89669          "name": "fieldSelector",
89670          "type": "string",
89671          "uniqueItems": true
89672        },
89673        {
89674          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89675          "in": "query",
89676          "name": "labelSelector",
89677          "type": "string",
89678          "uniqueItems": true
89679        },
89680        {
89681          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89682          "in": "query",
89683          "name": "limit",
89684          "type": "integer",
89685          "uniqueItems": true
89686        },
89687        {
89688          "description": "name of the ClusterRole",
89689          "in": "path",
89690          "name": "name",
89691          "required": true,
89692          "type": "string",
89693          "uniqueItems": true
89694        },
89695        {
89696          "description": "If 'true', then the output is pretty printed.",
89697          "in": "query",
89698          "name": "pretty",
89699          "type": "string",
89700          "uniqueItems": true
89701        },
89702        {
89703          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89704          "in": "query",
89705          "name": "resourceVersion",
89706          "type": "string",
89707          "uniqueItems": true
89708        },
89709        {
89710          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89711          "in": "query",
89712          "name": "resourceVersionMatch",
89713          "type": "string",
89714          "uniqueItems": true
89715        },
89716        {
89717          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89718          "in": "query",
89719          "name": "timeoutSeconds",
89720          "type": "integer",
89721          "uniqueItems": true
89722        },
89723        {
89724          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89725          "in": "query",
89726          "name": "watch",
89727          "type": "boolean",
89728          "uniqueItems": true
89729        }
89730      ]
89731    },
89732    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": {
89733      "get": {
89734        "consumes": [
89735          "*/*"
89736        ],
89737        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
89738        "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList",
89739        "produces": [
89740          "application/json",
89741          "application/yaml",
89742          "application/vnd.kubernetes.protobuf",
89743          "application/json;stream=watch",
89744          "application/vnd.kubernetes.protobuf;stream=watch"
89745        ],
89746        "responses": {
89747          "200": {
89748            "description": "OK",
89749            "schema": {
89750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89751            }
89752          },
89753          "401": {
89754            "description": "Unauthorized"
89755          }
89756        },
89757        "schemes": [
89758          "https"
89759        ],
89760        "tags": [
89761          "rbacAuthorization_v1"
89762        ],
89763        "x-kubernetes-action": "watchlist",
89764        "x-kubernetes-group-version-kind": {
89765          "group": "rbac.authorization.k8s.io",
89766          "kind": "RoleBinding",
89767          "version": "v1"
89768        }
89769      },
89770      "parameters": [
89771        {
89772          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89773          "in": "query",
89774          "name": "allowWatchBookmarks",
89775          "type": "boolean",
89776          "uniqueItems": true
89777        },
89778        {
89779          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89780          "in": "query",
89781          "name": "continue",
89782          "type": "string",
89783          "uniqueItems": true
89784        },
89785        {
89786          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89787          "in": "query",
89788          "name": "fieldSelector",
89789          "type": "string",
89790          "uniqueItems": true
89791        },
89792        {
89793          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89794          "in": "query",
89795          "name": "labelSelector",
89796          "type": "string",
89797          "uniqueItems": true
89798        },
89799        {
89800          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89801          "in": "query",
89802          "name": "limit",
89803          "type": "integer",
89804          "uniqueItems": true
89805        },
89806        {
89807          "description": "object name and auth scope, such as for teams and projects",
89808          "in": "path",
89809          "name": "namespace",
89810          "required": true,
89811          "type": "string",
89812          "uniqueItems": true
89813        },
89814        {
89815          "description": "If 'true', then the output is pretty printed.",
89816          "in": "query",
89817          "name": "pretty",
89818          "type": "string",
89819          "uniqueItems": true
89820        },
89821        {
89822          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89823          "in": "query",
89824          "name": "resourceVersion",
89825          "type": "string",
89826          "uniqueItems": true
89827        },
89828        {
89829          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89830          "in": "query",
89831          "name": "resourceVersionMatch",
89832          "type": "string",
89833          "uniqueItems": true
89834        },
89835        {
89836          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89837          "in": "query",
89838          "name": "timeoutSeconds",
89839          "type": "integer",
89840          "uniqueItems": true
89841        },
89842        {
89843          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89844          "in": "query",
89845          "name": "watch",
89846          "type": "boolean",
89847          "uniqueItems": true
89848        }
89849      ]
89850    },
89851    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": {
89852      "get": {
89853        "consumes": [
89854          "*/*"
89855        ],
89856        "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.",
89857        "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding",
89858        "produces": [
89859          "application/json",
89860          "application/yaml",
89861          "application/vnd.kubernetes.protobuf",
89862          "application/json;stream=watch",
89863          "application/vnd.kubernetes.protobuf;stream=watch"
89864        ],
89865        "responses": {
89866          "200": {
89867            "description": "OK",
89868            "schema": {
89869              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89870            }
89871          },
89872          "401": {
89873            "description": "Unauthorized"
89874          }
89875        },
89876        "schemes": [
89877          "https"
89878        ],
89879        "tags": [
89880          "rbacAuthorization_v1"
89881        ],
89882        "x-kubernetes-action": "watch",
89883        "x-kubernetes-group-version-kind": {
89884          "group": "rbac.authorization.k8s.io",
89885          "kind": "RoleBinding",
89886          "version": "v1"
89887        }
89888      },
89889      "parameters": [
89890        {
89891          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
89892          "in": "query",
89893          "name": "allowWatchBookmarks",
89894          "type": "boolean",
89895          "uniqueItems": true
89896        },
89897        {
89898          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89899          "in": "query",
89900          "name": "continue",
89901          "type": "string",
89902          "uniqueItems": true
89903        },
89904        {
89905          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89906          "in": "query",
89907          "name": "fieldSelector",
89908          "type": "string",
89909          "uniqueItems": true
89910        },
89911        {
89912          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89913          "in": "query",
89914          "name": "labelSelector",
89915          "type": "string",
89916          "uniqueItems": true
89917        },
89918        {
89919          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89920          "in": "query",
89921          "name": "limit",
89922          "type": "integer",
89923          "uniqueItems": true
89924        },
89925        {
89926          "description": "name of the RoleBinding",
89927          "in": "path",
89928          "name": "name",
89929          "required": true,
89930          "type": "string",
89931          "uniqueItems": true
89932        },
89933        {
89934          "description": "object name and auth scope, such as for teams and projects",
89935          "in": "path",
89936          "name": "namespace",
89937          "required": true,
89938          "type": "string",
89939          "uniqueItems": true
89940        },
89941        {
89942          "description": "If 'true', then the output is pretty printed.",
89943          "in": "query",
89944          "name": "pretty",
89945          "type": "string",
89946          "uniqueItems": true
89947        },
89948        {
89949          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89950          "in": "query",
89951          "name": "resourceVersion",
89952          "type": "string",
89953          "uniqueItems": true
89954        },
89955        {
89956          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89957          "in": "query",
89958          "name": "resourceVersionMatch",
89959          "type": "string",
89960          "uniqueItems": true
89961        },
89962        {
89963          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89964          "in": "query",
89965          "name": "timeoutSeconds",
89966          "type": "integer",
89967          "uniqueItems": true
89968        },
89969        {
89970          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89971          "in": "query",
89972          "name": "watch",
89973          "type": "boolean",
89974          "uniqueItems": true
89975        }
89976      ]
89977    },
89978    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": {
89979      "get": {
89980        "consumes": [
89981          "*/*"
89982        ],
89983        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
89984        "operationId": "watchRbacAuthorizationV1NamespacedRoleList",
89985        "produces": [
89986          "application/json",
89987          "application/yaml",
89988          "application/vnd.kubernetes.protobuf",
89989          "application/json;stream=watch",
89990          "application/vnd.kubernetes.protobuf;stream=watch"
89991        ],
89992        "responses": {
89993          "200": {
89994            "description": "OK",
89995            "schema": {
89996              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89997            }
89998          },
89999          "401": {
90000            "description": "Unauthorized"
90001          }
90002        },
90003        "schemes": [
90004          "https"
90005        ],
90006        "tags": [
90007          "rbacAuthorization_v1"
90008        ],
90009        "x-kubernetes-action": "watchlist",
90010        "x-kubernetes-group-version-kind": {
90011          "group": "rbac.authorization.k8s.io",
90012          "kind": "Role",
90013          "version": "v1"
90014        }
90015      },
90016      "parameters": [
90017        {
90018          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90019          "in": "query",
90020          "name": "allowWatchBookmarks",
90021          "type": "boolean",
90022          "uniqueItems": true
90023        },
90024        {
90025          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90026          "in": "query",
90027          "name": "continue",
90028          "type": "string",
90029          "uniqueItems": true
90030        },
90031        {
90032          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90033          "in": "query",
90034          "name": "fieldSelector",
90035          "type": "string",
90036          "uniqueItems": true
90037        },
90038        {
90039          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90040          "in": "query",
90041          "name": "labelSelector",
90042          "type": "string",
90043          "uniqueItems": true
90044        },
90045        {
90046          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90047          "in": "query",
90048          "name": "limit",
90049          "type": "integer",
90050          "uniqueItems": true
90051        },
90052        {
90053          "description": "object name and auth scope, such as for teams and projects",
90054          "in": "path",
90055          "name": "namespace",
90056          "required": true,
90057          "type": "string",
90058          "uniqueItems": true
90059        },
90060        {
90061          "description": "If 'true', then the output is pretty printed.",
90062          "in": "query",
90063          "name": "pretty",
90064          "type": "string",
90065          "uniqueItems": true
90066        },
90067        {
90068          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90069          "in": "query",
90070          "name": "resourceVersion",
90071          "type": "string",
90072          "uniqueItems": true
90073        },
90074        {
90075          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90076          "in": "query",
90077          "name": "resourceVersionMatch",
90078          "type": "string",
90079          "uniqueItems": true
90080        },
90081        {
90082          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90083          "in": "query",
90084          "name": "timeoutSeconds",
90085          "type": "integer",
90086          "uniqueItems": true
90087        },
90088        {
90089          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90090          "in": "query",
90091          "name": "watch",
90092          "type": "boolean",
90093          "uniqueItems": true
90094        }
90095      ]
90096    },
90097    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": {
90098      "get": {
90099        "consumes": [
90100          "*/*"
90101        ],
90102        "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.",
90103        "operationId": "watchRbacAuthorizationV1NamespacedRole",
90104        "produces": [
90105          "application/json",
90106          "application/yaml",
90107          "application/vnd.kubernetes.protobuf",
90108          "application/json;stream=watch",
90109          "application/vnd.kubernetes.protobuf;stream=watch"
90110        ],
90111        "responses": {
90112          "200": {
90113            "description": "OK",
90114            "schema": {
90115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90116            }
90117          },
90118          "401": {
90119            "description": "Unauthorized"
90120          }
90121        },
90122        "schemes": [
90123          "https"
90124        ],
90125        "tags": [
90126          "rbacAuthorization_v1"
90127        ],
90128        "x-kubernetes-action": "watch",
90129        "x-kubernetes-group-version-kind": {
90130          "group": "rbac.authorization.k8s.io",
90131          "kind": "Role",
90132          "version": "v1"
90133        }
90134      },
90135      "parameters": [
90136        {
90137          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90138          "in": "query",
90139          "name": "allowWatchBookmarks",
90140          "type": "boolean",
90141          "uniqueItems": true
90142        },
90143        {
90144          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90145          "in": "query",
90146          "name": "continue",
90147          "type": "string",
90148          "uniqueItems": true
90149        },
90150        {
90151          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90152          "in": "query",
90153          "name": "fieldSelector",
90154          "type": "string",
90155          "uniqueItems": true
90156        },
90157        {
90158          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90159          "in": "query",
90160          "name": "labelSelector",
90161          "type": "string",
90162          "uniqueItems": true
90163        },
90164        {
90165          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90166          "in": "query",
90167          "name": "limit",
90168          "type": "integer",
90169          "uniqueItems": true
90170        },
90171        {
90172          "description": "name of the Role",
90173          "in": "path",
90174          "name": "name",
90175          "required": true,
90176          "type": "string",
90177          "uniqueItems": true
90178        },
90179        {
90180          "description": "object name and auth scope, such as for teams and projects",
90181          "in": "path",
90182          "name": "namespace",
90183          "required": true,
90184          "type": "string",
90185          "uniqueItems": true
90186        },
90187        {
90188          "description": "If 'true', then the output is pretty printed.",
90189          "in": "query",
90190          "name": "pretty",
90191          "type": "string",
90192          "uniqueItems": true
90193        },
90194        {
90195          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90196          "in": "query",
90197          "name": "resourceVersion",
90198          "type": "string",
90199          "uniqueItems": true
90200        },
90201        {
90202          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90203          "in": "query",
90204          "name": "resourceVersionMatch",
90205          "type": "string",
90206          "uniqueItems": true
90207        },
90208        {
90209          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90210          "in": "query",
90211          "name": "timeoutSeconds",
90212          "type": "integer",
90213          "uniqueItems": true
90214        },
90215        {
90216          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90217          "in": "query",
90218          "name": "watch",
90219          "type": "boolean",
90220          "uniqueItems": true
90221        }
90222      ]
90223    },
90224    "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": {
90225      "get": {
90226        "consumes": [
90227          "*/*"
90228        ],
90229        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
90230        "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces",
90231        "produces": [
90232          "application/json",
90233          "application/yaml",
90234          "application/vnd.kubernetes.protobuf",
90235          "application/json;stream=watch",
90236          "application/vnd.kubernetes.protobuf;stream=watch"
90237        ],
90238        "responses": {
90239          "200": {
90240            "description": "OK",
90241            "schema": {
90242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90243            }
90244          },
90245          "401": {
90246            "description": "Unauthorized"
90247          }
90248        },
90249        "schemes": [
90250          "https"
90251        ],
90252        "tags": [
90253          "rbacAuthorization_v1"
90254        ],
90255        "x-kubernetes-action": "watchlist",
90256        "x-kubernetes-group-version-kind": {
90257          "group": "rbac.authorization.k8s.io",
90258          "kind": "RoleBinding",
90259          "version": "v1"
90260        }
90261      },
90262      "parameters": [
90263        {
90264          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90265          "in": "query",
90266          "name": "allowWatchBookmarks",
90267          "type": "boolean",
90268          "uniqueItems": true
90269        },
90270        {
90271          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90272          "in": "query",
90273          "name": "continue",
90274          "type": "string",
90275          "uniqueItems": true
90276        },
90277        {
90278          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90279          "in": "query",
90280          "name": "fieldSelector",
90281          "type": "string",
90282          "uniqueItems": true
90283        },
90284        {
90285          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90286          "in": "query",
90287          "name": "labelSelector",
90288          "type": "string",
90289          "uniqueItems": true
90290        },
90291        {
90292          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90293          "in": "query",
90294          "name": "limit",
90295          "type": "integer",
90296          "uniqueItems": true
90297        },
90298        {
90299          "description": "If 'true', then the output is pretty printed.",
90300          "in": "query",
90301          "name": "pretty",
90302          "type": "string",
90303          "uniqueItems": true
90304        },
90305        {
90306          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90307          "in": "query",
90308          "name": "resourceVersion",
90309          "type": "string",
90310          "uniqueItems": true
90311        },
90312        {
90313          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90314          "in": "query",
90315          "name": "resourceVersionMatch",
90316          "type": "string",
90317          "uniqueItems": true
90318        },
90319        {
90320          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90321          "in": "query",
90322          "name": "timeoutSeconds",
90323          "type": "integer",
90324          "uniqueItems": true
90325        },
90326        {
90327          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90328          "in": "query",
90329          "name": "watch",
90330          "type": "boolean",
90331          "uniqueItems": true
90332        }
90333      ]
90334    },
90335    "/apis/rbac.authorization.k8s.io/v1/watch/roles": {
90336      "get": {
90337        "consumes": [
90338          "*/*"
90339        ],
90340        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
90341        "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces",
90342        "produces": [
90343          "application/json",
90344          "application/yaml",
90345          "application/vnd.kubernetes.protobuf",
90346          "application/json;stream=watch",
90347          "application/vnd.kubernetes.protobuf;stream=watch"
90348        ],
90349        "responses": {
90350          "200": {
90351            "description": "OK",
90352            "schema": {
90353              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90354            }
90355          },
90356          "401": {
90357            "description": "Unauthorized"
90358          }
90359        },
90360        "schemes": [
90361          "https"
90362        ],
90363        "tags": [
90364          "rbacAuthorization_v1"
90365        ],
90366        "x-kubernetes-action": "watchlist",
90367        "x-kubernetes-group-version-kind": {
90368          "group": "rbac.authorization.k8s.io",
90369          "kind": "Role",
90370          "version": "v1"
90371        }
90372      },
90373      "parameters": [
90374        {
90375          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90376          "in": "query",
90377          "name": "allowWatchBookmarks",
90378          "type": "boolean",
90379          "uniqueItems": true
90380        },
90381        {
90382          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90383          "in": "query",
90384          "name": "continue",
90385          "type": "string",
90386          "uniqueItems": true
90387        },
90388        {
90389          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90390          "in": "query",
90391          "name": "fieldSelector",
90392          "type": "string",
90393          "uniqueItems": true
90394        },
90395        {
90396          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90397          "in": "query",
90398          "name": "labelSelector",
90399          "type": "string",
90400          "uniqueItems": true
90401        },
90402        {
90403          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90404          "in": "query",
90405          "name": "limit",
90406          "type": "integer",
90407          "uniqueItems": true
90408        },
90409        {
90410          "description": "If 'true', then the output is pretty printed.",
90411          "in": "query",
90412          "name": "pretty",
90413          "type": "string",
90414          "uniqueItems": true
90415        },
90416        {
90417          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90418          "in": "query",
90419          "name": "resourceVersion",
90420          "type": "string",
90421          "uniqueItems": true
90422        },
90423        {
90424          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90425          "in": "query",
90426          "name": "resourceVersionMatch",
90427          "type": "string",
90428          "uniqueItems": true
90429        },
90430        {
90431          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90432          "in": "query",
90433          "name": "timeoutSeconds",
90434          "type": "integer",
90435          "uniqueItems": true
90436        },
90437        {
90438          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90439          "in": "query",
90440          "name": "watch",
90441          "type": "boolean",
90442          "uniqueItems": true
90443        }
90444      ]
90445    },
90446    "/apis/rbac.authorization.k8s.io/v1alpha1/": {
90447      "get": {
90448        "consumes": [
90449          "application/json",
90450          "application/yaml",
90451          "application/vnd.kubernetes.protobuf"
90452        ],
90453        "description": "get available resources",
90454        "operationId": "getRbacAuthorizationV1alpha1APIResources",
90455        "produces": [
90456          "application/json",
90457          "application/yaml",
90458          "application/vnd.kubernetes.protobuf"
90459        ],
90460        "responses": {
90461          "200": {
90462            "description": "OK",
90463            "schema": {
90464              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
90465            }
90466          },
90467          "401": {
90468            "description": "Unauthorized"
90469          }
90470        },
90471        "schemes": [
90472          "https"
90473        ],
90474        "tags": [
90475          "rbacAuthorization_v1alpha1"
90476        ]
90477      }
90478    },
90479    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings": {
90480      "delete": {
90481        "consumes": [
90482          "*/*"
90483        ],
90484        "description": "delete collection of ClusterRoleBinding",
90485        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding",
90486        "parameters": [
90487          {
90488            "in": "body",
90489            "name": "body",
90490            "schema": {
90491              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90492            }
90493          },
90494          {
90495            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90496            "in": "query",
90497            "name": "continue",
90498            "type": "string",
90499            "uniqueItems": true
90500          },
90501          {
90502            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90503            "in": "query",
90504            "name": "dryRun",
90505            "type": "string",
90506            "uniqueItems": true
90507          },
90508          {
90509            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90510            "in": "query",
90511            "name": "fieldSelector",
90512            "type": "string",
90513            "uniqueItems": true
90514          },
90515          {
90516            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
90517            "in": "query",
90518            "name": "gracePeriodSeconds",
90519            "type": "integer",
90520            "uniqueItems": true
90521          },
90522          {
90523            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90524            "in": "query",
90525            "name": "labelSelector",
90526            "type": "string",
90527            "uniqueItems": true
90528          },
90529          {
90530            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90531            "in": "query",
90532            "name": "limit",
90533            "type": "integer",
90534            "uniqueItems": true
90535          },
90536          {
90537            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
90538            "in": "query",
90539            "name": "orphanDependents",
90540            "type": "boolean",
90541            "uniqueItems": true
90542          },
90543          {
90544            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
90545            "in": "query",
90546            "name": "propagationPolicy",
90547            "type": "string",
90548            "uniqueItems": true
90549          },
90550          {
90551            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90552            "in": "query",
90553            "name": "resourceVersion",
90554            "type": "string",
90555            "uniqueItems": true
90556          },
90557          {
90558            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90559            "in": "query",
90560            "name": "resourceVersionMatch",
90561            "type": "string",
90562            "uniqueItems": true
90563          },
90564          {
90565            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90566            "in": "query",
90567            "name": "timeoutSeconds",
90568            "type": "integer",
90569            "uniqueItems": true
90570          }
90571        ],
90572        "produces": [
90573          "application/json",
90574          "application/yaml",
90575          "application/vnd.kubernetes.protobuf"
90576        ],
90577        "responses": {
90578          "200": {
90579            "description": "OK",
90580            "schema": {
90581              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90582            }
90583          },
90584          "401": {
90585            "description": "Unauthorized"
90586          }
90587        },
90588        "schemes": [
90589          "https"
90590        ],
90591        "tags": [
90592          "rbacAuthorization_v1alpha1"
90593        ],
90594        "x-kubernetes-action": "deletecollection",
90595        "x-kubernetes-group-version-kind": {
90596          "group": "rbac.authorization.k8s.io",
90597          "kind": "ClusterRoleBinding",
90598          "version": "v1alpha1"
90599        }
90600      },
90601      "get": {
90602        "consumes": [
90603          "*/*"
90604        ],
90605        "description": "list or watch objects of kind ClusterRoleBinding",
90606        "operationId": "listRbacAuthorizationV1alpha1ClusterRoleBinding",
90607        "parameters": [
90608          {
90609            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
90610            "in": "query",
90611            "name": "allowWatchBookmarks",
90612            "type": "boolean",
90613            "uniqueItems": true
90614          },
90615          {
90616            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90617            "in": "query",
90618            "name": "continue",
90619            "type": "string",
90620            "uniqueItems": true
90621          },
90622          {
90623            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90624            "in": "query",
90625            "name": "fieldSelector",
90626            "type": "string",
90627            "uniqueItems": true
90628          },
90629          {
90630            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90631            "in": "query",
90632            "name": "labelSelector",
90633            "type": "string",
90634            "uniqueItems": true
90635          },
90636          {
90637            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90638            "in": "query",
90639            "name": "limit",
90640            "type": "integer",
90641            "uniqueItems": true
90642          },
90643          {
90644            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90645            "in": "query",
90646            "name": "resourceVersion",
90647            "type": "string",
90648            "uniqueItems": true
90649          },
90650          {
90651            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90652            "in": "query",
90653            "name": "resourceVersionMatch",
90654            "type": "string",
90655            "uniqueItems": true
90656          },
90657          {
90658            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90659            "in": "query",
90660            "name": "timeoutSeconds",
90661            "type": "integer",
90662            "uniqueItems": true
90663          },
90664          {
90665            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90666            "in": "query",
90667            "name": "watch",
90668            "type": "boolean",
90669            "uniqueItems": true
90670          }
90671        ],
90672        "produces": [
90673          "application/json",
90674          "application/yaml",
90675          "application/vnd.kubernetes.protobuf",
90676          "application/json;stream=watch",
90677          "application/vnd.kubernetes.protobuf;stream=watch"
90678        ],
90679        "responses": {
90680          "200": {
90681            "description": "OK",
90682            "schema": {
90683              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList"
90684            }
90685          },
90686          "401": {
90687            "description": "Unauthorized"
90688          }
90689        },
90690        "schemes": [
90691          "https"
90692        ],
90693        "tags": [
90694          "rbacAuthorization_v1alpha1"
90695        ],
90696        "x-kubernetes-action": "list",
90697        "x-kubernetes-group-version-kind": {
90698          "group": "rbac.authorization.k8s.io",
90699          "kind": "ClusterRoleBinding",
90700          "version": "v1alpha1"
90701        }
90702      },
90703      "parameters": [
90704        {
90705          "description": "If 'true', then the output is pretty printed.",
90706          "in": "query",
90707          "name": "pretty",
90708          "type": "string",
90709          "uniqueItems": true
90710        }
90711      ],
90712      "post": {
90713        "consumes": [
90714          "*/*"
90715        ],
90716        "description": "create a ClusterRoleBinding",
90717        "operationId": "createRbacAuthorizationV1alpha1ClusterRoleBinding",
90718        "parameters": [
90719          {
90720            "in": "body",
90721            "name": "body",
90722            "required": true,
90723            "schema": {
90724              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90725            }
90726          },
90727          {
90728            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90729            "in": "query",
90730            "name": "dryRun",
90731            "type": "string",
90732            "uniqueItems": true
90733          },
90734          {
90735            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90736            "in": "query",
90737            "name": "fieldManager",
90738            "type": "string",
90739            "uniqueItems": true
90740          }
90741        ],
90742        "produces": [
90743          "application/json",
90744          "application/yaml",
90745          "application/vnd.kubernetes.protobuf"
90746        ],
90747        "responses": {
90748          "200": {
90749            "description": "OK",
90750            "schema": {
90751              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90752            }
90753          },
90754          "201": {
90755            "description": "Created",
90756            "schema": {
90757              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90758            }
90759          },
90760          "202": {
90761            "description": "Accepted",
90762            "schema": {
90763              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90764            }
90765          },
90766          "401": {
90767            "description": "Unauthorized"
90768          }
90769        },
90770        "schemes": [
90771          "https"
90772        ],
90773        "tags": [
90774          "rbacAuthorization_v1alpha1"
90775        ],
90776        "x-kubernetes-action": "post",
90777        "x-kubernetes-group-version-kind": {
90778          "group": "rbac.authorization.k8s.io",
90779          "kind": "ClusterRoleBinding",
90780          "version": "v1alpha1"
90781        }
90782      }
90783    },
90784    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": {
90785      "delete": {
90786        "consumes": [
90787          "*/*"
90788        ],
90789        "description": "delete a ClusterRoleBinding",
90790        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRoleBinding",
90791        "parameters": [
90792          {
90793            "in": "body",
90794            "name": "body",
90795            "schema": {
90796              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90797            }
90798          },
90799          {
90800            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90801            "in": "query",
90802            "name": "dryRun",
90803            "type": "string",
90804            "uniqueItems": true
90805          },
90806          {
90807            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
90808            "in": "query",
90809            "name": "gracePeriodSeconds",
90810            "type": "integer",
90811            "uniqueItems": true
90812          },
90813          {
90814            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
90815            "in": "query",
90816            "name": "orphanDependents",
90817            "type": "boolean",
90818            "uniqueItems": true
90819          },
90820          {
90821            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
90822            "in": "query",
90823            "name": "propagationPolicy",
90824            "type": "string",
90825            "uniqueItems": true
90826          }
90827        ],
90828        "produces": [
90829          "application/json",
90830          "application/yaml",
90831          "application/vnd.kubernetes.protobuf"
90832        ],
90833        "responses": {
90834          "200": {
90835            "description": "OK",
90836            "schema": {
90837              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90838            }
90839          },
90840          "202": {
90841            "description": "Accepted",
90842            "schema": {
90843              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90844            }
90845          },
90846          "401": {
90847            "description": "Unauthorized"
90848          }
90849        },
90850        "schemes": [
90851          "https"
90852        ],
90853        "tags": [
90854          "rbacAuthorization_v1alpha1"
90855        ],
90856        "x-kubernetes-action": "delete",
90857        "x-kubernetes-group-version-kind": {
90858          "group": "rbac.authorization.k8s.io",
90859          "kind": "ClusterRoleBinding",
90860          "version": "v1alpha1"
90861        }
90862      },
90863      "get": {
90864        "consumes": [
90865          "*/*"
90866        ],
90867        "description": "read the specified ClusterRoleBinding",
90868        "operationId": "readRbacAuthorizationV1alpha1ClusterRoleBinding",
90869        "produces": [
90870          "application/json",
90871          "application/yaml",
90872          "application/vnd.kubernetes.protobuf"
90873        ],
90874        "responses": {
90875          "200": {
90876            "description": "OK",
90877            "schema": {
90878              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90879            }
90880          },
90881          "401": {
90882            "description": "Unauthorized"
90883          }
90884        },
90885        "schemes": [
90886          "https"
90887        ],
90888        "tags": [
90889          "rbacAuthorization_v1alpha1"
90890        ],
90891        "x-kubernetes-action": "get",
90892        "x-kubernetes-group-version-kind": {
90893          "group": "rbac.authorization.k8s.io",
90894          "kind": "ClusterRoleBinding",
90895          "version": "v1alpha1"
90896        }
90897      },
90898      "parameters": [
90899        {
90900          "description": "name of the ClusterRoleBinding",
90901          "in": "path",
90902          "name": "name",
90903          "required": true,
90904          "type": "string",
90905          "uniqueItems": true
90906        },
90907        {
90908          "description": "If 'true', then the output is pretty printed.",
90909          "in": "query",
90910          "name": "pretty",
90911          "type": "string",
90912          "uniqueItems": true
90913        }
90914      ],
90915      "patch": {
90916        "consumes": [
90917          "application/json-patch+json",
90918          "application/merge-patch+json",
90919          "application/strategic-merge-patch+json",
90920          "application/apply-patch+yaml"
90921        ],
90922        "description": "partially update the specified ClusterRoleBinding",
90923        "operationId": "patchRbacAuthorizationV1alpha1ClusterRoleBinding",
90924        "parameters": [
90925          {
90926            "in": "body",
90927            "name": "body",
90928            "required": true,
90929            "schema": {
90930              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
90931            }
90932          },
90933          {
90934            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90935            "in": "query",
90936            "name": "dryRun",
90937            "type": "string",
90938            "uniqueItems": true
90939          },
90940          {
90941            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
90942            "in": "query",
90943            "name": "fieldManager",
90944            "type": "string",
90945            "uniqueItems": true
90946          },
90947          {
90948            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
90949            "in": "query",
90950            "name": "force",
90951            "type": "boolean",
90952            "uniqueItems": true
90953          }
90954        ],
90955        "produces": [
90956          "application/json",
90957          "application/yaml",
90958          "application/vnd.kubernetes.protobuf"
90959        ],
90960        "responses": {
90961          "200": {
90962            "description": "OK",
90963            "schema": {
90964              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90965            }
90966          },
90967          "401": {
90968            "description": "Unauthorized"
90969          }
90970        },
90971        "schemes": [
90972          "https"
90973        ],
90974        "tags": [
90975          "rbacAuthorization_v1alpha1"
90976        ],
90977        "x-kubernetes-action": "patch",
90978        "x-kubernetes-group-version-kind": {
90979          "group": "rbac.authorization.k8s.io",
90980          "kind": "ClusterRoleBinding",
90981          "version": "v1alpha1"
90982        }
90983      },
90984      "put": {
90985        "consumes": [
90986          "*/*"
90987        ],
90988        "description": "replace the specified ClusterRoleBinding",
90989        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRoleBinding",
90990        "parameters": [
90991          {
90992            "in": "body",
90993            "name": "body",
90994            "required": true,
90995            "schema": {
90996              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
90997            }
90998          },
90999          {
91000            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91001            "in": "query",
91002            "name": "dryRun",
91003            "type": "string",
91004            "uniqueItems": true
91005          },
91006          {
91007            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91008            "in": "query",
91009            "name": "fieldManager",
91010            "type": "string",
91011            "uniqueItems": true
91012          }
91013        ],
91014        "produces": [
91015          "application/json",
91016          "application/yaml",
91017          "application/vnd.kubernetes.protobuf"
91018        ],
91019        "responses": {
91020          "200": {
91021            "description": "OK",
91022            "schema": {
91023              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
91024            }
91025          },
91026          "201": {
91027            "description": "Created",
91028            "schema": {
91029              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
91030            }
91031          },
91032          "401": {
91033            "description": "Unauthorized"
91034          }
91035        },
91036        "schemes": [
91037          "https"
91038        ],
91039        "tags": [
91040          "rbacAuthorization_v1alpha1"
91041        ],
91042        "x-kubernetes-action": "put",
91043        "x-kubernetes-group-version-kind": {
91044          "group": "rbac.authorization.k8s.io",
91045          "kind": "ClusterRoleBinding",
91046          "version": "v1alpha1"
91047        }
91048      }
91049    },
91050    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles": {
91051      "delete": {
91052        "consumes": [
91053          "*/*"
91054        ],
91055        "description": "delete collection of ClusterRole",
91056        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRole",
91057        "parameters": [
91058          {
91059            "in": "body",
91060            "name": "body",
91061            "schema": {
91062              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91063            }
91064          },
91065          {
91066            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91067            "in": "query",
91068            "name": "continue",
91069            "type": "string",
91070            "uniqueItems": true
91071          },
91072          {
91073            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91074            "in": "query",
91075            "name": "dryRun",
91076            "type": "string",
91077            "uniqueItems": true
91078          },
91079          {
91080            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91081            "in": "query",
91082            "name": "fieldSelector",
91083            "type": "string",
91084            "uniqueItems": true
91085          },
91086          {
91087            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91088            "in": "query",
91089            "name": "gracePeriodSeconds",
91090            "type": "integer",
91091            "uniqueItems": true
91092          },
91093          {
91094            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91095            "in": "query",
91096            "name": "labelSelector",
91097            "type": "string",
91098            "uniqueItems": true
91099          },
91100          {
91101            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91102            "in": "query",
91103            "name": "limit",
91104            "type": "integer",
91105            "uniqueItems": true
91106          },
91107          {
91108            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91109            "in": "query",
91110            "name": "orphanDependents",
91111            "type": "boolean",
91112            "uniqueItems": true
91113          },
91114          {
91115            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91116            "in": "query",
91117            "name": "propagationPolicy",
91118            "type": "string",
91119            "uniqueItems": true
91120          },
91121          {
91122            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91123            "in": "query",
91124            "name": "resourceVersion",
91125            "type": "string",
91126            "uniqueItems": true
91127          },
91128          {
91129            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91130            "in": "query",
91131            "name": "resourceVersionMatch",
91132            "type": "string",
91133            "uniqueItems": true
91134          },
91135          {
91136            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91137            "in": "query",
91138            "name": "timeoutSeconds",
91139            "type": "integer",
91140            "uniqueItems": true
91141          }
91142        ],
91143        "produces": [
91144          "application/json",
91145          "application/yaml",
91146          "application/vnd.kubernetes.protobuf"
91147        ],
91148        "responses": {
91149          "200": {
91150            "description": "OK",
91151            "schema": {
91152              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91153            }
91154          },
91155          "401": {
91156            "description": "Unauthorized"
91157          }
91158        },
91159        "schemes": [
91160          "https"
91161        ],
91162        "tags": [
91163          "rbacAuthorization_v1alpha1"
91164        ],
91165        "x-kubernetes-action": "deletecollection",
91166        "x-kubernetes-group-version-kind": {
91167          "group": "rbac.authorization.k8s.io",
91168          "kind": "ClusterRole",
91169          "version": "v1alpha1"
91170        }
91171      },
91172      "get": {
91173        "consumes": [
91174          "*/*"
91175        ],
91176        "description": "list or watch objects of kind ClusterRole",
91177        "operationId": "listRbacAuthorizationV1alpha1ClusterRole",
91178        "parameters": [
91179          {
91180            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
91181            "in": "query",
91182            "name": "allowWatchBookmarks",
91183            "type": "boolean",
91184            "uniqueItems": true
91185          },
91186          {
91187            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91188            "in": "query",
91189            "name": "continue",
91190            "type": "string",
91191            "uniqueItems": true
91192          },
91193          {
91194            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91195            "in": "query",
91196            "name": "fieldSelector",
91197            "type": "string",
91198            "uniqueItems": true
91199          },
91200          {
91201            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91202            "in": "query",
91203            "name": "labelSelector",
91204            "type": "string",
91205            "uniqueItems": true
91206          },
91207          {
91208            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91209            "in": "query",
91210            "name": "limit",
91211            "type": "integer",
91212            "uniqueItems": true
91213          },
91214          {
91215            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91216            "in": "query",
91217            "name": "resourceVersion",
91218            "type": "string",
91219            "uniqueItems": true
91220          },
91221          {
91222            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91223            "in": "query",
91224            "name": "resourceVersionMatch",
91225            "type": "string",
91226            "uniqueItems": true
91227          },
91228          {
91229            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91230            "in": "query",
91231            "name": "timeoutSeconds",
91232            "type": "integer",
91233            "uniqueItems": true
91234          },
91235          {
91236            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91237            "in": "query",
91238            "name": "watch",
91239            "type": "boolean",
91240            "uniqueItems": true
91241          }
91242        ],
91243        "produces": [
91244          "application/json",
91245          "application/yaml",
91246          "application/vnd.kubernetes.protobuf",
91247          "application/json;stream=watch",
91248          "application/vnd.kubernetes.protobuf;stream=watch"
91249        ],
91250        "responses": {
91251          "200": {
91252            "description": "OK",
91253            "schema": {
91254              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList"
91255            }
91256          },
91257          "401": {
91258            "description": "Unauthorized"
91259          }
91260        },
91261        "schemes": [
91262          "https"
91263        ],
91264        "tags": [
91265          "rbacAuthorization_v1alpha1"
91266        ],
91267        "x-kubernetes-action": "list",
91268        "x-kubernetes-group-version-kind": {
91269          "group": "rbac.authorization.k8s.io",
91270          "kind": "ClusterRole",
91271          "version": "v1alpha1"
91272        }
91273      },
91274      "parameters": [
91275        {
91276          "description": "If 'true', then the output is pretty printed.",
91277          "in": "query",
91278          "name": "pretty",
91279          "type": "string",
91280          "uniqueItems": true
91281        }
91282      ],
91283      "post": {
91284        "consumes": [
91285          "*/*"
91286        ],
91287        "description": "create a ClusterRole",
91288        "operationId": "createRbacAuthorizationV1alpha1ClusterRole",
91289        "parameters": [
91290          {
91291            "in": "body",
91292            "name": "body",
91293            "required": true,
91294            "schema": {
91295              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91296            }
91297          },
91298          {
91299            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91300            "in": "query",
91301            "name": "dryRun",
91302            "type": "string",
91303            "uniqueItems": true
91304          },
91305          {
91306            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91307            "in": "query",
91308            "name": "fieldManager",
91309            "type": "string",
91310            "uniqueItems": true
91311          }
91312        ],
91313        "produces": [
91314          "application/json",
91315          "application/yaml",
91316          "application/vnd.kubernetes.protobuf"
91317        ],
91318        "responses": {
91319          "200": {
91320            "description": "OK",
91321            "schema": {
91322              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91323            }
91324          },
91325          "201": {
91326            "description": "Created",
91327            "schema": {
91328              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91329            }
91330          },
91331          "202": {
91332            "description": "Accepted",
91333            "schema": {
91334              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91335            }
91336          },
91337          "401": {
91338            "description": "Unauthorized"
91339          }
91340        },
91341        "schemes": [
91342          "https"
91343        ],
91344        "tags": [
91345          "rbacAuthorization_v1alpha1"
91346        ],
91347        "x-kubernetes-action": "post",
91348        "x-kubernetes-group-version-kind": {
91349          "group": "rbac.authorization.k8s.io",
91350          "kind": "ClusterRole",
91351          "version": "v1alpha1"
91352        }
91353      }
91354    },
91355    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": {
91356      "delete": {
91357        "consumes": [
91358          "*/*"
91359        ],
91360        "description": "delete a ClusterRole",
91361        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRole",
91362        "parameters": [
91363          {
91364            "in": "body",
91365            "name": "body",
91366            "schema": {
91367              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91368            }
91369          },
91370          {
91371            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91372            "in": "query",
91373            "name": "dryRun",
91374            "type": "string",
91375            "uniqueItems": true
91376          },
91377          {
91378            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91379            "in": "query",
91380            "name": "gracePeriodSeconds",
91381            "type": "integer",
91382            "uniqueItems": true
91383          },
91384          {
91385            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91386            "in": "query",
91387            "name": "orphanDependents",
91388            "type": "boolean",
91389            "uniqueItems": true
91390          },
91391          {
91392            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91393            "in": "query",
91394            "name": "propagationPolicy",
91395            "type": "string",
91396            "uniqueItems": true
91397          }
91398        ],
91399        "produces": [
91400          "application/json",
91401          "application/yaml",
91402          "application/vnd.kubernetes.protobuf"
91403        ],
91404        "responses": {
91405          "200": {
91406            "description": "OK",
91407            "schema": {
91408              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91409            }
91410          },
91411          "202": {
91412            "description": "Accepted",
91413            "schema": {
91414              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91415            }
91416          },
91417          "401": {
91418            "description": "Unauthorized"
91419          }
91420        },
91421        "schemes": [
91422          "https"
91423        ],
91424        "tags": [
91425          "rbacAuthorization_v1alpha1"
91426        ],
91427        "x-kubernetes-action": "delete",
91428        "x-kubernetes-group-version-kind": {
91429          "group": "rbac.authorization.k8s.io",
91430          "kind": "ClusterRole",
91431          "version": "v1alpha1"
91432        }
91433      },
91434      "get": {
91435        "consumes": [
91436          "*/*"
91437        ],
91438        "description": "read the specified ClusterRole",
91439        "operationId": "readRbacAuthorizationV1alpha1ClusterRole",
91440        "produces": [
91441          "application/json",
91442          "application/yaml",
91443          "application/vnd.kubernetes.protobuf"
91444        ],
91445        "responses": {
91446          "200": {
91447            "description": "OK",
91448            "schema": {
91449              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91450            }
91451          },
91452          "401": {
91453            "description": "Unauthorized"
91454          }
91455        },
91456        "schemes": [
91457          "https"
91458        ],
91459        "tags": [
91460          "rbacAuthorization_v1alpha1"
91461        ],
91462        "x-kubernetes-action": "get",
91463        "x-kubernetes-group-version-kind": {
91464          "group": "rbac.authorization.k8s.io",
91465          "kind": "ClusterRole",
91466          "version": "v1alpha1"
91467        }
91468      },
91469      "parameters": [
91470        {
91471          "description": "name of the ClusterRole",
91472          "in": "path",
91473          "name": "name",
91474          "required": true,
91475          "type": "string",
91476          "uniqueItems": true
91477        },
91478        {
91479          "description": "If 'true', then the output is pretty printed.",
91480          "in": "query",
91481          "name": "pretty",
91482          "type": "string",
91483          "uniqueItems": true
91484        }
91485      ],
91486      "patch": {
91487        "consumes": [
91488          "application/json-patch+json",
91489          "application/merge-patch+json",
91490          "application/strategic-merge-patch+json",
91491          "application/apply-patch+yaml"
91492        ],
91493        "description": "partially update the specified ClusterRole",
91494        "operationId": "patchRbacAuthorizationV1alpha1ClusterRole",
91495        "parameters": [
91496          {
91497            "in": "body",
91498            "name": "body",
91499            "required": true,
91500            "schema": {
91501              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
91502            }
91503          },
91504          {
91505            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91506            "in": "query",
91507            "name": "dryRun",
91508            "type": "string",
91509            "uniqueItems": true
91510          },
91511          {
91512            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
91513            "in": "query",
91514            "name": "fieldManager",
91515            "type": "string",
91516            "uniqueItems": true
91517          },
91518          {
91519            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
91520            "in": "query",
91521            "name": "force",
91522            "type": "boolean",
91523            "uniqueItems": true
91524          }
91525        ],
91526        "produces": [
91527          "application/json",
91528          "application/yaml",
91529          "application/vnd.kubernetes.protobuf"
91530        ],
91531        "responses": {
91532          "200": {
91533            "description": "OK",
91534            "schema": {
91535              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91536            }
91537          },
91538          "401": {
91539            "description": "Unauthorized"
91540          }
91541        },
91542        "schemes": [
91543          "https"
91544        ],
91545        "tags": [
91546          "rbacAuthorization_v1alpha1"
91547        ],
91548        "x-kubernetes-action": "patch",
91549        "x-kubernetes-group-version-kind": {
91550          "group": "rbac.authorization.k8s.io",
91551          "kind": "ClusterRole",
91552          "version": "v1alpha1"
91553        }
91554      },
91555      "put": {
91556        "consumes": [
91557          "*/*"
91558        ],
91559        "description": "replace the specified ClusterRole",
91560        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRole",
91561        "parameters": [
91562          {
91563            "in": "body",
91564            "name": "body",
91565            "required": true,
91566            "schema": {
91567              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91568            }
91569          },
91570          {
91571            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91572            "in": "query",
91573            "name": "dryRun",
91574            "type": "string",
91575            "uniqueItems": true
91576          },
91577          {
91578            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91579            "in": "query",
91580            "name": "fieldManager",
91581            "type": "string",
91582            "uniqueItems": true
91583          }
91584        ],
91585        "produces": [
91586          "application/json",
91587          "application/yaml",
91588          "application/vnd.kubernetes.protobuf"
91589        ],
91590        "responses": {
91591          "200": {
91592            "description": "OK",
91593            "schema": {
91594              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91595            }
91596          },
91597          "201": {
91598            "description": "Created",
91599            "schema": {
91600              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
91601            }
91602          },
91603          "401": {
91604            "description": "Unauthorized"
91605          }
91606        },
91607        "schemes": [
91608          "https"
91609        ],
91610        "tags": [
91611          "rbacAuthorization_v1alpha1"
91612        ],
91613        "x-kubernetes-action": "put",
91614        "x-kubernetes-group-version-kind": {
91615          "group": "rbac.authorization.k8s.io",
91616          "kind": "ClusterRole",
91617          "version": "v1alpha1"
91618        }
91619      }
91620    },
91621    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": {
91622      "delete": {
91623        "consumes": [
91624          "*/*"
91625        ],
91626        "description": "delete collection of RoleBinding",
91627        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding",
91628        "parameters": [
91629          {
91630            "in": "body",
91631            "name": "body",
91632            "schema": {
91633              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91634            }
91635          },
91636          {
91637            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91638            "in": "query",
91639            "name": "continue",
91640            "type": "string",
91641            "uniqueItems": true
91642          },
91643          {
91644            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91645            "in": "query",
91646            "name": "dryRun",
91647            "type": "string",
91648            "uniqueItems": true
91649          },
91650          {
91651            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91652            "in": "query",
91653            "name": "fieldSelector",
91654            "type": "string",
91655            "uniqueItems": true
91656          },
91657          {
91658            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91659            "in": "query",
91660            "name": "gracePeriodSeconds",
91661            "type": "integer",
91662            "uniqueItems": true
91663          },
91664          {
91665            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91666            "in": "query",
91667            "name": "labelSelector",
91668            "type": "string",
91669            "uniqueItems": true
91670          },
91671          {
91672            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91673            "in": "query",
91674            "name": "limit",
91675            "type": "integer",
91676            "uniqueItems": true
91677          },
91678          {
91679            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91680            "in": "query",
91681            "name": "orphanDependents",
91682            "type": "boolean",
91683            "uniqueItems": true
91684          },
91685          {
91686            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91687            "in": "query",
91688            "name": "propagationPolicy",
91689            "type": "string",
91690            "uniqueItems": true
91691          },
91692          {
91693            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91694            "in": "query",
91695            "name": "resourceVersion",
91696            "type": "string",
91697            "uniqueItems": true
91698          },
91699          {
91700            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91701            "in": "query",
91702            "name": "resourceVersionMatch",
91703            "type": "string",
91704            "uniqueItems": true
91705          },
91706          {
91707            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91708            "in": "query",
91709            "name": "timeoutSeconds",
91710            "type": "integer",
91711            "uniqueItems": true
91712          }
91713        ],
91714        "produces": [
91715          "application/json",
91716          "application/yaml",
91717          "application/vnd.kubernetes.protobuf"
91718        ],
91719        "responses": {
91720          "200": {
91721            "description": "OK",
91722            "schema": {
91723              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91724            }
91725          },
91726          "401": {
91727            "description": "Unauthorized"
91728          }
91729        },
91730        "schemes": [
91731          "https"
91732        ],
91733        "tags": [
91734          "rbacAuthorization_v1alpha1"
91735        ],
91736        "x-kubernetes-action": "deletecollection",
91737        "x-kubernetes-group-version-kind": {
91738          "group": "rbac.authorization.k8s.io",
91739          "kind": "RoleBinding",
91740          "version": "v1alpha1"
91741        }
91742      },
91743      "get": {
91744        "consumes": [
91745          "*/*"
91746        ],
91747        "description": "list or watch objects of kind RoleBinding",
91748        "operationId": "listRbacAuthorizationV1alpha1NamespacedRoleBinding",
91749        "parameters": [
91750          {
91751            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
91752            "in": "query",
91753            "name": "allowWatchBookmarks",
91754            "type": "boolean",
91755            "uniqueItems": true
91756          },
91757          {
91758            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91759            "in": "query",
91760            "name": "continue",
91761            "type": "string",
91762            "uniqueItems": true
91763          },
91764          {
91765            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91766            "in": "query",
91767            "name": "fieldSelector",
91768            "type": "string",
91769            "uniqueItems": true
91770          },
91771          {
91772            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91773            "in": "query",
91774            "name": "labelSelector",
91775            "type": "string",
91776            "uniqueItems": true
91777          },
91778          {
91779            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91780            "in": "query",
91781            "name": "limit",
91782            "type": "integer",
91783            "uniqueItems": true
91784          },
91785          {
91786            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91787            "in": "query",
91788            "name": "resourceVersion",
91789            "type": "string",
91790            "uniqueItems": true
91791          },
91792          {
91793            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
91794            "in": "query",
91795            "name": "resourceVersionMatch",
91796            "type": "string",
91797            "uniqueItems": true
91798          },
91799          {
91800            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91801            "in": "query",
91802            "name": "timeoutSeconds",
91803            "type": "integer",
91804            "uniqueItems": true
91805          },
91806          {
91807            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91808            "in": "query",
91809            "name": "watch",
91810            "type": "boolean",
91811            "uniqueItems": true
91812          }
91813        ],
91814        "produces": [
91815          "application/json",
91816          "application/yaml",
91817          "application/vnd.kubernetes.protobuf",
91818          "application/json;stream=watch",
91819          "application/vnd.kubernetes.protobuf;stream=watch"
91820        ],
91821        "responses": {
91822          "200": {
91823            "description": "OK",
91824            "schema": {
91825              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
91826            }
91827          },
91828          "401": {
91829            "description": "Unauthorized"
91830          }
91831        },
91832        "schemes": [
91833          "https"
91834        ],
91835        "tags": [
91836          "rbacAuthorization_v1alpha1"
91837        ],
91838        "x-kubernetes-action": "list",
91839        "x-kubernetes-group-version-kind": {
91840          "group": "rbac.authorization.k8s.io",
91841          "kind": "RoleBinding",
91842          "version": "v1alpha1"
91843        }
91844      },
91845      "parameters": [
91846        {
91847          "description": "object name and auth scope, such as for teams and projects",
91848          "in": "path",
91849          "name": "namespace",
91850          "required": true,
91851          "type": "string",
91852          "uniqueItems": true
91853        },
91854        {
91855          "description": "If 'true', then the output is pretty printed.",
91856          "in": "query",
91857          "name": "pretty",
91858          "type": "string",
91859          "uniqueItems": true
91860        }
91861      ],
91862      "post": {
91863        "consumes": [
91864          "*/*"
91865        ],
91866        "description": "create a RoleBinding",
91867        "operationId": "createRbacAuthorizationV1alpha1NamespacedRoleBinding",
91868        "parameters": [
91869          {
91870            "in": "body",
91871            "name": "body",
91872            "required": true,
91873            "schema": {
91874              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91875            }
91876          },
91877          {
91878            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91879            "in": "query",
91880            "name": "dryRun",
91881            "type": "string",
91882            "uniqueItems": true
91883          },
91884          {
91885            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91886            "in": "query",
91887            "name": "fieldManager",
91888            "type": "string",
91889            "uniqueItems": true
91890          }
91891        ],
91892        "produces": [
91893          "application/json",
91894          "application/yaml",
91895          "application/vnd.kubernetes.protobuf"
91896        ],
91897        "responses": {
91898          "200": {
91899            "description": "OK",
91900            "schema": {
91901              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91902            }
91903          },
91904          "201": {
91905            "description": "Created",
91906            "schema": {
91907              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91908            }
91909          },
91910          "202": {
91911            "description": "Accepted",
91912            "schema": {
91913              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
91914            }
91915          },
91916          "401": {
91917            "description": "Unauthorized"
91918          }
91919        },
91920        "schemes": [
91921          "https"
91922        ],
91923        "tags": [
91924          "rbacAuthorization_v1alpha1"
91925        ],
91926        "x-kubernetes-action": "post",
91927        "x-kubernetes-group-version-kind": {
91928          "group": "rbac.authorization.k8s.io",
91929          "kind": "RoleBinding",
91930          "version": "v1alpha1"
91931        }
91932      }
91933    },
91934    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": {
91935      "delete": {
91936        "consumes": [
91937          "*/*"
91938        ],
91939        "description": "delete a RoleBinding",
91940        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRoleBinding",
91941        "parameters": [
91942          {
91943            "in": "body",
91944            "name": "body",
91945            "schema": {
91946              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91947            }
91948          },
91949          {
91950            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91951            "in": "query",
91952            "name": "dryRun",
91953            "type": "string",
91954            "uniqueItems": true
91955          },
91956          {
91957            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
91958            "in": "query",
91959            "name": "gracePeriodSeconds",
91960            "type": "integer",
91961            "uniqueItems": true
91962          },
91963          {
91964            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
91965            "in": "query",
91966            "name": "orphanDependents",
91967            "type": "boolean",
91968            "uniqueItems": true
91969          },
91970          {
91971            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
91972            "in": "query",
91973            "name": "propagationPolicy",
91974            "type": "string",
91975            "uniqueItems": true
91976          }
91977        ],
91978        "produces": [
91979          "application/json",
91980          "application/yaml",
91981          "application/vnd.kubernetes.protobuf"
91982        ],
91983        "responses": {
91984          "200": {
91985            "description": "OK",
91986            "schema": {
91987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91988            }
91989          },
91990          "202": {
91991            "description": "Accepted",
91992            "schema": {
91993              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91994            }
91995          },
91996          "401": {
91997            "description": "Unauthorized"
91998          }
91999        },
92000        "schemes": [
92001          "https"
92002        ],
92003        "tags": [
92004          "rbacAuthorization_v1alpha1"
92005        ],
92006        "x-kubernetes-action": "delete",
92007        "x-kubernetes-group-version-kind": {
92008          "group": "rbac.authorization.k8s.io",
92009          "kind": "RoleBinding",
92010          "version": "v1alpha1"
92011        }
92012      },
92013      "get": {
92014        "consumes": [
92015          "*/*"
92016        ],
92017        "description": "read the specified RoleBinding",
92018        "operationId": "readRbacAuthorizationV1alpha1NamespacedRoleBinding",
92019        "produces": [
92020          "application/json",
92021          "application/yaml",
92022          "application/vnd.kubernetes.protobuf"
92023        ],
92024        "responses": {
92025          "200": {
92026            "description": "OK",
92027            "schema": {
92028              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92029            }
92030          },
92031          "401": {
92032            "description": "Unauthorized"
92033          }
92034        },
92035        "schemes": [
92036          "https"
92037        ],
92038        "tags": [
92039          "rbacAuthorization_v1alpha1"
92040        ],
92041        "x-kubernetes-action": "get",
92042        "x-kubernetes-group-version-kind": {
92043          "group": "rbac.authorization.k8s.io",
92044          "kind": "RoleBinding",
92045          "version": "v1alpha1"
92046        }
92047      },
92048      "parameters": [
92049        {
92050          "description": "name of the RoleBinding",
92051          "in": "path",
92052          "name": "name",
92053          "required": true,
92054          "type": "string",
92055          "uniqueItems": true
92056        },
92057        {
92058          "description": "object name and auth scope, such as for teams and projects",
92059          "in": "path",
92060          "name": "namespace",
92061          "required": true,
92062          "type": "string",
92063          "uniqueItems": true
92064        },
92065        {
92066          "description": "If 'true', then the output is pretty printed.",
92067          "in": "query",
92068          "name": "pretty",
92069          "type": "string",
92070          "uniqueItems": true
92071        }
92072      ],
92073      "patch": {
92074        "consumes": [
92075          "application/json-patch+json",
92076          "application/merge-patch+json",
92077          "application/strategic-merge-patch+json",
92078          "application/apply-patch+yaml"
92079        ],
92080        "description": "partially update the specified RoleBinding",
92081        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRoleBinding",
92082        "parameters": [
92083          {
92084            "in": "body",
92085            "name": "body",
92086            "required": true,
92087            "schema": {
92088              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
92089            }
92090          },
92091          {
92092            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92093            "in": "query",
92094            "name": "dryRun",
92095            "type": "string",
92096            "uniqueItems": true
92097          },
92098          {
92099            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
92100            "in": "query",
92101            "name": "fieldManager",
92102            "type": "string",
92103            "uniqueItems": true
92104          },
92105          {
92106            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
92107            "in": "query",
92108            "name": "force",
92109            "type": "boolean",
92110            "uniqueItems": true
92111          }
92112        ],
92113        "produces": [
92114          "application/json",
92115          "application/yaml",
92116          "application/vnd.kubernetes.protobuf"
92117        ],
92118        "responses": {
92119          "200": {
92120            "description": "OK",
92121            "schema": {
92122              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92123            }
92124          },
92125          "401": {
92126            "description": "Unauthorized"
92127          }
92128        },
92129        "schemes": [
92130          "https"
92131        ],
92132        "tags": [
92133          "rbacAuthorization_v1alpha1"
92134        ],
92135        "x-kubernetes-action": "patch",
92136        "x-kubernetes-group-version-kind": {
92137          "group": "rbac.authorization.k8s.io",
92138          "kind": "RoleBinding",
92139          "version": "v1alpha1"
92140        }
92141      },
92142      "put": {
92143        "consumes": [
92144          "*/*"
92145        ],
92146        "description": "replace the specified RoleBinding",
92147        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRoleBinding",
92148        "parameters": [
92149          {
92150            "in": "body",
92151            "name": "body",
92152            "required": true,
92153            "schema": {
92154              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92155            }
92156          },
92157          {
92158            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92159            "in": "query",
92160            "name": "dryRun",
92161            "type": "string",
92162            "uniqueItems": true
92163          },
92164          {
92165            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92166            "in": "query",
92167            "name": "fieldManager",
92168            "type": "string",
92169            "uniqueItems": true
92170          }
92171        ],
92172        "produces": [
92173          "application/json",
92174          "application/yaml",
92175          "application/vnd.kubernetes.protobuf"
92176        ],
92177        "responses": {
92178          "200": {
92179            "description": "OK",
92180            "schema": {
92181              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92182            }
92183          },
92184          "201": {
92185            "description": "Created",
92186            "schema": {
92187              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
92188            }
92189          },
92190          "401": {
92191            "description": "Unauthorized"
92192          }
92193        },
92194        "schemes": [
92195          "https"
92196        ],
92197        "tags": [
92198          "rbacAuthorization_v1alpha1"
92199        ],
92200        "x-kubernetes-action": "put",
92201        "x-kubernetes-group-version-kind": {
92202          "group": "rbac.authorization.k8s.io",
92203          "kind": "RoleBinding",
92204          "version": "v1alpha1"
92205        }
92206      }
92207    },
92208    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": {
92209      "delete": {
92210        "consumes": [
92211          "*/*"
92212        ],
92213        "description": "delete collection of Role",
92214        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRole",
92215        "parameters": [
92216          {
92217            "in": "body",
92218            "name": "body",
92219            "schema": {
92220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
92221            }
92222          },
92223          {
92224            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92225            "in": "query",
92226            "name": "continue",
92227            "type": "string",
92228            "uniqueItems": true
92229          },
92230          {
92231            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92232            "in": "query",
92233            "name": "dryRun",
92234            "type": "string",
92235            "uniqueItems": true
92236          },
92237          {
92238            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92239            "in": "query",
92240            "name": "fieldSelector",
92241            "type": "string",
92242            "uniqueItems": true
92243          },
92244          {
92245            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
92246            "in": "query",
92247            "name": "gracePeriodSeconds",
92248            "type": "integer",
92249            "uniqueItems": true
92250          },
92251          {
92252            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92253            "in": "query",
92254            "name": "labelSelector",
92255            "type": "string",
92256            "uniqueItems": true
92257          },
92258          {
92259            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92260            "in": "query",
92261            "name": "limit",
92262            "type": "integer",
92263            "uniqueItems": true
92264          },
92265          {
92266            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
92267            "in": "query",
92268            "name": "orphanDependents",
92269            "type": "boolean",
92270            "uniqueItems": true
92271          },
92272          {
92273            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
92274            "in": "query",
92275            "name": "propagationPolicy",
92276            "type": "string",
92277            "uniqueItems": true
92278          },
92279          {
92280            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92281            "in": "query",
92282            "name": "resourceVersion",
92283            "type": "string",
92284            "uniqueItems": true
92285          },
92286          {
92287            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92288            "in": "query",
92289            "name": "resourceVersionMatch",
92290            "type": "string",
92291            "uniqueItems": true
92292          },
92293          {
92294            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92295            "in": "query",
92296            "name": "timeoutSeconds",
92297            "type": "integer",
92298            "uniqueItems": true
92299          }
92300        ],
92301        "produces": [
92302          "application/json",
92303          "application/yaml",
92304          "application/vnd.kubernetes.protobuf"
92305        ],
92306        "responses": {
92307          "200": {
92308            "description": "OK",
92309            "schema": {
92310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92311            }
92312          },
92313          "401": {
92314            "description": "Unauthorized"
92315          }
92316        },
92317        "schemes": [
92318          "https"
92319        ],
92320        "tags": [
92321          "rbacAuthorization_v1alpha1"
92322        ],
92323        "x-kubernetes-action": "deletecollection",
92324        "x-kubernetes-group-version-kind": {
92325          "group": "rbac.authorization.k8s.io",
92326          "kind": "Role",
92327          "version": "v1alpha1"
92328        }
92329      },
92330      "get": {
92331        "consumes": [
92332          "*/*"
92333        ],
92334        "description": "list or watch objects of kind Role",
92335        "operationId": "listRbacAuthorizationV1alpha1NamespacedRole",
92336        "parameters": [
92337          {
92338            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92339            "in": "query",
92340            "name": "allowWatchBookmarks",
92341            "type": "boolean",
92342            "uniqueItems": true
92343          },
92344          {
92345            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92346            "in": "query",
92347            "name": "continue",
92348            "type": "string",
92349            "uniqueItems": true
92350          },
92351          {
92352            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92353            "in": "query",
92354            "name": "fieldSelector",
92355            "type": "string",
92356            "uniqueItems": true
92357          },
92358          {
92359            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92360            "in": "query",
92361            "name": "labelSelector",
92362            "type": "string",
92363            "uniqueItems": true
92364          },
92365          {
92366            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92367            "in": "query",
92368            "name": "limit",
92369            "type": "integer",
92370            "uniqueItems": true
92371          },
92372          {
92373            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92374            "in": "query",
92375            "name": "resourceVersion",
92376            "type": "string",
92377            "uniqueItems": true
92378          },
92379          {
92380            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92381            "in": "query",
92382            "name": "resourceVersionMatch",
92383            "type": "string",
92384            "uniqueItems": true
92385          },
92386          {
92387            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92388            "in": "query",
92389            "name": "timeoutSeconds",
92390            "type": "integer",
92391            "uniqueItems": true
92392          },
92393          {
92394            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92395            "in": "query",
92396            "name": "watch",
92397            "type": "boolean",
92398            "uniqueItems": true
92399          }
92400        ],
92401        "produces": [
92402          "application/json",
92403          "application/yaml",
92404          "application/vnd.kubernetes.protobuf",
92405          "application/json;stream=watch",
92406          "application/vnd.kubernetes.protobuf;stream=watch"
92407        ],
92408        "responses": {
92409          "200": {
92410            "description": "OK",
92411            "schema": {
92412              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
92413            }
92414          },
92415          "401": {
92416            "description": "Unauthorized"
92417          }
92418        },
92419        "schemes": [
92420          "https"
92421        ],
92422        "tags": [
92423          "rbacAuthorization_v1alpha1"
92424        ],
92425        "x-kubernetes-action": "list",
92426        "x-kubernetes-group-version-kind": {
92427          "group": "rbac.authorization.k8s.io",
92428          "kind": "Role",
92429          "version": "v1alpha1"
92430        }
92431      },
92432      "parameters": [
92433        {
92434          "description": "object name and auth scope, such as for teams and projects",
92435          "in": "path",
92436          "name": "namespace",
92437          "required": true,
92438          "type": "string",
92439          "uniqueItems": true
92440        },
92441        {
92442          "description": "If 'true', then the output is pretty printed.",
92443          "in": "query",
92444          "name": "pretty",
92445          "type": "string",
92446          "uniqueItems": true
92447        }
92448      ],
92449      "post": {
92450        "consumes": [
92451          "*/*"
92452        ],
92453        "description": "create a Role",
92454        "operationId": "createRbacAuthorizationV1alpha1NamespacedRole",
92455        "parameters": [
92456          {
92457            "in": "body",
92458            "name": "body",
92459            "required": true,
92460            "schema": {
92461              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92462            }
92463          },
92464          {
92465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92466            "in": "query",
92467            "name": "dryRun",
92468            "type": "string",
92469            "uniqueItems": true
92470          },
92471          {
92472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92473            "in": "query",
92474            "name": "fieldManager",
92475            "type": "string",
92476            "uniqueItems": true
92477          }
92478        ],
92479        "produces": [
92480          "application/json",
92481          "application/yaml",
92482          "application/vnd.kubernetes.protobuf"
92483        ],
92484        "responses": {
92485          "200": {
92486            "description": "OK",
92487            "schema": {
92488              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92489            }
92490          },
92491          "201": {
92492            "description": "Created",
92493            "schema": {
92494              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92495            }
92496          },
92497          "202": {
92498            "description": "Accepted",
92499            "schema": {
92500              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92501            }
92502          },
92503          "401": {
92504            "description": "Unauthorized"
92505          }
92506        },
92507        "schemes": [
92508          "https"
92509        ],
92510        "tags": [
92511          "rbacAuthorization_v1alpha1"
92512        ],
92513        "x-kubernetes-action": "post",
92514        "x-kubernetes-group-version-kind": {
92515          "group": "rbac.authorization.k8s.io",
92516          "kind": "Role",
92517          "version": "v1alpha1"
92518        }
92519      }
92520    },
92521    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": {
92522      "delete": {
92523        "consumes": [
92524          "*/*"
92525        ],
92526        "description": "delete a Role",
92527        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRole",
92528        "parameters": [
92529          {
92530            "in": "body",
92531            "name": "body",
92532            "schema": {
92533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
92534            }
92535          },
92536          {
92537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92538            "in": "query",
92539            "name": "dryRun",
92540            "type": "string",
92541            "uniqueItems": true
92542          },
92543          {
92544            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
92545            "in": "query",
92546            "name": "gracePeriodSeconds",
92547            "type": "integer",
92548            "uniqueItems": true
92549          },
92550          {
92551            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
92552            "in": "query",
92553            "name": "orphanDependents",
92554            "type": "boolean",
92555            "uniqueItems": true
92556          },
92557          {
92558            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
92559            "in": "query",
92560            "name": "propagationPolicy",
92561            "type": "string",
92562            "uniqueItems": true
92563          }
92564        ],
92565        "produces": [
92566          "application/json",
92567          "application/yaml",
92568          "application/vnd.kubernetes.protobuf"
92569        ],
92570        "responses": {
92571          "200": {
92572            "description": "OK",
92573            "schema": {
92574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92575            }
92576          },
92577          "202": {
92578            "description": "Accepted",
92579            "schema": {
92580              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
92581            }
92582          },
92583          "401": {
92584            "description": "Unauthorized"
92585          }
92586        },
92587        "schemes": [
92588          "https"
92589        ],
92590        "tags": [
92591          "rbacAuthorization_v1alpha1"
92592        ],
92593        "x-kubernetes-action": "delete",
92594        "x-kubernetes-group-version-kind": {
92595          "group": "rbac.authorization.k8s.io",
92596          "kind": "Role",
92597          "version": "v1alpha1"
92598        }
92599      },
92600      "get": {
92601        "consumes": [
92602          "*/*"
92603        ],
92604        "description": "read the specified Role",
92605        "operationId": "readRbacAuthorizationV1alpha1NamespacedRole",
92606        "produces": [
92607          "application/json",
92608          "application/yaml",
92609          "application/vnd.kubernetes.protobuf"
92610        ],
92611        "responses": {
92612          "200": {
92613            "description": "OK",
92614            "schema": {
92615              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92616            }
92617          },
92618          "401": {
92619            "description": "Unauthorized"
92620          }
92621        },
92622        "schemes": [
92623          "https"
92624        ],
92625        "tags": [
92626          "rbacAuthorization_v1alpha1"
92627        ],
92628        "x-kubernetes-action": "get",
92629        "x-kubernetes-group-version-kind": {
92630          "group": "rbac.authorization.k8s.io",
92631          "kind": "Role",
92632          "version": "v1alpha1"
92633        }
92634      },
92635      "parameters": [
92636        {
92637          "description": "name of the Role",
92638          "in": "path",
92639          "name": "name",
92640          "required": true,
92641          "type": "string",
92642          "uniqueItems": true
92643        },
92644        {
92645          "description": "object name and auth scope, such as for teams and projects",
92646          "in": "path",
92647          "name": "namespace",
92648          "required": true,
92649          "type": "string",
92650          "uniqueItems": true
92651        },
92652        {
92653          "description": "If 'true', then the output is pretty printed.",
92654          "in": "query",
92655          "name": "pretty",
92656          "type": "string",
92657          "uniqueItems": true
92658        }
92659      ],
92660      "patch": {
92661        "consumes": [
92662          "application/json-patch+json",
92663          "application/merge-patch+json",
92664          "application/strategic-merge-patch+json",
92665          "application/apply-patch+yaml"
92666        ],
92667        "description": "partially update the specified Role",
92668        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRole",
92669        "parameters": [
92670          {
92671            "in": "body",
92672            "name": "body",
92673            "required": true,
92674            "schema": {
92675              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
92676            }
92677          },
92678          {
92679            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92680            "in": "query",
92681            "name": "dryRun",
92682            "type": "string",
92683            "uniqueItems": true
92684          },
92685          {
92686            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
92687            "in": "query",
92688            "name": "fieldManager",
92689            "type": "string",
92690            "uniqueItems": true
92691          },
92692          {
92693            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
92694            "in": "query",
92695            "name": "force",
92696            "type": "boolean",
92697            "uniqueItems": true
92698          }
92699        ],
92700        "produces": [
92701          "application/json",
92702          "application/yaml",
92703          "application/vnd.kubernetes.protobuf"
92704        ],
92705        "responses": {
92706          "200": {
92707            "description": "OK",
92708            "schema": {
92709              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92710            }
92711          },
92712          "401": {
92713            "description": "Unauthorized"
92714          }
92715        },
92716        "schemes": [
92717          "https"
92718        ],
92719        "tags": [
92720          "rbacAuthorization_v1alpha1"
92721        ],
92722        "x-kubernetes-action": "patch",
92723        "x-kubernetes-group-version-kind": {
92724          "group": "rbac.authorization.k8s.io",
92725          "kind": "Role",
92726          "version": "v1alpha1"
92727        }
92728      },
92729      "put": {
92730        "consumes": [
92731          "*/*"
92732        ],
92733        "description": "replace the specified Role",
92734        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRole",
92735        "parameters": [
92736          {
92737            "in": "body",
92738            "name": "body",
92739            "required": true,
92740            "schema": {
92741              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92742            }
92743          },
92744          {
92745            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92746            "in": "query",
92747            "name": "dryRun",
92748            "type": "string",
92749            "uniqueItems": true
92750          },
92751          {
92752            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92753            "in": "query",
92754            "name": "fieldManager",
92755            "type": "string",
92756            "uniqueItems": true
92757          }
92758        ],
92759        "produces": [
92760          "application/json",
92761          "application/yaml",
92762          "application/vnd.kubernetes.protobuf"
92763        ],
92764        "responses": {
92765          "200": {
92766            "description": "OK",
92767            "schema": {
92768              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92769            }
92770          },
92771          "201": {
92772            "description": "Created",
92773            "schema": {
92774              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
92775            }
92776          },
92777          "401": {
92778            "description": "Unauthorized"
92779          }
92780        },
92781        "schemes": [
92782          "https"
92783        ],
92784        "tags": [
92785          "rbacAuthorization_v1alpha1"
92786        ],
92787        "x-kubernetes-action": "put",
92788        "x-kubernetes-group-version-kind": {
92789          "group": "rbac.authorization.k8s.io",
92790          "kind": "Role",
92791          "version": "v1alpha1"
92792        }
92793      }
92794    },
92795    "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings": {
92796      "get": {
92797        "consumes": [
92798          "*/*"
92799        ],
92800        "description": "list or watch objects of kind RoleBinding",
92801        "operationId": "listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces",
92802        "produces": [
92803          "application/json",
92804          "application/yaml",
92805          "application/vnd.kubernetes.protobuf",
92806          "application/json;stream=watch",
92807          "application/vnd.kubernetes.protobuf;stream=watch"
92808        ],
92809        "responses": {
92810          "200": {
92811            "description": "OK",
92812            "schema": {
92813              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
92814            }
92815          },
92816          "401": {
92817            "description": "Unauthorized"
92818          }
92819        },
92820        "schemes": [
92821          "https"
92822        ],
92823        "tags": [
92824          "rbacAuthorization_v1alpha1"
92825        ],
92826        "x-kubernetes-action": "list",
92827        "x-kubernetes-group-version-kind": {
92828          "group": "rbac.authorization.k8s.io",
92829          "kind": "RoleBinding",
92830          "version": "v1alpha1"
92831        }
92832      },
92833      "parameters": [
92834        {
92835          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92836          "in": "query",
92837          "name": "allowWatchBookmarks",
92838          "type": "boolean",
92839          "uniqueItems": true
92840        },
92841        {
92842          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92843          "in": "query",
92844          "name": "continue",
92845          "type": "string",
92846          "uniqueItems": true
92847        },
92848        {
92849          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92850          "in": "query",
92851          "name": "fieldSelector",
92852          "type": "string",
92853          "uniqueItems": true
92854        },
92855        {
92856          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92857          "in": "query",
92858          "name": "labelSelector",
92859          "type": "string",
92860          "uniqueItems": true
92861        },
92862        {
92863          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92864          "in": "query",
92865          "name": "limit",
92866          "type": "integer",
92867          "uniqueItems": true
92868        },
92869        {
92870          "description": "If 'true', then the output is pretty printed.",
92871          "in": "query",
92872          "name": "pretty",
92873          "type": "string",
92874          "uniqueItems": true
92875        },
92876        {
92877          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92878          "in": "query",
92879          "name": "resourceVersion",
92880          "type": "string",
92881          "uniqueItems": true
92882        },
92883        {
92884          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92885          "in": "query",
92886          "name": "resourceVersionMatch",
92887          "type": "string",
92888          "uniqueItems": true
92889        },
92890        {
92891          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92892          "in": "query",
92893          "name": "timeoutSeconds",
92894          "type": "integer",
92895          "uniqueItems": true
92896        },
92897        {
92898          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92899          "in": "query",
92900          "name": "watch",
92901          "type": "boolean",
92902          "uniqueItems": true
92903        }
92904      ]
92905    },
92906    "/apis/rbac.authorization.k8s.io/v1alpha1/roles": {
92907      "get": {
92908        "consumes": [
92909          "*/*"
92910        ],
92911        "description": "list or watch objects of kind Role",
92912        "operationId": "listRbacAuthorizationV1alpha1RoleForAllNamespaces",
92913        "produces": [
92914          "application/json",
92915          "application/yaml",
92916          "application/vnd.kubernetes.protobuf",
92917          "application/json;stream=watch",
92918          "application/vnd.kubernetes.protobuf;stream=watch"
92919        ],
92920        "responses": {
92921          "200": {
92922            "description": "OK",
92923            "schema": {
92924              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
92925            }
92926          },
92927          "401": {
92928            "description": "Unauthorized"
92929          }
92930        },
92931        "schemes": [
92932          "https"
92933        ],
92934        "tags": [
92935          "rbacAuthorization_v1alpha1"
92936        ],
92937        "x-kubernetes-action": "list",
92938        "x-kubernetes-group-version-kind": {
92939          "group": "rbac.authorization.k8s.io",
92940          "kind": "Role",
92941          "version": "v1alpha1"
92942        }
92943      },
92944      "parameters": [
92945        {
92946          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
92947          "in": "query",
92948          "name": "allowWatchBookmarks",
92949          "type": "boolean",
92950          "uniqueItems": true
92951        },
92952        {
92953          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92954          "in": "query",
92955          "name": "continue",
92956          "type": "string",
92957          "uniqueItems": true
92958        },
92959        {
92960          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92961          "in": "query",
92962          "name": "fieldSelector",
92963          "type": "string",
92964          "uniqueItems": true
92965        },
92966        {
92967          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92968          "in": "query",
92969          "name": "labelSelector",
92970          "type": "string",
92971          "uniqueItems": true
92972        },
92973        {
92974          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92975          "in": "query",
92976          "name": "limit",
92977          "type": "integer",
92978          "uniqueItems": true
92979        },
92980        {
92981          "description": "If 'true', then the output is pretty printed.",
92982          "in": "query",
92983          "name": "pretty",
92984          "type": "string",
92985          "uniqueItems": true
92986        },
92987        {
92988          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92989          "in": "query",
92990          "name": "resourceVersion",
92991          "type": "string",
92992          "uniqueItems": true
92993        },
92994        {
92995          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
92996          "in": "query",
92997          "name": "resourceVersionMatch",
92998          "type": "string",
92999          "uniqueItems": true
93000        },
93001        {
93002          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93003          "in": "query",
93004          "name": "timeoutSeconds",
93005          "type": "integer",
93006          "uniqueItems": true
93007        },
93008        {
93009          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93010          "in": "query",
93011          "name": "watch",
93012          "type": "boolean",
93013          "uniqueItems": true
93014        }
93015      ]
93016    },
93017    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings": {
93018      "get": {
93019        "consumes": [
93020          "*/*"
93021        ],
93022        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93023        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBindingList",
93024        "produces": [
93025          "application/json",
93026          "application/yaml",
93027          "application/vnd.kubernetes.protobuf",
93028          "application/json;stream=watch",
93029          "application/vnd.kubernetes.protobuf;stream=watch"
93030        ],
93031        "responses": {
93032          "200": {
93033            "description": "OK",
93034            "schema": {
93035              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93036            }
93037          },
93038          "401": {
93039            "description": "Unauthorized"
93040          }
93041        },
93042        "schemes": [
93043          "https"
93044        ],
93045        "tags": [
93046          "rbacAuthorization_v1alpha1"
93047        ],
93048        "x-kubernetes-action": "watchlist",
93049        "x-kubernetes-group-version-kind": {
93050          "group": "rbac.authorization.k8s.io",
93051          "kind": "ClusterRoleBinding",
93052          "version": "v1alpha1"
93053        }
93054      },
93055      "parameters": [
93056        {
93057          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93058          "in": "query",
93059          "name": "allowWatchBookmarks",
93060          "type": "boolean",
93061          "uniqueItems": true
93062        },
93063        {
93064          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93065          "in": "query",
93066          "name": "continue",
93067          "type": "string",
93068          "uniqueItems": true
93069        },
93070        {
93071          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93072          "in": "query",
93073          "name": "fieldSelector",
93074          "type": "string",
93075          "uniqueItems": true
93076        },
93077        {
93078          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93079          "in": "query",
93080          "name": "labelSelector",
93081          "type": "string",
93082          "uniqueItems": true
93083        },
93084        {
93085          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93086          "in": "query",
93087          "name": "limit",
93088          "type": "integer",
93089          "uniqueItems": true
93090        },
93091        {
93092          "description": "If 'true', then the output is pretty printed.",
93093          "in": "query",
93094          "name": "pretty",
93095          "type": "string",
93096          "uniqueItems": true
93097        },
93098        {
93099          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93100          "in": "query",
93101          "name": "resourceVersion",
93102          "type": "string",
93103          "uniqueItems": true
93104        },
93105        {
93106          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93107          "in": "query",
93108          "name": "resourceVersionMatch",
93109          "type": "string",
93110          "uniqueItems": true
93111        },
93112        {
93113          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93114          "in": "query",
93115          "name": "timeoutSeconds",
93116          "type": "integer",
93117          "uniqueItems": true
93118        },
93119        {
93120          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93121          "in": "query",
93122          "name": "watch",
93123          "type": "boolean",
93124          "uniqueItems": true
93125        }
93126      ]
93127    },
93128    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": {
93129      "get": {
93130        "consumes": [
93131          "*/*"
93132        ],
93133        "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.",
93134        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBinding",
93135        "produces": [
93136          "application/json",
93137          "application/yaml",
93138          "application/vnd.kubernetes.protobuf",
93139          "application/json;stream=watch",
93140          "application/vnd.kubernetes.protobuf;stream=watch"
93141        ],
93142        "responses": {
93143          "200": {
93144            "description": "OK",
93145            "schema": {
93146              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93147            }
93148          },
93149          "401": {
93150            "description": "Unauthorized"
93151          }
93152        },
93153        "schemes": [
93154          "https"
93155        ],
93156        "tags": [
93157          "rbacAuthorization_v1alpha1"
93158        ],
93159        "x-kubernetes-action": "watch",
93160        "x-kubernetes-group-version-kind": {
93161          "group": "rbac.authorization.k8s.io",
93162          "kind": "ClusterRoleBinding",
93163          "version": "v1alpha1"
93164        }
93165      },
93166      "parameters": [
93167        {
93168          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93169          "in": "query",
93170          "name": "allowWatchBookmarks",
93171          "type": "boolean",
93172          "uniqueItems": true
93173        },
93174        {
93175          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93176          "in": "query",
93177          "name": "continue",
93178          "type": "string",
93179          "uniqueItems": true
93180        },
93181        {
93182          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93183          "in": "query",
93184          "name": "fieldSelector",
93185          "type": "string",
93186          "uniqueItems": true
93187        },
93188        {
93189          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93190          "in": "query",
93191          "name": "labelSelector",
93192          "type": "string",
93193          "uniqueItems": true
93194        },
93195        {
93196          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93197          "in": "query",
93198          "name": "limit",
93199          "type": "integer",
93200          "uniqueItems": true
93201        },
93202        {
93203          "description": "name of the ClusterRoleBinding",
93204          "in": "path",
93205          "name": "name",
93206          "required": true,
93207          "type": "string",
93208          "uniqueItems": true
93209        },
93210        {
93211          "description": "If 'true', then the output is pretty printed.",
93212          "in": "query",
93213          "name": "pretty",
93214          "type": "string",
93215          "uniqueItems": true
93216        },
93217        {
93218          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93219          "in": "query",
93220          "name": "resourceVersion",
93221          "type": "string",
93222          "uniqueItems": true
93223        },
93224        {
93225          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93226          "in": "query",
93227          "name": "resourceVersionMatch",
93228          "type": "string",
93229          "uniqueItems": true
93230        },
93231        {
93232          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93233          "in": "query",
93234          "name": "timeoutSeconds",
93235          "type": "integer",
93236          "uniqueItems": true
93237        },
93238        {
93239          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93240          "in": "query",
93241          "name": "watch",
93242          "type": "boolean",
93243          "uniqueItems": true
93244        }
93245      ]
93246    },
93247    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles": {
93248      "get": {
93249        "consumes": [
93250          "*/*"
93251        ],
93252        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
93253        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleList",
93254        "produces": [
93255          "application/json",
93256          "application/yaml",
93257          "application/vnd.kubernetes.protobuf",
93258          "application/json;stream=watch",
93259          "application/vnd.kubernetes.protobuf;stream=watch"
93260        ],
93261        "responses": {
93262          "200": {
93263            "description": "OK",
93264            "schema": {
93265              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93266            }
93267          },
93268          "401": {
93269            "description": "Unauthorized"
93270          }
93271        },
93272        "schemes": [
93273          "https"
93274        ],
93275        "tags": [
93276          "rbacAuthorization_v1alpha1"
93277        ],
93278        "x-kubernetes-action": "watchlist",
93279        "x-kubernetes-group-version-kind": {
93280          "group": "rbac.authorization.k8s.io",
93281          "kind": "ClusterRole",
93282          "version": "v1alpha1"
93283        }
93284      },
93285      "parameters": [
93286        {
93287          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93288          "in": "query",
93289          "name": "allowWatchBookmarks",
93290          "type": "boolean",
93291          "uniqueItems": true
93292        },
93293        {
93294          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93295          "in": "query",
93296          "name": "continue",
93297          "type": "string",
93298          "uniqueItems": true
93299        },
93300        {
93301          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93302          "in": "query",
93303          "name": "fieldSelector",
93304          "type": "string",
93305          "uniqueItems": true
93306        },
93307        {
93308          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93309          "in": "query",
93310          "name": "labelSelector",
93311          "type": "string",
93312          "uniqueItems": true
93313        },
93314        {
93315          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93316          "in": "query",
93317          "name": "limit",
93318          "type": "integer",
93319          "uniqueItems": true
93320        },
93321        {
93322          "description": "If 'true', then the output is pretty printed.",
93323          "in": "query",
93324          "name": "pretty",
93325          "type": "string",
93326          "uniqueItems": true
93327        },
93328        {
93329          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93330          "in": "query",
93331          "name": "resourceVersion",
93332          "type": "string",
93333          "uniqueItems": true
93334        },
93335        {
93336          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93337          "in": "query",
93338          "name": "resourceVersionMatch",
93339          "type": "string",
93340          "uniqueItems": true
93341        },
93342        {
93343          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93344          "in": "query",
93345          "name": "timeoutSeconds",
93346          "type": "integer",
93347          "uniqueItems": true
93348        },
93349        {
93350          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93351          "in": "query",
93352          "name": "watch",
93353          "type": "boolean",
93354          "uniqueItems": true
93355        }
93356      ]
93357    },
93358    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": {
93359      "get": {
93360        "consumes": [
93361          "*/*"
93362        ],
93363        "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.",
93364        "operationId": "watchRbacAuthorizationV1alpha1ClusterRole",
93365        "produces": [
93366          "application/json",
93367          "application/yaml",
93368          "application/vnd.kubernetes.protobuf",
93369          "application/json;stream=watch",
93370          "application/vnd.kubernetes.protobuf;stream=watch"
93371        ],
93372        "responses": {
93373          "200": {
93374            "description": "OK",
93375            "schema": {
93376              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93377            }
93378          },
93379          "401": {
93380            "description": "Unauthorized"
93381          }
93382        },
93383        "schemes": [
93384          "https"
93385        ],
93386        "tags": [
93387          "rbacAuthorization_v1alpha1"
93388        ],
93389        "x-kubernetes-action": "watch",
93390        "x-kubernetes-group-version-kind": {
93391          "group": "rbac.authorization.k8s.io",
93392          "kind": "ClusterRole",
93393          "version": "v1alpha1"
93394        }
93395      },
93396      "parameters": [
93397        {
93398          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93399          "in": "query",
93400          "name": "allowWatchBookmarks",
93401          "type": "boolean",
93402          "uniqueItems": true
93403        },
93404        {
93405          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93406          "in": "query",
93407          "name": "continue",
93408          "type": "string",
93409          "uniqueItems": true
93410        },
93411        {
93412          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93413          "in": "query",
93414          "name": "fieldSelector",
93415          "type": "string",
93416          "uniqueItems": true
93417        },
93418        {
93419          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93420          "in": "query",
93421          "name": "labelSelector",
93422          "type": "string",
93423          "uniqueItems": true
93424        },
93425        {
93426          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93427          "in": "query",
93428          "name": "limit",
93429          "type": "integer",
93430          "uniqueItems": true
93431        },
93432        {
93433          "description": "name of the ClusterRole",
93434          "in": "path",
93435          "name": "name",
93436          "required": true,
93437          "type": "string",
93438          "uniqueItems": true
93439        },
93440        {
93441          "description": "If 'true', then the output is pretty printed.",
93442          "in": "query",
93443          "name": "pretty",
93444          "type": "string",
93445          "uniqueItems": true
93446        },
93447        {
93448          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93449          "in": "query",
93450          "name": "resourceVersion",
93451          "type": "string",
93452          "uniqueItems": true
93453        },
93454        {
93455          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93456          "in": "query",
93457          "name": "resourceVersionMatch",
93458          "type": "string",
93459          "uniqueItems": true
93460        },
93461        {
93462          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93463          "in": "query",
93464          "name": "timeoutSeconds",
93465          "type": "integer",
93466          "uniqueItems": true
93467        },
93468        {
93469          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93470          "in": "query",
93471          "name": "watch",
93472          "type": "boolean",
93473          "uniqueItems": true
93474        }
93475      ]
93476    },
93477    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": {
93478      "get": {
93479        "consumes": [
93480          "*/*"
93481        ],
93482        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93483        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBindingList",
93484        "produces": [
93485          "application/json",
93486          "application/yaml",
93487          "application/vnd.kubernetes.protobuf",
93488          "application/json;stream=watch",
93489          "application/vnd.kubernetes.protobuf;stream=watch"
93490        ],
93491        "responses": {
93492          "200": {
93493            "description": "OK",
93494            "schema": {
93495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93496            }
93497          },
93498          "401": {
93499            "description": "Unauthorized"
93500          }
93501        },
93502        "schemes": [
93503          "https"
93504        ],
93505        "tags": [
93506          "rbacAuthorization_v1alpha1"
93507        ],
93508        "x-kubernetes-action": "watchlist",
93509        "x-kubernetes-group-version-kind": {
93510          "group": "rbac.authorization.k8s.io",
93511          "kind": "RoleBinding",
93512          "version": "v1alpha1"
93513        }
93514      },
93515      "parameters": [
93516        {
93517          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93518          "in": "query",
93519          "name": "allowWatchBookmarks",
93520          "type": "boolean",
93521          "uniqueItems": true
93522        },
93523        {
93524          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93525          "in": "query",
93526          "name": "continue",
93527          "type": "string",
93528          "uniqueItems": true
93529        },
93530        {
93531          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93532          "in": "query",
93533          "name": "fieldSelector",
93534          "type": "string",
93535          "uniqueItems": true
93536        },
93537        {
93538          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93539          "in": "query",
93540          "name": "labelSelector",
93541          "type": "string",
93542          "uniqueItems": true
93543        },
93544        {
93545          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93546          "in": "query",
93547          "name": "limit",
93548          "type": "integer",
93549          "uniqueItems": true
93550        },
93551        {
93552          "description": "object name and auth scope, such as for teams and projects",
93553          "in": "path",
93554          "name": "namespace",
93555          "required": true,
93556          "type": "string",
93557          "uniqueItems": true
93558        },
93559        {
93560          "description": "If 'true', then the output is pretty printed.",
93561          "in": "query",
93562          "name": "pretty",
93563          "type": "string",
93564          "uniqueItems": true
93565        },
93566        {
93567          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93568          "in": "query",
93569          "name": "resourceVersion",
93570          "type": "string",
93571          "uniqueItems": true
93572        },
93573        {
93574          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93575          "in": "query",
93576          "name": "resourceVersionMatch",
93577          "type": "string",
93578          "uniqueItems": true
93579        },
93580        {
93581          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93582          "in": "query",
93583          "name": "timeoutSeconds",
93584          "type": "integer",
93585          "uniqueItems": true
93586        },
93587        {
93588          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93589          "in": "query",
93590          "name": "watch",
93591          "type": "boolean",
93592          "uniqueItems": true
93593        }
93594      ]
93595    },
93596    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": {
93597      "get": {
93598        "consumes": [
93599          "*/*"
93600        ],
93601        "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.",
93602        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBinding",
93603        "produces": [
93604          "application/json",
93605          "application/yaml",
93606          "application/vnd.kubernetes.protobuf",
93607          "application/json;stream=watch",
93608          "application/vnd.kubernetes.protobuf;stream=watch"
93609        ],
93610        "responses": {
93611          "200": {
93612            "description": "OK",
93613            "schema": {
93614              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93615            }
93616          },
93617          "401": {
93618            "description": "Unauthorized"
93619          }
93620        },
93621        "schemes": [
93622          "https"
93623        ],
93624        "tags": [
93625          "rbacAuthorization_v1alpha1"
93626        ],
93627        "x-kubernetes-action": "watch",
93628        "x-kubernetes-group-version-kind": {
93629          "group": "rbac.authorization.k8s.io",
93630          "kind": "RoleBinding",
93631          "version": "v1alpha1"
93632        }
93633      },
93634      "parameters": [
93635        {
93636          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93637          "in": "query",
93638          "name": "allowWatchBookmarks",
93639          "type": "boolean",
93640          "uniqueItems": true
93641        },
93642        {
93643          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93644          "in": "query",
93645          "name": "continue",
93646          "type": "string",
93647          "uniqueItems": true
93648        },
93649        {
93650          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93651          "in": "query",
93652          "name": "fieldSelector",
93653          "type": "string",
93654          "uniqueItems": true
93655        },
93656        {
93657          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93658          "in": "query",
93659          "name": "labelSelector",
93660          "type": "string",
93661          "uniqueItems": true
93662        },
93663        {
93664          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93665          "in": "query",
93666          "name": "limit",
93667          "type": "integer",
93668          "uniqueItems": true
93669        },
93670        {
93671          "description": "name of the RoleBinding",
93672          "in": "path",
93673          "name": "name",
93674          "required": true,
93675          "type": "string",
93676          "uniqueItems": true
93677        },
93678        {
93679          "description": "object name and auth scope, such as for teams and projects",
93680          "in": "path",
93681          "name": "namespace",
93682          "required": true,
93683          "type": "string",
93684          "uniqueItems": true
93685        },
93686        {
93687          "description": "If 'true', then the output is pretty printed.",
93688          "in": "query",
93689          "name": "pretty",
93690          "type": "string",
93691          "uniqueItems": true
93692        },
93693        {
93694          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93695          "in": "query",
93696          "name": "resourceVersion",
93697          "type": "string",
93698          "uniqueItems": true
93699        },
93700        {
93701          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93702          "in": "query",
93703          "name": "resourceVersionMatch",
93704          "type": "string",
93705          "uniqueItems": true
93706        },
93707        {
93708          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93709          "in": "query",
93710          "name": "timeoutSeconds",
93711          "type": "integer",
93712          "uniqueItems": true
93713        },
93714        {
93715          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93716          "in": "query",
93717          "name": "watch",
93718          "type": "boolean",
93719          "uniqueItems": true
93720        }
93721      ]
93722    },
93723    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": {
93724      "get": {
93725        "consumes": [
93726          "*/*"
93727        ],
93728        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
93729        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleList",
93730        "produces": [
93731          "application/json",
93732          "application/yaml",
93733          "application/vnd.kubernetes.protobuf",
93734          "application/json;stream=watch",
93735          "application/vnd.kubernetes.protobuf;stream=watch"
93736        ],
93737        "responses": {
93738          "200": {
93739            "description": "OK",
93740            "schema": {
93741              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93742            }
93743          },
93744          "401": {
93745            "description": "Unauthorized"
93746          }
93747        },
93748        "schemes": [
93749          "https"
93750        ],
93751        "tags": [
93752          "rbacAuthorization_v1alpha1"
93753        ],
93754        "x-kubernetes-action": "watchlist",
93755        "x-kubernetes-group-version-kind": {
93756          "group": "rbac.authorization.k8s.io",
93757          "kind": "Role",
93758          "version": "v1alpha1"
93759        }
93760      },
93761      "parameters": [
93762        {
93763          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93764          "in": "query",
93765          "name": "allowWatchBookmarks",
93766          "type": "boolean",
93767          "uniqueItems": true
93768        },
93769        {
93770          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93771          "in": "query",
93772          "name": "continue",
93773          "type": "string",
93774          "uniqueItems": true
93775        },
93776        {
93777          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93778          "in": "query",
93779          "name": "fieldSelector",
93780          "type": "string",
93781          "uniqueItems": true
93782        },
93783        {
93784          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93785          "in": "query",
93786          "name": "labelSelector",
93787          "type": "string",
93788          "uniqueItems": true
93789        },
93790        {
93791          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93792          "in": "query",
93793          "name": "limit",
93794          "type": "integer",
93795          "uniqueItems": true
93796        },
93797        {
93798          "description": "object name and auth scope, such as for teams and projects",
93799          "in": "path",
93800          "name": "namespace",
93801          "required": true,
93802          "type": "string",
93803          "uniqueItems": true
93804        },
93805        {
93806          "description": "If 'true', then the output is pretty printed.",
93807          "in": "query",
93808          "name": "pretty",
93809          "type": "string",
93810          "uniqueItems": true
93811        },
93812        {
93813          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93814          "in": "query",
93815          "name": "resourceVersion",
93816          "type": "string",
93817          "uniqueItems": true
93818        },
93819        {
93820          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93821          "in": "query",
93822          "name": "resourceVersionMatch",
93823          "type": "string",
93824          "uniqueItems": true
93825        },
93826        {
93827          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93828          "in": "query",
93829          "name": "timeoutSeconds",
93830          "type": "integer",
93831          "uniqueItems": true
93832        },
93833        {
93834          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93835          "in": "query",
93836          "name": "watch",
93837          "type": "boolean",
93838          "uniqueItems": true
93839        }
93840      ]
93841    },
93842    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": {
93843      "get": {
93844        "consumes": [
93845          "*/*"
93846        ],
93847        "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.",
93848        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRole",
93849        "produces": [
93850          "application/json",
93851          "application/yaml",
93852          "application/vnd.kubernetes.protobuf",
93853          "application/json;stream=watch",
93854          "application/vnd.kubernetes.protobuf;stream=watch"
93855        ],
93856        "responses": {
93857          "200": {
93858            "description": "OK",
93859            "schema": {
93860              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93861            }
93862          },
93863          "401": {
93864            "description": "Unauthorized"
93865          }
93866        },
93867        "schemes": [
93868          "https"
93869        ],
93870        "tags": [
93871          "rbacAuthorization_v1alpha1"
93872        ],
93873        "x-kubernetes-action": "watch",
93874        "x-kubernetes-group-version-kind": {
93875          "group": "rbac.authorization.k8s.io",
93876          "kind": "Role",
93877          "version": "v1alpha1"
93878        }
93879      },
93880      "parameters": [
93881        {
93882          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
93883          "in": "query",
93884          "name": "allowWatchBookmarks",
93885          "type": "boolean",
93886          "uniqueItems": true
93887        },
93888        {
93889          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93890          "in": "query",
93891          "name": "continue",
93892          "type": "string",
93893          "uniqueItems": true
93894        },
93895        {
93896          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93897          "in": "query",
93898          "name": "fieldSelector",
93899          "type": "string",
93900          "uniqueItems": true
93901        },
93902        {
93903          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93904          "in": "query",
93905          "name": "labelSelector",
93906          "type": "string",
93907          "uniqueItems": true
93908        },
93909        {
93910          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93911          "in": "query",
93912          "name": "limit",
93913          "type": "integer",
93914          "uniqueItems": true
93915        },
93916        {
93917          "description": "name of the Role",
93918          "in": "path",
93919          "name": "name",
93920          "required": true,
93921          "type": "string",
93922          "uniqueItems": true
93923        },
93924        {
93925          "description": "object name and auth scope, such as for teams and projects",
93926          "in": "path",
93927          "name": "namespace",
93928          "required": true,
93929          "type": "string",
93930          "uniqueItems": true
93931        },
93932        {
93933          "description": "If 'true', then the output is pretty printed.",
93934          "in": "query",
93935          "name": "pretty",
93936          "type": "string",
93937          "uniqueItems": true
93938        },
93939        {
93940          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93941          "in": "query",
93942          "name": "resourceVersion",
93943          "type": "string",
93944          "uniqueItems": true
93945        },
93946        {
93947          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
93948          "in": "query",
93949          "name": "resourceVersionMatch",
93950          "type": "string",
93951          "uniqueItems": true
93952        },
93953        {
93954          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93955          "in": "query",
93956          "name": "timeoutSeconds",
93957          "type": "integer",
93958          "uniqueItems": true
93959        },
93960        {
93961          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93962          "in": "query",
93963          "name": "watch",
93964          "type": "boolean",
93965          "uniqueItems": true
93966        }
93967      ]
93968    },
93969    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings": {
93970      "get": {
93971        "consumes": [
93972          "*/*"
93973        ],
93974        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93975        "operationId": "watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces",
93976        "produces": [
93977          "application/json",
93978          "application/yaml",
93979          "application/vnd.kubernetes.protobuf",
93980          "application/json;stream=watch",
93981          "application/vnd.kubernetes.protobuf;stream=watch"
93982        ],
93983        "responses": {
93984          "200": {
93985            "description": "OK",
93986            "schema": {
93987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93988            }
93989          },
93990          "401": {
93991            "description": "Unauthorized"
93992          }
93993        },
93994        "schemes": [
93995          "https"
93996        ],
93997        "tags": [
93998          "rbacAuthorization_v1alpha1"
93999        ],
94000        "x-kubernetes-action": "watchlist",
94001        "x-kubernetes-group-version-kind": {
94002          "group": "rbac.authorization.k8s.io",
94003          "kind": "RoleBinding",
94004          "version": "v1alpha1"
94005        }
94006      },
94007      "parameters": [
94008        {
94009          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94010          "in": "query",
94011          "name": "allowWatchBookmarks",
94012          "type": "boolean",
94013          "uniqueItems": true
94014        },
94015        {
94016          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94017          "in": "query",
94018          "name": "continue",
94019          "type": "string",
94020          "uniqueItems": true
94021        },
94022        {
94023          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94024          "in": "query",
94025          "name": "fieldSelector",
94026          "type": "string",
94027          "uniqueItems": true
94028        },
94029        {
94030          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94031          "in": "query",
94032          "name": "labelSelector",
94033          "type": "string",
94034          "uniqueItems": true
94035        },
94036        {
94037          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94038          "in": "query",
94039          "name": "limit",
94040          "type": "integer",
94041          "uniqueItems": true
94042        },
94043        {
94044          "description": "If 'true', then the output is pretty printed.",
94045          "in": "query",
94046          "name": "pretty",
94047          "type": "string",
94048          "uniqueItems": true
94049        },
94050        {
94051          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94052          "in": "query",
94053          "name": "resourceVersion",
94054          "type": "string",
94055          "uniqueItems": true
94056        },
94057        {
94058          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94059          "in": "query",
94060          "name": "resourceVersionMatch",
94061          "type": "string",
94062          "uniqueItems": true
94063        },
94064        {
94065          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94066          "in": "query",
94067          "name": "timeoutSeconds",
94068          "type": "integer",
94069          "uniqueItems": true
94070        },
94071        {
94072          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94073          "in": "query",
94074          "name": "watch",
94075          "type": "boolean",
94076          "uniqueItems": true
94077        }
94078      ]
94079    },
94080    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles": {
94081      "get": {
94082        "consumes": [
94083          "*/*"
94084        ],
94085        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
94086        "operationId": "watchRbacAuthorizationV1alpha1RoleListForAllNamespaces",
94087        "produces": [
94088          "application/json",
94089          "application/yaml",
94090          "application/vnd.kubernetes.protobuf",
94091          "application/json;stream=watch",
94092          "application/vnd.kubernetes.protobuf;stream=watch"
94093        ],
94094        "responses": {
94095          "200": {
94096            "description": "OK",
94097            "schema": {
94098              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
94099            }
94100          },
94101          "401": {
94102            "description": "Unauthorized"
94103          }
94104        },
94105        "schemes": [
94106          "https"
94107        ],
94108        "tags": [
94109          "rbacAuthorization_v1alpha1"
94110        ],
94111        "x-kubernetes-action": "watchlist",
94112        "x-kubernetes-group-version-kind": {
94113          "group": "rbac.authorization.k8s.io",
94114          "kind": "Role",
94115          "version": "v1alpha1"
94116        }
94117      },
94118      "parameters": [
94119        {
94120          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94121          "in": "query",
94122          "name": "allowWatchBookmarks",
94123          "type": "boolean",
94124          "uniqueItems": true
94125        },
94126        {
94127          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94128          "in": "query",
94129          "name": "continue",
94130          "type": "string",
94131          "uniqueItems": true
94132        },
94133        {
94134          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94135          "in": "query",
94136          "name": "fieldSelector",
94137          "type": "string",
94138          "uniqueItems": true
94139        },
94140        {
94141          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94142          "in": "query",
94143          "name": "labelSelector",
94144          "type": "string",
94145          "uniqueItems": true
94146        },
94147        {
94148          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94149          "in": "query",
94150          "name": "limit",
94151          "type": "integer",
94152          "uniqueItems": true
94153        },
94154        {
94155          "description": "If 'true', then the output is pretty printed.",
94156          "in": "query",
94157          "name": "pretty",
94158          "type": "string",
94159          "uniqueItems": true
94160        },
94161        {
94162          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94163          "in": "query",
94164          "name": "resourceVersion",
94165          "type": "string",
94166          "uniqueItems": true
94167        },
94168        {
94169          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94170          "in": "query",
94171          "name": "resourceVersionMatch",
94172          "type": "string",
94173          "uniqueItems": true
94174        },
94175        {
94176          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94177          "in": "query",
94178          "name": "timeoutSeconds",
94179          "type": "integer",
94180          "uniqueItems": true
94181        },
94182        {
94183          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94184          "in": "query",
94185          "name": "watch",
94186          "type": "boolean",
94187          "uniqueItems": true
94188        }
94189      ]
94190    },
94191    "/apis/rbac.authorization.k8s.io/v1beta1/": {
94192      "get": {
94193        "consumes": [
94194          "application/json",
94195          "application/yaml",
94196          "application/vnd.kubernetes.protobuf"
94197        ],
94198        "description": "get available resources",
94199        "operationId": "getRbacAuthorizationV1beta1APIResources",
94200        "produces": [
94201          "application/json",
94202          "application/yaml",
94203          "application/vnd.kubernetes.protobuf"
94204        ],
94205        "responses": {
94206          "200": {
94207            "description": "OK",
94208            "schema": {
94209              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
94210            }
94211          },
94212          "401": {
94213            "description": "Unauthorized"
94214          }
94215        },
94216        "schemes": [
94217          "https"
94218        ],
94219        "tags": [
94220          "rbacAuthorization_v1beta1"
94221        ]
94222      }
94223    },
94224    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings": {
94225      "delete": {
94226        "consumes": [
94227          "*/*"
94228        ],
94229        "description": "delete collection of ClusterRoleBinding",
94230        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding",
94231        "parameters": [
94232          {
94233            "in": "body",
94234            "name": "body",
94235            "schema": {
94236              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94237            }
94238          },
94239          {
94240            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94241            "in": "query",
94242            "name": "continue",
94243            "type": "string",
94244            "uniqueItems": true
94245          },
94246          {
94247            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94248            "in": "query",
94249            "name": "dryRun",
94250            "type": "string",
94251            "uniqueItems": true
94252          },
94253          {
94254            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94255            "in": "query",
94256            "name": "fieldSelector",
94257            "type": "string",
94258            "uniqueItems": true
94259          },
94260          {
94261            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94262            "in": "query",
94263            "name": "gracePeriodSeconds",
94264            "type": "integer",
94265            "uniqueItems": true
94266          },
94267          {
94268            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94269            "in": "query",
94270            "name": "labelSelector",
94271            "type": "string",
94272            "uniqueItems": true
94273          },
94274          {
94275            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94276            "in": "query",
94277            "name": "limit",
94278            "type": "integer",
94279            "uniqueItems": true
94280          },
94281          {
94282            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94283            "in": "query",
94284            "name": "orphanDependents",
94285            "type": "boolean",
94286            "uniqueItems": true
94287          },
94288          {
94289            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94290            "in": "query",
94291            "name": "propagationPolicy",
94292            "type": "string",
94293            "uniqueItems": true
94294          },
94295          {
94296            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94297            "in": "query",
94298            "name": "resourceVersion",
94299            "type": "string",
94300            "uniqueItems": true
94301          },
94302          {
94303            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94304            "in": "query",
94305            "name": "resourceVersionMatch",
94306            "type": "string",
94307            "uniqueItems": true
94308          },
94309          {
94310            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94311            "in": "query",
94312            "name": "timeoutSeconds",
94313            "type": "integer",
94314            "uniqueItems": true
94315          }
94316        ],
94317        "produces": [
94318          "application/json",
94319          "application/yaml",
94320          "application/vnd.kubernetes.protobuf"
94321        ],
94322        "responses": {
94323          "200": {
94324            "description": "OK",
94325            "schema": {
94326              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94327            }
94328          },
94329          "401": {
94330            "description": "Unauthorized"
94331          }
94332        },
94333        "schemes": [
94334          "https"
94335        ],
94336        "tags": [
94337          "rbacAuthorization_v1beta1"
94338        ],
94339        "x-kubernetes-action": "deletecollection",
94340        "x-kubernetes-group-version-kind": {
94341          "group": "rbac.authorization.k8s.io",
94342          "kind": "ClusterRoleBinding",
94343          "version": "v1beta1"
94344        }
94345      },
94346      "get": {
94347        "consumes": [
94348          "*/*"
94349        ],
94350        "description": "list or watch objects of kind ClusterRoleBinding",
94351        "operationId": "listRbacAuthorizationV1beta1ClusterRoleBinding",
94352        "parameters": [
94353          {
94354            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94355            "in": "query",
94356            "name": "allowWatchBookmarks",
94357            "type": "boolean",
94358            "uniqueItems": true
94359          },
94360          {
94361            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94362            "in": "query",
94363            "name": "continue",
94364            "type": "string",
94365            "uniqueItems": true
94366          },
94367          {
94368            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94369            "in": "query",
94370            "name": "fieldSelector",
94371            "type": "string",
94372            "uniqueItems": true
94373          },
94374          {
94375            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94376            "in": "query",
94377            "name": "labelSelector",
94378            "type": "string",
94379            "uniqueItems": true
94380          },
94381          {
94382            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94383            "in": "query",
94384            "name": "limit",
94385            "type": "integer",
94386            "uniqueItems": true
94387          },
94388          {
94389            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94390            "in": "query",
94391            "name": "resourceVersion",
94392            "type": "string",
94393            "uniqueItems": true
94394          },
94395          {
94396            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94397            "in": "query",
94398            "name": "resourceVersionMatch",
94399            "type": "string",
94400            "uniqueItems": true
94401          },
94402          {
94403            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94404            "in": "query",
94405            "name": "timeoutSeconds",
94406            "type": "integer",
94407            "uniqueItems": true
94408          },
94409          {
94410            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94411            "in": "query",
94412            "name": "watch",
94413            "type": "boolean",
94414            "uniqueItems": true
94415          }
94416        ],
94417        "produces": [
94418          "application/json",
94419          "application/yaml",
94420          "application/vnd.kubernetes.protobuf",
94421          "application/json;stream=watch",
94422          "application/vnd.kubernetes.protobuf;stream=watch"
94423        ],
94424        "responses": {
94425          "200": {
94426            "description": "OK",
94427            "schema": {
94428              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBindingList"
94429            }
94430          },
94431          "401": {
94432            "description": "Unauthorized"
94433          }
94434        },
94435        "schemes": [
94436          "https"
94437        ],
94438        "tags": [
94439          "rbacAuthorization_v1beta1"
94440        ],
94441        "x-kubernetes-action": "list",
94442        "x-kubernetes-group-version-kind": {
94443          "group": "rbac.authorization.k8s.io",
94444          "kind": "ClusterRoleBinding",
94445          "version": "v1beta1"
94446        }
94447      },
94448      "parameters": [
94449        {
94450          "description": "If 'true', then the output is pretty printed.",
94451          "in": "query",
94452          "name": "pretty",
94453          "type": "string",
94454          "uniqueItems": true
94455        }
94456      ],
94457      "post": {
94458        "consumes": [
94459          "*/*"
94460        ],
94461        "description": "create a ClusterRoleBinding",
94462        "operationId": "createRbacAuthorizationV1beta1ClusterRoleBinding",
94463        "parameters": [
94464          {
94465            "in": "body",
94466            "name": "body",
94467            "required": true,
94468            "schema": {
94469              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94470            }
94471          },
94472          {
94473            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94474            "in": "query",
94475            "name": "dryRun",
94476            "type": "string",
94477            "uniqueItems": true
94478          },
94479          {
94480            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94481            "in": "query",
94482            "name": "fieldManager",
94483            "type": "string",
94484            "uniqueItems": true
94485          }
94486        ],
94487        "produces": [
94488          "application/json",
94489          "application/yaml",
94490          "application/vnd.kubernetes.protobuf"
94491        ],
94492        "responses": {
94493          "200": {
94494            "description": "OK",
94495            "schema": {
94496              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94497            }
94498          },
94499          "201": {
94500            "description": "Created",
94501            "schema": {
94502              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94503            }
94504          },
94505          "202": {
94506            "description": "Accepted",
94507            "schema": {
94508              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94509            }
94510          },
94511          "401": {
94512            "description": "Unauthorized"
94513          }
94514        },
94515        "schemes": [
94516          "https"
94517        ],
94518        "tags": [
94519          "rbacAuthorization_v1beta1"
94520        ],
94521        "x-kubernetes-action": "post",
94522        "x-kubernetes-group-version-kind": {
94523          "group": "rbac.authorization.k8s.io",
94524          "kind": "ClusterRoleBinding",
94525          "version": "v1beta1"
94526        }
94527      }
94528    },
94529    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}": {
94530      "delete": {
94531        "consumes": [
94532          "*/*"
94533        ],
94534        "description": "delete a ClusterRoleBinding",
94535        "operationId": "deleteRbacAuthorizationV1beta1ClusterRoleBinding",
94536        "parameters": [
94537          {
94538            "in": "body",
94539            "name": "body",
94540            "schema": {
94541              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94542            }
94543          },
94544          {
94545            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94546            "in": "query",
94547            "name": "dryRun",
94548            "type": "string",
94549            "uniqueItems": true
94550          },
94551          {
94552            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94553            "in": "query",
94554            "name": "gracePeriodSeconds",
94555            "type": "integer",
94556            "uniqueItems": true
94557          },
94558          {
94559            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94560            "in": "query",
94561            "name": "orphanDependents",
94562            "type": "boolean",
94563            "uniqueItems": true
94564          },
94565          {
94566            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94567            "in": "query",
94568            "name": "propagationPolicy",
94569            "type": "string",
94570            "uniqueItems": true
94571          }
94572        ],
94573        "produces": [
94574          "application/json",
94575          "application/yaml",
94576          "application/vnd.kubernetes.protobuf"
94577        ],
94578        "responses": {
94579          "200": {
94580            "description": "OK",
94581            "schema": {
94582              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94583            }
94584          },
94585          "202": {
94586            "description": "Accepted",
94587            "schema": {
94588              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94589            }
94590          },
94591          "401": {
94592            "description": "Unauthorized"
94593          }
94594        },
94595        "schemes": [
94596          "https"
94597        ],
94598        "tags": [
94599          "rbacAuthorization_v1beta1"
94600        ],
94601        "x-kubernetes-action": "delete",
94602        "x-kubernetes-group-version-kind": {
94603          "group": "rbac.authorization.k8s.io",
94604          "kind": "ClusterRoleBinding",
94605          "version": "v1beta1"
94606        }
94607      },
94608      "get": {
94609        "consumes": [
94610          "*/*"
94611        ],
94612        "description": "read the specified ClusterRoleBinding",
94613        "operationId": "readRbacAuthorizationV1beta1ClusterRoleBinding",
94614        "produces": [
94615          "application/json",
94616          "application/yaml",
94617          "application/vnd.kubernetes.protobuf"
94618        ],
94619        "responses": {
94620          "200": {
94621            "description": "OK",
94622            "schema": {
94623              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94624            }
94625          },
94626          "401": {
94627            "description": "Unauthorized"
94628          }
94629        },
94630        "schemes": [
94631          "https"
94632        ],
94633        "tags": [
94634          "rbacAuthorization_v1beta1"
94635        ],
94636        "x-kubernetes-action": "get",
94637        "x-kubernetes-group-version-kind": {
94638          "group": "rbac.authorization.k8s.io",
94639          "kind": "ClusterRoleBinding",
94640          "version": "v1beta1"
94641        }
94642      },
94643      "parameters": [
94644        {
94645          "description": "name of the ClusterRoleBinding",
94646          "in": "path",
94647          "name": "name",
94648          "required": true,
94649          "type": "string",
94650          "uniqueItems": true
94651        },
94652        {
94653          "description": "If 'true', then the output is pretty printed.",
94654          "in": "query",
94655          "name": "pretty",
94656          "type": "string",
94657          "uniqueItems": true
94658        }
94659      ],
94660      "patch": {
94661        "consumes": [
94662          "application/json-patch+json",
94663          "application/merge-patch+json",
94664          "application/strategic-merge-patch+json",
94665          "application/apply-patch+yaml"
94666        ],
94667        "description": "partially update the specified ClusterRoleBinding",
94668        "operationId": "patchRbacAuthorizationV1beta1ClusterRoleBinding",
94669        "parameters": [
94670          {
94671            "in": "body",
94672            "name": "body",
94673            "required": true,
94674            "schema": {
94675              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
94676            }
94677          },
94678          {
94679            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94680            "in": "query",
94681            "name": "dryRun",
94682            "type": "string",
94683            "uniqueItems": true
94684          },
94685          {
94686            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
94687            "in": "query",
94688            "name": "fieldManager",
94689            "type": "string",
94690            "uniqueItems": true
94691          },
94692          {
94693            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
94694            "in": "query",
94695            "name": "force",
94696            "type": "boolean",
94697            "uniqueItems": true
94698          }
94699        ],
94700        "produces": [
94701          "application/json",
94702          "application/yaml",
94703          "application/vnd.kubernetes.protobuf"
94704        ],
94705        "responses": {
94706          "200": {
94707            "description": "OK",
94708            "schema": {
94709              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94710            }
94711          },
94712          "401": {
94713            "description": "Unauthorized"
94714          }
94715        },
94716        "schemes": [
94717          "https"
94718        ],
94719        "tags": [
94720          "rbacAuthorization_v1beta1"
94721        ],
94722        "x-kubernetes-action": "patch",
94723        "x-kubernetes-group-version-kind": {
94724          "group": "rbac.authorization.k8s.io",
94725          "kind": "ClusterRoleBinding",
94726          "version": "v1beta1"
94727        }
94728      },
94729      "put": {
94730        "consumes": [
94731          "*/*"
94732        ],
94733        "description": "replace the specified ClusterRoleBinding",
94734        "operationId": "replaceRbacAuthorizationV1beta1ClusterRoleBinding",
94735        "parameters": [
94736          {
94737            "in": "body",
94738            "name": "body",
94739            "required": true,
94740            "schema": {
94741              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94742            }
94743          },
94744          {
94745            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94746            "in": "query",
94747            "name": "dryRun",
94748            "type": "string",
94749            "uniqueItems": true
94750          },
94751          {
94752            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94753            "in": "query",
94754            "name": "fieldManager",
94755            "type": "string",
94756            "uniqueItems": true
94757          }
94758        ],
94759        "produces": [
94760          "application/json",
94761          "application/yaml",
94762          "application/vnd.kubernetes.protobuf"
94763        ],
94764        "responses": {
94765          "200": {
94766            "description": "OK",
94767            "schema": {
94768              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94769            }
94770          },
94771          "201": {
94772            "description": "Created",
94773            "schema": {
94774              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
94775            }
94776          },
94777          "401": {
94778            "description": "Unauthorized"
94779          }
94780        },
94781        "schemes": [
94782          "https"
94783        ],
94784        "tags": [
94785          "rbacAuthorization_v1beta1"
94786        ],
94787        "x-kubernetes-action": "put",
94788        "x-kubernetes-group-version-kind": {
94789          "group": "rbac.authorization.k8s.io",
94790          "kind": "ClusterRoleBinding",
94791          "version": "v1beta1"
94792        }
94793      }
94794    },
94795    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles": {
94796      "delete": {
94797        "consumes": [
94798          "*/*"
94799        ],
94800        "description": "delete collection of ClusterRole",
94801        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRole",
94802        "parameters": [
94803          {
94804            "in": "body",
94805            "name": "body",
94806            "schema": {
94807              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94808            }
94809          },
94810          {
94811            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94812            "in": "query",
94813            "name": "continue",
94814            "type": "string",
94815            "uniqueItems": true
94816          },
94817          {
94818            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94819            "in": "query",
94820            "name": "dryRun",
94821            "type": "string",
94822            "uniqueItems": true
94823          },
94824          {
94825            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94826            "in": "query",
94827            "name": "fieldSelector",
94828            "type": "string",
94829            "uniqueItems": true
94830          },
94831          {
94832            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
94833            "in": "query",
94834            "name": "gracePeriodSeconds",
94835            "type": "integer",
94836            "uniqueItems": true
94837          },
94838          {
94839            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94840            "in": "query",
94841            "name": "labelSelector",
94842            "type": "string",
94843            "uniqueItems": true
94844          },
94845          {
94846            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94847            "in": "query",
94848            "name": "limit",
94849            "type": "integer",
94850            "uniqueItems": true
94851          },
94852          {
94853            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
94854            "in": "query",
94855            "name": "orphanDependents",
94856            "type": "boolean",
94857            "uniqueItems": true
94858          },
94859          {
94860            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
94861            "in": "query",
94862            "name": "propagationPolicy",
94863            "type": "string",
94864            "uniqueItems": true
94865          },
94866          {
94867            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94868            "in": "query",
94869            "name": "resourceVersion",
94870            "type": "string",
94871            "uniqueItems": true
94872          },
94873          {
94874            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94875            "in": "query",
94876            "name": "resourceVersionMatch",
94877            "type": "string",
94878            "uniqueItems": true
94879          },
94880          {
94881            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94882            "in": "query",
94883            "name": "timeoutSeconds",
94884            "type": "integer",
94885            "uniqueItems": true
94886          }
94887        ],
94888        "produces": [
94889          "application/json",
94890          "application/yaml",
94891          "application/vnd.kubernetes.protobuf"
94892        ],
94893        "responses": {
94894          "200": {
94895            "description": "OK",
94896            "schema": {
94897              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94898            }
94899          },
94900          "401": {
94901            "description": "Unauthorized"
94902          }
94903        },
94904        "schemes": [
94905          "https"
94906        ],
94907        "tags": [
94908          "rbacAuthorization_v1beta1"
94909        ],
94910        "x-kubernetes-action": "deletecollection",
94911        "x-kubernetes-group-version-kind": {
94912          "group": "rbac.authorization.k8s.io",
94913          "kind": "ClusterRole",
94914          "version": "v1beta1"
94915        }
94916      },
94917      "get": {
94918        "consumes": [
94919          "*/*"
94920        ],
94921        "description": "list or watch objects of kind ClusterRole",
94922        "operationId": "listRbacAuthorizationV1beta1ClusterRole",
94923        "parameters": [
94924          {
94925            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
94926            "in": "query",
94927            "name": "allowWatchBookmarks",
94928            "type": "boolean",
94929            "uniqueItems": true
94930          },
94931          {
94932            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94933            "in": "query",
94934            "name": "continue",
94935            "type": "string",
94936            "uniqueItems": true
94937          },
94938          {
94939            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94940            "in": "query",
94941            "name": "fieldSelector",
94942            "type": "string",
94943            "uniqueItems": true
94944          },
94945          {
94946            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94947            "in": "query",
94948            "name": "labelSelector",
94949            "type": "string",
94950            "uniqueItems": true
94951          },
94952          {
94953            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94954            "in": "query",
94955            "name": "limit",
94956            "type": "integer",
94957            "uniqueItems": true
94958          },
94959          {
94960            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94961            "in": "query",
94962            "name": "resourceVersion",
94963            "type": "string",
94964            "uniqueItems": true
94965          },
94966          {
94967            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94968            "in": "query",
94969            "name": "resourceVersionMatch",
94970            "type": "string",
94971            "uniqueItems": true
94972          },
94973          {
94974            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94975            "in": "query",
94976            "name": "timeoutSeconds",
94977            "type": "integer",
94978            "uniqueItems": true
94979          },
94980          {
94981            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94982            "in": "query",
94983            "name": "watch",
94984            "type": "boolean",
94985            "uniqueItems": true
94986          }
94987        ],
94988        "produces": [
94989          "application/json",
94990          "application/yaml",
94991          "application/vnd.kubernetes.protobuf",
94992          "application/json;stream=watch",
94993          "application/vnd.kubernetes.protobuf;stream=watch"
94994        ],
94995        "responses": {
94996          "200": {
94997            "description": "OK",
94998            "schema": {
94999              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleList"
95000            }
95001          },
95002          "401": {
95003            "description": "Unauthorized"
95004          }
95005        },
95006        "schemes": [
95007          "https"
95008        ],
95009        "tags": [
95010          "rbacAuthorization_v1beta1"
95011        ],
95012        "x-kubernetes-action": "list",
95013        "x-kubernetes-group-version-kind": {
95014          "group": "rbac.authorization.k8s.io",
95015          "kind": "ClusterRole",
95016          "version": "v1beta1"
95017        }
95018      },
95019      "parameters": [
95020        {
95021          "description": "If 'true', then the output is pretty printed.",
95022          "in": "query",
95023          "name": "pretty",
95024          "type": "string",
95025          "uniqueItems": true
95026        }
95027      ],
95028      "post": {
95029        "consumes": [
95030          "*/*"
95031        ],
95032        "description": "create a ClusterRole",
95033        "operationId": "createRbacAuthorizationV1beta1ClusterRole",
95034        "parameters": [
95035          {
95036            "in": "body",
95037            "name": "body",
95038            "required": true,
95039            "schema": {
95040              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95041            }
95042          },
95043          {
95044            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95045            "in": "query",
95046            "name": "dryRun",
95047            "type": "string",
95048            "uniqueItems": true
95049          },
95050          {
95051            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95052            "in": "query",
95053            "name": "fieldManager",
95054            "type": "string",
95055            "uniqueItems": true
95056          }
95057        ],
95058        "produces": [
95059          "application/json",
95060          "application/yaml",
95061          "application/vnd.kubernetes.protobuf"
95062        ],
95063        "responses": {
95064          "200": {
95065            "description": "OK",
95066            "schema": {
95067              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95068            }
95069          },
95070          "201": {
95071            "description": "Created",
95072            "schema": {
95073              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95074            }
95075          },
95076          "202": {
95077            "description": "Accepted",
95078            "schema": {
95079              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95080            }
95081          },
95082          "401": {
95083            "description": "Unauthorized"
95084          }
95085        },
95086        "schemes": [
95087          "https"
95088        ],
95089        "tags": [
95090          "rbacAuthorization_v1beta1"
95091        ],
95092        "x-kubernetes-action": "post",
95093        "x-kubernetes-group-version-kind": {
95094          "group": "rbac.authorization.k8s.io",
95095          "kind": "ClusterRole",
95096          "version": "v1beta1"
95097        }
95098      }
95099    },
95100    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}": {
95101      "delete": {
95102        "consumes": [
95103          "*/*"
95104        ],
95105        "description": "delete a ClusterRole",
95106        "operationId": "deleteRbacAuthorizationV1beta1ClusterRole",
95107        "parameters": [
95108          {
95109            "in": "body",
95110            "name": "body",
95111            "schema": {
95112              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95113            }
95114          },
95115          {
95116            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95117            "in": "query",
95118            "name": "dryRun",
95119            "type": "string",
95120            "uniqueItems": true
95121          },
95122          {
95123            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95124            "in": "query",
95125            "name": "gracePeriodSeconds",
95126            "type": "integer",
95127            "uniqueItems": true
95128          },
95129          {
95130            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95131            "in": "query",
95132            "name": "orphanDependents",
95133            "type": "boolean",
95134            "uniqueItems": true
95135          },
95136          {
95137            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95138            "in": "query",
95139            "name": "propagationPolicy",
95140            "type": "string",
95141            "uniqueItems": true
95142          }
95143        ],
95144        "produces": [
95145          "application/json",
95146          "application/yaml",
95147          "application/vnd.kubernetes.protobuf"
95148        ],
95149        "responses": {
95150          "200": {
95151            "description": "OK",
95152            "schema": {
95153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95154            }
95155          },
95156          "202": {
95157            "description": "Accepted",
95158            "schema": {
95159              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95160            }
95161          },
95162          "401": {
95163            "description": "Unauthorized"
95164          }
95165        },
95166        "schemes": [
95167          "https"
95168        ],
95169        "tags": [
95170          "rbacAuthorization_v1beta1"
95171        ],
95172        "x-kubernetes-action": "delete",
95173        "x-kubernetes-group-version-kind": {
95174          "group": "rbac.authorization.k8s.io",
95175          "kind": "ClusterRole",
95176          "version": "v1beta1"
95177        }
95178      },
95179      "get": {
95180        "consumes": [
95181          "*/*"
95182        ],
95183        "description": "read the specified ClusterRole",
95184        "operationId": "readRbacAuthorizationV1beta1ClusterRole",
95185        "produces": [
95186          "application/json",
95187          "application/yaml",
95188          "application/vnd.kubernetes.protobuf"
95189        ],
95190        "responses": {
95191          "200": {
95192            "description": "OK",
95193            "schema": {
95194              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95195            }
95196          },
95197          "401": {
95198            "description": "Unauthorized"
95199          }
95200        },
95201        "schemes": [
95202          "https"
95203        ],
95204        "tags": [
95205          "rbacAuthorization_v1beta1"
95206        ],
95207        "x-kubernetes-action": "get",
95208        "x-kubernetes-group-version-kind": {
95209          "group": "rbac.authorization.k8s.io",
95210          "kind": "ClusterRole",
95211          "version": "v1beta1"
95212        }
95213      },
95214      "parameters": [
95215        {
95216          "description": "name of the ClusterRole",
95217          "in": "path",
95218          "name": "name",
95219          "required": true,
95220          "type": "string",
95221          "uniqueItems": true
95222        },
95223        {
95224          "description": "If 'true', then the output is pretty printed.",
95225          "in": "query",
95226          "name": "pretty",
95227          "type": "string",
95228          "uniqueItems": true
95229        }
95230      ],
95231      "patch": {
95232        "consumes": [
95233          "application/json-patch+json",
95234          "application/merge-patch+json",
95235          "application/strategic-merge-patch+json",
95236          "application/apply-patch+yaml"
95237        ],
95238        "description": "partially update the specified ClusterRole",
95239        "operationId": "patchRbacAuthorizationV1beta1ClusterRole",
95240        "parameters": [
95241          {
95242            "in": "body",
95243            "name": "body",
95244            "required": true,
95245            "schema": {
95246              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95247            }
95248          },
95249          {
95250            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95251            "in": "query",
95252            "name": "dryRun",
95253            "type": "string",
95254            "uniqueItems": true
95255          },
95256          {
95257            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
95258            "in": "query",
95259            "name": "fieldManager",
95260            "type": "string",
95261            "uniqueItems": true
95262          },
95263          {
95264            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
95265            "in": "query",
95266            "name": "force",
95267            "type": "boolean",
95268            "uniqueItems": true
95269          }
95270        ],
95271        "produces": [
95272          "application/json",
95273          "application/yaml",
95274          "application/vnd.kubernetes.protobuf"
95275        ],
95276        "responses": {
95277          "200": {
95278            "description": "OK",
95279            "schema": {
95280              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95281            }
95282          },
95283          "401": {
95284            "description": "Unauthorized"
95285          }
95286        },
95287        "schemes": [
95288          "https"
95289        ],
95290        "tags": [
95291          "rbacAuthorization_v1beta1"
95292        ],
95293        "x-kubernetes-action": "patch",
95294        "x-kubernetes-group-version-kind": {
95295          "group": "rbac.authorization.k8s.io",
95296          "kind": "ClusterRole",
95297          "version": "v1beta1"
95298        }
95299      },
95300      "put": {
95301        "consumes": [
95302          "*/*"
95303        ],
95304        "description": "replace the specified ClusterRole",
95305        "operationId": "replaceRbacAuthorizationV1beta1ClusterRole",
95306        "parameters": [
95307          {
95308            "in": "body",
95309            "name": "body",
95310            "required": true,
95311            "schema": {
95312              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95313            }
95314          },
95315          {
95316            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95317            "in": "query",
95318            "name": "dryRun",
95319            "type": "string",
95320            "uniqueItems": true
95321          },
95322          {
95323            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95324            "in": "query",
95325            "name": "fieldManager",
95326            "type": "string",
95327            "uniqueItems": true
95328          }
95329        ],
95330        "produces": [
95331          "application/json",
95332          "application/yaml",
95333          "application/vnd.kubernetes.protobuf"
95334        ],
95335        "responses": {
95336          "200": {
95337            "description": "OK",
95338            "schema": {
95339              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95340            }
95341          },
95342          "201": {
95343            "description": "Created",
95344            "schema": {
95345              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
95346            }
95347          },
95348          "401": {
95349            "description": "Unauthorized"
95350          }
95351        },
95352        "schemes": [
95353          "https"
95354        ],
95355        "tags": [
95356          "rbacAuthorization_v1beta1"
95357        ],
95358        "x-kubernetes-action": "put",
95359        "x-kubernetes-group-version-kind": {
95360          "group": "rbac.authorization.k8s.io",
95361          "kind": "ClusterRole",
95362          "version": "v1beta1"
95363        }
95364      }
95365    },
95366    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings": {
95367      "delete": {
95368        "consumes": [
95369          "*/*"
95370        ],
95371        "description": "delete collection of RoleBinding",
95372        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding",
95373        "parameters": [
95374          {
95375            "in": "body",
95376            "name": "body",
95377            "schema": {
95378              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95379            }
95380          },
95381          {
95382            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95383            "in": "query",
95384            "name": "continue",
95385            "type": "string",
95386            "uniqueItems": true
95387          },
95388          {
95389            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95390            "in": "query",
95391            "name": "dryRun",
95392            "type": "string",
95393            "uniqueItems": true
95394          },
95395          {
95396            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95397            "in": "query",
95398            "name": "fieldSelector",
95399            "type": "string",
95400            "uniqueItems": true
95401          },
95402          {
95403            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95404            "in": "query",
95405            "name": "gracePeriodSeconds",
95406            "type": "integer",
95407            "uniqueItems": true
95408          },
95409          {
95410            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95411            "in": "query",
95412            "name": "labelSelector",
95413            "type": "string",
95414            "uniqueItems": true
95415          },
95416          {
95417            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95418            "in": "query",
95419            "name": "limit",
95420            "type": "integer",
95421            "uniqueItems": true
95422          },
95423          {
95424            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95425            "in": "query",
95426            "name": "orphanDependents",
95427            "type": "boolean",
95428            "uniqueItems": true
95429          },
95430          {
95431            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95432            "in": "query",
95433            "name": "propagationPolicy",
95434            "type": "string",
95435            "uniqueItems": true
95436          },
95437          {
95438            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95439            "in": "query",
95440            "name": "resourceVersion",
95441            "type": "string",
95442            "uniqueItems": true
95443          },
95444          {
95445            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95446            "in": "query",
95447            "name": "resourceVersionMatch",
95448            "type": "string",
95449            "uniqueItems": true
95450          },
95451          {
95452            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95453            "in": "query",
95454            "name": "timeoutSeconds",
95455            "type": "integer",
95456            "uniqueItems": true
95457          }
95458        ],
95459        "produces": [
95460          "application/json",
95461          "application/yaml",
95462          "application/vnd.kubernetes.protobuf"
95463        ],
95464        "responses": {
95465          "200": {
95466            "description": "OK",
95467            "schema": {
95468              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95469            }
95470          },
95471          "401": {
95472            "description": "Unauthorized"
95473          }
95474        },
95475        "schemes": [
95476          "https"
95477        ],
95478        "tags": [
95479          "rbacAuthorization_v1beta1"
95480        ],
95481        "x-kubernetes-action": "deletecollection",
95482        "x-kubernetes-group-version-kind": {
95483          "group": "rbac.authorization.k8s.io",
95484          "kind": "RoleBinding",
95485          "version": "v1beta1"
95486        }
95487      },
95488      "get": {
95489        "consumes": [
95490          "*/*"
95491        ],
95492        "description": "list or watch objects of kind RoleBinding",
95493        "operationId": "listRbacAuthorizationV1beta1NamespacedRoleBinding",
95494        "parameters": [
95495          {
95496            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
95497            "in": "query",
95498            "name": "allowWatchBookmarks",
95499            "type": "boolean",
95500            "uniqueItems": true
95501          },
95502          {
95503            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95504            "in": "query",
95505            "name": "continue",
95506            "type": "string",
95507            "uniqueItems": true
95508          },
95509          {
95510            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95511            "in": "query",
95512            "name": "fieldSelector",
95513            "type": "string",
95514            "uniqueItems": true
95515          },
95516          {
95517            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95518            "in": "query",
95519            "name": "labelSelector",
95520            "type": "string",
95521            "uniqueItems": true
95522          },
95523          {
95524            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95525            "in": "query",
95526            "name": "limit",
95527            "type": "integer",
95528            "uniqueItems": true
95529          },
95530          {
95531            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95532            "in": "query",
95533            "name": "resourceVersion",
95534            "type": "string",
95535            "uniqueItems": true
95536          },
95537          {
95538            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
95539            "in": "query",
95540            "name": "resourceVersionMatch",
95541            "type": "string",
95542            "uniqueItems": true
95543          },
95544          {
95545            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95546            "in": "query",
95547            "name": "timeoutSeconds",
95548            "type": "integer",
95549            "uniqueItems": true
95550          },
95551          {
95552            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95553            "in": "query",
95554            "name": "watch",
95555            "type": "boolean",
95556            "uniqueItems": true
95557          }
95558        ],
95559        "produces": [
95560          "application/json",
95561          "application/yaml",
95562          "application/vnd.kubernetes.protobuf",
95563          "application/json;stream=watch",
95564          "application/vnd.kubernetes.protobuf;stream=watch"
95565        ],
95566        "responses": {
95567          "200": {
95568            "description": "OK",
95569            "schema": {
95570              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
95571            }
95572          },
95573          "401": {
95574            "description": "Unauthorized"
95575          }
95576        },
95577        "schemes": [
95578          "https"
95579        ],
95580        "tags": [
95581          "rbacAuthorization_v1beta1"
95582        ],
95583        "x-kubernetes-action": "list",
95584        "x-kubernetes-group-version-kind": {
95585          "group": "rbac.authorization.k8s.io",
95586          "kind": "RoleBinding",
95587          "version": "v1beta1"
95588        }
95589      },
95590      "parameters": [
95591        {
95592          "description": "object name and auth scope, such as for teams and projects",
95593          "in": "path",
95594          "name": "namespace",
95595          "required": true,
95596          "type": "string",
95597          "uniqueItems": true
95598        },
95599        {
95600          "description": "If 'true', then the output is pretty printed.",
95601          "in": "query",
95602          "name": "pretty",
95603          "type": "string",
95604          "uniqueItems": true
95605        }
95606      ],
95607      "post": {
95608        "consumes": [
95609          "*/*"
95610        ],
95611        "description": "create a RoleBinding",
95612        "operationId": "createRbacAuthorizationV1beta1NamespacedRoleBinding",
95613        "parameters": [
95614          {
95615            "in": "body",
95616            "name": "body",
95617            "required": true,
95618            "schema": {
95619              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95620            }
95621          },
95622          {
95623            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95624            "in": "query",
95625            "name": "dryRun",
95626            "type": "string",
95627            "uniqueItems": true
95628          },
95629          {
95630            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95631            "in": "query",
95632            "name": "fieldManager",
95633            "type": "string",
95634            "uniqueItems": true
95635          }
95636        ],
95637        "produces": [
95638          "application/json",
95639          "application/yaml",
95640          "application/vnd.kubernetes.protobuf"
95641        ],
95642        "responses": {
95643          "200": {
95644            "description": "OK",
95645            "schema": {
95646              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95647            }
95648          },
95649          "201": {
95650            "description": "Created",
95651            "schema": {
95652              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95653            }
95654          },
95655          "202": {
95656            "description": "Accepted",
95657            "schema": {
95658              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95659            }
95660          },
95661          "401": {
95662            "description": "Unauthorized"
95663          }
95664        },
95665        "schemes": [
95666          "https"
95667        ],
95668        "tags": [
95669          "rbacAuthorization_v1beta1"
95670        ],
95671        "x-kubernetes-action": "post",
95672        "x-kubernetes-group-version-kind": {
95673          "group": "rbac.authorization.k8s.io",
95674          "kind": "RoleBinding",
95675          "version": "v1beta1"
95676        }
95677      }
95678    },
95679    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}": {
95680      "delete": {
95681        "consumes": [
95682          "*/*"
95683        ],
95684        "description": "delete a RoleBinding",
95685        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRoleBinding",
95686        "parameters": [
95687          {
95688            "in": "body",
95689            "name": "body",
95690            "schema": {
95691              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95692            }
95693          },
95694          {
95695            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95696            "in": "query",
95697            "name": "dryRun",
95698            "type": "string",
95699            "uniqueItems": true
95700          },
95701          {
95702            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95703            "in": "query",
95704            "name": "gracePeriodSeconds",
95705            "type": "integer",
95706            "uniqueItems": true
95707          },
95708          {
95709            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
95710            "in": "query",
95711            "name": "orphanDependents",
95712            "type": "boolean",
95713            "uniqueItems": true
95714          },
95715          {
95716            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
95717            "in": "query",
95718            "name": "propagationPolicy",
95719            "type": "string",
95720            "uniqueItems": true
95721          }
95722        ],
95723        "produces": [
95724          "application/json",
95725          "application/yaml",
95726          "application/vnd.kubernetes.protobuf"
95727        ],
95728        "responses": {
95729          "200": {
95730            "description": "OK",
95731            "schema": {
95732              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95733            }
95734          },
95735          "202": {
95736            "description": "Accepted",
95737            "schema": {
95738              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95739            }
95740          },
95741          "401": {
95742            "description": "Unauthorized"
95743          }
95744        },
95745        "schemes": [
95746          "https"
95747        ],
95748        "tags": [
95749          "rbacAuthorization_v1beta1"
95750        ],
95751        "x-kubernetes-action": "delete",
95752        "x-kubernetes-group-version-kind": {
95753          "group": "rbac.authorization.k8s.io",
95754          "kind": "RoleBinding",
95755          "version": "v1beta1"
95756        }
95757      },
95758      "get": {
95759        "consumes": [
95760          "*/*"
95761        ],
95762        "description": "read the specified RoleBinding",
95763        "operationId": "readRbacAuthorizationV1beta1NamespacedRoleBinding",
95764        "produces": [
95765          "application/json",
95766          "application/yaml",
95767          "application/vnd.kubernetes.protobuf"
95768        ],
95769        "responses": {
95770          "200": {
95771            "description": "OK",
95772            "schema": {
95773              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95774            }
95775          },
95776          "401": {
95777            "description": "Unauthorized"
95778          }
95779        },
95780        "schemes": [
95781          "https"
95782        ],
95783        "tags": [
95784          "rbacAuthorization_v1beta1"
95785        ],
95786        "x-kubernetes-action": "get",
95787        "x-kubernetes-group-version-kind": {
95788          "group": "rbac.authorization.k8s.io",
95789          "kind": "RoleBinding",
95790          "version": "v1beta1"
95791        }
95792      },
95793      "parameters": [
95794        {
95795          "description": "name of the RoleBinding",
95796          "in": "path",
95797          "name": "name",
95798          "required": true,
95799          "type": "string",
95800          "uniqueItems": true
95801        },
95802        {
95803          "description": "object name and auth scope, such as for teams and projects",
95804          "in": "path",
95805          "name": "namespace",
95806          "required": true,
95807          "type": "string",
95808          "uniqueItems": true
95809        },
95810        {
95811          "description": "If 'true', then the output is pretty printed.",
95812          "in": "query",
95813          "name": "pretty",
95814          "type": "string",
95815          "uniqueItems": true
95816        }
95817      ],
95818      "patch": {
95819        "consumes": [
95820          "application/json-patch+json",
95821          "application/merge-patch+json",
95822          "application/strategic-merge-patch+json",
95823          "application/apply-patch+yaml"
95824        ],
95825        "description": "partially update the specified RoleBinding",
95826        "operationId": "patchRbacAuthorizationV1beta1NamespacedRoleBinding",
95827        "parameters": [
95828          {
95829            "in": "body",
95830            "name": "body",
95831            "required": true,
95832            "schema": {
95833              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95834            }
95835          },
95836          {
95837            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95838            "in": "query",
95839            "name": "dryRun",
95840            "type": "string",
95841            "uniqueItems": true
95842          },
95843          {
95844            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
95845            "in": "query",
95846            "name": "fieldManager",
95847            "type": "string",
95848            "uniqueItems": true
95849          },
95850          {
95851            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
95852            "in": "query",
95853            "name": "force",
95854            "type": "boolean",
95855            "uniqueItems": true
95856          }
95857        ],
95858        "produces": [
95859          "application/json",
95860          "application/yaml",
95861          "application/vnd.kubernetes.protobuf"
95862        ],
95863        "responses": {
95864          "200": {
95865            "description": "OK",
95866            "schema": {
95867              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95868            }
95869          },
95870          "401": {
95871            "description": "Unauthorized"
95872          }
95873        },
95874        "schemes": [
95875          "https"
95876        ],
95877        "tags": [
95878          "rbacAuthorization_v1beta1"
95879        ],
95880        "x-kubernetes-action": "patch",
95881        "x-kubernetes-group-version-kind": {
95882          "group": "rbac.authorization.k8s.io",
95883          "kind": "RoleBinding",
95884          "version": "v1beta1"
95885        }
95886      },
95887      "put": {
95888        "consumes": [
95889          "*/*"
95890        ],
95891        "description": "replace the specified RoleBinding",
95892        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRoleBinding",
95893        "parameters": [
95894          {
95895            "in": "body",
95896            "name": "body",
95897            "required": true,
95898            "schema": {
95899              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95900            }
95901          },
95902          {
95903            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95904            "in": "query",
95905            "name": "dryRun",
95906            "type": "string",
95907            "uniqueItems": true
95908          },
95909          {
95910            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95911            "in": "query",
95912            "name": "fieldManager",
95913            "type": "string",
95914            "uniqueItems": true
95915          }
95916        ],
95917        "produces": [
95918          "application/json",
95919          "application/yaml",
95920          "application/vnd.kubernetes.protobuf"
95921        ],
95922        "responses": {
95923          "200": {
95924            "description": "OK",
95925            "schema": {
95926              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95927            }
95928          },
95929          "201": {
95930            "description": "Created",
95931            "schema": {
95932              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
95933            }
95934          },
95935          "401": {
95936            "description": "Unauthorized"
95937          }
95938        },
95939        "schemes": [
95940          "https"
95941        ],
95942        "tags": [
95943          "rbacAuthorization_v1beta1"
95944        ],
95945        "x-kubernetes-action": "put",
95946        "x-kubernetes-group-version-kind": {
95947          "group": "rbac.authorization.k8s.io",
95948          "kind": "RoleBinding",
95949          "version": "v1beta1"
95950        }
95951      }
95952    },
95953    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles": {
95954      "delete": {
95955        "consumes": [
95956          "*/*"
95957        ],
95958        "description": "delete collection of Role",
95959        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRole",
95960        "parameters": [
95961          {
95962            "in": "body",
95963            "name": "body",
95964            "schema": {
95965              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95966            }
95967          },
95968          {
95969            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95970            "in": "query",
95971            "name": "continue",
95972            "type": "string",
95973            "uniqueItems": true
95974          },
95975          {
95976            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95977            "in": "query",
95978            "name": "dryRun",
95979            "type": "string",
95980            "uniqueItems": true
95981          },
95982          {
95983            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95984            "in": "query",
95985            "name": "fieldSelector",
95986            "type": "string",
95987            "uniqueItems": true
95988          },
95989          {
95990            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
95991            "in": "query",
95992            "name": "gracePeriodSeconds",
95993            "type": "integer",
95994            "uniqueItems": true
95995          },
95996          {
95997            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95998            "in": "query",
95999            "name": "labelSelector",
96000            "type": "string",
96001            "uniqueItems": true
96002          },
96003          {
96004            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96005            "in": "query",
96006            "name": "limit",
96007            "type": "integer",
96008            "uniqueItems": true
96009          },
96010          {
96011            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
96012            "in": "query",
96013            "name": "orphanDependents",
96014            "type": "boolean",
96015            "uniqueItems": true
96016          },
96017          {
96018            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
96019            "in": "query",
96020            "name": "propagationPolicy",
96021            "type": "string",
96022            "uniqueItems": true
96023          },
96024          {
96025            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96026            "in": "query",
96027            "name": "resourceVersion",
96028            "type": "string",
96029            "uniqueItems": true
96030          },
96031          {
96032            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96033            "in": "query",
96034            "name": "resourceVersionMatch",
96035            "type": "string",
96036            "uniqueItems": true
96037          },
96038          {
96039            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96040            "in": "query",
96041            "name": "timeoutSeconds",
96042            "type": "integer",
96043            "uniqueItems": true
96044          }
96045        ],
96046        "produces": [
96047          "application/json",
96048          "application/yaml",
96049          "application/vnd.kubernetes.protobuf"
96050        ],
96051        "responses": {
96052          "200": {
96053            "description": "OK",
96054            "schema": {
96055              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96056            }
96057          },
96058          "401": {
96059            "description": "Unauthorized"
96060          }
96061        },
96062        "schemes": [
96063          "https"
96064        ],
96065        "tags": [
96066          "rbacAuthorization_v1beta1"
96067        ],
96068        "x-kubernetes-action": "deletecollection",
96069        "x-kubernetes-group-version-kind": {
96070          "group": "rbac.authorization.k8s.io",
96071          "kind": "Role",
96072          "version": "v1beta1"
96073        }
96074      },
96075      "get": {
96076        "consumes": [
96077          "*/*"
96078        ],
96079        "description": "list or watch objects of kind Role",
96080        "operationId": "listRbacAuthorizationV1beta1NamespacedRole",
96081        "parameters": [
96082          {
96083            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96084            "in": "query",
96085            "name": "allowWatchBookmarks",
96086            "type": "boolean",
96087            "uniqueItems": true
96088          },
96089          {
96090            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96091            "in": "query",
96092            "name": "continue",
96093            "type": "string",
96094            "uniqueItems": true
96095          },
96096          {
96097            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96098            "in": "query",
96099            "name": "fieldSelector",
96100            "type": "string",
96101            "uniqueItems": true
96102          },
96103          {
96104            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96105            "in": "query",
96106            "name": "labelSelector",
96107            "type": "string",
96108            "uniqueItems": true
96109          },
96110          {
96111            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96112            "in": "query",
96113            "name": "limit",
96114            "type": "integer",
96115            "uniqueItems": true
96116          },
96117          {
96118            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96119            "in": "query",
96120            "name": "resourceVersion",
96121            "type": "string",
96122            "uniqueItems": true
96123          },
96124          {
96125            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96126            "in": "query",
96127            "name": "resourceVersionMatch",
96128            "type": "string",
96129            "uniqueItems": true
96130          },
96131          {
96132            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96133            "in": "query",
96134            "name": "timeoutSeconds",
96135            "type": "integer",
96136            "uniqueItems": true
96137          },
96138          {
96139            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96140            "in": "query",
96141            "name": "watch",
96142            "type": "boolean",
96143            "uniqueItems": true
96144          }
96145        ],
96146        "produces": [
96147          "application/json",
96148          "application/yaml",
96149          "application/vnd.kubernetes.protobuf",
96150          "application/json;stream=watch",
96151          "application/vnd.kubernetes.protobuf;stream=watch"
96152        ],
96153        "responses": {
96154          "200": {
96155            "description": "OK",
96156            "schema": {
96157              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
96158            }
96159          },
96160          "401": {
96161            "description": "Unauthorized"
96162          }
96163        },
96164        "schemes": [
96165          "https"
96166        ],
96167        "tags": [
96168          "rbacAuthorization_v1beta1"
96169        ],
96170        "x-kubernetes-action": "list",
96171        "x-kubernetes-group-version-kind": {
96172          "group": "rbac.authorization.k8s.io",
96173          "kind": "Role",
96174          "version": "v1beta1"
96175        }
96176      },
96177      "parameters": [
96178        {
96179          "description": "object name and auth scope, such as for teams and projects",
96180          "in": "path",
96181          "name": "namespace",
96182          "required": true,
96183          "type": "string",
96184          "uniqueItems": true
96185        },
96186        {
96187          "description": "If 'true', then the output is pretty printed.",
96188          "in": "query",
96189          "name": "pretty",
96190          "type": "string",
96191          "uniqueItems": true
96192        }
96193      ],
96194      "post": {
96195        "consumes": [
96196          "*/*"
96197        ],
96198        "description": "create a Role",
96199        "operationId": "createRbacAuthorizationV1beta1NamespacedRole",
96200        "parameters": [
96201          {
96202            "in": "body",
96203            "name": "body",
96204            "required": true,
96205            "schema": {
96206              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96207            }
96208          },
96209          {
96210            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96211            "in": "query",
96212            "name": "dryRun",
96213            "type": "string",
96214            "uniqueItems": true
96215          },
96216          {
96217            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
96218            "in": "query",
96219            "name": "fieldManager",
96220            "type": "string",
96221            "uniqueItems": true
96222          }
96223        ],
96224        "produces": [
96225          "application/json",
96226          "application/yaml",
96227          "application/vnd.kubernetes.protobuf"
96228        ],
96229        "responses": {
96230          "200": {
96231            "description": "OK",
96232            "schema": {
96233              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96234            }
96235          },
96236          "201": {
96237            "description": "Created",
96238            "schema": {
96239              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96240            }
96241          },
96242          "202": {
96243            "description": "Accepted",
96244            "schema": {
96245              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96246            }
96247          },
96248          "401": {
96249            "description": "Unauthorized"
96250          }
96251        },
96252        "schemes": [
96253          "https"
96254        ],
96255        "tags": [
96256          "rbacAuthorization_v1beta1"
96257        ],
96258        "x-kubernetes-action": "post",
96259        "x-kubernetes-group-version-kind": {
96260          "group": "rbac.authorization.k8s.io",
96261          "kind": "Role",
96262          "version": "v1beta1"
96263        }
96264      }
96265    },
96266    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}": {
96267      "delete": {
96268        "consumes": [
96269          "*/*"
96270        ],
96271        "description": "delete a Role",
96272        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRole",
96273        "parameters": [
96274          {
96275            "in": "body",
96276            "name": "body",
96277            "schema": {
96278              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
96279            }
96280          },
96281          {
96282            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96283            "in": "query",
96284            "name": "dryRun",
96285            "type": "string",
96286            "uniqueItems": true
96287          },
96288          {
96289            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
96290            "in": "query",
96291            "name": "gracePeriodSeconds",
96292            "type": "integer",
96293            "uniqueItems": true
96294          },
96295          {
96296            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
96297            "in": "query",
96298            "name": "orphanDependents",
96299            "type": "boolean",
96300            "uniqueItems": true
96301          },
96302          {
96303            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
96304            "in": "query",
96305            "name": "propagationPolicy",
96306            "type": "string",
96307            "uniqueItems": true
96308          }
96309        ],
96310        "produces": [
96311          "application/json",
96312          "application/yaml",
96313          "application/vnd.kubernetes.protobuf"
96314        ],
96315        "responses": {
96316          "200": {
96317            "description": "OK",
96318            "schema": {
96319              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96320            }
96321          },
96322          "202": {
96323            "description": "Accepted",
96324            "schema": {
96325              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
96326            }
96327          },
96328          "401": {
96329            "description": "Unauthorized"
96330          }
96331        },
96332        "schemes": [
96333          "https"
96334        ],
96335        "tags": [
96336          "rbacAuthorization_v1beta1"
96337        ],
96338        "x-kubernetes-action": "delete",
96339        "x-kubernetes-group-version-kind": {
96340          "group": "rbac.authorization.k8s.io",
96341          "kind": "Role",
96342          "version": "v1beta1"
96343        }
96344      },
96345      "get": {
96346        "consumes": [
96347          "*/*"
96348        ],
96349        "description": "read the specified Role",
96350        "operationId": "readRbacAuthorizationV1beta1NamespacedRole",
96351        "produces": [
96352          "application/json",
96353          "application/yaml",
96354          "application/vnd.kubernetes.protobuf"
96355        ],
96356        "responses": {
96357          "200": {
96358            "description": "OK",
96359            "schema": {
96360              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96361            }
96362          },
96363          "401": {
96364            "description": "Unauthorized"
96365          }
96366        },
96367        "schemes": [
96368          "https"
96369        ],
96370        "tags": [
96371          "rbacAuthorization_v1beta1"
96372        ],
96373        "x-kubernetes-action": "get",
96374        "x-kubernetes-group-version-kind": {
96375          "group": "rbac.authorization.k8s.io",
96376          "kind": "Role",
96377          "version": "v1beta1"
96378        }
96379      },
96380      "parameters": [
96381        {
96382          "description": "name of the Role",
96383          "in": "path",
96384          "name": "name",
96385          "required": true,
96386          "type": "string",
96387          "uniqueItems": true
96388        },
96389        {
96390          "description": "object name and auth scope, such as for teams and projects",
96391          "in": "path",
96392          "name": "namespace",
96393          "required": true,
96394          "type": "string",
96395          "uniqueItems": true
96396        },
96397        {
96398          "description": "If 'true', then the output is pretty printed.",
96399          "in": "query",
96400          "name": "pretty",
96401          "type": "string",
96402          "uniqueItems": true
96403        }
96404      ],
96405      "patch": {
96406        "consumes": [
96407          "application/json-patch+json",
96408          "application/merge-patch+json",
96409          "application/strategic-merge-patch+json",
96410          "application/apply-patch+yaml"
96411        ],
96412        "description": "partially update the specified Role",
96413        "operationId": "patchRbacAuthorizationV1beta1NamespacedRole",
96414        "parameters": [
96415          {
96416            "in": "body",
96417            "name": "body",
96418            "required": true,
96419            "schema": {
96420              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
96421            }
96422          },
96423          {
96424            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96425            "in": "query",
96426            "name": "dryRun",
96427            "type": "string",
96428            "uniqueItems": true
96429          },
96430          {
96431            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
96432            "in": "query",
96433            "name": "fieldManager",
96434            "type": "string",
96435            "uniqueItems": true
96436          },
96437          {
96438            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
96439            "in": "query",
96440            "name": "force",
96441            "type": "boolean",
96442            "uniqueItems": true
96443          }
96444        ],
96445        "produces": [
96446          "application/json",
96447          "application/yaml",
96448          "application/vnd.kubernetes.protobuf"
96449        ],
96450        "responses": {
96451          "200": {
96452            "description": "OK",
96453            "schema": {
96454              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96455            }
96456          },
96457          "401": {
96458            "description": "Unauthorized"
96459          }
96460        },
96461        "schemes": [
96462          "https"
96463        ],
96464        "tags": [
96465          "rbacAuthorization_v1beta1"
96466        ],
96467        "x-kubernetes-action": "patch",
96468        "x-kubernetes-group-version-kind": {
96469          "group": "rbac.authorization.k8s.io",
96470          "kind": "Role",
96471          "version": "v1beta1"
96472        }
96473      },
96474      "put": {
96475        "consumes": [
96476          "*/*"
96477        ],
96478        "description": "replace the specified Role",
96479        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRole",
96480        "parameters": [
96481          {
96482            "in": "body",
96483            "name": "body",
96484            "required": true,
96485            "schema": {
96486              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96487            }
96488          },
96489          {
96490            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
96491            "in": "query",
96492            "name": "dryRun",
96493            "type": "string",
96494            "uniqueItems": true
96495          },
96496          {
96497            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
96498            "in": "query",
96499            "name": "fieldManager",
96500            "type": "string",
96501            "uniqueItems": true
96502          }
96503        ],
96504        "produces": [
96505          "application/json",
96506          "application/yaml",
96507          "application/vnd.kubernetes.protobuf"
96508        ],
96509        "responses": {
96510          "200": {
96511            "description": "OK",
96512            "schema": {
96513              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96514            }
96515          },
96516          "201": {
96517            "description": "Created",
96518            "schema": {
96519              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
96520            }
96521          },
96522          "401": {
96523            "description": "Unauthorized"
96524          }
96525        },
96526        "schemes": [
96527          "https"
96528        ],
96529        "tags": [
96530          "rbacAuthorization_v1beta1"
96531        ],
96532        "x-kubernetes-action": "put",
96533        "x-kubernetes-group-version-kind": {
96534          "group": "rbac.authorization.k8s.io",
96535          "kind": "Role",
96536          "version": "v1beta1"
96537        }
96538      }
96539    },
96540    "/apis/rbac.authorization.k8s.io/v1beta1/rolebindings": {
96541      "get": {
96542        "consumes": [
96543          "*/*"
96544        ],
96545        "description": "list or watch objects of kind RoleBinding",
96546        "operationId": "listRbacAuthorizationV1beta1RoleBindingForAllNamespaces",
96547        "produces": [
96548          "application/json",
96549          "application/yaml",
96550          "application/vnd.kubernetes.protobuf",
96551          "application/json;stream=watch",
96552          "application/vnd.kubernetes.protobuf;stream=watch"
96553        ],
96554        "responses": {
96555          "200": {
96556            "description": "OK",
96557            "schema": {
96558              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
96559            }
96560          },
96561          "401": {
96562            "description": "Unauthorized"
96563          }
96564        },
96565        "schemes": [
96566          "https"
96567        ],
96568        "tags": [
96569          "rbacAuthorization_v1beta1"
96570        ],
96571        "x-kubernetes-action": "list",
96572        "x-kubernetes-group-version-kind": {
96573          "group": "rbac.authorization.k8s.io",
96574          "kind": "RoleBinding",
96575          "version": "v1beta1"
96576        }
96577      },
96578      "parameters": [
96579        {
96580          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96581          "in": "query",
96582          "name": "allowWatchBookmarks",
96583          "type": "boolean",
96584          "uniqueItems": true
96585        },
96586        {
96587          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96588          "in": "query",
96589          "name": "continue",
96590          "type": "string",
96591          "uniqueItems": true
96592        },
96593        {
96594          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96595          "in": "query",
96596          "name": "fieldSelector",
96597          "type": "string",
96598          "uniqueItems": true
96599        },
96600        {
96601          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96602          "in": "query",
96603          "name": "labelSelector",
96604          "type": "string",
96605          "uniqueItems": true
96606        },
96607        {
96608          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96609          "in": "query",
96610          "name": "limit",
96611          "type": "integer",
96612          "uniqueItems": true
96613        },
96614        {
96615          "description": "If 'true', then the output is pretty printed.",
96616          "in": "query",
96617          "name": "pretty",
96618          "type": "string",
96619          "uniqueItems": true
96620        },
96621        {
96622          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96623          "in": "query",
96624          "name": "resourceVersion",
96625          "type": "string",
96626          "uniqueItems": true
96627        },
96628        {
96629          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96630          "in": "query",
96631          "name": "resourceVersionMatch",
96632          "type": "string",
96633          "uniqueItems": true
96634        },
96635        {
96636          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96637          "in": "query",
96638          "name": "timeoutSeconds",
96639          "type": "integer",
96640          "uniqueItems": true
96641        },
96642        {
96643          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96644          "in": "query",
96645          "name": "watch",
96646          "type": "boolean",
96647          "uniqueItems": true
96648        }
96649      ]
96650    },
96651    "/apis/rbac.authorization.k8s.io/v1beta1/roles": {
96652      "get": {
96653        "consumes": [
96654          "*/*"
96655        ],
96656        "description": "list or watch objects of kind Role",
96657        "operationId": "listRbacAuthorizationV1beta1RoleForAllNamespaces",
96658        "produces": [
96659          "application/json",
96660          "application/yaml",
96661          "application/vnd.kubernetes.protobuf",
96662          "application/json;stream=watch",
96663          "application/vnd.kubernetes.protobuf;stream=watch"
96664        ],
96665        "responses": {
96666          "200": {
96667            "description": "OK",
96668            "schema": {
96669              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
96670            }
96671          },
96672          "401": {
96673            "description": "Unauthorized"
96674          }
96675        },
96676        "schemes": [
96677          "https"
96678        ],
96679        "tags": [
96680          "rbacAuthorization_v1beta1"
96681        ],
96682        "x-kubernetes-action": "list",
96683        "x-kubernetes-group-version-kind": {
96684          "group": "rbac.authorization.k8s.io",
96685          "kind": "Role",
96686          "version": "v1beta1"
96687        }
96688      },
96689      "parameters": [
96690        {
96691          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96692          "in": "query",
96693          "name": "allowWatchBookmarks",
96694          "type": "boolean",
96695          "uniqueItems": true
96696        },
96697        {
96698          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96699          "in": "query",
96700          "name": "continue",
96701          "type": "string",
96702          "uniqueItems": true
96703        },
96704        {
96705          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96706          "in": "query",
96707          "name": "fieldSelector",
96708          "type": "string",
96709          "uniqueItems": true
96710        },
96711        {
96712          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96713          "in": "query",
96714          "name": "labelSelector",
96715          "type": "string",
96716          "uniqueItems": true
96717        },
96718        {
96719          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96720          "in": "query",
96721          "name": "limit",
96722          "type": "integer",
96723          "uniqueItems": true
96724        },
96725        {
96726          "description": "If 'true', then the output is pretty printed.",
96727          "in": "query",
96728          "name": "pretty",
96729          "type": "string",
96730          "uniqueItems": true
96731        },
96732        {
96733          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96734          "in": "query",
96735          "name": "resourceVersion",
96736          "type": "string",
96737          "uniqueItems": true
96738        },
96739        {
96740          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96741          "in": "query",
96742          "name": "resourceVersionMatch",
96743          "type": "string",
96744          "uniqueItems": true
96745        },
96746        {
96747          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96748          "in": "query",
96749          "name": "timeoutSeconds",
96750          "type": "integer",
96751          "uniqueItems": true
96752        },
96753        {
96754          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96755          "in": "query",
96756          "name": "watch",
96757          "type": "boolean",
96758          "uniqueItems": true
96759        }
96760      ]
96761    },
96762    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings": {
96763      "get": {
96764        "consumes": [
96765          "*/*"
96766        ],
96767        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
96768        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBindingList",
96769        "produces": [
96770          "application/json",
96771          "application/yaml",
96772          "application/vnd.kubernetes.protobuf",
96773          "application/json;stream=watch",
96774          "application/vnd.kubernetes.protobuf;stream=watch"
96775        ],
96776        "responses": {
96777          "200": {
96778            "description": "OK",
96779            "schema": {
96780              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96781            }
96782          },
96783          "401": {
96784            "description": "Unauthorized"
96785          }
96786        },
96787        "schemes": [
96788          "https"
96789        ],
96790        "tags": [
96791          "rbacAuthorization_v1beta1"
96792        ],
96793        "x-kubernetes-action": "watchlist",
96794        "x-kubernetes-group-version-kind": {
96795          "group": "rbac.authorization.k8s.io",
96796          "kind": "ClusterRoleBinding",
96797          "version": "v1beta1"
96798        }
96799      },
96800      "parameters": [
96801        {
96802          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96803          "in": "query",
96804          "name": "allowWatchBookmarks",
96805          "type": "boolean",
96806          "uniqueItems": true
96807        },
96808        {
96809          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96810          "in": "query",
96811          "name": "continue",
96812          "type": "string",
96813          "uniqueItems": true
96814        },
96815        {
96816          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96817          "in": "query",
96818          "name": "fieldSelector",
96819          "type": "string",
96820          "uniqueItems": true
96821        },
96822        {
96823          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96824          "in": "query",
96825          "name": "labelSelector",
96826          "type": "string",
96827          "uniqueItems": true
96828        },
96829        {
96830          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96831          "in": "query",
96832          "name": "limit",
96833          "type": "integer",
96834          "uniqueItems": true
96835        },
96836        {
96837          "description": "If 'true', then the output is pretty printed.",
96838          "in": "query",
96839          "name": "pretty",
96840          "type": "string",
96841          "uniqueItems": true
96842        },
96843        {
96844          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96845          "in": "query",
96846          "name": "resourceVersion",
96847          "type": "string",
96848          "uniqueItems": true
96849        },
96850        {
96851          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96852          "in": "query",
96853          "name": "resourceVersionMatch",
96854          "type": "string",
96855          "uniqueItems": true
96856        },
96857        {
96858          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96859          "in": "query",
96860          "name": "timeoutSeconds",
96861          "type": "integer",
96862          "uniqueItems": true
96863        },
96864        {
96865          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96866          "in": "query",
96867          "name": "watch",
96868          "type": "boolean",
96869          "uniqueItems": true
96870        }
96871      ]
96872    },
96873    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}": {
96874      "get": {
96875        "consumes": [
96876          "*/*"
96877        ],
96878        "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.",
96879        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBinding",
96880        "produces": [
96881          "application/json",
96882          "application/yaml",
96883          "application/vnd.kubernetes.protobuf",
96884          "application/json;stream=watch",
96885          "application/vnd.kubernetes.protobuf;stream=watch"
96886        ],
96887        "responses": {
96888          "200": {
96889            "description": "OK",
96890            "schema": {
96891              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96892            }
96893          },
96894          "401": {
96895            "description": "Unauthorized"
96896          }
96897        },
96898        "schemes": [
96899          "https"
96900        ],
96901        "tags": [
96902          "rbacAuthorization_v1beta1"
96903        ],
96904        "x-kubernetes-action": "watch",
96905        "x-kubernetes-group-version-kind": {
96906          "group": "rbac.authorization.k8s.io",
96907          "kind": "ClusterRoleBinding",
96908          "version": "v1beta1"
96909        }
96910      },
96911      "parameters": [
96912        {
96913          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
96914          "in": "query",
96915          "name": "allowWatchBookmarks",
96916          "type": "boolean",
96917          "uniqueItems": true
96918        },
96919        {
96920          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96921          "in": "query",
96922          "name": "continue",
96923          "type": "string",
96924          "uniqueItems": true
96925        },
96926        {
96927          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96928          "in": "query",
96929          "name": "fieldSelector",
96930          "type": "string",
96931          "uniqueItems": true
96932        },
96933        {
96934          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96935          "in": "query",
96936          "name": "labelSelector",
96937          "type": "string",
96938          "uniqueItems": true
96939        },
96940        {
96941          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96942          "in": "query",
96943          "name": "limit",
96944          "type": "integer",
96945          "uniqueItems": true
96946        },
96947        {
96948          "description": "name of the ClusterRoleBinding",
96949          "in": "path",
96950          "name": "name",
96951          "required": true,
96952          "type": "string",
96953          "uniqueItems": true
96954        },
96955        {
96956          "description": "If 'true', then the output is pretty printed.",
96957          "in": "query",
96958          "name": "pretty",
96959          "type": "string",
96960          "uniqueItems": true
96961        },
96962        {
96963          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96964          "in": "query",
96965          "name": "resourceVersion",
96966          "type": "string",
96967          "uniqueItems": true
96968        },
96969        {
96970          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
96971          "in": "query",
96972          "name": "resourceVersionMatch",
96973          "type": "string",
96974          "uniqueItems": true
96975        },
96976        {
96977          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96978          "in": "query",
96979          "name": "timeoutSeconds",
96980          "type": "integer",
96981          "uniqueItems": true
96982        },
96983        {
96984          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96985          "in": "query",
96986          "name": "watch",
96987          "type": "boolean",
96988          "uniqueItems": true
96989        }
96990      ]
96991    },
96992    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles": {
96993      "get": {
96994        "consumes": [
96995          "*/*"
96996        ],
96997        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
96998        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleList",
96999        "produces": [
97000          "application/json",
97001          "application/yaml",
97002          "application/vnd.kubernetes.protobuf",
97003          "application/json;stream=watch",
97004          "application/vnd.kubernetes.protobuf;stream=watch"
97005        ],
97006        "responses": {
97007          "200": {
97008            "description": "OK",
97009            "schema": {
97010              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97011            }
97012          },
97013          "401": {
97014            "description": "Unauthorized"
97015          }
97016        },
97017        "schemes": [
97018          "https"
97019        ],
97020        "tags": [
97021          "rbacAuthorization_v1beta1"
97022        ],
97023        "x-kubernetes-action": "watchlist",
97024        "x-kubernetes-group-version-kind": {
97025          "group": "rbac.authorization.k8s.io",
97026          "kind": "ClusterRole",
97027          "version": "v1beta1"
97028        }
97029      },
97030      "parameters": [
97031        {
97032          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97033          "in": "query",
97034          "name": "allowWatchBookmarks",
97035          "type": "boolean",
97036          "uniqueItems": true
97037        },
97038        {
97039          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97040          "in": "query",
97041          "name": "continue",
97042          "type": "string",
97043          "uniqueItems": true
97044        },
97045        {
97046          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97047          "in": "query",
97048          "name": "fieldSelector",
97049          "type": "string",
97050          "uniqueItems": true
97051        },
97052        {
97053          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97054          "in": "query",
97055          "name": "labelSelector",
97056          "type": "string",
97057          "uniqueItems": true
97058        },
97059        {
97060          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97061          "in": "query",
97062          "name": "limit",
97063          "type": "integer",
97064          "uniqueItems": true
97065        },
97066        {
97067          "description": "If 'true', then the output is pretty printed.",
97068          "in": "query",
97069          "name": "pretty",
97070          "type": "string",
97071          "uniqueItems": true
97072        },
97073        {
97074          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97075          "in": "query",
97076          "name": "resourceVersion",
97077          "type": "string",
97078          "uniqueItems": true
97079        },
97080        {
97081          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97082          "in": "query",
97083          "name": "resourceVersionMatch",
97084          "type": "string",
97085          "uniqueItems": true
97086        },
97087        {
97088          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97089          "in": "query",
97090          "name": "timeoutSeconds",
97091          "type": "integer",
97092          "uniqueItems": true
97093        },
97094        {
97095          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97096          "in": "query",
97097          "name": "watch",
97098          "type": "boolean",
97099          "uniqueItems": true
97100        }
97101      ]
97102    },
97103    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}": {
97104      "get": {
97105        "consumes": [
97106          "*/*"
97107        ],
97108        "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.",
97109        "operationId": "watchRbacAuthorizationV1beta1ClusterRole",
97110        "produces": [
97111          "application/json",
97112          "application/yaml",
97113          "application/vnd.kubernetes.protobuf",
97114          "application/json;stream=watch",
97115          "application/vnd.kubernetes.protobuf;stream=watch"
97116        ],
97117        "responses": {
97118          "200": {
97119            "description": "OK",
97120            "schema": {
97121              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97122            }
97123          },
97124          "401": {
97125            "description": "Unauthorized"
97126          }
97127        },
97128        "schemes": [
97129          "https"
97130        ],
97131        "tags": [
97132          "rbacAuthorization_v1beta1"
97133        ],
97134        "x-kubernetes-action": "watch",
97135        "x-kubernetes-group-version-kind": {
97136          "group": "rbac.authorization.k8s.io",
97137          "kind": "ClusterRole",
97138          "version": "v1beta1"
97139        }
97140      },
97141      "parameters": [
97142        {
97143          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97144          "in": "query",
97145          "name": "allowWatchBookmarks",
97146          "type": "boolean",
97147          "uniqueItems": true
97148        },
97149        {
97150          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97151          "in": "query",
97152          "name": "continue",
97153          "type": "string",
97154          "uniqueItems": true
97155        },
97156        {
97157          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97158          "in": "query",
97159          "name": "fieldSelector",
97160          "type": "string",
97161          "uniqueItems": true
97162        },
97163        {
97164          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97165          "in": "query",
97166          "name": "labelSelector",
97167          "type": "string",
97168          "uniqueItems": true
97169        },
97170        {
97171          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97172          "in": "query",
97173          "name": "limit",
97174          "type": "integer",
97175          "uniqueItems": true
97176        },
97177        {
97178          "description": "name of the ClusterRole",
97179          "in": "path",
97180          "name": "name",
97181          "required": true,
97182          "type": "string",
97183          "uniqueItems": true
97184        },
97185        {
97186          "description": "If 'true', then the output is pretty printed.",
97187          "in": "query",
97188          "name": "pretty",
97189          "type": "string",
97190          "uniqueItems": true
97191        },
97192        {
97193          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97194          "in": "query",
97195          "name": "resourceVersion",
97196          "type": "string",
97197          "uniqueItems": true
97198        },
97199        {
97200          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97201          "in": "query",
97202          "name": "resourceVersionMatch",
97203          "type": "string",
97204          "uniqueItems": true
97205        },
97206        {
97207          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97208          "in": "query",
97209          "name": "timeoutSeconds",
97210          "type": "integer",
97211          "uniqueItems": true
97212        },
97213        {
97214          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97215          "in": "query",
97216          "name": "watch",
97217          "type": "boolean",
97218          "uniqueItems": true
97219        }
97220      ]
97221    },
97222    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings": {
97223      "get": {
97224        "consumes": [
97225          "*/*"
97226        ],
97227        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
97228        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBindingList",
97229        "produces": [
97230          "application/json",
97231          "application/yaml",
97232          "application/vnd.kubernetes.protobuf",
97233          "application/json;stream=watch",
97234          "application/vnd.kubernetes.protobuf;stream=watch"
97235        ],
97236        "responses": {
97237          "200": {
97238            "description": "OK",
97239            "schema": {
97240              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97241            }
97242          },
97243          "401": {
97244            "description": "Unauthorized"
97245          }
97246        },
97247        "schemes": [
97248          "https"
97249        ],
97250        "tags": [
97251          "rbacAuthorization_v1beta1"
97252        ],
97253        "x-kubernetes-action": "watchlist",
97254        "x-kubernetes-group-version-kind": {
97255          "group": "rbac.authorization.k8s.io",
97256          "kind": "RoleBinding",
97257          "version": "v1beta1"
97258        }
97259      },
97260      "parameters": [
97261        {
97262          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97263          "in": "query",
97264          "name": "allowWatchBookmarks",
97265          "type": "boolean",
97266          "uniqueItems": true
97267        },
97268        {
97269          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97270          "in": "query",
97271          "name": "continue",
97272          "type": "string",
97273          "uniqueItems": true
97274        },
97275        {
97276          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97277          "in": "query",
97278          "name": "fieldSelector",
97279          "type": "string",
97280          "uniqueItems": true
97281        },
97282        {
97283          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97284          "in": "query",
97285          "name": "labelSelector",
97286          "type": "string",
97287          "uniqueItems": true
97288        },
97289        {
97290          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97291          "in": "query",
97292          "name": "limit",
97293          "type": "integer",
97294          "uniqueItems": true
97295        },
97296        {
97297          "description": "object name and auth scope, such as for teams and projects",
97298          "in": "path",
97299          "name": "namespace",
97300          "required": true,
97301          "type": "string",
97302          "uniqueItems": true
97303        },
97304        {
97305          "description": "If 'true', then the output is pretty printed.",
97306          "in": "query",
97307          "name": "pretty",
97308          "type": "string",
97309          "uniqueItems": true
97310        },
97311        {
97312          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97313          "in": "query",
97314          "name": "resourceVersion",
97315          "type": "string",
97316          "uniqueItems": true
97317        },
97318        {
97319          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97320          "in": "query",
97321          "name": "resourceVersionMatch",
97322          "type": "string",
97323          "uniqueItems": true
97324        },
97325        {
97326          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97327          "in": "query",
97328          "name": "timeoutSeconds",
97329          "type": "integer",
97330          "uniqueItems": true
97331        },
97332        {
97333          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97334          "in": "query",
97335          "name": "watch",
97336          "type": "boolean",
97337          "uniqueItems": true
97338        }
97339      ]
97340    },
97341    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}": {
97342      "get": {
97343        "consumes": [
97344          "*/*"
97345        ],
97346        "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.",
97347        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBinding",
97348        "produces": [
97349          "application/json",
97350          "application/yaml",
97351          "application/vnd.kubernetes.protobuf",
97352          "application/json;stream=watch",
97353          "application/vnd.kubernetes.protobuf;stream=watch"
97354        ],
97355        "responses": {
97356          "200": {
97357            "description": "OK",
97358            "schema": {
97359              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97360            }
97361          },
97362          "401": {
97363            "description": "Unauthorized"
97364          }
97365        },
97366        "schemes": [
97367          "https"
97368        ],
97369        "tags": [
97370          "rbacAuthorization_v1beta1"
97371        ],
97372        "x-kubernetes-action": "watch",
97373        "x-kubernetes-group-version-kind": {
97374          "group": "rbac.authorization.k8s.io",
97375          "kind": "RoleBinding",
97376          "version": "v1beta1"
97377        }
97378      },
97379      "parameters": [
97380        {
97381          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97382          "in": "query",
97383          "name": "allowWatchBookmarks",
97384          "type": "boolean",
97385          "uniqueItems": true
97386        },
97387        {
97388          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97389          "in": "query",
97390          "name": "continue",
97391          "type": "string",
97392          "uniqueItems": true
97393        },
97394        {
97395          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97396          "in": "query",
97397          "name": "fieldSelector",
97398          "type": "string",
97399          "uniqueItems": true
97400        },
97401        {
97402          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97403          "in": "query",
97404          "name": "labelSelector",
97405          "type": "string",
97406          "uniqueItems": true
97407        },
97408        {
97409          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97410          "in": "query",
97411          "name": "limit",
97412          "type": "integer",
97413          "uniqueItems": true
97414        },
97415        {
97416          "description": "name of the RoleBinding",
97417          "in": "path",
97418          "name": "name",
97419          "required": true,
97420          "type": "string",
97421          "uniqueItems": true
97422        },
97423        {
97424          "description": "object name and auth scope, such as for teams and projects",
97425          "in": "path",
97426          "name": "namespace",
97427          "required": true,
97428          "type": "string",
97429          "uniqueItems": true
97430        },
97431        {
97432          "description": "If 'true', then the output is pretty printed.",
97433          "in": "query",
97434          "name": "pretty",
97435          "type": "string",
97436          "uniqueItems": true
97437        },
97438        {
97439          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97440          "in": "query",
97441          "name": "resourceVersion",
97442          "type": "string",
97443          "uniqueItems": true
97444        },
97445        {
97446          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97447          "in": "query",
97448          "name": "resourceVersionMatch",
97449          "type": "string",
97450          "uniqueItems": true
97451        },
97452        {
97453          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97454          "in": "query",
97455          "name": "timeoutSeconds",
97456          "type": "integer",
97457          "uniqueItems": true
97458        },
97459        {
97460          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97461          "in": "query",
97462          "name": "watch",
97463          "type": "boolean",
97464          "uniqueItems": true
97465        }
97466      ]
97467    },
97468    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles": {
97469      "get": {
97470        "consumes": [
97471          "*/*"
97472        ],
97473        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
97474        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleList",
97475        "produces": [
97476          "application/json",
97477          "application/yaml",
97478          "application/vnd.kubernetes.protobuf",
97479          "application/json;stream=watch",
97480          "application/vnd.kubernetes.protobuf;stream=watch"
97481        ],
97482        "responses": {
97483          "200": {
97484            "description": "OK",
97485            "schema": {
97486              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97487            }
97488          },
97489          "401": {
97490            "description": "Unauthorized"
97491          }
97492        },
97493        "schemes": [
97494          "https"
97495        ],
97496        "tags": [
97497          "rbacAuthorization_v1beta1"
97498        ],
97499        "x-kubernetes-action": "watchlist",
97500        "x-kubernetes-group-version-kind": {
97501          "group": "rbac.authorization.k8s.io",
97502          "kind": "Role",
97503          "version": "v1beta1"
97504        }
97505      },
97506      "parameters": [
97507        {
97508          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97509          "in": "query",
97510          "name": "allowWatchBookmarks",
97511          "type": "boolean",
97512          "uniqueItems": true
97513        },
97514        {
97515          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97516          "in": "query",
97517          "name": "continue",
97518          "type": "string",
97519          "uniqueItems": true
97520        },
97521        {
97522          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97523          "in": "query",
97524          "name": "fieldSelector",
97525          "type": "string",
97526          "uniqueItems": true
97527        },
97528        {
97529          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97530          "in": "query",
97531          "name": "labelSelector",
97532          "type": "string",
97533          "uniqueItems": true
97534        },
97535        {
97536          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97537          "in": "query",
97538          "name": "limit",
97539          "type": "integer",
97540          "uniqueItems": true
97541        },
97542        {
97543          "description": "object name and auth scope, such as for teams and projects",
97544          "in": "path",
97545          "name": "namespace",
97546          "required": true,
97547          "type": "string",
97548          "uniqueItems": true
97549        },
97550        {
97551          "description": "If 'true', then the output is pretty printed.",
97552          "in": "query",
97553          "name": "pretty",
97554          "type": "string",
97555          "uniqueItems": true
97556        },
97557        {
97558          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97559          "in": "query",
97560          "name": "resourceVersion",
97561          "type": "string",
97562          "uniqueItems": true
97563        },
97564        {
97565          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97566          "in": "query",
97567          "name": "resourceVersionMatch",
97568          "type": "string",
97569          "uniqueItems": true
97570        },
97571        {
97572          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97573          "in": "query",
97574          "name": "timeoutSeconds",
97575          "type": "integer",
97576          "uniqueItems": true
97577        },
97578        {
97579          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97580          "in": "query",
97581          "name": "watch",
97582          "type": "boolean",
97583          "uniqueItems": true
97584        }
97585      ]
97586    },
97587    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}": {
97588      "get": {
97589        "consumes": [
97590          "*/*"
97591        ],
97592        "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.",
97593        "operationId": "watchRbacAuthorizationV1beta1NamespacedRole",
97594        "produces": [
97595          "application/json",
97596          "application/yaml",
97597          "application/vnd.kubernetes.protobuf",
97598          "application/json;stream=watch",
97599          "application/vnd.kubernetes.protobuf;stream=watch"
97600        ],
97601        "responses": {
97602          "200": {
97603            "description": "OK",
97604            "schema": {
97605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97606            }
97607          },
97608          "401": {
97609            "description": "Unauthorized"
97610          }
97611        },
97612        "schemes": [
97613          "https"
97614        ],
97615        "tags": [
97616          "rbacAuthorization_v1beta1"
97617        ],
97618        "x-kubernetes-action": "watch",
97619        "x-kubernetes-group-version-kind": {
97620          "group": "rbac.authorization.k8s.io",
97621          "kind": "Role",
97622          "version": "v1beta1"
97623        }
97624      },
97625      "parameters": [
97626        {
97627          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97628          "in": "query",
97629          "name": "allowWatchBookmarks",
97630          "type": "boolean",
97631          "uniqueItems": true
97632        },
97633        {
97634          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97635          "in": "query",
97636          "name": "continue",
97637          "type": "string",
97638          "uniqueItems": true
97639        },
97640        {
97641          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97642          "in": "query",
97643          "name": "fieldSelector",
97644          "type": "string",
97645          "uniqueItems": true
97646        },
97647        {
97648          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97649          "in": "query",
97650          "name": "labelSelector",
97651          "type": "string",
97652          "uniqueItems": true
97653        },
97654        {
97655          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97656          "in": "query",
97657          "name": "limit",
97658          "type": "integer",
97659          "uniqueItems": true
97660        },
97661        {
97662          "description": "name of the Role",
97663          "in": "path",
97664          "name": "name",
97665          "required": true,
97666          "type": "string",
97667          "uniqueItems": true
97668        },
97669        {
97670          "description": "object name and auth scope, such as for teams and projects",
97671          "in": "path",
97672          "name": "namespace",
97673          "required": true,
97674          "type": "string",
97675          "uniqueItems": true
97676        },
97677        {
97678          "description": "If 'true', then the output is pretty printed.",
97679          "in": "query",
97680          "name": "pretty",
97681          "type": "string",
97682          "uniqueItems": true
97683        },
97684        {
97685          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97686          "in": "query",
97687          "name": "resourceVersion",
97688          "type": "string",
97689          "uniqueItems": true
97690        },
97691        {
97692          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97693          "in": "query",
97694          "name": "resourceVersionMatch",
97695          "type": "string",
97696          "uniqueItems": true
97697        },
97698        {
97699          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97700          "in": "query",
97701          "name": "timeoutSeconds",
97702          "type": "integer",
97703          "uniqueItems": true
97704        },
97705        {
97706          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97707          "in": "query",
97708          "name": "watch",
97709          "type": "boolean",
97710          "uniqueItems": true
97711        }
97712      ]
97713    },
97714    "/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings": {
97715      "get": {
97716        "consumes": [
97717          "*/*"
97718        ],
97719        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
97720        "operationId": "watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces",
97721        "produces": [
97722          "application/json",
97723          "application/yaml",
97724          "application/vnd.kubernetes.protobuf",
97725          "application/json;stream=watch",
97726          "application/vnd.kubernetes.protobuf;stream=watch"
97727        ],
97728        "responses": {
97729          "200": {
97730            "description": "OK",
97731            "schema": {
97732              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97733            }
97734          },
97735          "401": {
97736            "description": "Unauthorized"
97737          }
97738        },
97739        "schemes": [
97740          "https"
97741        ],
97742        "tags": [
97743          "rbacAuthorization_v1beta1"
97744        ],
97745        "x-kubernetes-action": "watchlist",
97746        "x-kubernetes-group-version-kind": {
97747          "group": "rbac.authorization.k8s.io",
97748          "kind": "RoleBinding",
97749          "version": "v1beta1"
97750        }
97751      },
97752      "parameters": [
97753        {
97754          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97755          "in": "query",
97756          "name": "allowWatchBookmarks",
97757          "type": "boolean",
97758          "uniqueItems": true
97759        },
97760        {
97761          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97762          "in": "query",
97763          "name": "continue",
97764          "type": "string",
97765          "uniqueItems": true
97766        },
97767        {
97768          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97769          "in": "query",
97770          "name": "fieldSelector",
97771          "type": "string",
97772          "uniqueItems": true
97773        },
97774        {
97775          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97776          "in": "query",
97777          "name": "labelSelector",
97778          "type": "string",
97779          "uniqueItems": true
97780        },
97781        {
97782          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97783          "in": "query",
97784          "name": "limit",
97785          "type": "integer",
97786          "uniqueItems": true
97787        },
97788        {
97789          "description": "If 'true', then the output is pretty printed.",
97790          "in": "query",
97791          "name": "pretty",
97792          "type": "string",
97793          "uniqueItems": true
97794        },
97795        {
97796          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97797          "in": "query",
97798          "name": "resourceVersion",
97799          "type": "string",
97800          "uniqueItems": true
97801        },
97802        {
97803          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97804          "in": "query",
97805          "name": "resourceVersionMatch",
97806          "type": "string",
97807          "uniqueItems": true
97808        },
97809        {
97810          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97811          "in": "query",
97812          "name": "timeoutSeconds",
97813          "type": "integer",
97814          "uniqueItems": true
97815        },
97816        {
97817          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97818          "in": "query",
97819          "name": "watch",
97820          "type": "boolean",
97821          "uniqueItems": true
97822        }
97823      ]
97824    },
97825    "/apis/rbac.authorization.k8s.io/v1beta1/watch/roles": {
97826      "get": {
97827        "consumes": [
97828          "*/*"
97829        ],
97830        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
97831        "operationId": "watchRbacAuthorizationV1beta1RoleListForAllNamespaces",
97832        "produces": [
97833          "application/json",
97834          "application/yaml",
97835          "application/vnd.kubernetes.protobuf",
97836          "application/json;stream=watch",
97837          "application/vnd.kubernetes.protobuf;stream=watch"
97838        ],
97839        "responses": {
97840          "200": {
97841            "description": "OK",
97842            "schema": {
97843              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97844            }
97845          },
97846          "401": {
97847            "description": "Unauthorized"
97848          }
97849        },
97850        "schemes": [
97851          "https"
97852        ],
97853        "tags": [
97854          "rbacAuthorization_v1beta1"
97855        ],
97856        "x-kubernetes-action": "watchlist",
97857        "x-kubernetes-group-version-kind": {
97858          "group": "rbac.authorization.k8s.io",
97859          "kind": "Role",
97860          "version": "v1beta1"
97861        }
97862      },
97863      "parameters": [
97864        {
97865          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
97866          "in": "query",
97867          "name": "allowWatchBookmarks",
97868          "type": "boolean",
97869          "uniqueItems": true
97870        },
97871        {
97872          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97873          "in": "query",
97874          "name": "continue",
97875          "type": "string",
97876          "uniqueItems": true
97877        },
97878        {
97879          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97880          "in": "query",
97881          "name": "fieldSelector",
97882          "type": "string",
97883          "uniqueItems": true
97884        },
97885        {
97886          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97887          "in": "query",
97888          "name": "labelSelector",
97889          "type": "string",
97890          "uniqueItems": true
97891        },
97892        {
97893          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97894          "in": "query",
97895          "name": "limit",
97896          "type": "integer",
97897          "uniqueItems": true
97898        },
97899        {
97900          "description": "If 'true', then the output is pretty printed.",
97901          "in": "query",
97902          "name": "pretty",
97903          "type": "string",
97904          "uniqueItems": true
97905        },
97906        {
97907          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97908          "in": "query",
97909          "name": "resourceVersion",
97910          "type": "string",
97911          "uniqueItems": true
97912        },
97913        {
97914          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
97915          "in": "query",
97916          "name": "resourceVersionMatch",
97917          "type": "string",
97918          "uniqueItems": true
97919        },
97920        {
97921          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97922          "in": "query",
97923          "name": "timeoutSeconds",
97924          "type": "integer",
97925          "uniqueItems": true
97926        },
97927        {
97928          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97929          "in": "query",
97930          "name": "watch",
97931          "type": "boolean",
97932          "uniqueItems": true
97933        }
97934      ]
97935    },
97936    "/apis/scheduling.k8s.io/": {
97937      "get": {
97938        "consumes": [
97939          "application/json",
97940          "application/yaml",
97941          "application/vnd.kubernetes.protobuf"
97942        ],
97943        "description": "get information of a group",
97944        "operationId": "getSchedulingAPIGroup",
97945        "produces": [
97946          "application/json",
97947          "application/yaml",
97948          "application/vnd.kubernetes.protobuf"
97949        ],
97950        "responses": {
97951          "200": {
97952            "description": "OK",
97953            "schema": {
97954              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
97955            }
97956          },
97957          "401": {
97958            "description": "Unauthorized"
97959          }
97960        },
97961        "schemes": [
97962          "https"
97963        ],
97964        "tags": [
97965          "scheduling"
97966        ]
97967      }
97968    },
97969    "/apis/scheduling.k8s.io/v1/": {
97970      "get": {
97971        "consumes": [
97972          "application/json",
97973          "application/yaml",
97974          "application/vnd.kubernetes.protobuf"
97975        ],
97976        "description": "get available resources",
97977        "operationId": "getSchedulingV1APIResources",
97978        "produces": [
97979          "application/json",
97980          "application/yaml",
97981          "application/vnd.kubernetes.protobuf"
97982        ],
97983        "responses": {
97984          "200": {
97985            "description": "OK",
97986            "schema": {
97987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
97988            }
97989          },
97990          "401": {
97991            "description": "Unauthorized"
97992          }
97993        },
97994        "schemes": [
97995          "https"
97996        ],
97997        "tags": [
97998          "scheduling_v1"
97999        ]
98000      }
98001    },
98002    "/apis/scheduling.k8s.io/v1/priorityclasses": {
98003      "delete": {
98004        "consumes": [
98005          "*/*"
98006        ],
98007        "description": "delete collection of PriorityClass",
98008        "operationId": "deleteSchedulingV1CollectionPriorityClass",
98009        "parameters": [
98010          {
98011            "in": "body",
98012            "name": "body",
98013            "schema": {
98014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98015            }
98016          },
98017          {
98018            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98019            "in": "query",
98020            "name": "continue",
98021            "type": "string",
98022            "uniqueItems": true
98023          },
98024          {
98025            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98026            "in": "query",
98027            "name": "dryRun",
98028            "type": "string",
98029            "uniqueItems": true
98030          },
98031          {
98032            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98033            "in": "query",
98034            "name": "fieldSelector",
98035            "type": "string",
98036            "uniqueItems": true
98037          },
98038          {
98039            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98040            "in": "query",
98041            "name": "gracePeriodSeconds",
98042            "type": "integer",
98043            "uniqueItems": true
98044          },
98045          {
98046            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98047            "in": "query",
98048            "name": "labelSelector",
98049            "type": "string",
98050            "uniqueItems": true
98051          },
98052          {
98053            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98054            "in": "query",
98055            "name": "limit",
98056            "type": "integer",
98057            "uniqueItems": true
98058          },
98059          {
98060            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98061            "in": "query",
98062            "name": "orphanDependents",
98063            "type": "boolean",
98064            "uniqueItems": true
98065          },
98066          {
98067            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98068            "in": "query",
98069            "name": "propagationPolicy",
98070            "type": "string",
98071            "uniqueItems": true
98072          },
98073          {
98074            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98075            "in": "query",
98076            "name": "resourceVersion",
98077            "type": "string",
98078            "uniqueItems": true
98079          },
98080          {
98081            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98082            "in": "query",
98083            "name": "resourceVersionMatch",
98084            "type": "string",
98085            "uniqueItems": true
98086          },
98087          {
98088            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98089            "in": "query",
98090            "name": "timeoutSeconds",
98091            "type": "integer",
98092            "uniqueItems": true
98093          }
98094        ],
98095        "produces": [
98096          "application/json",
98097          "application/yaml",
98098          "application/vnd.kubernetes.protobuf"
98099        ],
98100        "responses": {
98101          "200": {
98102            "description": "OK",
98103            "schema": {
98104              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98105            }
98106          },
98107          "401": {
98108            "description": "Unauthorized"
98109          }
98110        },
98111        "schemes": [
98112          "https"
98113        ],
98114        "tags": [
98115          "scheduling_v1"
98116        ],
98117        "x-kubernetes-action": "deletecollection",
98118        "x-kubernetes-group-version-kind": {
98119          "group": "scheduling.k8s.io",
98120          "kind": "PriorityClass",
98121          "version": "v1"
98122        }
98123      },
98124      "get": {
98125        "consumes": [
98126          "*/*"
98127        ],
98128        "description": "list or watch objects of kind PriorityClass",
98129        "operationId": "listSchedulingV1PriorityClass",
98130        "parameters": [
98131          {
98132            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98133            "in": "query",
98134            "name": "allowWatchBookmarks",
98135            "type": "boolean",
98136            "uniqueItems": true
98137          },
98138          {
98139            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98140            "in": "query",
98141            "name": "continue",
98142            "type": "string",
98143            "uniqueItems": true
98144          },
98145          {
98146            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98147            "in": "query",
98148            "name": "fieldSelector",
98149            "type": "string",
98150            "uniqueItems": true
98151          },
98152          {
98153            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98154            "in": "query",
98155            "name": "labelSelector",
98156            "type": "string",
98157            "uniqueItems": true
98158          },
98159          {
98160            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98161            "in": "query",
98162            "name": "limit",
98163            "type": "integer",
98164            "uniqueItems": true
98165          },
98166          {
98167            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98168            "in": "query",
98169            "name": "resourceVersion",
98170            "type": "string",
98171            "uniqueItems": true
98172          },
98173          {
98174            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98175            "in": "query",
98176            "name": "resourceVersionMatch",
98177            "type": "string",
98178            "uniqueItems": true
98179          },
98180          {
98181            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98182            "in": "query",
98183            "name": "timeoutSeconds",
98184            "type": "integer",
98185            "uniqueItems": true
98186          },
98187          {
98188            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98189            "in": "query",
98190            "name": "watch",
98191            "type": "boolean",
98192            "uniqueItems": true
98193          }
98194        ],
98195        "produces": [
98196          "application/json",
98197          "application/yaml",
98198          "application/vnd.kubernetes.protobuf",
98199          "application/json;stream=watch",
98200          "application/vnd.kubernetes.protobuf;stream=watch"
98201        ],
98202        "responses": {
98203          "200": {
98204            "description": "OK",
98205            "schema": {
98206              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClassList"
98207            }
98208          },
98209          "401": {
98210            "description": "Unauthorized"
98211          }
98212        },
98213        "schemes": [
98214          "https"
98215        ],
98216        "tags": [
98217          "scheduling_v1"
98218        ],
98219        "x-kubernetes-action": "list",
98220        "x-kubernetes-group-version-kind": {
98221          "group": "scheduling.k8s.io",
98222          "kind": "PriorityClass",
98223          "version": "v1"
98224        }
98225      },
98226      "parameters": [
98227        {
98228          "description": "If 'true', then the output is pretty printed.",
98229          "in": "query",
98230          "name": "pretty",
98231          "type": "string",
98232          "uniqueItems": true
98233        }
98234      ],
98235      "post": {
98236        "consumes": [
98237          "*/*"
98238        ],
98239        "description": "create a PriorityClass",
98240        "operationId": "createSchedulingV1PriorityClass",
98241        "parameters": [
98242          {
98243            "in": "body",
98244            "name": "body",
98245            "required": true,
98246            "schema": {
98247              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98248            }
98249          },
98250          {
98251            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98252            "in": "query",
98253            "name": "dryRun",
98254            "type": "string",
98255            "uniqueItems": true
98256          },
98257          {
98258            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98259            "in": "query",
98260            "name": "fieldManager",
98261            "type": "string",
98262            "uniqueItems": true
98263          }
98264        ],
98265        "produces": [
98266          "application/json",
98267          "application/yaml",
98268          "application/vnd.kubernetes.protobuf"
98269        ],
98270        "responses": {
98271          "200": {
98272            "description": "OK",
98273            "schema": {
98274              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98275            }
98276          },
98277          "201": {
98278            "description": "Created",
98279            "schema": {
98280              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98281            }
98282          },
98283          "202": {
98284            "description": "Accepted",
98285            "schema": {
98286              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98287            }
98288          },
98289          "401": {
98290            "description": "Unauthorized"
98291          }
98292        },
98293        "schemes": [
98294          "https"
98295        ],
98296        "tags": [
98297          "scheduling_v1"
98298        ],
98299        "x-kubernetes-action": "post",
98300        "x-kubernetes-group-version-kind": {
98301          "group": "scheduling.k8s.io",
98302          "kind": "PriorityClass",
98303          "version": "v1"
98304        }
98305      }
98306    },
98307    "/apis/scheduling.k8s.io/v1/priorityclasses/{name}": {
98308      "delete": {
98309        "consumes": [
98310          "*/*"
98311        ],
98312        "description": "delete a PriorityClass",
98313        "operationId": "deleteSchedulingV1PriorityClass",
98314        "parameters": [
98315          {
98316            "in": "body",
98317            "name": "body",
98318            "schema": {
98319              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98320            }
98321          },
98322          {
98323            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98324            "in": "query",
98325            "name": "dryRun",
98326            "type": "string",
98327            "uniqueItems": true
98328          },
98329          {
98330            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98331            "in": "query",
98332            "name": "gracePeriodSeconds",
98333            "type": "integer",
98334            "uniqueItems": true
98335          },
98336          {
98337            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98338            "in": "query",
98339            "name": "orphanDependents",
98340            "type": "boolean",
98341            "uniqueItems": true
98342          },
98343          {
98344            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98345            "in": "query",
98346            "name": "propagationPolicy",
98347            "type": "string",
98348            "uniqueItems": true
98349          }
98350        ],
98351        "produces": [
98352          "application/json",
98353          "application/yaml",
98354          "application/vnd.kubernetes.protobuf"
98355        ],
98356        "responses": {
98357          "200": {
98358            "description": "OK",
98359            "schema": {
98360              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98361            }
98362          },
98363          "202": {
98364            "description": "Accepted",
98365            "schema": {
98366              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98367            }
98368          },
98369          "401": {
98370            "description": "Unauthorized"
98371          }
98372        },
98373        "schemes": [
98374          "https"
98375        ],
98376        "tags": [
98377          "scheduling_v1"
98378        ],
98379        "x-kubernetes-action": "delete",
98380        "x-kubernetes-group-version-kind": {
98381          "group": "scheduling.k8s.io",
98382          "kind": "PriorityClass",
98383          "version": "v1"
98384        }
98385      },
98386      "get": {
98387        "consumes": [
98388          "*/*"
98389        ],
98390        "description": "read the specified PriorityClass",
98391        "operationId": "readSchedulingV1PriorityClass",
98392        "produces": [
98393          "application/json",
98394          "application/yaml",
98395          "application/vnd.kubernetes.protobuf"
98396        ],
98397        "responses": {
98398          "200": {
98399            "description": "OK",
98400            "schema": {
98401              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98402            }
98403          },
98404          "401": {
98405            "description": "Unauthorized"
98406          }
98407        },
98408        "schemes": [
98409          "https"
98410        ],
98411        "tags": [
98412          "scheduling_v1"
98413        ],
98414        "x-kubernetes-action": "get",
98415        "x-kubernetes-group-version-kind": {
98416          "group": "scheduling.k8s.io",
98417          "kind": "PriorityClass",
98418          "version": "v1"
98419        }
98420      },
98421      "parameters": [
98422        {
98423          "description": "name of the PriorityClass",
98424          "in": "path",
98425          "name": "name",
98426          "required": true,
98427          "type": "string",
98428          "uniqueItems": true
98429        },
98430        {
98431          "description": "If 'true', then the output is pretty printed.",
98432          "in": "query",
98433          "name": "pretty",
98434          "type": "string",
98435          "uniqueItems": true
98436        }
98437      ],
98438      "patch": {
98439        "consumes": [
98440          "application/json-patch+json",
98441          "application/merge-patch+json",
98442          "application/strategic-merge-patch+json",
98443          "application/apply-patch+yaml"
98444        ],
98445        "description": "partially update the specified PriorityClass",
98446        "operationId": "patchSchedulingV1PriorityClass",
98447        "parameters": [
98448          {
98449            "in": "body",
98450            "name": "body",
98451            "required": true,
98452            "schema": {
98453              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
98454            }
98455          },
98456          {
98457            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98458            "in": "query",
98459            "name": "dryRun",
98460            "type": "string",
98461            "uniqueItems": true
98462          },
98463          {
98464            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
98465            "in": "query",
98466            "name": "fieldManager",
98467            "type": "string",
98468            "uniqueItems": true
98469          },
98470          {
98471            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
98472            "in": "query",
98473            "name": "force",
98474            "type": "boolean",
98475            "uniqueItems": true
98476          }
98477        ],
98478        "produces": [
98479          "application/json",
98480          "application/yaml",
98481          "application/vnd.kubernetes.protobuf"
98482        ],
98483        "responses": {
98484          "200": {
98485            "description": "OK",
98486            "schema": {
98487              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98488            }
98489          },
98490          "401": {
98491            "description": "Unauthorized"
98492          }
98493        },
98494        "schemes": [
98495          "https"
98496        ],
98497        "tags": [
98498          "scheduling_v1"
98499        ],
98500        "x-kubernetes-action": "patch",
98501        "x-kubernetes-group-version-kind": {
98502          "group": "scheduling.k8s.io",
98503          "kind": "PriorityClass",
98504          "version": "v1"
98505        }
98506      },
98507      "put": {
98508        "consumes": [
98509          "*/*"
98510        ],
98511        "description": "replace the specified PriorityClass",
98512        "operationId": "replaceSchedulingV1PriorityClass",
98513        "parameters": [
98514          {
98515            "in": "body",
98516            "name": "body",
98517            "required": true,
98518            "schema": {
98519              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98520            }
98521          },
98522          {
98523            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98524            "in": "query",
98525            "name": "dryRun",
98526            "type": "string",
98527            "uniqueItems": true
98528          },
98529          {
98530            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98531            "in": "query",
98532            "name": "fieldManager",
98533            "type": "string",
98534            "uniqueItems": true
98535          }
98536        ],
98537        "produces": [
98538          "application/json",
98539          "application/yaml",
98540          "application/vnd.kubernetes.protobuf"
98541        ],
98542        "responses": {
98543          "200": {
98544            "description": "OK",
98545            "schema": {
98546              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98547            }
98548          },
98549          "201": {
98550            "description": "Created",
98551            "schema": {
98552              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
98553            }
98554          },
98555          "401": {
98556            "description": "Unauthorized"
98557          }
98558        },
98559        "schemes": [
98560          "https"
98561        ],
98562        "tags": [
98563          "scheduling_v1"
98564        ],
98565        "x-kubernetes-action": "put",
98566        "x-kubernetes-group-version-kind": {
98567          "group": "scheduling.k8s.io",
98568          "kind": "PriorityClass",
98569          "version": "v1"
98570        }
98571      }
98572    },
98573    "/apis/scheduling.k8s.io/v1/watch/priorityclasses": {
98574      "get": {
98575        "consumes": [
98576          "*/*"
98577        ],
98578        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
98579        "operationId": "watchSchedulingV1PriorityClassList",
98580        "produces": [
98581          "application/json",
98582          "application/yaml",
98583          "application/vnd.kubernetes.protobuf",
98584          "application/json;stream=watch",
98585          "application/vnd.kubernetes.protobuf;stream=watch"
98586        ],
98587        "responses": {
98588          "200": {
98589            "description": "OK",
98590            "schema": {
98591              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
98592            }
98593          },
98594          "401": {
98595            "description": "Unauthorized"
98596          }
98597        },
98598        "schemes": [
98599          "https"
98600        ],
98601        "tags": [
98602          "scheduling_v1"
98603        ],
98604        "x-kubernetes-action": "watchlist",
98605        "x-kubernetes-group-version-kind": {
98606          "group": "scheduling.k8s.io",
98607          "kind": "PriorityClass",
98608          "version": "v1"
98609        }
98610      },
98611      "parameters": [
98612        {
98613          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98614          "in": "query",
98615          "name": "allowWatchBookmarks",
98616          "type": "boolean",
98617          "uniqueItems": true
98618        },
98619        {
98620          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98621          "in": "query",
98622          "name": "continue",
98623          "type": "string",
98624          "uniqueItems": true
98625        },
98626        {
98627          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98628          "in": "query",
98629          "name": "fieldSelector",
98630          "type": "string",
98631          "uniqueItems": true
98632        },
98633        {
98634          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98635          "in": "query",
98636          "name": "labelSelector",
98637          "type": "string",
98638          "uniqueItems": true
98639        },
98640        {
98641          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98642          "in": "query",
98643          "name": "limit",
98644          "type": "integer",
98645          "uniqueItems": true
98646        },
98647        {
98648          "description": "If 'true', then the output is pretty printed.",
98649          "in": "query",
98650          "name": "pretty",
98651          "type": "string",
98652          "uniqueItems": true
98653        },
98654        {
98655          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98656          "in": "query",
98657          "name": "resourceVersion",
98658          "type": "string",
98659          "uniqueItems": true
98660        },
98661        {
98662          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98663          "in": "query",
98664          "name": "resourceVersionMatch",
98665          "type": "string",
98666          "uniqueItems": true
98667        },
98668        {
98669          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98670          "in": "query",
98671          "name": "timeoutSeconds",
98672          "type": "integer",
98673          "uniqueItems": true
98674        },
98675        {
98676          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98677          "in": "query",
98678          "name": "watch",
98679          "type": "boolean",
98680          "uniqueItems": true
98681        }
98682      ]
98683    },
98684    "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}": {
98685      "get": {
98686        "consumes": [
98687          "*/*"
98688        ],
98689        "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.",
98690        "operationId": "watchSchedulingV1PriorityClass",
98691        "produces": [
98692          "application/json",
98693          "application/yaml",
98694          "application/vnd.kubernetes.protobuf",
98695          "application/json;stream=watch",
98696          "application/vnd.kubernetes.protobuf;stream=watch"
98697        ],
98698        "responses": {
98699          "200": {
98700            "description": "OK",
98701            "schema": {
98702              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
98703            }
98704          },
98705          "401": {
98706            "description": "Unauthorized"
98707          }
98708        },
98709        "schemes": [
98710          "https"
98711        ],
98712        "tags": [
98713          "scheduling_v1"
98714        ],
98715        "x-kubernetes-action": "watch",
98716        "x-kubernetes-group-version-kind": {
98717          "group": "scheduling.k8s.io",
98718          "kind": "PriorityClass",
98719          "version": "v1"
98720        }
98721      },
98722      "parameters": [
98723        {
98724          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98725          "in": "query",
98726          "name": "allowWatchBookmarks",
98727          "type": "boolean",
98728          "uniqueItems": true
98729        },
98730        {
98731          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98732          "in": "query",
98733          "name": "continue",
98734          "type": "string",
98735          "uniqueItems": true
98736        },
98737        {
98738          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98739          "in": "query",
98740          "name": "fieldSelector",
98741          "type": "string",
98742          "uniqueItems": true
98743        },
98744        {
98745          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98746          "in": "query",
98747          "name": "labelSelector",
98748          "type": "string",
98749          "uniqueItems": true
98750        },
98751        {
98752          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98753          "in": "query",
98754          "name": "limit",
98755          "type": "integer",
98756          "uniqueItems": true
98757        },
98758        {
98759          "description": "name of the PriorityClass",
98760          "in": "path",
98761          "name": "name",
98762          "required": true,
98763          "type": "string",
98764          "uniqueItems": true
98765        },
98766        {
98767          "description": "If 'true', then the output is pretty printed.",
98768          "in": "query",
98769          "name": "pretty",
98770          "type": "string",
98771          "uniqueItems": true
98772        },
98773        {
98774          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98775          "in": "query",
98776          "name": "resourceVersion",
98777          "type": "string",
98778          "uniqueItems": true
98779        },
98780        {
98781          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98782          "in": "query",
98783          "name": "resourceVersionMatch",
98784          "type": "string",
98785          "uniqueItems": true
98786        },
98787        {
98788          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98789          "in": "query",
98790          "name": "timeoutSeconds",
98791          "type": "integer",
98792          "uniqueItems": true
98793        },
98794        {
98795          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98796          "in": "query",
98797          "name": "watch",
98798          "type": "boolean",
98799          "uniqueItems": true
98800        }
98801      ]
98802    },
98803    "/apis/scheduling.k8s.io/v1alpha1/": {
98804      "get": {
98805        "consumes": [
98806          "application/json",
98807          "application/yaml",
98808          "application/vnd.kubernetes.protobuf"
98809        ],
98810        "description": "get available resources",
98811        "operationId": "getSchedulingV1alpha1APIResources",
98812        "produces": [
98813          "application/json",
98814          "application/yaml",
98815          "application/vnd.kubernetes.protobuf"
98816        ],
98817        "responses": {
98818          "200": {
98819            "description": "OK",
98820            "schema": {
98821              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
98822            }
98823          },
98824          "401": {
98825            "description": "Unauthorized"
98826          }
98827        },
98828        "schemes": [
98829          "https"
98830        ],
98831        "tags": [
98832          "scheduling_v1alpha1"
98833        ]
98834      }
98835    },
98836    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses": {
98837      "delete": {
98838        "consumes": [
98839          "*/*"
98840        ],
98841        "description": "delete collection of PriorityClass",
98842        "operationId": "deleteSchedulingV1alpha1CollectionPriorityClass",
98843        "parameters": [
98844          {
98845            "in": "body",
98846            "name": "body",
98847            "schema": {
98848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98849            }
98850          },
98851          {
98852            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98853            "in": "query",
98854            "name": "continue",
98855            "type": "string",
98856            "uniqueItems": true
98857          },
98858          {
98859            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98860            "in": "query",
98861            "name": "dryRun",
98862            "type": "string",
98863            "uniqueItems": true
98864          },
98865          {
98866            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98867            "in": "query",
98868            "name": "fieldSelector",
98869            "type": "string",
98870            "uniqueItems": true
98871          },
98872          {
98873            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
98874            "in": "query",
98875            "name": "gracePeriodSeconds",
98876            "type": "integer",
98877            "uniqueItems": true
98878          },
98879          {
98880            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98881            "in": "query",
98882            "name": "labelSelector",
98883            "type": "string",
98884            "uniqueItems": true
98885          },
98886          {
98887            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98888            "in": "query",
98889            "name": "limit",
98890            "type": "integer",
98891            "uniqueItems": true
98892          },
98893          {
98894            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
98895            "in": "query",
98896            "name": "orphanDependents",
98897            "type": "boolean",
98898            "uniqueItems": true
98899          },
98900          {
98901            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
98902            "in": "query",
98903            "name": "propagationPolicy",
98904            "type": "string",
98905            "uniqueItems": true
98906          },
98907          {
98908            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98909            "in": "query",
98910            "name": "resourceVersion",
98911            "type": "string",
98912            "uniqueItems": true
98913          },
98914          {
98915            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
98916            "in": "query",
98917            "name": "resourceVersionMatch",
98918            "type": "string",
98919            "uniqueItems": true
98920          },
98921          {
98922            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98923            "in": "query",
98924            "name": "timeoutSeconds",
98925            "type": "integer",
98926            "uniqueItems": true
98927          }
98928        ],
98929        "produces": [
98930          "application/json",
98931          "application/yaml",
98932          "application/vnd.kubernetes.protobuf"
98933        ],
98934        "responses": {
98935          "200": {
98936            "description": "OK",
98937            "schema": {
98938              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98939            }
98940          },
98941          "401": {
98942            "description": "Unauthorized"
98943          }
98944        },
98945        "schemes": [
98946          "https"
98947        ],
98948        "tags": [
98949          "scheduling_v1alpha1"
98950        ],
98951        "x-kubernetes-action": "deletecollection",
98952        "x-kubernetes-group-version-kind": {
98953          "group": "scheduling.k8s.io",
98954          "kind": "PriorityClass",
98955          "version": "v1alpha1"
98956        }
98957      },
98958      "get": {
98959        "consumes": [
98960          "*/*"
98961        ],
98962        "description": "list or watch objects of kind PriorityClass",
98963        "operationId": "listSchedulingV1alpha1PriorityClass",
98964        "parameters": [
98965          {
98966            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
98967            "in": "query",
98968            "name": "allowWatchBookmarks",
98969            "type": "boolean",
98970            "uniqueItems": true
98971          },
98972          {
98973            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98974            "in": "query",
98975            "name": "continue",
98976            "type": "string",
98977            "uniqueItems": true
98978          },
98979          {
98980            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98981            "in": "query",
98982            "name": "fieldSelector",
98983            "type": "string",
98984            "uniqueItems": true
98985          },
98986          {
98987            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98988            "in": "query",
98989            "name": "labelSelector",
98990            "type": "string",
98991            "uniqueItems": true
98992          },
98993          {
98994            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98995            "in": "query",
98996            "name": "limit",
98997            "type": "integer",
98998            "uniqueItems": true
98999          },
99000          {
99001            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99002            "in": "query",
99003            "name": "resourceVersion",
99004            "type": "string",
99005            "uniqueItems": true
99006          },
99007          {
99008            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99009            "in": "query",
99010            "name": "resourceVersionMatch",
99011            "type": "string",
99012            "uniqueItems": true
99013          },
99014          {
99015            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99016            "in": "query",
99017            "name": "timeoutSeconds",
99018            "type": "integer",
99019            "uniqueItems": true
99020          },
99021          {
99022            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99023            "in": "query",
99024            "name": "watch",
99025            "type": "boolean",
99026            "uniqueItems": true
99027          }
99028        ],
99029        "produces": [
99030          "application/json",
99031          "application/yaml",
99032          "application/vnd.kubernetes.protobuf",
99033          "application/json;stream=watch",
99034          "application/vnd.kubernetes.protobuf;stream=watch"
99035        ],
99036        "responses": {
99037          "200": {
99038            "description": "OK",
99039            "schema": {
99040              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClassList"
99041            }
99042          },
99043          "401": {
99044            "description": "Unauthorized"
99045          }
99046        },
99047        "schemes": [
99048          "https"
99049        ],
99050        "tags": [
99051          "scheduling_v1alpha1"
99052        ],
99053        "x-kubernetes-action": "list",
99054        "x-kubernetes-group-version-kind": {
99055          "group": "scheduling.k8s.io",
99056          "kind": "PriorityClass",
99057          "version": "v1alpha1"
99058        }
99059      },
99060      "parameters": [
99061        {
99062          "description": "If 'true', then the output is pretty printed.",
99063          "in": "query",
99064          "name": "pretty",
99065          "type": "string",
99066          "uniqueItems": true
99067        }
99068      ],
99069      "post": {
99070        "consumes": [
99071          "*/*"
99072        ],
99073        "description": "create a PriorityClass",
99074        "operationId": "createSchedulingV1alpha1PriorityClass",
99075        "parameters": [
99076          {
99077            "in": "body",
99078            "name": "body",
99079            "required": true,
99080            "schema": {
99081              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99082            }
99083          },
99084          {
99085            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99086            "in": "query",
99087            "name": "dryRun",
99088            "type": "string",
99089            "uniqueItems": true
99090          },
99091          {
99092            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99093            "in": "query",
99094            "name": "fieldManager",
99095            "type": "string",
99096            "uniqueItems": true
99097          }
99098        ],
99099        "produces": [
99100          "application/json",
99101          "application/yaml",
99102          "application/vnd.kubernetes.protobuf"
99103        ],
99104        "responses": {
99105          "200": {
99106            "description": "OK",
99107            "schema": {
99108              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99109            }
99110          },
99111          "201": {
99112            "description": "Created",
99113            "schema": {
99114              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99115            }
99116          },
99117          "202": {
99118            "description": "Accepted",
99119            "schema": {
99120              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99121            }
99122          },
99123          "401": {
99124            "description": "Unauthorized"
99125          }
99126        },
99127        "schemes": [
99128          "https"
99129        ],
99130        "tags": [
99131          "scheduling_v1alpha1"
99132        ],
99133        "x-kubernetes-action": "post",
99134        "x-kubernetes-group-version-kind": {
99135          "group": "scheduling.k8s.io",
99136          "kind": "PriorityClass",
99137          "version": "v1alpha1"
99138        }
99139      }
99140    },
99141    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}": {
99142      "delete": {
99143        "consumes": [
99144          "*/*"
99145        ],
99146        "description": "delete a PriorityClass",
99147        "operationId": "deleteSchedulingV1alpha1PriorityClass",
99148        "parameters": [
99149          {
99150            "in": "body",
99151            "name": "body",
99152            "schema": {
99153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99154            }
99155          },
99156          {
99157            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99158            "in": "query",
99159            "name": "dryRun",
99160            "type": "string",
99161            "uniqueItems": true
99162          },
99163          {
99164            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
99165            "in": "query",
99166            "name": "gracePeriodSeconds",
99167            "type": "integer",
99168            "uniqueItems": true
99169          },
99170          {
99171            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
99172            "in": "query",
99173            "name": "orphanDependents",
99174            "type": "boolean",
99175            "uniqueItems": true
99176          },
99177          {
99178            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
99179            "in": "query",
99180            "name": "propagationPolicy",
99181            "type": "string",
99182            "uniqueItems": true
99183          }
99184        ],
99185        "produces": [
99186          "application/json",
99187          "application/yaml",
99188          "application/vnd.kubernetes.protobuf"
99189        ],
99190        "responses": {
99191          "200": {
99192            "description": "OK",
99193            "schema": {
99194              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99195            }
99196          },
99197          "202": {
99198            "description": "Accepted",
99199            "schema": {
99200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99201            }
99202          },
99203          "401": {
99204            "description": "Unauthorized"
99205          }
99206        },
99207        "schemes": [
99208          "https"
99209        ],
99210        "tags": [
99211          "scheduling_v1alpha1"
99212        ],
99213        "x-kubernetes-action": "delete",
99214        "x-kubernetes-group-version-kind": {
99215          "group": "scheduling.k8s.io",
99216          "kind": "PriorityClass",
99217          "version": "v1alpha1"
99218        }
99219      },
99220      "get": {
99221        "consumes": [
99222          "*/*"
99223        ],
99224        "description": "read the specified PriorityClass",
99225        "operationId": "readSchedulingV1alpha1PriorityClass",
99226        "produces": [
99227          "application/json",
99228          "application/yaml",
99229          "application/vnd.kubernetes.protobuf"
99230        ],
99231        "responses": {
99232          "200": {
99233            "description": "OK",
99234            "schema": {
99235              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99236            }
99237          },
99238          "401": {
99239            "description": "Unauthorized"
99240          }
99241        },
99242        "schemes": [
99243          "https"
99244        ],
99245        "tags": [
99246          "scheduling_v1alpha1"
99247        ],
99248        "x-kubernetes-action": "get",
99249        "x-kubernetes-group-version-kind": {
99250          "group": "scheduling.k8s.io",
99251          "kind": "PriorityClass",
99252          "version": "v1alpha1"
99253        }
99254      },
99255      "parameters": [
99256        {
99257          "description": "name of the PriorityClass",
99258          "in": "path",
99259          "name": "name",
99260          "required": true,
99261          "type": "string",
99262          "uniqueItems": true
99263        },
99264        {
99265          "description": "If 'true', then the output is pretty printed.",
99266          "in": "query",
99267          "name": "pretty",
99268          "type": "string",
99269          "uniqueItems": true
99270        }
99271      ],
99272      "patch": {
99273        "consumes": [
99274          "application/json-patch+json",
99275          "application/merge-patch+json",
99276          "application/strategic-merge-patch+json",
99277          "application/apply-patch+yaml"
99278        ],
99279        "description": "partially update the specified PriorityClass",
99280        "operationId": "patchSchedulingV1alpha1PriorityClass",
99281        "parameters": [
99282          {
99283            "in": "body",
99284            "name": "body",
99285            "required": true,
99286            "schema": {
99287              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
99288            }
99289          },
99290          {
99291            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99292            "in": "query",
99293            "name": "dryRun",
99294            "type": "string",
99295            "uniqueItems": true
99296          },
99297          {
99298            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
99299            "in": "query",
99300            "name": "fieldManager",
99301            "type": "string",
99302            "uniqueItems": true
99303          },
99304          {
99305            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
99306            "in": "query",
99307            "name": "force",
99308            "type": "boolean",
99309            "uniqueItems": true
99310          }
99311        ],
99312        "produces": [
99313          "application/json",
99314          "application/yaml",
99315          "application/vnd.kubernetes.protobuf"
99316        ],
99317        "responses": {
99318          "200": {
99319            "description": "OK",
99320            "schema": {
99321              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99322            }
99323          },
99324          "401": {
99325            "description": "Unauthorized"
99326          }
99327        },
99328        "schemes": [
99329          "https"
99330        ],
99331        "tags": [
99332          "scheduling_v1alpha1"
99333        ],
99334        "x-kubernetes-action": "patch",
99335        "x-kubernetes-group-version-kind": {
99336          "group": "scheduling.k8s.io",
99337          "kind": "PriorityClass",
99338          "version": "v1alpha1"
99339        }
99340      },
99341      "put": {
99342        "consumes": [
99343          "*/*"
99344        ],
99345        "description": "replace the specified PriorityClass",
99346        "operationId": "replaceSchedulingV1alpha1PriorityClass",
99347        "parameters": [
99348          {
99349            "in": "body",
99350            "name": "body",
99351            "required": true,
99352            "schema": {
99353              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99354            }
99355          },
99356          {
99357            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99358            "in": "query",
99359            "name": "dryRun",
99360            "type": "string",
99361            "uniqueItems": true
99362          },
99363          {
99364            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99365            "in": "query",
99366            "name": "fieldManager",
99367            "type": "string",
99368            "uniqueItems": true
99369          }
99370        ],
99371        "produces": [
99372          "application/json",
99373          "application/yaml",
99374          "application/vnd.kubernetes.protobuf"
99375        ],
99376        "responses": {
99377          "200": {
99378            "description": "OK",
99379            "schema": {
99380              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99381            }
99382          },
99383          "201": {
99384            "description": "Created",
99385            "schema": {
99386              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
99387            }
99388          },
99389          "401": {
99390            "description": "Unauthorized"
99391          }
99392        },
99393        "schemes": [
99394          "https"
99395        ],
99396        "tags": [
99397          "scheduling_v1alpha1"
99398        ],
99399        "x-kubernetes-action": "put",
99400        "x-kubernetes-group-version-kind": {
99401          "group": "scheduling.k8s.io",
99402          "kind": "PriorityClass",
99403          "version": "v1alpha1"
99404        }
99405      }
99406    },
99407    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses": {
99408      "get": {
99409        "consumes": [
99410          "*/*"
99411        ],
99412        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
99413        "operationId": "watchSchedulingV1alpha1PriorityClassList",
99414        "produces": [
99415          "application/json",
99416          "application/yaml",
99417          "application/vnd.kubernetes.protobuf",
99418          "application/json;stream=watch",
99419          "application/vnd.kubernetes.protobuf;stream=watch"
99420        ],
99421        "responses": {
99422          "200": {
99423            "description": "OK",
99424            "schema": {
99425              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99426            }
99427          },
99428          "401": {
99429            "description": "Unauthorized"
99430          }
99431        },
99432        "schemes": [
99433          "https"
99434        ],
99435        "tags": [
99436          "scheduling_v1alpha1"
99437        ],
99438        "x-kubernetes-action": "watchlist",
99439        "x-kubernetes-group-version-kind": {
99440          "group": "scheduling.k8s.io",
99441          "kind": "PriorityClass",
99442          "version": "v1alpha1"
99443        }
99444      },
99445      "parameters": [
99446        {
99447          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99448          "in": "query",
99449          "name": "allowWatchBookmarks",
99450          "type": "boolean",
99451          "uniqueItems": true
99452        },
99453        {
99454          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99455          "in": "query",
99456          "name": "continue",
99457          "type": "string",
99458          "uniqueItems": true
99459        },
99460        {
99461          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99462          "in": "query",
99463          "name": "fieldSelector",
99464          "type": "string",
99465          "uniqueItems": true
99466        },
99467        {
99468          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99469          "in": "query",
99470          "name": "labelSelector",
99471          "type": "string",
99472          "uniqueItems": true
99473        },
99474        {
99475          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99476          "in": "query",
99477          "name": "limit",
99478          "type": "integer",
99479          "uniqueItems": true
99480        },
99481        {
99482          "description": "If 'true', then the output is pretty printed.",
99483          "in": "query",
99484          "name": "pretty",
99485          "type": "string",
99486          "uniqueItems": true
99487        },
99488        {
99489          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99490          "in": "query",
99491          "name": "resourceVersion",
99492          "type": "string",
99493          "uniqueItems": true
99494        },
99495        {
99496          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99497          "in": "query",
99498          "name": "resourceVersionMatch",
99499          "type": "string",
99500          "uniqueItems": true
99501        },
99502        {
99503          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99504          "in": "query",
99505          "name": "timeoutSeconds",
99506          "type": "integer",
99507          "uniqueItems": true
99508        },
99509        {
99510          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99511          "in": "query",
99512          "name": "watch",
99513          "type": "boolean",
99514          "uniqueItems": true
99515        }
99516      ]
99517    },
99518    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}": {
99519      "get": {
99520        "consumes": [
99521          "*/*"
99522        ],
99523        "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.",
99524        "operationId": "watchSchedulingV1alpha1PriorityClass",
99525        "produces": [
99526          "application/json",
99527          "application/yaml",
99528          "application/vnd.kubernetes.protobuf",
99529          "application/json;stream=watch",
99530          "application/vnd.kubernetes.protobuf;stream=watch"
99531        ],
99532        "responses": {
99533          "200": {
99534            "description": "OK",
99535            "schema": {
99536              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99537            }
99538          },
99539          "401": {
99540            "description": "Unauthorized"
99541          }
99542        },
99543        "schemes": [
99544          "https"
99545        ],
99546        "tags": [
99547          "scheduling_v1alpha1"
99548        ],
99549        "x-kubernetes-action": "watch",
99550        "x-kubernetes-group-version-kind": {
99551          "group": "scheduling.k8s.io",
99552          "kind": "PriorityClass",
99553          "version": "v1alpha1"
99554        }
99555      },
99556      "parameters": [
99557        {
99558          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99559          "in": "query",
99560          "name": "allowWatchBookmarks",
99561          "type": "boolean",
99562          "uniqueItems": true
99563        },
99564        {
99565          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99566          "in": "query",
99567          "name": "continue",
99568          "type": "string",
99569          "uniqueItems": true
99570        },
99571        {
99572          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99573          "in": "query",
99574          "name": "fieldSelector",
99575          "type": "string",
99576          "uniqueItems": true
99577        },
99578        {
99579          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99580          "in": "query",
99581          "name": "labelSelector",
99582          "type": "string",
99583          "uniqueItems": true
99584        },
99585        {
99586          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99587          "in": "query",
99588          "name": "limit",
99589          "type": "integer",
99590          "uniqueItems": true
99591        },
99592        {
99593          "description": "name of the PriorityClass",
99594          "in": "path",
99595          "name": "name",
99596          "required": true,
99597          "type": "string",
99598          "uniqueItems": true
99599        },
99600        {
99601          "description": "If 'true', then the output is pretty printed.",
99602          "in": "query",
99603          "name": "pretty",
99604          "type": "string",
99605          "uniqueItems": true
99606        },
99607        {
99608          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99609          "in": "query",
99610          "name": "resourceVersion",
99611          "type": "string",
99612          "uniqueItems": true
99613        },
99614        {
99615          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99616          "in": "query",
99617          "name": "resourceVersionMatch",
99618          "type": "string",
99619          "uniqueItems": true
99620        },
99621        {
99622          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99623          "in": "query",
99624          "name": "timeoutSeconds",
99625          "type": "integer",
99626          "uniqueItems": true
99627        },
99628        {
99629          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99630          "in": "query",
99631          "name": "watch",
99632          "type": "boolean",
99633          "uniqueItems": true
99634        }
99635      ]
99636    },
99637    "/apis/scheduling.k8s.io/v1beta1/": {
99638      "get": {
99639        "consumes": [
99640          "application/json",
99641          "application/yaml",
99642          "application/vnd.kubernetes.protobuf"
99643        ],
99644        "description": "get available resources",
99645        "operationId": "getSchedulingV1beta1APIResources",
99646        "produces": [
99647          "application/json",
99648          "application/yaml",
99649          "application/vnd.kubernetes.protobuf"
99650        ],
99651        "responses": {
99652          "200": {
99653            "description": "OK",
99654            "schema": {
99655              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
99656            }
99657          },
99658          "401": {
99659            "description": "Unauthorized"
99660          }
99661        },
99662        "schemes": [
99663          "https"
99664        ],
99665        "tags": [
99666          "scheduling_v1beta1"
99667        ]
99668      }
99669    },
99670    "/apis/scheduling.k8s.io/v1beta1/priorityclasses": {
99671      "delete": {
99672        "consumes": [
99673          "*/*"
99674        ],
99675        "description": "delete collection of PriorityClass",
99676        "operationId": "deleteSchedulingV1beta1CollectionPriorityClass",
99677        "parameters": [
99678          {
99679            "in": "body",
99680            "name": "body",
99681            "schema": {
99682              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99683            }
99684          },
99685          {
99686            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99687            "in": "query",
99688            "name": "continue",
99689            "type": "string",
99690            "uniqueItems": true
99691          },
99692          {
99693            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99694            "in": "query",
99695            "name": "dryRun",
99696            "type": "string",
99697            "uniqueItems": true
99698          },
99699          {
99700            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99701            "in": "query",
99702            "name": "fieldSelector",
99703            "type": "string",
99704            "uniqueItems": true
99705          },
99706          {
99707            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
99708            "in": "query",
99709            "name": "gracePeriodSeconds",
99710            "type": "integer",
99711            "uniqueItems": true
99712          },
99713          {
99714            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99715            "in": "query",
99716            "name": "labelSelector",
99717            "type": "string",
99718            "uniqueItems": true
99719          },
99720          {
99721            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99722            "in": "query",
99723            "name": "limit",
99724            "type": "integer",
99725            "uniqueItems": true
99726          },
99727          {
99728            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
99729            "in": "query",
99730            "name": "orphanDependents",
99731            "type": "boolean",
99732            "uniqueItems": true
99733          },
99734          {
99735            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
99736            "in": "query",
99737            "name": "propagationPolicy",
99738            "type": "string",
99739            "uniqueItems": true
99740          },
99741          {
99742            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99743            "in": "query",
99744            "name": "resourceVersion",
99745            "type": "string",
99746            "uniqueItems": true
99747          },
99748          {
99749            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99750            "in": "query",
99751            "name": "resourceVersionMatch",
99752            "type": "string",
99753            "uniqueItems": true
99754          },
99755          {
99756            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99757            "in": "query",
99758            "name": "timeoutSeconds",
99759            "type": "integer",
99760            "uniqueItems": true
99761          }
99762        ],
99763        "produces": [
99764          "application/json",
99765          "application/yaml",
99766          "application/vnd.kubernetes.protobuf"
99767        ],
99768        "responses": {
99769          "200": {
99770            "description": "OK",
99771            "schema": {
99772              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99773            }
99774          },
99775          "401": {
99776            "description": "Unauthorized"
99777          }
99778        },
99779        "schemes": [
99780          "https"
99781        ],
99782        "tags": [
99783          "scheduling_v1beta1"
99784        ],
99785        "x-kubernetes-action": "deletecollection",
99786        "x-kubernetes-group-version-kind": {
99787          "group": "scheduling.k8s.io",
99788          "kind": "PriorityClass",
99789          "version": "v1beta1"
99790        }
99791      },
99792      "get": {
99793        "consumes": [
99794          "*/*"
99795        ],
99796        "description": "list or watch objects of kind PriorityClass",
99797        "operationId": "listSchedulingV1beta1PriorityClass",
99798        "parameters": [
99799          {
99800            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
99801            "in": "query",
99802            "name": "allowWatchBookmarks",
99803            "type": "boolean",
99804            "uniqueItems": true
99805          },
99806          {
99807            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99808            "in": "query",
99809            "name": "continue",
99810            "type": "string",
99811            "uniqueItems": true
99812          },
99813          {
99814            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99815            "in": "query",
99816            "name": "fieldSelector",
99817            "type": "string",
99818            "uniqueItems": true
99819          },
99820          {
99821            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99822            "in": "query",
99823            "name": "labelSelector",
99824            "type": "string",
99825            "uniqueItems": true
99826          },
99827          {
99828            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99829            "in": "query",
99830            "name": "limit",
99831            "type": "integer",
99832            "uniqueItems": true
99833          },
99834          {
99835            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99836            "in": "query",
99837            "name": "resourceVersion",
99838            "type": "string",
99839            "uniqueItems": true
99840          },
99841          {
99842            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
99843            "in": "query",
99844            "name": "resourceVersionMatch",
99845            "type": "string",
99846            "uniqueItems": true
99847          },
99848          {
99849            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99850            "in": "query",
99851            "name": "timeoutSeconds",
99852            "type": "integer",
99853            "uniqueItems": true
99854          },
99855          {
99856            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99857            "in": "query",
99858            "name": "watch",
99859            "type": "boolean",
99860            "uniqueItems": true
99861          }
99862        ],
99863        "produces": [
99864          "application/json",
99865          "application/yaml",
99866          "application/vnd.kubernetes.protobuf",
99867          "application/json;stream=watch",
99868          "application/vnd.kubernetes.protobuf;stream=watch"
99869        ],
99870        "responses": {
99871          "200": {
99872            "description": "OK",
99873            "schema": {
99874              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClassList"
99875            }
99876          },
99877          "401": {
99878            "description": "Unauthorized"
99879          }
99880        },
99881        "schemes": [
99882          "https"
99883        ],
99884        "tags": [
99885          "scheduling_v1beta1"
99886        ],
99887        "x-kubernetes-action": "list",
99888        "x-kubernetes-group-version-kind": {
99889          "group": "scheduling.k8s.io",
99890          "kind": "PriorityClass",
99891          "version": "v1beta1"
99892        }
99893      },
99894      "parameters": [
99895        {
99896          "description": "If 'true', then the output is pretty printed.",
99897          "in": "query",
99898          "name": "pretty",
99899          "type": "string",
99900          "uniqueItems": true
99901        }
99902      ],
99903      "post": {
99904        "consumes": [
99905          "*/*"
99906        ],
99907        "description": "create a PriorityClass",
99908        "operationId": "createSchedulingV1beta1PriorityClass",
99909        "parameters": [
99910          {
99911            "in": "body",
99912            "name": "body",
99913            "required": true,
99914            "schema": {
99915              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99916            }
99917          },
99918          {
99919            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99920            "in": "query",
99921            "name": "dryRun",
99922            "type": "string",
99923            "uniqueItems": true
99924          },
99925          {
99926            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99927            "in": "query",
99928            "name": "fieldManager",
99929            "type": "string",
99930            "uniqueItems": true
99931          }
99932        ],
99933        "produces": [
99934          "application/json",
99935          "application/yaml",
99936          "application/vnd.kubernetes.protobuf"
99937        ],
99938        "responses": {
99939          "200": {
99940            "description": "OK",
99941            "schema": {
99942              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99943            }
99944          },
99945          "201": {
99946            "description": "Created",
99947            "schema": {
99948              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99949            }
99950          },
99951          "202": {
99952            "description": "Accepted",
99953            "schema": {
99954              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
99955            }
99956          },
99957          "401": {
99958            "description": "Unauthorized"
99959          }
99960        },
99961        "schemes": [
99962          "https"
99963        ],
99964        "tags": [
99965          "scheduling_v1beta1"
99966        ],
99967        "x-kubernetes-action": "post",
99968        "x-kubernetes-group-version-kind": {
99969          "group": "scheduling.k8s.io",
99970          "kind": "PriorityClass",
99971          "version": "v1beta1"
99972        }
99973      }
99974    },
99975    "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}": {
99976      "delete": {
99977        "consumes": [
99978          "*/*"
99979        ],
99980        "description": "delete a PriorityClass",
99981        "operationId": "deleteSchedulingV1beta1PriorityClass",
99982        "parameters": [
99983          {
99984            "in": "body",
99985            "name": "body",
99986            "schema": {
99987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99988            }
99989          },
99990          {
99991            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99992            "in": "query",
99993            "name": "dryRun",
99994            "type": "string",
99995            "uniqueItems": true
99996          },
99997          {
99998            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
99999            "in": "query",
100000            "name": "gracePeriodSeconds",
100001            "type": "integer",
100002            "uniqueItems": true
100003          },
100004          {
100005            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100006            "in": "query",
100007            "name": "orphanDependents",
100008            "type": "boolean",
100009            "uniqueItems": true
100010          },
100011          {
100012            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100013            "in": "query",
100014            "name": "propagationPolicy",
100015            "type": "string",
100016            "uniqueItems": true
100017          }
100018        ],
100019        "produces": [
100020          "application/json",
100021          "application/yaml",
100022          "application/vnd.kubernetes.protobuf"
100023        ],
100024        "responses": {
100025          "200": {
100026            "description": "OK",
100027            "schema": {
100028              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100029            }
100030          },
100031          "202": {
100032            "description": "Accepted",
100033            "schema": {
100034              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100035            }
100036          },
100037          "401": {
100038            "description": "Unauthorized"
100039          }
100040        },
100041        "schemes": [
100042          "https"
100043        ],
100044        "tags": [
100045          "scheduling_v1beta1"
100046        ],
100047        "x-kubernetes-action": "delete",
100048        "x-kubernetes-group-version-kind": {
100049          "group": "scheduling.k8s.io",
100050          "kind": "PriorityClass",
100051          "version": "v1beta1"
100052        }
100053      },
100054      "get": {
100055        "consumes": [
100056          "*/*"
100057        ],
100058        "description": "read the specified PriorityClass",
100059        "operationId": "readSchedulingV1beta1PriorityClass",
100060        "produces": [
100061          "application/json",
100062          "application/yaml",
100063          "application/vnd.kubernetes.protobuf"
100064        ],
100065        "responses": {
100066          "200": {
100067            "description": "OK",
100068            "schema": {
100069              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100070            }
100071          },
100072          "401": {
100073            "description": "Unauthorized"
100074          }
100075        },
100076        "schemes": [
100077          "https"
100078        ],
100079        "tags": [
100080          "scheduling_v1beta1"
100081        ],
100082        "x-kubernetes-action": "get",
100083        "x-kubernetes-group-version-kind": {
100084          "group": "scheduling.k8s.io",
100085          "kind": "PriorityClass",
100086          "version": "v1beta1"
100087        }
100088      },
100089      "parameters": [
100090        {
100091          "description": "name of the PriorityClass",
100092          "in": "path",
100093          "name": "name",
100094          "required": true,
100095          "type": "string",
100096          "uniqueItems": true
100097        },
100098        {
100099          "description": "If 'true', then the output is pretty printed.",
100100          "in": "query",
100101          "name": "pretty",
100102          "type": "string",
100103          "uniqueItems": true
100104        }
100105      ],
100106      "patch": {
100107        "consumes": [
100108          "application/json-patch+json",
100109          "application/merge-patch+json",
100110          "application/strategic-merge-patch+json",
100111          "application/apply-patch+yaml"
100112        ],
100113        "description": "partially update the specified PriorityClass",
100114        "operationId": "patchSchedulingV1beta1PriorityClass",
100115        "parameters": [
100116          {
100117            "in": "body",
100118            "name": "body",
100119            "required": true,
100120            "schema": {
100121              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
100122            }
100123          },
100124          {
100125            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100126            "in": "query",
100127            "name": "dryRun",
100128            "type": "string",
100129            "uniqueItems": true
100130          },
100131          {
100132            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
100133            "in": "query",
100134            "name": "fieldManager",
100135            "type": "string",
100136            "uniqueItems": true
100137          },
100138          {
100139            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
100140            "in": "query",
100141            "name": "force",
100142            "type": "boolean",
100143            "uniqueItems": true
100144          }
100145        ],
100146        "produces": [
100147          "application/json",
100148          "application/yaml",
100149          "application/vnd.kubernetes.protobuf"
100150        ],
100151        "responses": {
100152          "200": {
100153            "description": "OK",
100154            "schema": {
100155              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100156            }
100157          },
100158          "401": {
100159            "description": "Unauthorized"
100160          }
100161        },
100162        "schemes": [
100163          "https"
100164        ],
100165        "tags": [
100166          "scheduling_v1beta1"
100167        ],
100168        "x-kubernetes-action": "patch",
100169        "x-kubernetes-group-version-kind": {
100170          "group": "scheduling.k8s.io",
100171          "kind": "PriorityClass",
100172          "version": "v1beta1"
100173        }
100174      },
100175      "put": {
100176        "consumes": [
100177          "*/*"
100178        ],
100179        "description": "replace the specified PriorityClass",
100180        "operationId": "replaceSchedulingV1beta1PriorityClass",
100181        "parameters": [
100182          {
100183            "in": "body",
100184            "name": "body",
100185            "required": true,
100186            "schema": {
100187              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100188            }
100189          },
100190          {
100191            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100192            "in": "query",
100193            "name": "dryRun",
100194            "type": "string",
100195            "uniqueItems": true
100196          },
100197          {
100198            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
100199            "in": "query",
100200            "name": "fieldManager",
100201            "type": "string",
100202            "uniqueItems": true
100203          }
100204        ],
100205        "produces": [
100206          "application/json",
100207          "application/yaml",
100208          "application/vnd.kubernetes.protobuf"
100209        ],
100210        "responses": {
100211          "200": {
100212            "description": "OK",
100213            "schema": {
100214              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100215            }
100216          },
100217          "201": {
100218            "description": "Created",
100219            "schema": {
100220              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
100221            }
100222          },
100223          "401": {
100224            "description": "Unauthorized"
100225          }
100226        },
100227        "schemes": [
100228          "https"
100229        ],
100230        "tags": [
100231          "scheduling_v1beta1"
100232        ],
100233        "x-kubernetes-action": "put",
100234        "x-kubernetes-group-version-kind": {
100235          "group": "scheduling.k8s.io",
100236          "kind": "PriorityClass",
100237          "version": "v1beta1"
100238        }
100239      }
100240    },
100241    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses": {
100242      "get": {
100243        "consumes": [
100244          "*/*"
100245        ],
100246        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
100247        "operationId": "watchSchedulingV1beta1PriorityClassList",
100248        "produces": [
100249          "application/json",
100250          "application/yaml",
100251          "application/vnd.kubernetes.protobuf",
100252          "application/json;stream=watch",
100253          "application/vnd.kubernetes.protobuf;stream=watch"
100254        ],
100255        "responses": {
100256          "200": {
100257            "description": "OK",
100258            "schema": {
100259              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100260            }
100261          },
100262          "401": {
100263            "description": "Unauthorized"
100264          }
100265        },
100266        "schemes": [
100267          "https"
100268        ],
100269        "tags": [
100270          "scheduling_v1beta1"
100271        ],
100272        "x-kubernetes-action": "watchlist",
100273        "x-kubernetes-group-version-kind": {
100274          "group": "scheduling.k8s.io",
100275          "kind": "PriorityClass",
100276          "version": "v1beta1"
100277        }
100278      },
100279      "parameters": [
100280        {
100281          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100282          "in": "query",
100283          "name": "allowWatchBookmarks",
100284          "type": "boolean",
100285          "uniqueItems": true
100286        },
100287        {
100288          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100289          "in": "query",
100290          "name": "continue",
100291          "type": "string",
100292          "uniqueItems": true
100293        },
100294        {
100295          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100296          "in": "query",
100297          "name": "fieldSelector",
100298          "type": "string",
100299          "uniqueItems": true
100300        },
100301        {
100302          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100303          "in": "query",
100304          "name": "labelSelector",
100305          "type": "string",
100306          "uniqueItems": true
100307        },
100308        {
100309          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100310          "in": "query",
100311          "name": "limit",
100312          "type": "integer",
100313          "uniqueItems": true
100314        },
100315        {
100316          "description": "If 'true', then the output is pretty printed.",
100317          "in": "query",
100318          "name": "pretty",
100319          "type": "string",
100320          "uniqueItems": true
100321        },
100322        {
100323          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100324          "in": "query",
100325          "name": "resourceVersion",
100326          "type": "string",
100327          "uniqueItems": true
100328        },
100329        {
100330          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100331          "in": "query",
100332          "name": "resourceVersionMatch",
100333          "type": "string",
100334          "uniqueItems": true
100335        },
100336        {
100337          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100338          "in": "query",
100339          "name": "timeoutSeconds",
100340          "type": "integer",
100341          "uniqueItems": true
100342        },
100343        {
100344          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100345          "in": "query",
100346          "name": "watch",
100347          "type": "boolean",
100348          "uniqueItems": true
100349        }
100350      ]
100351    },
100352    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/{name}": {
100353      "get": {
100354        "consumes": [
100355          "*/*"
100356        ],
100357        "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.",
100358        "operationId": "watchSchedulingV1beta1PriorityClass",
100359        "produces": [
100360          "application/json",
100361          "application/yaml",
100362          "application/vnd.kubernetes.protobuf",
100363          "application/json;stream=watch",
100364          "application/vnd.kubernetes.protobuf;stream=watch"
100365        ],
100366        "responses": {
100367          "200": {
100368            "description": "OK",
100369            "schema": {
100370              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100371            }
100372          },
100373          "401": {
100374            "description": "Unauthorized"
100375          }
100376        },
100377        "schemes": [
100378          "https"
100379        ],
100380        "tags": [
100381          "scheduling_v1beta1"
100382        ],
100383        "x-kubernetes-action": "watch",
100384        "x-kubernetes-group-version-kind": {
100385          "group": "scheduling.k8s.io",
100386          "kind": "PriorityClass",
100387          "version": "v1beta1"
100388        }
100389      },
100390      "parameters": [
100391        {
100392          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100393          "in": "query",
100394          "name": "allowWatchBookmarks",
100395          "type": "boolean",
100396          "uniqueItems": true
100397        },
100398        {
100399          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100400          "in": "query",
100401          "name": "continue",
100402          "type": "string",
100403          "uniqueItems": true
100404        },
100405        {
100406          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100407          "in": "query",
100408          "name": "fieldSelector",
100409          "type": "string",
100410          "uniqueItems": true
100411        },
100412        {
100413          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100414          "in": "query",
100415          "name": "labelSelector",
100416          "type": "string",
100417          "uniqueItems": true
100418        },
100419        {
100420          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100421          "in": "query",
100422          "name": "limit",
100423          "type": "integer",
100424          "uniqueItems": true
100425        },
100426        {
100427          "description": "name of the PriorityClass",
100428          "in": "path",
100429          "name": "name",
100430          "required": true,
100431          "type": "string",
100432          "uniqueItems": true
100433        },
100434        {
100435          "description": "If 'true', then the output is pretty printed.",
100436          "in": "query",
100437          "name": "pretty",
100438          "type": "string",
100439          "uniqueItems": true
100440        },
100441        {
100442          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100443          "in": "query",
100444          "name": "resourceVersion",
100445          "type": "string",
100446          "uniqueItems": true
100447        },
100448        {
100449          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100450          "in": "query",
100451          "name": "resourceVersionMatch",
100452          "type": "string",
100453          "uniqueItems": true
100454        },
100455        {
100456          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100457          "in": "query",
100458          "name": "timeoutSeconds",
100459          "type": "integer",
100460          "uniqueItems": true
100461        },
100462        {
100463          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100464          "in": "query",
100465          "name": "watch",
100466          "type": "boolean",
100467          "uniqueItems": true
100468        }
100469      ]
100470    },
100471    "/apis/storage.k8s.io/": {
100472      "get": {
100473        "consumes": [
100474          "application/json",
100475          "application/yaml",
100476          "application/vnd.kubernetes.protobuf"
100477        ],
100478        "description": "get information of a group",
100479        "operationId": "getStorageAPIGroup",
100480        "produces": [
100481          "application/json",
100482          "application/yaml",
100483          "application/vnd.kubernetes.protobuf"
100484        ],
100485        "responses": {
100486          "200": {
100487            "description": "OK",
100488            "schema": {
100489              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
100490            }
100491          },
100492          "401": {
100493            "description": "Unauthorized"
100494          }
100495        },
100496        "schemes": [
100497          "https"
100498        ],
100499        "tags": [
100500          "storage"
100501        ]
100502      }
100503    },
100504    "/apis/storage.k8s.io/v1/": {
100505      "get": {
100506        "consumes": [
100507          "application/json",
100508          "application/yaml",
100509          "application/vnd.kubernetes.protobuf"
100510        ],
100511        "description": "get available resources",
100512        "operationId": "getStorageV1APIResources",
100513        "produces": [
100514          "application/json",
100515          "application/yaml",
100516          "application/vnd.kubernetes.protobuf"
100517        ],
100518        "responses": {
100519          "200": {
100520            "description": "OK",
100521            "schema": {
100522              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
100523            }
100524          },
100525          "401": {
100526            "description": "Unauthorized"
100527          }
100528        },
100529        "schemes": [
100530          "https"
100531        ],
100532        "tags": [
100533          "storage_v1"
100534        ]
100535      }
100536    },
100537    "/apis/storage.k8s.io/v1/csidrivers": {
100538      "delete": {
100539        "consumes": [
100540          "*/*"
100541        ],
100542        "description": "delete collection of CSIDriver",
100543        "operationId": "deleteStorageV1CollectionCSIDriver",
100544        "parameters": [
100545          {
100546            "in": "body",
100547            "name": "body",
100548            "schema": {
100549              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100550            }
100551          },
100552          {
100553            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100554            "in": "query",
100555            "name": "continue",
100556            "type": "string",
100557            "uniqueItems": true
100558          },
100559          {
100560            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100561            "in": "query",
100562            "name": "dryRun",
100563            "type": "string",
100564            "uniqueItems": true
100565          },
100566          {
100567            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100568            "in": "query",
100569            "name": "fieldSelector",
100570            "type": "string",
100571            "uniqueItems": true
100572          },
100573          {
100574            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
100575            "in": "query",
100576            "name": "gracePeriodSeconds",
100577            "type": "integer",
100578            "uniqueItems": true
100579          },
100580          {
100581            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100582            "in": "query",
100583            "name": "labelSelector",
100584            "type": "string",
100585            "uniqueItems": true
100586          },
100587          {
100588            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100589            "in": "query",
100590            "name": "limit",
100591            "type": "integer",
100592            "uniqueItems": true
100593          },
100594          {
100595            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100596            "in": "query",
100597            "name": "orphanDependents",
100598            "type": "boolean",
100599            "uniqueItems": true
100600          },
100601          {
100602            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100603            "in": "query",
100604            "name": "propagationPolicy",
100605            "type": "string",
100606            "uniqueItems": true
100607          },
100608          {
100609            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100610            "in": "query",
100611            "name": "resourceVersion",
100612            "type": "string",
100613            "uniqueItems": true
100614          },
100615          {
100616            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100617            "in": "query",
100618            "name": "resourceVersionMatch",
100619            "type": "string",
100620            "uniqueItems": true
100621          },
100622          {
100623            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100624            "in": "query",
100625            "name": "timeoutSeconds",
100626            "type": "integer",
100627            "uniqueItems": true
100628          }
100629        ],
100630        "produces": [
100631          "application/json",
100632          "application/yaml",
100633          "application/vnd.kubernetes.protobuf"
100634        ],
100635        "responses": {
100636          "200": {
100637            "description": "OK",
100638            "schema": {
100639              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100640            }
100641          },
100642          "401": {
100643            "description": "Unauthorized"
100644          }
100645        },
100646        "schemes": [
100647          "https"
100648        ],
100649        "tags": [
100650          "storage_v1"
100651        ],
100652        "x-kubernetes-action": "deletecollection",
100653        "x-kubernetes-group-version-kind": {
100654          "group": "storage.k8s.io",
100655          "kind": "CSIDriver",
100656          "version": "v1"
100657        }
100658      },
100659      "get": {
100660        "consumes": [
100661          "*/*"
100662        ],
100663        "description": "list or watch objects of kind CSIDriver",
100664        "operationId": "listStorageV1CSIDriver",
100665        "parameters": [
100666          {
100667            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
100668            "in": "query",
100669            "name": "allowWatchBookmarks",
100670            "type": "boolean",
100671            "uniqueItems": true
100672          },
100673          {
100674            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100675            "in": "query",
100676            "name": "continue",
100677            "type": "string",
100678            "uniqueItems": true
100679          },
100680          {
100681            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100682            "in": "query",
100683            "name": "fieldSelector",
100684            "type": "string",
100685            "uniqueItems": true
100686          },
100687          {
100688            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100689            "in": "query",
100690            "name": "labelSelector",
100691            "type": "string",
100692            "uniqueItems": true
100693          },
100694          {
100695            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100696            "in": "query",
100697            "name": "limit",
100698            "type": "integer",
100699            "uniqueItems": true
100700          },
100701          {
100702            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100703            "in": "query",
100704            "name": "resourceVersion",
100705            "type": "string",
100706            "uniqueItems": true
100707          },
100708          {
100709            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
100710            "in": "query",
100711            "name": "resourceVersionMatch",
100712            "type": "string",
100713            "uniqueItems": true
100714          },
100715          {
100716            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100717            "in": "query",
100718            "name": "timeoutSeconds",
100719            "type": "integer",
100720            "uniqueItems": true
100721          },
100722          {
100723            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100724            "in": "query",
100725            "name": "watch",
100726            "type": "boolean",
100727            "uniqueItems": true
100728          }
100729        ],
100730        "produces": [
100731          "application/json",
100732          "application/yaml",
100733          "application/vnd.kubernetes.protobuf",
100734          "application/json;stream=watch",
100735          "application/vnd.kubernetes.protobuf;stream=watch"
100736        ],
100737        "responses": {
100738          "200": {
100739            "description": "OK",
100740            "schema": {
100741              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverList"
100742            }
100743          },
100744          "401": {
100745            "description": "Unauthorized"
100746          }
100747        },
100748        "schemes": [
100749          "https"
100750        ],
100751        "tags": [
100752          "storage_v1"
100753        ],
100754        "x-kubernetes-action": "list",
100755        "x-kubernetes-group-version-kind": {
100756          "group": "storage.k8s.io",
100757          "kind": "CSIDriver",
100758          "version": "v1"
100759        }
100760      },
100761      "parameters": [
100762        {
100763          "description": "If 'true', then the output is pretty printed.",
100764          "in": "query",
100765          "name": "pretty",
100766          "type": "string",
100767          "uniqueItems": true
100768        }
100769      ],
100770      "post": {
100771        "consumes": [
100772          "*/*"
100773        ],
100774        "description": "create a CSIDriver",
100775        "operationId": "createStorageV1CSIDriver",
100776        "parameters": [
100777          {
100778            "in": "body",
100779            "name": "body",
100780            "required": true,
100781            "schema": {
100782              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100783            }
100784          },
100785          {
100786            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100787            "in": "query",
100788            "name": "dryRun",
100789            "type": "string",
100790            "uniqueItems": true
100791          },
100792          {
100793            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
100794            "in": "query",
100795            "name": "fieldManager",
100796            "type": "string",
100797            "uniqueItems": true
100798          }
100799        ],
100800        "produces": [
100801          "application/json",
100802          "application/yaml",
100803          "application/vnd.kubernetes.protobuf"
100804        ],
100805        "responses": {
100806          "200": {
100807            "description": "OK",
100808            "schema": {
100809              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100810            }
100811          },
100812          "201": {
100813            "description": "Created",
100814            "schema": {
100815              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100816            }
100817          },
100818          "202": {
100819            "description": "Accepted",
100820            "schema": {
100821              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100822            }
100823          },
100824          "401": {
100825            "description": "Unauthorized"
100826          }
100827        },
100828        "schemes": [
100829          "https"
100830        ],
100831        "tags": [
100832          "storage_v1"
100833        ],
100834        "x-kubernetes-action": "post",
100835        "x-kubernetes-group-version-kind": {
100836          "group": "storage.k8s.io",
100837          "kind": "CSIDriver",
100838          "version": "v1"
100839        }
100840      }
100841    },
100842    "/apis/storage.k8s.io/v1/csidrivers/{name}": {
100843      "delete": {
100844        "consumes": [
100845          "*/*"
100846        ],
100847        "description": "delete a CSIDriver",
100848        "operationId": "deleteStorageV1CSIDriver",
100849        "parameters": [
100850          {
100851            "in": "body",
100852            "name": "body",
100853            "schema": {
100854              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100855            }
100856          },
100857          {
100858            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100859            "in": "query",
100860            "name": "dryRun",
100861            "type": "string",
100862            "uniqueItems": true
100863          },
100864          {
100865            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
100866            "in": "query",
100867            "name": "gracePeriodSeconds",
100868            "type": "integer",
100869            "uniqueItems": true
100870          },
100871          {
100872            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
100873            "in": "query",
100874            "name": "orphanDependents",
100875            "type": "boolean",
100876            "uniqueItems": true
100877          },
100878          {
100879            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
100880            "in": "query",
100881            "name": "propagationPolicy",
100882            "type": "string",
100883            "uniqueItems": true
100884          }
100885        ],
100886        "produces": [
100887          "application/json",
100888          "application/yaml",
100889          "application/vnd.kubernetes.protobuf"
100890        ],
100891        "responses": {
100892          "200": {
100893            "description": "OK",
100894            "schema": {
100895              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100896            }
100897          },
100898          "202": {
100899            "description": "Accepted",
100900            "schema": {
100901              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100902            }
100903          },
100904          "401": {
100905            "description": "Unauthorized"
100906          }
100907        },
100908        "schemes": [
100909          "https"
100910        ],
100911        "tags": [
100912          "storage_v1"
100913        ],
100914        "x-kubernetes-action": "delete",
100915        "x-kubernetes-group-version-kind": {
100916          "group": "storage.k8s.io",
100917          "kind": "CSIDriver",
100918          "version": "v1"
100919        }
100920      },
100921      "get": {
100922        "consumes": [
100923          "*/*"
100924        ],
100925        "description": "read the specified CSIDriver",
100926        "operationId": "readStorageV1CSIDriver",
100927        "produces": [
100928          "application/json",
100929          "application/yaml",
100930          "application/vnd.kubernetes.protobuf"
100931        ],
100932        "responses": {
100933          "200": {
100934            "description": "OK",
100935            "schema": {
100936              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
100937            }
100938          },
100939          "401": {
100940            "description": "Unauthorized"
100941          }
100942        },
100943        "schemes": [
100944          "https"
100945        ],
100946        "tags": [
100947          "storage_v1"
100948        ],
100949        "x-kubernetes-action": "get",
100950        "x-kubernetes-group-version-kind": {
100951          "group": "storage.k8s.io",
100952          "kind": "CSIDriver",
100953          "version": "v1"
100954        }
100955      },
100956      "parameters": [
100957        {
100958          "description": "name of the CSIDriver",
100959          "in": "path",
100960          "name": "name",
100961          "required": true,
100962          "type": "string",
100963          "uniqueItems": true
100964        },
100965        {
100966          "description": "If 'true', then the output is pretty printed.",
100967          "in": "query",
100968          "name": "pretty",
100969          "type": "string",
100970          "uniqueItems": true
100971        }
100972      ],
100973      "patch": {
100974        "consumes": [
100975          "application/json-patch+json",
100976          "application/merge-patch+json",
100977          "application/strategic-merge-patch+json",
100978          "application/apply-patch+yaml"
100979        ],
100980        "description": "partially update the specified CSIDriver",
100981        "operationId": "patchStorageV1CSIDriver",
100982        "parameters": [
100983          {
100984            "in": "body",
100985            "name": "body",
100986            "required": true,
100987            "schema": {
100988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
100989            }
100990          },
100991          {
100992            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100993            "in": "query",
100994            "name": "dryRun",
100995            "type": "string",
100996            "uniqueItems": true
100997          },
100998          {
100999            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
101000            "in": "query",
101001            "name": "fieldManager",
101002            "type": "string",
101003            "uniqueItems": true
101004          },
101005          {
101006            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
101007            "in": "query",
101008            "name": "force",
101009            "type": "boolean",
101010            "uniqueItems": true
101011          }
101012        ],
101013        "produces": [
101014          "application/json",
101015          "application/yaml",
101016          "application/vnd.kubernetes.protobuf"
101017        ],
101018        "responses": {
101019          "200": {
101020            "description": "OK",
101021            "schema": {
101022              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101023            }
101024          },
101025          "401": {
101026            "description": "Unauthorized"
101027          }
101028        },
101029        "schemes": [
101030          "https"
101031        ],
101032        "tags": [
101033          "storage_v1"
101034        ],
101035        "x-kubernetes-action": "patch",
101036        "x-kubernetes-group-version-kind": {
101037          "group": "storage.k8s.io",
101038          "kind": "CSIDriver",
101039          "version": "v1"
101040        }
101041      },
101042      "put": {
101043        "consumes": [
101044          "*/*"
101045        ],
101046        "description": "replace the specified CSIDriver",
101047        "operationId": "replaceStorageV1CSIDriver",
101048        "parameters": [
101049          {
101050            "in": "body",
101051            "name": "body",
101052            "required": true,
101053            "schema": {
101054              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101055            }
101056          },
101057          {
101058            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101059            "in": "query",
101060            "name": "dryRun",
101061            "type": "string",
101062            "uniqueItems": true
101063          },
101064          {
101065            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101066            "in": "query",
101067            "name": "fieldManager",
101068            "type": "string",
101069            "uniqueItems": true
101070          }
101071        ],
101072        "produces": [
101073          "application/json",
101074          "application/yaml",
101075          "application/vnd.kubernetes.protobuf"
101076        ],
101077        "responses": {
101078          "200": {
101079            "description": "OK",
101080            "schema": {
101081              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101082            }
101083          },
101084          "201": {
101085            "description": "Created",
101086            "schema": {
101087              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
101088            }
101089          },
101090          "401": {
101091            "description": "Unauthorized"
101092          }
101093        },
101094        "schemes": [
101095          "https"
101096        ],
101097        "tags": [
101098          "storage_v1"
101099        ],
101100        "x-kubernetes-action": "put",
101101        "x-kubernetes-group-version-kind": {
101102          "group": "storage.k8s.io",
101103          "kind": "CSIDriver",
101104          "version": "v1"
101105        }
101106      }
101107    },
101108    "/apis/storage.k8s.io/v1/csinodes": {
101109      "delete": {
101110        "consumes": [
101111          "*/*"
101112        ],
101113        "description": "delete collection of CSINode",
101114        "operationId": "deleteStorageV1CollectionCSINode",
101115        "parameters": [
101116          {
101117            "in": "body",
101118            "name": "body",
101119            "schema": {
101120              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101121            }
101122          },
101123          {
101124            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101125            "in": "query",
101126            "name": "continue",
101127            "type": "string",
101128            "uniqueItems": true
101129          },
101130          {
101131            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101132            "in": "query",
101133            "name": "dryRun",
101134            "type": "string",
101135            "uniqueItems": true
101136          },
101137          {
101138            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101139            "in": "query",
101140            "name": "fieldSelector",
101141            "type": "string",
101142            "uniqueItems": true
101143          },
101144          {
101145            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101146            "in": "query",
101147            "name": "gracePeriodSeconds",
101148            "type": "integer",
101149            "uniqueItems": true
101150          },
101151          {
101152            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101153            "in": "query",
101154            "name": "labelSelector",
101155            "type": "string",
101156            "uniqueItems": true
101157          },
101158          {
101159            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101160            "in": "query",
101161            "name": "limit",
101162            "type": "integer",
101163            "uniqueItems": true
101164          },
101165          {
101166            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101167            "in": "query",
101168            "name": "orphanDependents",
101169            "type": "boolean",
101170            "uniqueItems": true
101171          },
101172          {
101173            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101174            "in": "query",
101175            "name": "propagationPolicy",
101176            "type": "string",
101177            "uniqueItems": true
101178          },
101179          {
101180            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101181            "in": "query",
101182            "name": "resourceVersion",
101183            "type": "string",
101184            "uniqueItems": true
101185          },
101186          {
101187            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101188            "in": "query",
101189            "name": "resourceVersionMatch",
101190            "type": "string",
101191            "uniqueItems": true
101192          },
101193          {
101194            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101195            "in": "query",
101196            "name": "timeoutSeconds",
101197            "type": "integer",
101198            "uniqueItems": true
101199          }
101200        ],
101201        "produces": [
101202          "application/json",
101203          "application/yaml",
101204          "application/vnd.kubernetes.protobuf"
101205        ],
101206        "responses": {
101207          "200": {
101208            "description": "OK",
101209            "schema": {
101210              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101211            }
101212          },
101213          "401": {
101214            "description": "Unauthorized"
101215          }
101216        },
101217        "schemes": [
101218          "https"
101219        ],
101220        "tags": [
101221          "storage_v1"
101222        ],
101223        "x-kubernetes-action": "deletecollection",
101224        "x-kubernetes-group-version-kind": {
101225          "group": "storage.k8s.io",
101226          "kind": "CSINode",
101227          "version": "v1"
101228        }
101229      },
101230      "get": {
101231        "consumes": [
101232          "*/*"
101233        ],
101234        "description": "list or watch objects of kind CSINode",
101235        "operationId": "listStorageV1CSINode",
101236        "parameters": [
101237          {
101238            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
101239            "in": "query",
101240            "name": "allowWatchBookmarks",
101241            "type": "boolean",
101242            "uniqueItems": true
101243          },
101244          {
101245            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101246            "in": "query",
101247            "name": "continue",
101248            "type": "string",
101249            "uniqueItems": true
101250          },
101251          {
101252            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101253            "in": "query",
101254            "name": "fieldSelector",
101255            "type": "string",
101256            "uniqueItems": true
101257          },
101258          {
101259            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101260            "in": "query",
101261            "name": "labelSelector",
101262            "type": "string",
101263            "uniqueItems": true
101264          },
101265          {
101266            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101267            "in": "query",
101268            "name": "limit",
101269            "type": "integer",
101270            "uniqueItems": true
101271          },
101272          {
101273            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101274            "in": "query",
101275            "name": "resourceVersion",
101276            "type": "string",
101277            "uniqueItems": true
101278          },
101279          {
101280            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101281            "in": "query",
101282            "name": "resourceVersionMatch",
101283            "type": "string",
101284            "uniqueItems": true
101285          },
101286          {
101287            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101288            "in": "query",
101289            "name": "timeoutSeconds",
101290            "type": "integer",
101291            "uniqueItems": true
101292          },
101293          {
101294            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101295            "in": "query",
101296            "name": "watch",
101297            "type": "boolean",
101298            "uniqueItems": true
101299          }
101300        ],
101301        "produces": [
101302          "application/json",
101303          "application/yaml",
101304          "application/vnd.kubernetes.protobuf",
101305          "application/json;stream=watch",
101306          "application/vnd.kubernetes.protobuf;stream=watch"
101307        ],
101308        "responses": {
101309          "200": {
101310            "description": "OK",
101311            "schema": {
101312              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeList"
101313            }
101314          },
101315          "401": {
101316            "description": "Unauthorized"
101317          }
101318        },
101319        "schemes": [
101320          "https"
101321        ],
101322        "tags": [
101323          "storage_v1"
101324        ],
101325        "x-kubernetes-action": "list",
101326        "x-kubernetes-group-version-kind": {
101327          "group": "storage.k8s.io",
101328          "kind": "CSINode",
101329          "version": "v1"
101330        }
101331      },
101332      "parameters": [
101333        {
101334          "description": "If 'true', then the output is pretty printed.",
101335          "in": "query",
101336          "name": "pretty",
101337          "type": "string",
101338          "uniqueItems": true
101339        }
101340      ],
101341      "post": {
101342        "consumes": [
101343          "*/*"
101344        ],
101345        "description": "create a CSINode",
101346        "operationId": "createStorageV1CSINode",
101347        "parameters": [
101348          {
101349            "in": "body",
101350            "name": "body",
101351            "required": true,
101352            "schema": {
101353              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101354            }
101355          },
101356          {
101357            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101358            "in": "query",
101359            "name": "dryRun",
101360            "type": "string",
101361            "uniqueItems": true
101362          },
101363          {
101364            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101365            "in": "query",
101366            "name": "fieldManager",
101367            "type": "string",
101368            "uniqueItems": true
101369          }
101370        ],
101371        "produces": [
101372          "application/json",
101373          "application/yaml",
101374          "application/vnd.kubernetes.protobuf"
101375        ],
101376        "responses": {
101377          "200": {
101378            "description": "OK",
101379            "schema": {
101380              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101381            }
101382          },
101383          "201": {
101384            "description": "Created",
101385            "schema": {
101386              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101387            }
101388          },
101389          "202": {
101390            "description": "Accepted",
101391            "schema": {
101392              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101393            }
101394          },
101395          "401": {
101396            "description": "Unauthorized"
101397          }
101398        },
101399        "schemes": [
101400          "https"
101401        ],
101402        "tags": [
101403          "storage_v1"
101404        ],
101405        "x-kubernetes-action": "post",
101406        "x-kubernetes-group-version-kind": {
101407          "group": "storage.k8s.io",
101408          "kind": "CSINode",
101409          "version": "v1"
101410        }
101411      }
101412    },
101413    "/apis/storage.k8s.io/v1/csinodes/{name}": {
101414      "delete": {
101415        "consumes": [
101416          "*/*"
101417        ],
101418        "description": "delete a CSINode",
101419        "operationId": "deleteStorageV1CSINode",
101420        "parameters": [
101421          {
101422            "in": "body",
101423            "name": "body",
101424            "schema": {
101425              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101426            }
101427          },
101428          {
101429            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101430            "in": "query",
101431            "name": "dryRun",
101432            "type": "string",
101433            "uniqueItems": true
101434          },
101435          {
101436            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101437            "in": "query",
101438            "name": "gracePeriodSeconds",
101439            "type": "integer",
101440            "uniqueItems": true
101441          },
101442          {
101443            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101444            "in": "query",
101445            "name": "orphanDependents",
101446            "type": "boolean",
101447            "uniqueItems": true
101448          },
101449          {
101450            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101451            "in": "query",
101452            "name": "propagationPolicy",
101453            "type": "string",
101454            "uniqueItems": true
101455          }
101456        ],
101457        "produces": [
101458          "application/json",
101459          "application/yaml",
101460          "application/vnd.kubernetes.protobuf"
101461        ],
101462        "responses": {
101463          "200": {
101464            "description": "OK",
101465            "schema": {
101466              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101467            }
101468          },
101469          "202": {
101470            "description": "Accepted",
101471            "schema": {
101472              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101473            }
101474          },
101475          "401": {
101476            "description": "Unauthorized"
101477          }
101478        },
101479        "schemes": [
101480          "https"
101481        ],
101482        "tags": [
101483          "storage_v1"
101484        ],
101485        "x-kubernetes-action": "delete",
101486        "x-kubernetes-group-version-kind": {
101487          "group": "storage.k8s.io",
101488          "kind": "CSINode",
101489          "version": "v1"
101490        }
101491      },
101492      "get": {
101493        "consumes": [
101494          "*/*"
101495        ],
101496        "description": "read the specified CSINode",
101497        "operationId": "readStorageV1CSINode",
101498        "produces": [
101499          "application/json",
101500          "application/yaml",
101501          "application/vnd.kubernetes.protobuf"
101502        ],
101503        "responses": {
101504          "200": {
101505            "description": "OK",
101506            "schema": {
101507              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101508            }
101509          },
101510          "401": {
101511            "description": "Unauthorized"
101512          }
101513        },
101514        "schemes": [
101515          "https"
101516        ],
101517        "tags": [
101518          "storage_v1"
101519        ],
101520        "x-kubernetes-action": "get",
101521        "x-kubernetes-group-version-kind": {
101522          "group": "storage.k8s.io",
101523          "kind": "CSINode",
101524          "version": "v1"
101525        }
101526      },
101527      "parameters": [
101528        {
101529          "description": "name of the CSINode",
101530          "in": "path",
101531          "name": "name",
101532          "required": true,
101533          "type": "string",
101534          "uniqueItems": true
101535        },
101536        {
101537          "description": "If 'true', then the output is pretty printed.",
101538          "in": "query",
101539          "name": "pretty",
101540          "type": "string",
101541          "uniqueItems": true
101542        }
101543      ],
101544      "patch": {
101545        "consumes": [
101546          "application/json-patch+json",
101547          "application/merge-patch+json",
101548          "application/strategic-merge-patch+json",
101549          "application/apply-patch+yaml"
101550        ],
101551        "description": "partially update the specified CSINode",
101552        "operationId": "patchStorageV1CSINode",
101553        "parameters": [
101554          {
101555            "in": "body",
101556            "name": "body",
101557            "required": true,
101558            "schema": {
101559              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
101560            }
101561          },
101562          {
101563            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101564            "in": "query",
101565            "name": "dryRun",
101566            "type": "string",
101567            "uniqueItems": true
101568          },
101569          {
101570            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
101571            "in": "query",
101572            "name": "fieldManager",
101573            "type": "string",
101574            "uniqueItems": true
101575          },
101576          {
101577            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
101578            "in": "query",
101579            "name": "force",
101580            "type": "boolean",
101581            "uniqueItems": true
101582          }
101583        ],
101584        "produces": [
101585          "application/json",
101586          "application/yaml",
101587          "application/vnd.kubernetes.protobuf"
101588        ],
101589        "responses": {
101590          "200": {
101591            "description": "OK",
101592            "schema": {
101593              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101594            }
101595          },
101596          "401": {
101597            "description": "Unauthorized"
101598          }
101599        },
101600        "schemes": [
101601          "https"
101602        ],
101603        "tags": [
101604          "storage_v1"
101605        ],
101606        "x-kubernetes-action": "patch",
101607        "x-kubernetes-group-version-kind": {
101608          "group": "storage.k8s.io",
101609          "kind": "CSINode",
101610          "version": "v1"
101611        }
101612      },
101613      "put": {
101614        "consumes": [
101615          "*/*"
101616        ],
101617        "description": "replace the specified CSINode",
101618        "operationId": "replaceStorageV1CSINode",
101619        "parameters": [
101620          {
101621            "in": "body",
101622            "name": "body",
101623            "required": true,
101624            "schema": {
101625              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101626            }
101627          },
101628          {
101629            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101630            "in": "query",
101631            "name": "dryRun",
101632            "type": "string",
101633            "uniqueItems": true
101634          },
101635          {
101636            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101637            "in": "query",
101638            "name": "fieldManager",
101639            "type": "string",
101640            "uniqueItems": true
101641          }
101642        ],
101643        "produces": [
101644          "application/json",
101645          "application/yaml",
101646          "application/vnd.kubernetes.protobuf"
101647        ],
101648        "responses": {
101649          "200": {
101650            "description": "OK",
101651            "schema": {
101652              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101653            }
101654          },
101655          "201": {
101656            "description": "Created",
101657            "schema": {
101658              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
101659            }
101660          },
101661          "401": {
101662            "description": "Unauthorized"
101663          }
101664        },
101665        "schemes": [
101666          "https"
101667        ],
101668        "tags": [
101669          "storage_v1"
101670        ],
101671        "x-kubernetes-action": "put",
101672        "x-kubernetes-group-version-kind": {
101673          "group": "storage.k8s.io",
101674          "kind": "CSINode",
101675          "version": "v1"
101676        }
101677      }
101678    },
101679    "/apis/storage.k8s.io/v1/storageclasses": {
101680      "delete": {
101681        "consumes": [
101682          "*/*"
101683        ],
101684        "description": "delete collection of StorageClass",
101685        "operationId": "deleteStorageV1CollectionStorageClass",
101686        "parameters": [
101687          {
101688            "in": "body",
101689            "name": "body",
101690            "schema": {
101691              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101692            }
101693          },
101694          {
101695            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101696            "in": "query",
101697            "name": "continue",
101698            "type": "string",
101699            "uniqueItems": true
101700          },
101701          {
101702            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101703            "in": "query",
101704            "name": "dryRun",
101705            "type": "string",
101706            "uniqueItems": true
101707          },
101708          {
101709            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101710            "in": "query",
101711            "name": "fieldSelector",
101712            "type": "string",
101713            "uniqueItems": true
101714          },
101715          {
101716            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
101717            "in": "query",
101718            "name": "gracePeriodSeconds",
101719            "type": "integer",
101720            "uniqueItems": true
101721          },
101722          {
101723            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101724            "in": "query",
101725            "name": "labelSelector",
101726            "type": "string",
101727            "uniqueItems": true
101728          },
101729          {
101730            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101731            "in": "query",
101732            "name": "limit",
101733            "type": "integer",
101734            "uniqueItems": true
101735          },
101736          {
101737            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
101738            "in": "query",
101739            "name": "orphanDependents",
101740            "type": "boolean",
101741            "uniqueItems": true
101742          },
101743          {
101744            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
101745            "in": "query",
101746            "name": "propagationPolicy",
101747            "type": "string",
101748            "uniqueItems": true
101749          },
101750          {
101751            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101752            "in": "query",
101753            "name": "resourceVersion",
101754            "type": "string",
101755            "uniqueItems": true
101756          },
101757          {
101758            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101759            "in": "query",
101760            "name": "resourceVersionMatch",
101761            "type": "string",
101762            "uniqueItems": true
101763          },
101764          {
101765            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101766            "in": "query",
101767            "name": "timeoutSeconds",
101768            "type": "integer",
101769            "uniqueItems": true
101770          }
101771        ],
101772        "produces": [
101773          "application/json",
101774          "application/yaml",
101775          "application/vnd.kubernetes.protobuf"
101776        ],
101777        "responses": {
101778          "200": {
101779            "description": "OK",
101780            "schema": {
101781              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101782            }
101783          },
101784          "401": {
101785            "description": "Unauthorized"
101786          }
101787        },
101788        "schemes": [
101789          "https"
101790        ],
101791        "tags": [
101792          "storage_v1"
101793        ],
101794        "x-kubernetes-action": "deletecollection",
101795        "x-kubernetes-group-version-kind": {
101796          "group": "storage.k8s.io",
101797          "kind": "StorageClass",
101798          "version": "v1"
101799        }
101800      },
101801      "get": {
101802        "consumes": [
101803          "*/*"
101804        ],
101805        "description": "list or watch objects of kind StorageClass",
101806        "operationId": "listStorageV1StorageClass",
101807        "parameters": [
101808          {
101809            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
101810            "in": "query",
101811            "name": "allowWatchBookmarks",
101812            "type": "boolean",
101813            "uniqueItems": true
101814          },
101815          {
101816            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101817            "in": "query",
101818            "name": "continue",
101819            "type": "string",
101820            "uniqueItems": true
101821          },
101822          {
101823            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101824            "in": "query",
101825            "name": "fieldSelector",
101826            "type": "string",
101827            "uniqueItems": true
101828          },
101829          {
101830            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101831            "in": "query",
101832            "name": "labelSelector",
101833            "type": "string",
101834            "uniqueItems": true
101835          },
101836          {
101837            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101838            "in": "query",
101839            "name": "limit",
101840            "type": "integer",
101841            "uniqueItems": true
101842          },
101843          {
101844            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101845            "in": "query",
101846            "name": "resourceVersion",
101847            "type": "string",
101848            "uniqueItems": true
101849          },
101850          {
101851            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
101852            "in": "query",
101853            "name": "resourceVersionMatch",
101854            "type": "string",
101855            "uniqueItems": true
101856          },
101857          {
101858            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101859            "in": "query",
101860            "name": "timeoutSeconds",
101861            "type": "integer",
101862            "uniqueItems": true
101863          },
101864          {
101865            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101866            "in": "query",
101867            "name": "watch",
101868            "type": "boolean",
101869            "uniqueItems": true
101870          }
101871        ],
101872        "produces": [
101873          "application/json",
101874          "application/yaml",
101875          "application/vnd.kubernetes.protobuf",
101876          "application/json;stream=watch",
101877          "application/vnd.kubernetes.protobuf;stream=watch"
101878        ],
101879        "responses": {
101880          "200": {
101881            "description": "OK",
101882            "schema": {
101883              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClassList"
101884            }
101885          },
101886          "401": {
101887            "description": "Unauthorized"
101888          }
101889        },
101890        "schemes": [
101891          "https"
101892        ],
101893        "tags": [
101894          "storage_v1"
101895        ],
101896        "x-kubernetes-action": "list",
101897        "x-kubernetes-group-version-kind": {
101898          "group": "storage.k8s.io",
101899          "kind": "StorageClass",
101900          "version": "v1"
101901        }
101902      },
101903      "parameters": [
101904        {
101905          "description": "If 'true', then the output is pretty printed.",
101906          "in": "query",
101907          "name": "pretty",
101908          "type": "string",
101909          "uniqueItems": true
101910        }
101911      ],
101912      "post": {
101913        "consumes": [
101914          "*/*"
101915        ],
101916        "description": "create a StorageClass",
101917        "operationId": "createStorageV1StorageClass",
101918        "parameters": [
101919          {
101920            "in": "body",
101921            "name": "body",
101922            "required": true,
101923            "schema": {
101924              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101925            }
101926          },
101927          {
101928            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101929            "in": "query",
101930            "name": "dryRun",
101931            "type": "string",
101932            "uniqueItems": true
101933          },
101934          {
101935            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101936            "in": "query",
101937            "name": "fieldManager",
101938            "type": "string",
101939            "uniqueItems": true
101940          }
101941        ],
101942        "produces": [
101943          "application/json",
101944          "application/yaml",
101945          "application/vnd.kubernetes.protobuf"
101946        ],
101947        "responses": {
101948          "200": {
101949            "description": "OK",
101950            "schema": {
101951              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101952            }
101953          },
101954          "201": {
101955            "description": "Created",
101956            "schema": {
101957              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101958            }
101959          },
101960          "202": {
101961            "description": "Accepted",
101962            "schema": {
101963              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
101964            }
101965          },
101966          "401": {
101967            "description": "Unauthorized"
101968          }
101969        },
101970        "schemes": [
101971          "https"
101972        ],
101973        "tags": [
101974          "storage_v1"
101975        ],
101976        "x-kubernetes-action": "post",
101977        "x-kubernetes-group-version-kind": {
101978          "group": "storage.k8s.io",
101979          "kind": "StorageClass",
101980          "version": "v1"
101981        }
101982      }
101983    },
101984    "/apis/storage.k8s.io/v1/storageclasses/{name}": {
101985      "delete": {
101986        "consumes": [
101987          "*/*"
101988        ],
101989        "description": "delete a StorageClass",
101990        "operationId": "deleteStorageV1StorageClass",
101991        "parameters": [
101992          {
101993            "in": "body",
101994            "name": "body",
101995            "schema": {
101996              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101997            }
101998          },
101999          {
102000            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102001            "in": "query",
102002            "name": "dryRun",
102003            "type": "string",
102004            "uniqueItems": true
102005          },
102006          {
102007            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102008            "in": "query",
102009            "name": "gracePeriodSeconds",
102010            "type": "integer",
102011            "uniqueItems": true
102012          },
102013          {
102014            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102015            "in": "query",
102016            "name": "orphanDependents",
102017            "type": "boolean",
102018            "uniqueItems": true
102019          },
102020          {
102021            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102022            "in": "query",
102023            "name": "propagationPolicy",
102024            "type": "string",
102025            "uniqueItems": true
102026          }
102027        ],
102028        "produces": [
102029          "application/json",
102030          "application/yaml",
102031          "application/vnd.kubernetes.protobuf"
102032        ],
102033        "responses": {
102034          "200": {
102035            "description": "OK",
102036            "schema": {
102037              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102038            }
102039          },
102040          "202": {
102041            "description": "Accepted",
102042            "schema": {
102043              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102044            }
102045          },
102046          "401": {
102047            "description": "Unauthorized"
102048          }
102049        },
102050        "schemes": [
102051          "https"
102052        ],
102053        "tags": [
102054          "storage_v1"
102055        ],
102056        "x-kubernetes-action": "delete",
102057        "x-kubernetes-group-version-kind": {
102058          "group": "storage.k8s.io",
102059          "kind": "StorageClass",
102060          "version": "v1"
102061        }
102062      },
102063      "get": {
102064        "consumes": [
102065          "*/*"
102066        ],
102067        "description": "read the specified StorageClass",
102068        "operationId": "readStorageV1StorageClass",
102069        "produces": [
102070          "application/json",
102071          "application/yaml",
102072          "application/vnd.kubernetes.protobuf"
102073        ],
102074        "responses": {
102075          "200": {
102076            "description": "OK",
102077            "schema": {
102078              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102079            }
102080          },
102081          "401": {
102082            "description": "Unauthorized"
102083          }
102084        },
102085        "schemes": [
102086          "https"
102087        ],
102088        "tags": [
102089          "storage_v1"
102090        ],
102091        "x-kubernetes-action": "get",
102092        "x-kubernetes-group-version-kind": {
102093          "group": "storage.k8s.io",
102094          "kind": "StorageClass",
102095          "version": "v1"
102096        }
102097      },
102098      "parameters": [
102099        {
102100          "description": "name of the StorageClass",
102101          "in": "path",
102102          "name": "name",
102103          "required": true,
102104          "type": "string",
102105          "uniqueItems": true
102106        },
102107        {
102108          "description": "If 'true', then the output is pretty printed.",
102109          "in": "query",
102110          "name": "pretty",
102111          "type": "string",
102112          "uniqueItems": true
102113        }
102114      ],
102115      "patch": {
102116        "consumes": [
102117          "application/json-patch+json",
102118          "application/merge-patch+json",
102119          "application/strategic-merge-patch+json",
102120          "application/apply-patch+yaml"
102121        ],
102122        "description": "partially update the specified StorageClass",
102123        "operationId": "patchStorageV1StorageClass",
102124        "parameters": [
102125          {
102126            "in": "body",
102127            "name": "body",
102128            "required": true,
102129            "schema": {
102130              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102131            }
102132          },
102133          {
102134            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102135            "in": "query",
102136            "name": "dryRun",
102137            "type": "string",
102138            "uniqueItems": true
102139          },
102140          {
102141            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
102142            "in": "query",
102143            "name": "fieldManager",
102144            "type": "string",
102145            "uniqueItems": true
102146          },
102147          {
102148            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
102149            "in": "query",
102150            "name": "force",
102151            "type": "boolean",
102152            "uniqueItems": true
102153          }
102154        ],
102155        "produces": [
102156          "application/json",
102157          "application/yaml",
102158          "application/vnd.kubernetes.protobuf"
102159        ],
102160        "responses": {
102161          "200": {
102162            "description": "OK",
102163            "schema": {
102164              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102165            }
102166          },
102167          "401": {
102168            "description": "Unauthorized"
102169          }
102170        },
102171        "schemes": [
102172          "https"
102173        ],
102174        "tags": [
102175          "storage_v1"
102176        ],
102177        "x-kubernetes-action": "patch",
102178        "x-kubernetes-group-version-kind": {
102179          "group": "storage.k8s.io",
102180          "kind": "StorageClass",
102181          "version": "v1"
102182        }
102183      },
102184      "put": {
102185        "consumes": [
102186          "*/*"
102187        ],
102188        "description": "replace the specified StorageClass",
102189        "operationId": "replaceStorageV1StorageClass",
102190        "parameters": [
102191          {
102192            "in": "body",
102193            "name": "body",
102194            "required": true,
102195            "schema": {
102196              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102197            }
102198          },
102199          {
102200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102201            "in": "query",
102202            "name": "dryRun",
102203            "type": "string",
102204            "uniqueItems": true
102205          },
102206          {
102207            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102208            "in": "query",
102209            "name": "fieldManager",
102210            "type": "string",
102211            "uniqueItems": true
102212          }
102213        ],
102214        "produces": [
102215          "application/json",
102216          "application/yaml",
102217          "application/vnd.kubernetes.protobuf"
102218        ],
102219        "responses": {
102220          "200": {
102221            "description": "OK",
102222            "schema": {
102223              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102224            }
102225          },
102226          "201": {
102227            "description": "Created",
102228            "schema": {
102229              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
102230            }
102231          },
102232          "401": {
102233            "description": "Unauthorized"
102234          }
102235        },
102236        "schemes": [
102237          "https"
102238        ],
102239        "tags": [
102240          "storage_v1"
102241        ],
102242        "x-kubernetes-action": "put",
102243        "x-kubernetes-group-version-kind": {
102244          "group": "storage.k8s.io",
102245          "kind": "StorageClass",
102246          "version": "v1"
102247        }
102248      }
102249    },
102250    "/apis/storage.k8s.io/v1/volumeattachments": {
102251      "delete": {
102252        "consumes": [
102253          "*/*"
102254        ],
102255        "description": "delete collection of VolumeAttachment",
102256        "operationId": "deleteStorageV1CollectionVolumeAttachment",
102257        "parameters": [
102258          {
102259            "in": "body",
102260            "name": "body",
102261            "schema": {
102262              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102263            }
102264          },
102265          {
102266            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102267            "in": "query",
102268            "name": "continue",
102269            "type": "string",
102270            "uniqueItems": true
102271          },
102272          {
102273            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102274            "in": "query",
102275            "name": "dryRun",
102276            "type": "string",
102277            "uniqueItems": true
102278          },
102279          {
102280            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102281            "in": "query",
102282            "name": "fieldSelector",
102283            "type": "string",
102284            "uniqueItems": true
102285          },
102286          {
102287            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102288            "in": "query",
102289            "name": "gracePeriodSeconds",
102290            "type": "integer",
102291            "uniqueItems": true
102292          },
102293          {
102294            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102295            "in": "query",
102296            "name": "labelSelector",
102297            "type": "string",
102298            "uniqueItems": true
102299          },
102300          {
102301            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102302            "in": "query",
102303            "name": "limit",
102304            "type": "integer",
102305            "uniqueItems": true
102306          },
102307          {
102308            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102309            "in": "query",
102310            "name": "orphanDependents",
102311            "type": "boolean",
102312            "uniqueItems": true
102313          },
102314          {
102315            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102316            "in": "query",
102317            "name": "propagationPolicy",
102318            "type": "string",
102319            "uniqueItems": true
102320          },
102321          {
102322            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102323            "in": "query",
102324            "name": "resourceVersion",
102325            "type": "string",
102326            "uniqueItems": true
102327          },
102328          {
102329            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102330            "in": "query",
102331            "name": "resourceVersionMatch",
102332            "type": "string",
102333            "uniqueItems": true
102334          },
102335          {
102336            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102337            "in": "query",
102338            "name": "timeoutSeconds",
102339            "type": "integer",
102340            "uniqueItems": true
102341          }
102342        ],
102343        "produces": [
102344          "application/json",
102345          "application/yaml",
102346          "application/vnd.kubernetes.protobuf"
102347        ],
102348        "responses": {
102349          "200": {
102350            "description": "OK",
102351            "schema": {
102352              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102353            }
102354          },
102355          "401": {
102356            "description": "Unauthorized"
102357          }
102358        },
102359        "schemes": [
102360          "https"
102361        ],
102362        "tags": [
102363          "storage_v1"
102364        ],
102365        "x-kubernetes-action": "deletecollection",
102366        "x-kubernetes-group-version-kind": {
102367          "group": "storage.k8s.io",
102368          "kind": "VolumeAttachment",
102369          "version": "v1"
102370        }
102371      },
102372      "get": {
102373        "consumes": [
102374          "*/*"
102375        ],
102376        "description": "list or watch objects of kind VolumeAttachment",
102377        "operationId": "listStorageV1VolumeAttachment",
102378        "parameters": [
102379          {
102380            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
102381            "in": "query",
102382            "name": "allowWatchBookmarks",
102383            "type": "boolean",
102384            "uniqueItems": true
102385          },
102386          {
102387            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102388            "in": "query",
102389            "name": "continue",
102390            "type": "string",
102391            "uniqueItems": true
102392          },
102393          {
102394            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102395            "in": "query",
102396            "name": "fieldSelector",
102397            "type": "string",
102398            "uniqueItems": true
102399          },
102400          {
102401            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102402            "in": "query",
102403            "name": "labelSelector",
102404            "type": "string",
102405            "uniqueItems": true
102406          },
102407          {
102408            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102409            "in": "query",
102410            "name": "limit",
102411            "type": "integer",
102412            "uniqueItems": true
102413          },
102414          {
102415            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102416            "in": "query",
102417            "name": "resourceVersion",
102418            "type": "string",
102419            "uniqueItems": true
102420          },
102421          {
102422            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
102423            "in": "query",
102424            "name": "resourceVersionMatch",
102425            "type": "string",
102426            "uniqueItems": true
102427          },
102428          {
102429            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102430            "in": "query",
102431            "name": "timeoutSeconds",
102432            "type": "integer",
102433            "uniqueItems": true
102434          },
102435          {
102436            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102437            "in": "query",
102438            "name": "watch",
102439            "type": "boolean",
102440            "uniqueItems": true
102441          }
102442        ],
102443        "produces": [
102444          "application/json",
102445          "application/yaml",
102446          "application/vnd.kubernetes.protobuf",
102447          "application/json;stream=watch",
102448          "application/vnd.kubernetes.protobuf;stream=watch"
102449        ],
102450        "responses": {
102451          "200": {
102452            "description": "OK",
102453            "schema": {
102454              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentList"
102455            }
102456          },
102457          "401": {
102458            "description": "Unauthorized"
102459          }
102460        },
102461        "schemes": [
102462          "https"
102463        ],
102464        "tags": [
102465          "storage_v1"
102466        ],
102467        "x-kubernetes-action": "list",
102468        "x-kubernetes-group-version-kind": {
102469          "group": "storage.k8s.io",
102470          "kind": "VolumeAttachment",
102471          "version": "v1"
102472        }
102473      },
102474      "parameters": [
102475        {
102476          "description": "If 'true', then the output is pretty printed.",
102477          "in": "query",
102478          "name": "pretty",
102479          "type": "string",
102480          "uniqueItems": true
102481        }
102482      ],
102483      "post": {
102484        "consumes": [
102485          "*/*"
102486        ],
102487        "description": "create a VolumeAttachment",
102488        "operationId": "createStorageV1VolumeAttachment",
102489        "parameters": [
102490          {
102491            "in": "body",
102492            "name": "body",
102493            "required": true,
102494            "schema": {
102495              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102496            }
102497          },
102498          {
102499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102500            "in": "query",
102501            "name": "dryRun",
102502            "type": "string",
102503            "uniqueItems": true
102504          },
102505          {
102506            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102507            "in": "query",
102508            "name": "fieldManager",
102509            "type": "string",
102510            "uniqueItems": true
102511          }
102512        ],
102513        "produces": [
102514          "application/json",
102515          "application/yaml",
102516          "application/vnd.kubernetes.protobuf"
102517        ],
102518        "responses": {
102519          "200": {
102520            "description": "OK",
102521            "schema": {
102522              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102523            }
102524          },
102525          "201": {
102526            "description": "Created",
102527            "schema": {
102528              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102529            }
102530          },
102531          "202": {
102532            "description": "Accepted",
102533            "schema": {
102534              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102535            }
102536          },
102537          "401": {
102538            "description": "Unauthorized"
102539          }
102540        },
102541        "schemes": [
102542          "https"
102543        ],
102544        "tags": [
102545          "storage_v1"
102546        ],
102547        "x-kubernetes-action": "post",
102548        "x-kubernetes-group-version-kind": {
102549          "group": "storage.k8s.io",
102550          "kind": "VolumeAttachment",
102551          "version": "v1"
102552        }
102553      }
102554    },
102555    "/apis/storage.k8s.io/v1/volumeattachments/{name}": {
102556      "delete": {
102557        "consumes": [
102558          "*/*"
102559        ],
102560        "description": "delete a VolumeAttachment",
102561        "operationId": "deleteStorageV1VolumeAttachment",
102562        "parameters": [
102563          {
102564            "in": "body",
102565            "name": "body",
102566            "schema": {
102567              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102568            }
102569          },
102570          {
102571            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102572            "in": "query",
102573            "name": "dryRun",
102574            "type": "string",
102575            "uniqueItems": true
102576          },
102577          {
102578            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
102579            "in": "query",
102580            "name": "gracePeriodSeconds",
102581            "type": "integer",
102582            "uniqueItems": true
102583          },
102584          {
102585            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
102586            "in": "query",
102587            "name": "orphanDependents",
102588            "type": "boolean",
102589            "uniqueItems": true
102590          },
102591          {
102592            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
102593            "in": "query",
102594            "name": "propagationPolicy",
102595            "type": "string",
102596            "uniqueItems": true
102597          }
102598        ],
102599        "produces": [
102600          "application/json",
102601          "application/yaml",
102602          "application/vnd.kubernetes.protobuf"
102603        ],
102604        "responses": {
102605          "200": {
102606            "description": "OK",
102607            "schema": {
102608              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102609            }
102610          },
102611          "202": {
102612            "description": "Accepted",
102613            "schema": {
102614              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102615            }
102616          },
102617          "401": {
102618            "description": "Unauthorized"
102619          }
102620        },
102621        "schemes": [
102622          "https"
102623        ],
102624        "tags": [
102625          "storage_v1"
102626        ],
102627        "x-kubernetes-action": "delete",
102628        "x-kubernetes-group-version-kind": {
102629          "group": "storage.k8s.io",
102630          "kind": "VolumeAttachment",
102631          "version": "v1"
102632        }
102633      },
102634      "get": {
102635        "consumes": [
102636          "*/*"
102637        ],
102638        "description": "read the specified VolumeAttachment",
102639        "operationId": "readStorageV1VolumeAttachment",
102640        "produces": [
102641          "application/json",
102642          "application/yaml",
102643          "application/vnd.kubernetes.protobuf"
102644        ],
102645        "responses": {
102646          "200": {
102647            "description": "OK",
102648            "schema": {
102649              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102650            }
102651          },
102652          "401": {
102653            "description": "Unauthorized"
102654          }
102655        },
102656        "schemes": [
102657          "https"
102658        ],
102659        "tags": [
102660          "storage_v1"
102661        ],
102662        "x-kubernetes-action": "get",
102663        "x-kubernetes-group-version-kind": {
102664          "group": "storage.k8s.io",
102665          "kind": "VolumeAttachment",
102666          "version": "v1"
102667        }
102668      },
102669      "parameters": [
102670        {
102671          "description": "name of the VolumeAttachment",
102672          "in": "path",
102673          "name": "name",
102674          "required": true,
102675          "type": "string",
102676          "uniqueItems": true
102677        },
102678        {
102679          "description": "If 'true', then the output is pretty printed.",
102680          "in": "query",
102681          "name": "pretty",
102682          "type": "string",
102683          "uniqueItems": true
102684        }
102685      ],
102686      "patch": {
102687        "consumes": [
102688          "application/json-patch+json",
102689          "application/merge-patch+json",
102690          "application/strategic-merge-patch+json",
102691          "application/apply-patch+yaml"
102692        ],
102693        "description": "partially update the specified VolumeAttachment",
102694        "operationId": "patchStorageV1VolumeAttachment",
102695        "parameters": [
102696          {
102697            "in": "body",
102698            "name": "body",
102699            "required": true,
102700            "schema": {
102701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102702            }
102703          },
102704          {
102705            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102706            "in": "query",
102707            "name": "dryRun",
102708            "type": "string",
102709            "uniqueItems": true
102710          },
102711          {
102712            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
102713            "in": "query",
102714            "name": "fieldManager",
102715            "type": "string",
102716            "uniqueItems": true
102717          },
102718          {
102719            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
102720            "in": "query",
102721            "name": "force",
102722            "type": "boolean",
102723            "uniqueItems": true
102724          }
102725        ],
102726        "produces": [
102727          "application/json",
102728          "application/yaml",
102729          "application/vnd.kubernetes.protobuf"
102730        ],
102731        "responses": {
102732          "200": {
102733            "description": "OK",
102734            "schema": {
102735              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102736            }
102737          },
102738          "401": {
102739            "description": "Unauthorized"
102740          }
102741        },
102742        "schemes": [
102743          "https"
102744        ],
102745        "tags": [
102746          "storage_v1"
102747        ],
102748        "x-kubernetes-action": "patch",
102749        "x-kubernetes-group-version-kind": {
102750          "group": "storage.k8s.io",
102751          "kind": "VolumeAttachment",
102752          "version": "v1"
102753        }
102754      },
102755      "put": {
102756        "consumes": [
102757          "*/*"
102758        ],
102759        "description": "replace the specified VolumeAttachment",
102760        "operationId": "replaceStorageV1VolumeAttachment",
102761        "parameters": [
102762          {
102763            "in": "body",
102764            "name": "body",
102765            "required": true,
102766            "schema": {
102767              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102768            }
102769          },
102770          {
102771            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102772            "in": "query",
102773            "name": "dryRun",
102774            "type": "string",
102775            "uniqueItems": true
102776          },
102777          {
102778            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102779            "in": "query",
102780            "name": "fieldManager",
102781            "type": "string",
102782            "uniqueItems": true
102783          }
102784        ],
102785        "produces": [
102786          "application/json",
102787          "application/yaml",
102788          "application/vnd.kubernetes.protobuf"
102789        ],
102790        "responses": {
102791          "200": {
102792            "description": "OK",
102793            "schema": {
102794              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102795            }
102796          },
102797          "201": {
102798            "description": "Created",
102799            "schema": {
102800              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102801            }
102802          },
102803          "401": {
102804            "description": "Unauthorized"
102805          }
102806        },
102807        "schemes": [
102808          "https"
102809        ],
102810        "tags": [
102811          "storage_v1"
102812        ],
102813        "x-kubernetes-action": "put",
102814        "x-kubernetes-group-version-kind": {
102815          "group": "storage.k8s.io",
102816          "kind": "VolumeAttachment",
102817          "version": "v1"
102818        }
102819      }
102820    },
102821    "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": {
102822      "get": {
102823        "consumes": [
102824          "*/*"
102825        ],
102826        "description": "read status of the specified VolumeAttachment",
102827        "operationId": "readStorageV1VolumeAttachmentStatus",
102828        "produces": [
102829          "application/json",
102830          "application/yaml",
102831          "application/vnd.kubernetes.protobuf"
102832        ],
102833        "responses": {
102834          "200": {
102835            "description": "OK",
102836            "schema": {
102837              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102838            }
102839          },
102840          "401": {
102841            "description": "Unauthorized"
102842          }
102843        },
102844        "schemes": [
102845          "https"
102846        ],
102847        "tags": [
102848          "storage_v1"
102849        ],
102850        "x-kubernetes-action": "get",
102851        "x-kubernetes-group-version-kind": {
102852          "group": "storage.k8s.io",
102853          "kind": "VolumeAttachment",
102854          "version": "v1"
102855        }
102856      },
102857      "parameters": [
102858        {
102859          "description": "name of the VolumeAttachment",
102860          "in": "path",
102861          "name": "name",
102862          "required": true,
102863          "type": "string",
102864          "uniqueItems": true
102865        },
102866        {
102867          "description": "If 'true', then the output is pretty printed.",
102868          "in": "query",
102869          "name": "pretty",
102870          "type": "string",
102871          "uniqueItems": true
102872        }
102873      ],
102874      "patch": {
102875        "consumes": [
102876          "application/json-patch+json",
102877          "application/merge-patch+json",
102878          "application/strategic-merge-patch+json",
102879          "application/apply-patch+yaml"
102880        ],
102881        "description": "partially update status of the specified VolumeAttachment",
102882        "operationId": "patchStorageV1VolumeAttachmentStatus",
102883        "parameters": [
102884          {
102885            "in": "body",
102886            "name": "body",
102887            "required": true,
102888            "schema": {
102889              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102890            }
102891          },
102892          {
102893            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102894            "in": "query",
102895            "name": "dryRun",
102896            "type": "string",
102897            "uniqueItems": true
102898          },
102899          {
102900            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
102901            "in": "query",
102902            "name": "fieldManager",
102903            "type": "string",
102904            "uniqueItems": true
102905          },
102906          {
102907            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
102908            "in": "query",
102909            "name": "force",
102910            "type": "boolean",
102911            "uniqueItems": true
102912          }
102913        ],
102914        "produces": [
102915          "application/json",
102916          "application/yaml",
102917          "application/vnd.kubernetes.protobuf"
102918        ],
102919        "responses": {
102920          "200": {
102921            "description": "OK",
102922            "schema": {
102923              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102924            }
102925          },
102926          "401": {
102927            "description": "Unauthorized"
102928          }
102929        },
102930        "schemes": [
102931          "https"
102932        ],
102933        "tags": [
102934          "storage_v1"
102935        ],
102936        "x-kubernetes-action": "patch",
102937        "x-kubernetes-group-version-kind": {
102938          "group": "storage.k8s.io",
102939          "kind": "VolumeAttachment",
102940          "version": "v1"
102941        }
102942      },
102943      "put": {
102944        "consumes": [
102945          "*/*"
102946        ],
102947        "description": "replace status of the specified VolumeAttachment",
102948        "operationId": "replaceStorageV1VolumeAttachmentStatus",
102949        "parameters": [
102950          {
102951            "in": "body",
102952            "name": "body",
102953            "required": true,
102954            "schema": {
102955              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102956            }
102957          },
102958          {
102959            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102960            "in": "query",
102961            "name": "dryRun",
102962            "type": "string",
102963            "uniqueItems": true
102964          },
102965          {
102966            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102967            "in": "query",
102968            "name": "fieldManager",
102969            "type": "string",
102970            "uniqueItems": true
102971          }
102972        ],
102973        "produces": [
102974          "application/json",
102975          "application/yaml",
102976          "application/vnd.kubernetes.protobuf"
102977        ],
102978        "responses": {
102979          "200": {
102980            "description": "OK",
102981            "schema": {
102982              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102983            }
102984          },
102985          "201": {
102986            "description": "Created",
102987            "schema": {
102988              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
102989            }
102990          },
102991          "401": {
102992            "description": "Unauthorized"
102993          }
102994        },
102995        "schemes": [
102996          "https"
102997        ],
102998        "tags": [
102999          "storage_v1"
103000        ],
103001        "x-kubernetes-action": "put",
103002        "x-kubernetes-group-version-kind": {
103003          "group": "storage.k8s.io",
103004          "kind": "VolumeAttachment",
103005          "version": "v1"
103006        }
103007      }
103008    },
103009    "/apis/storage.k8s.io/v1/watch/csidrivers": {
103010      "get": {
103011        "consumes": [
103012          "*/*"
103013        ],
103014        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
103015        "operationId": "watchStorageV1CSIDriverList",
103016        "produces": [
103017          "application/json",
103018          "application/yaml",
103019          "application/vnd.kubernetes.protobuf",
103020          "application/json;stream=watch",
103021          "application/vnd.kubernetes.protobuf;stream=watch"
103022        ],
103023        "responses": {
103024          "200": {
103025            "description": "OK",
103026            "schema": {
103027              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103028            }
103029          },
103030          "401": {
103031            "description": "Unauthorized"
103032          }
103033        },
103034        "schemes": [
103035          "https"
103036        ],
103037        "tags": [
103038          "storage_v1"
103039        ],
103040        "x-kubernetes-action": "watchlist",
103041        "x-kubernetes-group-version-kind": {
103042          "group": "storage.k8s.io",
103043          "kind": "CSIDriver",
103044          "version": "v1"
103045        }
103046      },
103047      "parameters": [
103048        {
103049          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103050          "in": "query",
103051          "name": "allowWatchBookmarks",
103052          "type": "boolean",
103053          "uniqueItems": true
103054        },
103055        {
103056          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103057          "in": "query",
103058          "name": "continue",
103059          "type": "string",
103060          "uniqueItems": true
103061        },
103062        {
103063          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103064          "in": "query",
103065          "name": "fieldSelector",
103066          "type": "string",
103067          "uniqueItems": true
103068        },
103069        {
103070          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103071          "in": "query",
103072          "name": "labelSelector",
103073          "type": "string",
103074          "uniqueItems": true
103075        },
103076        {
103077          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103078          "in": "query",
103079          "name": "limit",
103080          "type": "integer",
103081          "uniqueItems": true
103082        },
103083        {
103084          "description": "If 'true', then the output is pretty printed.",
103085          "in": "query",
103086          "name": "pretty",
103087          "type": "string",
103088          "uniqueItems": true
103089        },
103090        {
103091          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103092          "in": "query",
103093          "name": "resourceVersion",
103094          "type": "string",
103095          "uniqueItems": true
103096        },
103097        {
103098          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103099          "in": "query",
103100          "name": "resourceVersionMatch",
103101          "type": "string",
103102          "uniqueItems": true
103103        },
103104        {
103105          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103106          "in": "query",
103107          "name": "timeoutSeconds",
103108          "type": "integer",
103109          "uniqueItems": true
103110        },
103111        {
103112          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103113          "in": "query",
103114          "name": "watch",
103115          "type": "boolean",
103116          "uniqueItems": true
103117        }
103118      ]
103119    },
103120    "/apis/storage.k8s.io/v1/watch/csidrivers/{name}": {
103121      "get": {
103122        "consumes": [
103123          "*/*"
103124        ],
103125        "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.",
103126        "operationId": "watchStorageV1CSIDriver",
103127        "produces": [
103128          "application/json",
103129          "application/yaml",
103130          "application/vnd.kubernetes.protobuf",
103131          "application/json;stream=watch",
103132          "application/vnd.kubernetes.protobuf;stream=watch"
103133        ],
103134        "responses": {
103135          "200": {
103136            "description": "OK",
103137            "schema": {
103138              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103139            }
103140          },
103141          "401": {
103142            "description": "Unauthorized"
103143          }
103144        },
103145        "schemes": [
103146          "https"
103147        ],
103148        "tags": [
103149          "storage_v1"
103150        ],
103151        "x-kubernetes-action": "watch",
103152        "x-kubernetes-group-version-kind": {
103153          "group": "storage.k8s.io",
103154          "kind": "CSIDriver",
103155          "version": "v1"
103156        }
103157      },
103158      "parameters": [
103159        {
103160          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103161          "in": "query",
103162          "name": "allowWatchBookmarks",
103163          "type": "boolean",
103164          "uniqueItems": true
103165        },
103166        {
103167          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103168          "in": "query",
103169          "name": "continue",
103170          "type": "string",
103171          "uniqueItems": true
103172        },
103173        {
103174          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103175          "in": "query",
103176          "name": "fieldSelector",
103177          "type": "string",
103178          "uniqueItems": true
103179        },
103180        {
103181          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103182          "in": "query",
103183          "name": "labelSelector",
103184          "type": "string",
103185          "uniqueItems": true
103186        },
103187        {
103188          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103189          "in": "query",
103190          "name": "limit",
103191          "type": "integer",
103192          "uniqueItems": true
103193        },
103194        {
103195          "description": "name of the CSIDriver",
103196          "in": "path",
103197          "name": "name",
103198          "required": true,
103199          "type": "string",
103200          "uniqueItems": true
103201        },
103202        {
103203          "description": "If 'true', then the output is pretty printed.",
103204          "in": "query",
103205          "name": "pretty",
103206          "type": "string",
103207          "uniqueItems": true
103208        },
103209        {
103210          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103211          "in": "query",
103212          "name": "resourceVersion",
103213          "type": "string",
103214          "uniqueItems": true
103215        },
103216        {
103217          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103218          "in": "query",
103219          "name": "resourceVersionMatch",
103220          "type": "string",
103221          "uniqueItems": true
103222        },
103223        {
103224          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103225          "in": "query",
103226          "name": "timeoutSeconds",
103227          "type": "integer",
103228          "uniqueItems": true
103229        },
103230        {
103231          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103232          "in": "query",
103233          "name": "watch",
103234          "type": "boolean",
103235          "uniqueItems": true
103236        }
103237      ]
103238    },
103239    "/apis/storage.k8s.io/v1/watch/csinodes": {
103240      "get": {
103241        "consumes": [
103242          "*/*"
103243        ],
103244        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
103245        "operationId": "watchStorageV1CSINodeList",
103246        "produces": [
103247          "application/json",
103248          "application/yaml",
103249          "application/vnd.kubernetes.protobuf",
103250          "application/json;stream=watch",
103251          "application/vnd.kubernetes.protobuf;stream=watch"
103252        ],
103253        "responses": {
103254          "200": {
103255            "description": "OK",
103256            "schema": {
103257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103258            }
103259          },
103260          "401": {
103261            "description": "Unauthorized"
103262          }
103263        },
103264        "schemes": [
103265          "https"
103266        ],
103267        "tags": [
103268          "storage_v1"
103269        ],
103270        "x-kubernetes-action": "watchlist",
103271        "x-kubernetes-group-version-kind": {
103272          "group": "storage.k8s.io",
103273          "kind": "CSINode",
103274          "version": "v1"
103275        }
103276      },
103277      "parameters": [
103278        {
103279          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103280          "in": "query",
103281          "name": "allowWatchBookmarks",
103282          "type": "boolean",
103283          "uniqueItems": true
103284        },
103285        {
103286          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103287          "in": "query",
103288          "name": "continue",
103289          "type": "string",
103290          "uniqueItems": true
103291        },
103292        {
103293          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103294          "in": "query",
103295          "name": "fieldSelector",
103296          "type": "string",
103297          "uniqueItems": true
103298        },
103299        {
103300          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103301          "in": "query",
103302          "name": "labelSelector",
103303          "type": "string",
103304          "uniqueItems": true
103305        },
103306        {
103307          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103308          "in": "query",
103309          "name": "limit",
103310          "type": "integer",
103311          "uniqueItems": true
103312        },
103313        {
103314          "description": "If 'true', then the output is pretty printed.",
103315          "in": "query",
103316          "name": "pretty",
103317          "type": "string",
103318          "uniqueItems": true
103319        },
103320        {
103321          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103322          "in": "query",
103323          "name": "resourceVersion",
103324          "type": "string",
103325          "uniqueItems": true
103326        },
103327        {
103328          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103329          "in": "query",
103330          "name": "resourceVersionMatch",
103331          "type": "string",
103332          "uniqueItems": true
103333        },
103334        {
103335          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103336          "in": "query",
103337          "name": "timeoutSeconds",
103338          "type": "integer",
103339          "uniqueItems": true
103340        },
103341        {
103342          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103343          "in": "query",
103344          "name": "watch",
103345          "type": "boolean",
103346          "uniqueItems": true
103347        }
103348      ]
103349    },
103350    "/apis/storage.k8s.io/v1/watch/csinodes/{name}": {
103351      "get": {
103352        "consumes": [
103353          "*/*"
103354        ],
103355        "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.",
103356        "operationId": "watchStorageV1CSINode",
103357        "produces": [
103358          "application/json",
103359          "application/yaml",
103360          "application/vnd.kubernetes.protobuf",
103361          "application/json;stream=watch",
103362          "application/vnd.kubernetes.protobuf;stream=watch"
103363        ],
103364        "responses": {
103365          "200": {
103366            "description": "OK",
103367            "schema": {
103368              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103369            }
103370          },
103371          "401": {
103372            "description": "Unauthorized"
103373          }
103374        },
103375        "schemes": [
103376          "https"
103377        ],
103378        "tags": [
103379          "storage_v1"
103380        ],
103381        "x-kubernetes-action": "watch",
103382        "x-kubernetes-group-version-kind": {
103383          "group": "storage.k8s.io",
103384          "kind": "CSINode",
103385          "version": "v1"
103386        }
103387      },
103388      "parameters": [
103389        {
103390          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103391          "in": "query",
103392          "name": "allowWatchBookmarks",
103393          "type": "boolean",
103394          "uniqueItems": true
103395        },
103396        {
103397          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103398          "in": "query",
103399          "name": "continue",
103400          "type": "string",
103401          "uniqueItems": true
103402        },
103403        {
103404          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103405          "in": "query",
103406          "name": "fieldSelector",
103407          "type": "string",
103408          "uniqueItems": true
103409        },
103410        {
103411          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103412          "in": "query",
103413          "name": "labelSelector",
103414          "type": "string",
103415          "uniqueItems": true
103416        },
103417        {
103418          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103419          "in": "query",
103420          "name": "limit",
103421          "type": "integer",
103422          "uniqueItems": true
103423        },
103424        {
103425          "description": "name of the CSINode",
103426          "in": "path",
103427          "name": "name",
103428          "required": true,
103429          "type": "string",
103430          "uniqueItems": true
103431        },
103432        {
103433          "description": "If 'true', then the output is pretty printed.",
103434          "in": "query",
103435          "name": "pretty",
103436          "type": "string",
103437          "uniqueItems": true
103438        },
103439        {
103440          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103441          "in": "query",
103442          "name": "resourceVersion",
103443          "type": "string",
103444          "uniqueItems": true
103445        },
103446        {
103447          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103448          "in": "query",
103449          "name": "resourceVersionMatch",
103450          "type": "string",
103451          "uniqueItems": true
103452        },
103453        {
103454          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103455          "in": "query",
103456          "name": "timeoutSeconds",
103457          "type": "integer",
103458          "uniqueItems": true
103459        },
103460        {
103461          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103462          "in": "query",
103463          "name": "watch",
103464          "type": "boolean",
103465          "uniqueItems": true
103466        }
103467      ]
103468    },
103469    "/apis/storage.k8s.io/v1/watch/storageclasses": {
103470      "get": {
103471        "consumes": [
103472          "*/*"
103473        ],
103474        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
103475        "operationId": "watchStorageV1StorageClassList",
103476        "produces": [
103477          "application/json",
103478          "application/yaml",
103479          "application/vnd.kubernetes.protobuf",
103480          "application/json;stream=watch",
103481          "application/vnd.kubernetes.protobuf;stream=watch"
103482        ],
103483        "responses": {
103484          "200": {
103485            "description": "OK",
103486            "schema": {
103487              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103488            }
103489          },
103490          "401": {
103491            "description": "Unauthorized"
103492          }
103493        },
103494        "schemes": [
103495          "https"
103496        ],
103497        "tags": [
103498          "storage_v1"
103499        ],
103500        "x-kubernetes-action": "watchlist",
103501        "x-kubernetes-group-version-kind": {
103502          "group": "storage.k8s.io",
103503          "kind": "StorageClass",
103504          "version": "v1"
103505        }
103506      },
103507      "parameters": [
103508        {
103509          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103510          "in": "query",
103511          "name": "allowWatchBookmarks",
103512          "type": "boolean",
103513          "uniqueItems": true
103514        },
103515        {
103516          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103517          "in": "query",
103518          "name": "continue",
103519          "type": "string",
103520          "uniqueItems": true
103521        },
103522        {
103523          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103524          "in": "query",
103525          "name": "fieldSelector",
103526          "type": "string",
103527          "uniqueItems": true
103528        },
103529        {
103530          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103531          "in": "query",
103532          "name": "labelSelector",
103533          "type": "string",
103534          "uniqueItems": true
103535        },
103536        {
103537          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103538          "in": "query",
103539          "name": "limit",
103540          "type": "integer",
103541          "uniqueItems": true
103542        },
103543        {
103544          "description": "If 'true', then the output is pretty printed.",
103545          "in": "query",
103546          "name": "pretty",
103547          "type": "string",
103548          "uniqueItems": true
103549        },
103550        {
103551          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103552          "in": "query",
103553          "name": "resourceVersion",
103554          "type": "string",
103555          "uniqueItems": true
103556        },
103557        {
103558          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103559          "in": "query",
103560          "name": "resourceVersionMatch",
103561          "type": "string",
103562          "uniqueItems": true
103563        },
103564        {
103565          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103566          "in": "query",
103567          "name": "timeoutSeconds",
103568          "type": "integer",
103569          "uniqueItems": true
103570        },
103571        {
103572          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103573          "in": "query",
103574          "name": "watch",
103575          "type": "boolean",
103576          "uniqueItems": true
103577        }
103578      ]
103579    },
103580    "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": {
103581      "get": {
103582        "consumes": [
103583          "*/*"
103584        ],
103585        "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.",
103586        "operationId": "watchStorageV1StorageClass",
103587        "produces": [
103588          "application/json",
103589          "application/yaml",
103590          "application/vnd.kubernetes.protobuf",
103591          "application/json;stream=watch",
103592          "application/vnd.kubernetes.protobuf;stream=watch"
103593        ],
103594        "responses": {
103595          "200": {
103596            "description": "OK",
103597            "schema": {
103598              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103599            }
103600          },
103601          "401": {
103602            "description": "Unauthorized"
103603          }
103604        },
103605        "schemes": [
103606          "https"
103607        ],
103608        "tags": [
103609          "storage_v1"
103610        ],
103611        "x-kubernetes-action": "watch",
103612        "x-kubernetes-group-version-kind": {
103613          "group": "storage.k8s.io",
103614          "kind": "StorageClass",
103615          "version": "v1"
103616        }
103617      },
103618      "parameters": [
103619        {
103620          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103621          "in": "query",
103622          "name": "allowWatchBookmarks",
103623          "type": "boolean",
103624          "uniqueItems": true
103625        },
103626        {
103627          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103628          "in": "query",
103629          "name": "continue",
103630          "type": "string",
103631          "uniqueItems": true
103632        },
103633        {
103634          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103635          "in": "query",
103636          "name": "fieldSelector",
103637          "type": "string",
103638          "uniqueItems": true
103639        },
103640        {
103641          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103642          "in": "query",
103643          "name": "labelSelector",
103644          "type": "string",
103645          "uniqueItems": true
103646        },
103647        {
103648          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103649          "in": "query",
103650          "name": "limit",
103651          "type": "integer",
103652          "uniqueItems": true
103653        },
103654        {
103655          "description": "name of the StorageClass",
103656          "in": "path",
103657          "name": "name",
103658          "required": true,
103659          "type": "string",
103660          "uniqueItems": true
103661        },
103662        {
103663          "description": "If 'true', then the output is pretty printed.",
103664          "in": "query",
103665          "name": "pretty",
103666          "type": "string",
103667          "uniqueItems": true
103668        },
103669        {
103670          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103671          "in": "query",
103672          "name": "resourceVersion",
103673          "type": "string",
103674          "uniqueItems": true
103675        },
103676        {
103677          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103678          "in": "query",
103679          "name": "resourceVersionMatch",
103680          "type": "string",
103681          "uniqueItems": true
103682        },
103683        {
103684          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103685          "in": "query",
103686          "name": "timeoutSeconds",
103687          "type": "integer",
103688          "uniqueItems": true
103689        },
103690        {
103691          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103692          "in": "query",
103693          "name": "watch",
103694          "type": "boolean",
103695          "uniqueItems": true
103696        }
103697      ]
103698    },
103699    "/apis/storage.k8s.io/v1/watch/volumeattachments": {
103700      "get": {
103701        "consumes": [
103702          "*/*"
103703        ],
103704        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
103705        "operationId": "watchStorageV1VolumeAttachmentList",
103706        "produces": [
103707          "application/json",
103708          "application/yaml",
103709          "application/vnd.kubernetes.protobuf",
103710          "application/json;stream=watch",
103711          "application/vnd.kubernetes.protobuf;stream=watch"
103712        ],
103713        "responses": {
103714          "200": {
103715            "description": "OK",
103716            "schema": {
103717              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103718            }
103719          },
103720          "401": {
103721            "description": "Unauthorized"
103722          }
103723        },
103724        "schemes": [
103725          "https"
103726        ],
103727        "tags": [
103728          "storage_v1"
103729        ],
103730        "x-kubernetes-action": "watchlist",
103731        "x-kubernetes-group-version-kind": {
103732          "group": "storage.k8s.io",
103733          "kind": "VolumeAttachment",
103734          "version": "v1"
103735        }
103736      },
103737      "parameters": [
103738        {
103739          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103740          "in": "query",
103741          "name": "allowWatchBookmarks",
103742          "type": "boolean",
103743          "uniqueItems": true
103744        },
103745        {
103746          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103747          "in": "query",
103748          "name": "continue",
103749          "type": "string",
103750          "uniqueItems": true
103751        },
103752        {
103753          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103754          "in": "query",
103755          "name": "fieldSelector",
103756          "type": "string",
103757          "uniqueItems": true
103758        },
103759        {
103760          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103761          "in": "query",
103762          "name": "labelSelector",
103763          "type": "string",
103764          "uniqueItems": true
103765        },
103766        {
103767          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103768          "in": "query",
103769          "name": "limit",
103770          "type": "integer",
103771          "uniqueItems": true
103772        },
103773        {
103774          "description": "If 'true', then the output is pretty printed.",
103775          "in": "query",
103776          "name": "pretty",
103777          "type": "string",
103778          "uniqueItems": true
103779        },
103780        {
103781          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103782          "in": "query",
103783          "name": "resourceVersion",
103784          "type": "string",
103785          "uniqueItems": true
103786        },
103787        {
103788          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103789          "in": "query",
103790          "name": "resourceVersionMatch",
103791          "type": "string",
103792          "uniqueItems": true
103793        },
103794        {
103795          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103796          "in": "query",
103797          "name": "timeoutSeconds",
103798          "type": "integer",
103799          "uniqueItems": true
103800        },
103801        {
103802          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103803          "in": "query",
103804          "name": "watch",
103805          "type": "boolean",
103806          "uniqueItems": true
103807        }
103808      ]
103809    },
103810    "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": {
103811      "get": {
103812        "consumes": [
103813          "*/*"
103814        ],
103815        "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.",
103816        "operationId": "watchStorageV1VolumeAttachment",
103817        "produces": [
103818          "application/json",
103819          "application/yaml",
103820          "application/vnd.kubernetes.protobuf",
103821          "application/json;stream=watch",
103822          "application/vnd.kubernetes.protobuf;stream=watch"
103823        ],
103824        "responses": {
103825          "200": {
103826            "description": "OK",
103827            "schema": {
103828              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103829            }
103830          },
103831          "401": {
103832            "description": "Unauthorized"
103833          }
103834        },
103835        "schemes": [
103836          "https"
103837        ],
103838        "tags": [
103839          "storage_v1"
103840        ],
103841        "x-kubernetes-action": "watch",
103842        "x-kubernetes-group-version-kind": {
103843          "group": "storage.k8s.io",
103844          "kind": "VolumeAttachment",
103845          "version": "v1"
103846        }
103847      },
103848      "parameters": [
103849        {
103850          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
103851          "in": "query",
103852          "name": "allowWatchBookmarks",
103853          "type": "boolean",
103854          "uniqueItems": true
103855        },
103856        {
103857          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103858          "in": "query",
103859          "name": "continue",
103860          "type": "string",
103861          "uniqueItems": true
103862        },
103863        {
103864          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103865          "in": "query",
103866          "name": "fieldSelector",
103867          "type": "string",
103868          "uniqueItems": true
103869        },
103870        {
103871          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103872          "in": "query",
103873          "name": "labelSelector",
103874          "type": "string",
103875          "uniqueItems": true
103876        },
103877        {
103878          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103879          "in": "query",
103880          "name": "limit",
103881          "type": "integer",
103882          "uniqueItems": true
103883        },
103884        {
103885          "description": "name of the VolumeAttachment",
103886          "in": "path",
103887          "name": "name",
103888          "required": true,
103889          "type": "string",
103890          "uniqueItems": true
103891        },
103892        {
103893          "description": "If 'true', then the output is pretty printed.",
103894          "in": "query",
103895          "name": "pretty",
103896          "type": "string",
103897          "uniqueItems": true
103898        },
103899        {
103900          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103901          "in": "query",
103902          "name": "resourceVersion",
103903          "type": "string",
103904          "uniqueItems": true
103905        },
103906        {
103907          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
103908          "in": "query",
103909          "name": "resourceVersionMatch",
103910          "type": "string",
103911          "uniqueItems": true
103912        },
103913        {
103914          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103915          "in": "query",
103916          "name": "timeoutSeconds",
103917          "type": "integer",
103918          "uniqueItems": true
103919        },
103920        {
103921          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103922          "in": "query",
103923          "name": "watch",
103924          "type": "boolean",
103925          "uniqueItems": true
103926        }
103927      ]
103928    },
103929    "/apis/storage.k8s.io/v1alpha1/": {
103930      "get": {
103931        "consumes": [
103932          "application/json",
103933          "application/yaml",
103934          "application/vnd.kubernetes.protobuf"
103935        ],
103936        "description": "get available resources",
103937        "operationId": "getStorageV1alpha1APIResources",
103938        "produces": [
103939          "application/json",
103940          "application/yaml",
103941          "application/vnd.kubernetes.protobuf"
103942        ],
103943        "responses": {
103944          "200": {
103945            "description": "OK",
103946            "schema": {
103947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
103948            }
103949          },
103950          "401": {
103951            "description": "Unauthorized"
103952          }
103953        },
103954        "schemes": [
103955          "https"
103956        ],
103957        "tags": [
103958          "storage_v1alpha1"
103959        ]
103960      }
103961    },
103962    "/apis/storage.k8s.io/v1alpha1/csistoragecapacities": {
103963      "get": {
103964        "consumes": [
103965          "*/*"
103966        ],
103967        "description": "list or watch objects of kind CSIStorageCapacity",
103968        "operationId": "listStorageV1alpha1CSIStorageCapacityForAllNamespaces",
103969        "produces": [
103970          "application/json",
103971          "application/yaml",
103972          "application/vnd.kubernetes.protobuf",
103973          "application/json;stream=watch",
103974          "application/vnd.kubernetes.protobuf;stream=watch"
103975        ],
103976        "responses": {
103977          "200": {
103978            "description": "OK",
103979            "schema": {
103980              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
103981            }
103982          },
103983          "401": {
103984            "description": "Unauthorized"
103985          }
103986        },
103987        "schemes": [
103988          "https"
103989        ],
103990        "tags": [
103991          "storage_v1alpha1"
103992        ],
103993        "x-kubernetes-action": "list",
103994        "x-kubernetes-group-version-kind": {
103995          "group": "storage.k8s.io",
103996          "kind": "CSIStorageCapacity",
103997          "version": "v1alpha1"
103998        }
103999      },
104000      "parameters": [
104001        {
104002          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104003          "in": "query",
104004          "name": "allowWatchBookmarks",
104005          "type": "boolean",
104006          "uniqueItems": true
104007        },
104008        {
104009          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104010          "in": "query",
104011          "name": "continue",
104012          "type": "string",
104013          "uniqueItems": true
104014        },
104015        {
104016          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104017          "in": "query",
104018          "name": "fieldSelector",
104019          "type": "string",
104020          "uniqueItems": true
104021        },
104022        {
104023          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104024          "in": "query",
104025          "name": "labelSelector",
104026          "type": "string",
104027          "uniqueItems": true
104028        },
104029        {
104030          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104031          "in": "query",
104032          "name": "limit",
104033          "type": "integer",
104034          "uniqueItems": true
104035        },
104036        {
104037          "description": "If 'true', then the output is pretty printed.",
104038          "in": "query",
104039          "name": "pretty",
104040          "type": "string",
104041          "uniqueItems": true
104042        },
104043        {
104044          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104045          "in": "query",
104046          "name": "resourceVersion",
104047          "type": "string",
104048          "uniqueItems": true
104049        },
104050        {
104051          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104052          "in": "query",
104053          "name": "resourceVersionMatch",
104054          "type": "string",
104055          "uniqueItems": true
104056        },
104057        {
104058          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104059          "in": "query",
104060          "name": "timeoutSeconds",
104061          "type": "integer",
104062          "uniqueItems": true
104063        },
104064        {
104065          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104066          "in": "query",
104067          "name": "watch",
104068          "type": "boolean",
104069          "uniqueItems": true
104070        }
104071      ]
104072    },
104073    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities": {
104074      "delete": {
104075        "consumes": [
104076          "*/*"
104077        ],
104078        "description": "delete collection of CSIStorageCapacity",
104079        "operationId": "deleteStorageV1alpha1CollectionNamespacedCSIStorageCapacity",
104080        "parameters": [
104081          {
104082            "in": "body",
104083            "name": "body",
104084            "schema": {
104085              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104086            }
104087          },
104088          {
104089            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104090            "in": "query",
104091            "name": "continue",
104092            "type": "string",
104093            "uniqueItems": true
104094          },
104095          {
104096            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104097            "in": "query",
104098            "name": "dryRun",
104099            "type": "string",
104100            "uniqueItems": true
104101          },
104102          {
104103            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104104            "in": "query",
104105            "name": "fieldSelector",
104106            "type": "string",
104107            "uniqueItems": true
104108          },
104109          {
104110            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104111            "in": "query",
104112            "name": "gracePeriodSeconds",
104113            "type": "integer",
104114            "uniqueItems": true
104115          },
104116          {
104117            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104118            "in": "query",
104119            "name": "labelSelector",
104120            "type": "string",
104121            "uniqueItems": true
104122          },
104123          {
104124            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104125            "in": "query",
104126            "name": "limit",
104127            "type": "integer",
104128            "uniqueItems": true
104129          },
104130          {
104131            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104132            "in": "query",
104133            "name": "orphanDependents",
104134            "type": "boolean",
104135            "uniqueItems": true
104136          },
104137          {
104138            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104139            "in": "query",
104140            "name": "propagationPolicy",
104141            "type": "string",
104142            "uniqueItems": true
104143          },
104144          {
104145            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104146            "in": "query",
104147            "name": "resourceVersion",
104148            "type": "string",
104149            "uniqueItems": true
104150          },
104151          {
104152            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104153            "in": "query",
104154            "name": "resourceVersionMatch",
104155            "type": "string",
104156            "uniqueItems": true
104157          },
104158          {
104159            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104160            "in": "query",
104161            "name": "timeoutSeconds",
104162            "type": "integer",
104163            "uniqueItems": true
104164          }
104165        ],
104166        "produces": [
104167          "application/json",
104168          "application/yaml",
104169          "application/vnd.kubernetes.protobuf"
104170        ],
104171        "responses": {
104172          "200": {
104173            "description": "OK",
104174            "schema": {
104175              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104176            }
104177          },
104178          "401": {
104179            "description": "Unauthorized"
104180          }
104181        },
104182        "schemes": [
104183          "https"
104184        ],
104185        "tags": [
104186          "storage_v1alpha1"
104187        ],
104188        "x-kubernetes-action": "deletecollection",
104189        "x-kubernetes-group-version-kind": {
104190          "group": "storage.k8s.io",
104191          "kind": "CSIStorageCapacity",
104192          "version": "v1alpha1"
104193        }
104194      },
104195      "get": {
104196        "consumes": [
104197          "*/*"
104198        ],
104199        "description": "list or watch objects of kind CSIStorageCapacity",
104200        "operationId": "listStorageV1alpha1NamespacedCSIStorageCapacity",
104201        "parameters": [
104202          {
104203            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104204            "in": "query",
104205            "name": "allowWatchBookmarks",
104206            "type": "boolean",
104207            "uniqueItems": true
104208          },
104209          {
104210            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104211            "in": "query",
104212            "name": "continue",
104213            "type": "string",
104214            "uniqueItems": true
104215          },
104216          {
104217            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104218            "in": "query",
104219            "name": "fieldSelector",
104220            "type": "string",
104221            "uniqueItems": true
104222          },
104223          {
104224            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104225            "in": "query",
104226            "name": "labelSelector",
104227            "type": "string",
104228            "uniqueItems": true
104229          },
104230          {
104231            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104232            "in": "query",
104233            "name": "limit",
104234            "type": "integer",
104235            "uniqueItems": true
104236          },
104237          {
104238            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104239            "in": "query",
104240            "name": "resourceVersion",
104241            "type": "string",
104242            "uniqueItems": true
104243          },
104244          {
104245            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104246            "in": "query",
104247            "name": "resourceVersionMatch",
104248            "type": "string",
104249            "uniqueItems": true
104250          },
104251          {
104252            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104253            "in": "query",
104254            "name": "timeoutSeconds",
104255            "type": "integer",
104256            "uniqueItems": true
104257          },
104258          {
104259            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104260            "in": "query",
104261            "name": "watch",
104262            "type": "boolean",
104263            "uniqueItems": true
104264          }
104265        ],
104266        "produces": [
104267          "application/json",
104268          "application/yaml",
104269          "application/vnd.kubernetes.protobuf",
104270          "application/json;stream=watch",
104271          "application/vnd.kubernetes.protobuf;stream=watch"
104272        ],
104273        "responses": {
104274          "200": {
104275            "description": "OK",
104276            "schema": {
104277              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
104278            }
104279          },
104280          "401": {
104281            "description": "Unauthorized"
104282          }
104283        },
104284        "schemes": [
104285          "https"
104286        ],
104287        "tags": [
104288          "storage_v1alpha1"
104289        ],
104290        "x-kubernetes-action": "list",
104291        "x-kubernetes-group-version-kind": {
104292          "group": "storage.k8s.io",
104293          "kind": "CSIStorageCapacity",
104294          "version": "v1alpha1"
104295        }
104296      },
104297      "parameters": [
104298        {
104299          "description": "object name and auth scope, such as for teams and projects",
104300          "in": "path",
104301          "name": "namespace",
104302          "required": true,
104303          "type": "string",
104304          "uniqueItems": true
104305        },
104306        {
104307          "description": "If 'true', then the output is pretty printed.",
104308          "in": "query",
104309          "name": "pretty",
104310          "type": "string",
104311          "uniqueItems": true
104312        }
104313      ],
104314      "post": {
104315        "consumes": [
104316          "*/*"
104317        ],
104318        "description": "create a CSIStorageCapacity",
104319        "operationId": "createStorageV1alpha1NamespacedCSIStorageCapacity",
104320        "parameters": [
104321          {
104322            "in": "body",
104323            "name": "body",
104324            "required": true,
104325            "schema": {
104326              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104327            }
104328          },
104329          {
104330            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104331            "in": "query",
104332            "name": "dryRun",
104333            "type": "string",
104334            "uniqueItems": true
104335          },
104336          {
104337            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104338            "in": "query",
104339            "name": "fieldManager",
104340            "type": "string",
104341            "uniqueItems": true
104342          }
104343        ],
104344        "produces": [
104345          "application/json",
104346          "application/yaml",
104347          "application/vnd.kubernetes.protobuf"
104348        ],
104349        "responses": {
104350          "200": {
104351            "description": "OK",
104352            "schema": {
104353              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104354            }
104355          },
104356          "201": {
104357            "description": "Created",
104358            "schema": {
104359              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104360            }
104361          },
104362          "202": {
104363            "description": "Accepted",
104364            "schema": {
104365              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104366            }
104367          },
104368          "401": {
104369            "description": "Unauthorized"
104370          }
104371        },
104372        "schemes": [
104373          "https"
104374        ],
104375        "tags": [
104376          "storage_v1alpha1"
104377        ],
104378        "x-kubernetes-action": "post",
104379        "x-kubernetes-group-version-kind": {
104380          "group": "storage.k8s.io",
104381          "kind": "CSIStorageCapacity",
104382          "version": "v1alpha1"
104383        }
104384      }
104385    },
104386    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}": {
104387      "delete": {
104388        "consumes": [
104389          "*/*"
104390        ],
104391        "description": "delete a CSIStorageCapacity",
104392        "operationId": "deleteStorageV1alpha1NamespacedCSIStorageCapacity",
104393        "parameters": [
104394          {
104395            "in": "body",
104396            "name": "body",
104397            "schema": {
104398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104399            }
104400          },
104401          {
104402            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104403            "in": "query",
104404            "name": "dryRun",
104405            "type": "string",
104406            "uniqueItems": true
104407          },
104408          {
104409            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104410            "in": "query",
104411            "name": "gracePeriodSeconds",
104412            "type": "integer",
104413            "uniqueItems": true
104414          },
104415          {
104416            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104417            "in": "query",
104418            "name": "orphanDependents",
104419            "type": "boolean",
104420            "uniqueItems": true
104421          },
104422          {
104423            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104424            "in": "query",
104425            "name": "propagationPolicy",
104426            "type": "string",
104427            "uniqueItems": true
104428          }
104429        ],
104430        "produces": [
104431          "application/json",
104432          "application/yaml",
104433          "application/vnd.kubernetes.protobuf"
104434        ],
104435        "responses": {
104436          "200": {
104437            "description": "OK",
104438            "schema": {
104439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104440            }
104441          },
104442          "202": {
104443            "description": "Accepted",
104444            "schema": {
104445              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104446            }
104447          },
104448          "401": {
104449            "description": "Unauthorized"
104450          }
104451        },
104452        "schemes": [
104453          "https"
104454        ],
104455        "tags": [
104456          "storage_v1alpha1"
104457        ],
104458        "x-kubernetes-action": "delete",
104459        "x-kubernetes-group-version-kind": {
104460          "group": "storage.k8s.io",
104461          "kind": "CSIStorageCapacity",
104462          "version": "v1alpha1"
104463        }
104464      },
104465      "get": {
104466        "consumes": [
104467          "*/*"
104468        ],
104469        "description": "read the specified CSIStorageCapacity",
104470        "operationId": "readStorageV1alpha1NamespacedCSIStorageCapacity",
104471        "produces": [
104472          "application/json",
104473          "application/yaml",
104474          "application/vnd.kubernetes.protobuf"
104475        ],
104476        "responses": {
104477          "200": {
104478            "description": "OK",
104479            "schema": {
104480              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104481            }
104482          },
104483          "401": {
104484            "description": "Unauthorized"
104485          }
104486        },
104487        "schemes": [
104488          "https"
104489        ],
104490        "tags": [
104491          "storage_v1alpha1"
104492        ],
104493        "x-kubernetes-action": "get",
104494        "x-kubernetes-group-version-kind": {
104495          "group": "storage.k8s.io",
104496          "kind": "CSIStorageCapacity",
104497          "version": "v1alpha1"
104498        }
104499      },
104500      "parameters": [
104501        {
104502          "description": "name of the CSIStorageCapacity",
104503          "in": "path",
104504          "name": "name",
104505          "required": true,
104506          "type": "string",
104507          "uniqueItems": true
104508        },
104509        {
104510          "description": "object name and auth scope, such as for teams and projects",
104511          "in": "path",
104512          "name": "namespace",
104513          "required": true,
104514          "type": "string",
104515          "uniqueItems": true
104516        },
104517        {
104518          "description": "If 'true', then the output is pretty printed.",
104519          "in": "query",
104520          "name": "pretty",
104521          "type": "string",
104522          "uniqueItems": true
104523        }
104524      ],
104525      "patch": {
104526        "consumes": [
104527          "application/json-patch+json",
104528          "application/merge-patch+json",
104529          "application/strategic-merge-patch+json",
104530          "application/apply-patch+yaml"
104531        ],
104532        "description": "partially update the specified CSIStorageCapacity",
104533        "operationId": "patchStorageV1alpha1NamespacedCSIStorageCapacity",
104534        "parameters": [
104535          {
104536            "in": "body",
104537            "name": "body",
104538            "required": true,
104539            "schema": {
104540              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
104541            }
104542          },
104543          {
104544            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104545            "in": "query",
104546            "name": "dryRun",
104547            "type": "string",
104548            "uniqueItems": true
104549          },
104550          {
104551            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
104552            "in": "query",
104553            "name": "fieldManager",
104554            "type": "string",
104555            "uniqueItems": true
104556          },
104557          {
104558            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
104559            "in": "query",
104560            "name": "force",
104561            "type": "boolean",
104562            "uniqueItems": true
104563          }
104564        ],
104565        "produces": [
104566          "application/json",
104567          "application/yaml",
104568          "application/vnd.kubernetes.protobuf"
104569        ],
104570        "responses": {
104571          "200": {
104572            "description": "OK",
104573            "schema": {
104574              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104575            }
104576          },
104577          "401": {
104578            "description": "Unauthorized"
104579          }
104580        },
104581        "schemes": [
104582          "https"
104583        ],
104584        "tags": [
104585          "storage_v1alpha1"
104586        ],
104587        "x-kubernetes-action": "patch",
104588        "x-kubernetes-group-version-kind": {
104589          "group": "storage.k8s.io",
104590          "kind": "CSIStorageCapacity",
104591          "version": "v1alpha1"
104592        }
104593      },
104594      "put": {
104595        "consumes": [
104596          "*/*"
104597        ],
104598        "description": "replace the specified CSIStorageCapacity",
104599        "operationId": "replaceStorageV1alpha1NamespacedCSIStorageCapacity",
104600        "parameters": [
104601          {
104602            "in": "body",
104603            "name": "body",
104604            "required": true,
104605            "schema": {
104606              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104607            }
104608          },
104609          {
104610            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104611            "in": "query",
104612            "name": "dryRun",
104613            "type": "string",
104614            "uniqueItems": true
104615          },
104616          {
104617            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104618            "in": "query",
104619            "name": "fieldManager",
104620            "type": "string",
104621            "uniqueItems": true
104622          }
104623        ],
104624        "produces": [
104625          "application/json",
104626          "application/yaml",
104627          "application/vnd.kubernetes.protobuf"
104628        ],
104629        "responses": {
104630          "200": {
104631            "description": "OK",
104632            "schema": {
104633              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104634            }
104635          },
104636          "201": {
104637            "description": "Created",
104638            "schema": {
104639              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
104640            }
104641          },
104642          "401": {
104643            "description": "Unauthorized"
104644          }
104645        },
104646        "schemes": [
104647          "https"
104648        ],
104649        "tags": [
104650          "storage_v1alpha1"
104651        ],
104652        "x-kubernetes-action": "put",
104653        "x-kubernetes-group-version-kind": {
104654          "group": "storage.k8s.io",
104655          "kind": "CSIStorageCapacity",
104656          "version": "v1alpha1"
104657        }
104658      }
104659    },
104660    "/apis/storage.k8s.io/v1alpha1/volumeattachments": {
104661      "delete": {
104662        "consumes": [
104663          "*/*"
104664        ],
104665        "description": "delete collection of VolumeAttachment",
104666        "operationId": "deleteStorageV1alpha1CollectionVolumeAttachment",
104667        "parameters": [
104668          {
104669            "in": "body",
104670            "name": "body",
104671            "schema": {
104672              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104673            }
104674          },
104675          {
104676            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104677            "in": "query",
104678            "name": "continue",
104679            "type": "string",
104680            "uniqueItems": true
104681          },
104682          {
104683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104684            "in": "query",
104685            "name": "dryRun",
104686            "type": "string",
104687            "uniqueItems": true
104688          },
104689          {
104690            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104691            "in": "query",
104692            "name": "fieldSelector",
104693            "type": "string",
104694            "uniqueItems": true
104695          },
104696          {
104697            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104698            "in": "query",
104699            "name": "gracePeriodSeconds",
104700            "type": "integer",
104701            "uniqueItems": true
104702          },
104703          {
104704            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104705            "in": "query",
104706            "name": "labelSelector",
104707            "type": "string",
104708            "uniqueItems": true
104709          },
104710          {
104711            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104712            "in": "query",
104713            "name": "limit",
104714            "type": "integer",
104715            "uniqueItems": true
104716          },
104717          {
104718            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104719            "in": "query",
104720            "name": "orphanDependents",
104721            "type": "boolean",
104722            "uniqueItems": true
104723          },
104724          {
104725            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
104726            "in": "query",
104727            "name": "propagationPolicy",
104728            "type": "string",
104729            "uniqueItems": true
104730          },
104731          {
104732            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104733            "in": "query",
104734            "name": "resourceVersion",
104735            "type": "string",
104736            "uniqueItems": true
104737          },
104738          {
104739            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104740            "in": "query",
104741            "name": "resourceVersionMatch",
104742            "type": "string",
104743            "uniqueItems": true
104744          },
104745          {
104746            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104747            "in": "query",
104748            "name": "timeoutSeconds",
104749            "type": "integer",
104750            "uniqueItems": true
104751          }
104752        ],
104753        "produces": [
104754          "application/json",
104755          "application/yaml",
104756          "application/vnd.kubernetes.protobuf"
104757        ],
104758        "responses": {
104759          "200": {
104760            "description": "OK",
104761            "schema": {
104762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104763            }
104764          },
104765          "401": {
104766            "description": "Unauthorized"
104767          }
104768        },
104769        "schemes": [
104770          "https"
104771        ],
104772        "tags": [
104773          "storage_v1alpha1"
104774        ],
104775        "x-kubernetes-action": "deletecollection",
104776        "x-kubernetes-group-version-kind": {
104777          "group": "storage.k8s.io",
104778          "kind": "VolumeAttachment",
104779          "version": "v1alpha1"
104780        }
104781      },
104782      "get": {
104783        "consumes": [
104784          "*/*"
104785        ],
104786        "description": "list or watch objects of kind VolumeAttachment",
104787        "operationId": "listStorageV1alpha1VolumeAttachment",
104788        "parameters": [
104789          {
104790            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
104791            "in": "query",
104792            "name": "allowWatchBookmarks",
104793            "type": "boolean",
104794            "uniqueItems": true
104795          },
104796          {
104797            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104798            "in": "query",
104799            "name": "continue",
104800            "type": "string",
104801            "uniqueItems": true
104802          },
104803          {
104804            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104805            "in": "query",
104806            "name": "fieldSelector",
104807            "type": "string",
104808            "uniqueItems": true
104809          },
104810          {
104811            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104812            "in": "query",
104813            "name": "labelSelector",
104814            "type": "string",
104815            "uniqueItems": true
104816          },
104817          {
104818            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104819            "in": "query",
104820            "name": "limit",
104821            "type": "integer",
104822            "uniqueItems": true
104823          },
104824          {
104825            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104826            "in": "query",
104827            "name": "resourceVersion",
104828            "type": "string",
104829            "uniqueItems": true
104830          },
104831          {
104832            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
104833            "in": "query",
104834            "name": "resourceVersionMatch",
104835            "type": "string",
104836            "uniqueItems": true
104837          },
104838          {
104839            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104840            "in": "query",
104841            "name": "timeoutSeconds",
104842            "type": "integer",
104843            "uniqueItems": true
104844          },
104845          {
104846            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104847            "in": "query",
104848            "name": "watch",
104849            "type": "boolean",
104850            "uniqueItems": true
104851          }
104852        ],
104853        "produces": [
104854          "application/json",
104855          "application/yaml",
104856          "application/vnd.kubernetes.protobuf",
104857          "application/json;stream=watch",
104858          "application/vnd.kubernetes.protobuf;stream=watch"
104859        ],
104860        "responses": {
104861          "200": {
104862            "description": "OK",
104863            "schema": {
104864              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentList"
104865            }
104866          },
104867          "401": {
104868            "description": "Unauthorized"
104869          }
104870        },
104871        "schemes": [
104872          "https"
104873        ],
104874        "tags": [
104875          "storage_v1alpha1"
104876        ],
104877        "x-kubernetes-action": "list",
104878        "x-kubernetes-group-version-kind": {
104879          "group": "storage.k8s.io",
104880          "kind": "VolumeAttachment",
104881          "version": "v1alpha1"
104882        }
104883      },
104884      "parameters": [
104885        {
104886          "description": "If 'true', then the output is pretty printed.",
104887          "in": "query",
104888          "name": "pretty",
104889          "type": "string",
104890          "uniqueItems": true
104891        }
104892      ],
104893      "post": {
104894        "consumes": [
104895          "*/*"
104896        ],
104897        "description": "create a VolumeAttachment",
104898        "operationId": "createStorageV1alpha1VolumeAttachment",
104899        "parameters": [
104900          {
104901            "in": "body",
104902            "name": "body",
104903            "required": true,
104904            "schema": {
104905              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104906            }
104907          },
104908          {
104909            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104910            "in": "query",
104911            "name": "dryRun",
104912            "type": "string",
104913            "uniqueItems": true
104914          },
104915          {
104916            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104917            "in": "query",
104918            "name": "fieldManager",
104919            "type": "string",
104920            "uniqueItems": true
104921          }
104922        ],
104923        "produces": [
104924          "application/json",
104925          "application/yaml",
104926          "application/vnd.kubernetes.protobuf"
104927        ],
104928        "responses": {
104929          "200": {
104930            "description": "OK",
104931            "schema": {
104932              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104933            }
104934          },
104935          "201": {
104936            "description": "Created",
104937            "schema": {
104938              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104939            }
104940          },
104941          "202": {
104942            "description": "Accepted",
104943            "schema": {
104944              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
104945            }
104946          },
104947          "401": {
104948            "description": "Unauthorized"
104949          }
104950        },
104951        "schemes": [
104952          "https"
104953        ],
104954        "tags": [
104955          "storage_v1alpha1"
104956        ],
104957        "x-kubernetes-action": "post",
104958        "x-kubernetes-group-version-kind": {
104959          "group": "storage.k8s.io",
104960          "kind": "VolumeAttachment",
104961          "version": "v1alpha1"
104962        }
104963      }
104964    },
104965    "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}": {
104966      "delete": {
104967        "consumes": [
104968          "*/*"
104969        ],
104970        "description": "delete a VolumeAttachment",
104971        "operationId": "deleteStorageV1alpha1VolumeAttachment",
104972        "parameters": [
104973          {
104974            "in": "body",
104975            "name": "body",
104976            "schema": {
104977              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104978            }
104979          },
104980          {
104981            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104982            "in": "query",
104983            "name": "dryRun",
104984            "type": "string",
104985            "uniqueItems": true
104986          },
104987          {
104988            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
104989            "in": "query",
104990            "name": "gracePeriodSeconds",
104991            "type": "integer",
104992            "uniqueItems": true
104993          },
104994          {
104995            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
104996            "in": "query",
104997            "name": "orphanDependents",
104998            "type": "boolean",
104999            "uniqueItems": true
105000          },
105001          {
105002            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
105003            "in": "query",
105004            "name": "propagationPolicy",
105005            "type": "string",
105006            "uniqueItems": true
105007          }
105008        ],
105009        "produces": [
105010          "application/json",
105011          "application/yaml",
105012          "application/vnd.kubernetes.protobuf"
105013        ],
105014        "responses": {
105015          "200": {
105016            "description": "OK",
105017            "schema": {
105018              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105019            }
105020          },
105021          "202": {
105022            "description": "Accepted",
105023            "schema": {
105024              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105025            }
105026          },
105027          "401": {
105028            "description": "Unauthorized"
105029          }
105030        },
105031        "schemes": [
105032          "https"
105033        ],
105034        "tags": [
105035          "storage_v1alpha1"
105036        ],
105037        "x-kubernetes-action": "delete",
105038        "x-kubernetes-group-version-kind": {
105039          "group": "storage.k8s.io",
105040          "kind": "VolumeAttachment",
105041          "version": "v1alpha1"
105042        }
105043      },
105044      "get": {
105045        "consumes": [
105046          "*/*"
105047        ],
105048        "description": "read the specified VolumeAttachment",
105049        "operationId": "readStorageV1alpha1VolumeAttachment",
105050        "produces": [
105051          "application/json",
105052          "application/yaml",
105053          "application/vnd.kubernetes.protobuf"
105054        ],
105055        "responses": {
105056          "200": {
105057            "description": "OK",
105058            "schema": {
105059              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105060            }
105061          },
105062          "401": {
105063            "description": "Unauthorized"
105064          }
105065        },
105066        "schemes": [
105067          "https"
105068        ],
105069        "tags": [
105070          "storage_v1alpha1"
105071        ],
105072        "x-kubernetes-action": "get",
105073        "x-kubernetes-group-version-kind": {
105074          "group": "storage.k8s.io",
105075          "kind": "VolumeAttachment",
105076          "version": "v1alpha1"
105077        }
105078      },
105079      "parameters": [
105080        {
105081          "description": "name of the VolumeAttachment",
105082          "in": "path",
105083          "name": "name",
105084          "required": true,
105085          "type": "string",
105086          "uniqueItems": true
105087        },
105088        {
105089          "description": "If 'true', then the output is pretty printed.",
105090          "in": "query",
105091          "name": "pretty",
105092          "type": "string",
105093          "uniqueItems": true
105094        }
105095      ],
105096      "patch": {
105097        "consumes": [
105098          "application/json-patch+json",
105099          "application/merge-patch+json",
105100          "application/strategic-merge-patch+json",
105101          "application/apply-patch+yaml"
105102        ],
105103        "description": "partially update the specified VolumeAttachment",
105104        "operationId": "patchStorageV1alpha1VolumeAttachment",
105105        "parameters": [
105106          {
105107            "in": "body",
105108            "name": "body",
105109            "required": true,
105110            "schema": {
105111              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
105112            }
105113          },
105114          {
105115            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105116            "in": "query",
105117            "name": "dryRun",
105118            "type": "string",
105119            "uniqueItems": true
105120          },
105121          {
105122            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
105123            "in": "query",
105124            "name": "fieldManager",
105125            "type": "string",
105126            "uniqueItems": true
105127          },
105128          {
105129            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
105130            "in": "query",
105131            "name": "force",
105132            "type": "boolean",
105133            "uniqueItems": true
105134          }
105135        ],
105136        "produces": [
105137          "application/json",
105138          "application/yaml",
105139          "application/vnd.kubernetes.protobuf"
105140        ],
105141        "responses": {
105142          "200": {
105143            "description": "OK",
105144            "schema": {
105145              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105146            }
105147          },
105148          "401": {
105149            "description": "Unauthorized"
105150          }
105151        },
105152        "schemes": [
105153          "https"
105154        ],
105155        "tags": [
105156          "storage_v1alpha1"
105157        ],
105158        "x-kubernetes-action": "patch",
105159        "x-kubernetes-group-version-kind": {
105160          "group": "storage.k8s.io",
105161          "kind": "VolumeAttachment",
105162          "version": "v1alpha1"
105163        }
105164      },
105165      "put": {
105166        "consumes": [
105167          "*/*"
105168        ],
105169        "description": "replace the specified VolumeAttachment",
105170        "operationId": "replaceStorageV1alpha1VolumeAttachment",
105171        "parameters": [
105172          {
105173            "in": "body",
105174            "name": "body",
105175            "required": true,
105176            "schema": {
105177              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105178            }
105179          },
105180          {
105181            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105182            "in": "query",
105183            "name": "dryRun",
105184            "type": "string",
105185            "uniqueItems": true
105186          },
105187          {
105188            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105189            "in": "query",
105190            "name": "fieldManager",
105191            "type": "string",
105192            "uniqueItems": true
105193          }
105194        ],
105195        "produces": [
105196          "application/json",
105197          "application/yaml",
105198          "application/vnd.kubernetes.protobuf"
105199        ],
105200        "responses": {
105201          "200": {
105202            "description": "OK",
105203            "schema": {
105204              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105205            }
105206          },
105207          "201": {
105208            "description": "Created",
105209            "schema": {
105210              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
105211            }
105212          },
105213          "401": {
105214            "description": "Unauthorized"
105215          }
105216        },
105217        "schemes": [
105218          "https"
105219        ],
105220        "tags": [
105221          "storage_v1alpha1"
105222        ],
105223        "x-kubernetes-action": "put",
105224        "x-kubernetes-group-version-kind": {
105225          "group": "storage.k8s.io",
105226          "kind": "VolumeAttachment",
105227          "version": "v1alpha1"
105228        }
105229      }
105230    },
105231    "/apis/storage.k8s.io/v1alpha1/watch/csistoragecapacities": {
105232      "get": {
105233        "consumes": [
105234          "*/*"
105235        ],
105236        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
105237        "operationId": "watchStorageV1alpha1CSIStorageCapacityListForAllNamespaces",
105238        "produces": [
105239          "application/json",
105240          "application/yaml",
105241          "application/vnd.kubernetes.protobuf",
105242          "application/json;stream=watch",
105243          "application/vnd.kubernetes.protobuf;stream=watch"
105244        ],
105245        "responses": {
105246          "200": {
105247            "description": "OK",
105248            "schema": {
105249              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105250            }
105251          },
105252          "401": {
105253            "description": "Unauthorized"
105254          }
105255        },
105256        "schemes": [
105257          "https"
105258        ],
105259        "tags": [
105260          "storage_v1alpha1"
105261        ],
105262        "x-kubernetes-action": "watchlist",
105263        "x-kubernetes-group-version-kind": {
105264          "group": "storage.k8s.io",
105265          "kind": "CSIStorageCapacity",
105266          "version": "v1alpha1"
105267        }
105268      },
105269      "parameters": [
105270        {
105271          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105272          "in": "query",
105273          "name": "allowWatchBookmarks",
105274          "type": "boolean",
105275          "uniqueItems": true
105276        },
105277        {
105278          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105279          "in": "query",
105280          "name": "continue",
105281          "type": "string",
105282          "uniqueItems": true
105283        },
105284        {
105285          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105286          "in": "query",
105287          "name": "fieldSelector",
105288          "type": "string",
105289          "uniqueItems": true
105290        },
105291        {
105292          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105293          "in": "query",
105294          "name": "labelSelector",
105295          "type": "string",
105296          "uniqueItems": true
105297        },
105298        {
105299          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105300          "in": "query",
105301          "name": "limit",
105302          "type": "integer",
105303          "uniqueItems": true
105304        },
105305        {
105306          "description": "If 'true', then the output is pretty printed.",
105307          "in": "query",
105308          "name": "pretty",
105309          "type": "string",
105310          "uniqueItems": true
105311        },
105312        {
105313          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105314          "in": "query",
105315          "name": "resourceVersion",
105316          "type": "string",
105317          "uniqueItems": true
105318        },
105319        {
105320          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105321          "in": "query",
105322          "name": "resourceVersionMatch",
105323          "type": "string",
105324          "uniqueItems": true
105325        },
105326        {
105327          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105328          "in": "query",
105329          "name": "timeoutSeconds",
105330          "type": "integer",
105331          "uniqueItems": true
105332        },
105333        {
105334          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105335          "in": "query",
105336          "name": "watch",
105337          "type": "boolean",
105338          "uniqueItems": true
105339        }
105340      ]
105341    },
105342    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities": {
105343      "get": {
105344        "consumes": [
105345          "*/*"
105346        ],
105347        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
105348        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacityList",
105349        "produces": [
105350          "application/json",
105351          "application/yaml",
105352          "application/vnd.kubernetes.protobuf",
105353          "application/json;stream=watch",
105354          "application/vnd.kubernetes.protobuf;stream=watch"
105355        ],
105356        "responses": {
105357          "200": {
105358            "description": "OK",
105359            "schema": {
105360              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105361            }
105362          },
105363          "401": {
105364            "description": "Unauthorized"
105365          }
105366        },
105367        "schemes": [
105368          "https"
105369        ],
105370        "tags": [
105371          "storage_v1alpha1"
105372        ],
105373        "x-kubernetes-action": "watchlist",
105374        "x-kubernetes-group-version-kind": {
105375          "group": "storage.k8s.io",
105376          "kind": "CSIStorageCapacity",
105377          "version": "v1alpha1"
105378        }
105379      },
105380      "parameters": [
105381        {
105382          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105383          "in": "query",
105384          "name": "allowWatchBookmarks",
105385          "type": "boolean",
105386          "uniqueItems": true
105387        },
105388        {
105389          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105390          "in": "query",
105391          "name": "continue",
105392          "type": "string",
105393          "uniqueItems": true
105394        },
105395        {
105396          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105397          "in": "query",
105398          "name": "fieldSelector",
105399          "type": "string",
105400          "uniqueItems": true
105401        },
105402        {
105403          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105404          "in": "query",
105405          "name": "labelSelector",
105406          "type": "string",
105407          "uniqueItems": true
105408        },
105409        {
105410          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105411          "in": "query",
105412          "name": "limit",
105413          "type": "integer",
105414          "uniqueItems": true
105415        },
105416        {
105417          "description": "object name and auth scope, such as for teams and projects",
105418          "in": "path",
105419          "name": "namespace",
105420          "required": true,
105421          "type": "string",
105422          "uniqueItems": true
105423        },
105424        {
105425          "description": "If 'true', then the output is pretty printed.",
105426          "in": "query",
105427          "name": "pretty",
105428          "type": "string",
105429          "uniqueItems": true
105430        },
105431        {
105432          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105433          "in": "query",
105434          "name": "resourceVersion",
105435          "type": "string",
105436          "uniqueItems": true
105437        },
105438        {
105439          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105440          "in": "query",
105441          "name": "resourceVersionMatch",
105442          "type": "string",
105443          "uniqueItems": true
105444        },
105445        {
105446          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105447          "in": "query",
105448          "name": "timeoutSeconds",
105449          "type": "integer",
105450          "uniqueItems": true
105451        },
105452        {
105453          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105454          "in": "query",
105455          "name": "watch",
105456          "type": "boolean",
105457          "uniqueItems": true
105458        }
105459      ]
105460    },
105461    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities/{name}": {
105462      "get": {
105463        "consumes": [
105464          "*/*"
105465        ],
105466        "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.",
105467        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacity",
105468        "produces": [
105469          "application/json",
105470          "application/yaml",
105471          "application/vnd.kubernetes.protobuf",
105472          "application/json;stream=watch",
105473          "application/vnd.kubernetes.protobuf;stream=watch"
105474        ],
105475        "responses": {
105476          "200": {
105477            "description": "OK",
105478            "schema": {
105479              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105480            }
105481          },
105482          "401": {
105483            "description": "Unauthorized"
105484          }
105485        },
105486        "schemes": [
105487          "https"
105488        ],
105489        "tags": [
105490          "storage_v1alpha1"
105491        ],
105492        "x-kubernetes-action": "watch",
105493        "x-kubernetes-group-version-kind": {
105494          "group": "storage.k8s.io",
105495          "kind": "CSIStorageCapacity",
105496          "version": "v1alpha1"
105497        }
105498      },
105499      "parameters": [
105500        {
105501          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105502          "in": "query",
105503          "name": "allowWatchBookmarks",
105504          "type": "boolean",
105505          "uniqueItems": true
105506        },
105507        {
105508          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105509          "in": "query",
105510          "name": "continue",
105511          "type": "string",
105512          "uniqueItems": true
105513        },
105514        {
105515          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105516          "in": "query",
105517          "name": "fieldSelector",
105518          "type": "string",
105519          "uniqueItems": true
105520        },
105521        {
105522          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105523          "in": "query",
105524          "name": "labelSelector",
105525          "type": "string",
105526          "uniqueItems": true
105527        },
105528        {
105529          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105530          "in": "query",
105531          "name": "limit",
105532          "type": "integer",
105533          "uniqueItems": true
105534        },
105535        {
105536          "description": "name of the CSIStorageCapacity",
105537          "in": "path",
105538          "name": "name",
105539          "required": true,
105540          "type": "string",
105541          "uniqueItems": true
105542        },
105543        {
105544          "description": "object name and auth scope, such as for teams and projects",
105545          "in": "path",
105546          "name": "namespace",
105547          "required": true,
105548          "type": "string",
105549          "uniqueItems": true
105550        },
105551        {
105552          "description": "If 'true', then the output is pretty printed.",
105553          "in": "query",
105554          "name": "pretty",
105555          "type": "string",
105556          "uniqueItems": true
105557        },
105558        {
105559          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105560          "in": "query",
105561          "name": "resourceVersion",
105562          "type": "string",
105563          "uniqueItems": true
105564        },
105565        {
105566          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105567          "in": "query",
105568          "name": "resourceVersionMatch",
105569          "type": "string",
105570          "uniqueItems": true
105571        },
105572        {
105573          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105574          "in": "query",
105575          "name": "timeoutSeconds",
105576          "type": "integer",
105577          "uniqueItems": true
105578        },
105579        {
105580          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105581          "in": "query",
105582          "name": "watch",
105583          "type": "boolean",
105584          "uniqueItems": true
105585        }
105586      ]
105587    },
105588    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments": {
105589      "get": {
105590        "consumes": [
105591          "*/*"
105592        ],
105593        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
105594        "operationId": "watchStorageV1alpha1VolumeAttachmentList",
105595        "produces": [
105596          "application/json",
105597          "application/yaml",
105598          "application/vnd.kubernetes.protobuf",
105599          "application/json;stream=watch",
105600          "application/vnd.kubernetes.protobuf;stream=watch"
105601        ],
105602        "responses": {
105603          "200": {
105604            "description": "OK",
105605            "schema": {
105606              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105607            }
105608          },
105609          "401": {
105610            "description": "Unauthorized"
105611          }
105612        },
105613        "schemes": [
105614          "https"
105615        ],
105616        "tags": [
105617          "storage_v1alpha1"
105618        ],
105619        "x-kubernetes-action": "watchlist",
105620        "x-kubernetes-group-version-kind": {
105621          "group": "storage.k8s.io",
105622          "kind": "VolumeAttachment",
105623          "version": "v1alpha1"
105624        }
105625      },
105626      "parameters": [
105627        {
105628          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105629          "in": "query",
105630          "name": "allowWatchBookmarks",
105631          "type": "boolean",
105632          "uniqueItems": true
105633        },
105634        {
105635          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105636          "in": "query",
105637          "name": "continue",
105638          "type": "string",
105639          "uniqueItems": true
105640        },
105641        {
105642          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105643          "in": "query",
105644          "name": "fieldSelector",
105645          "type": "string",
105646          "uniqueItems": true
105647        },
105648        {
105649          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105650          "in": "query",
105651          "name": "labelSelector",
105652          "type": "string",
105653          "uniqueItems": true
105654        },
105655        {
105656          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105657          "in": "query",
105658          "name": "limit",
105659          "type": "integer",
105660          "uniqueItems": true
105661        },
105662        {
105663          "description": "If 'true', then the output is pretty printed.",
105664          "in": "query",
105665          "name": "pretty",
105666          "type": "string",
105667          "uniqueItems": true
105668        },
105669        {
105670          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105671          "in": "query",
105672          "name": "resourceVersion",
105673          "type": "string",
105674          "uniqueItems": true
105675        },
105676        {
105677          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105678          "in": "query",
105679          "name": "resourceVersionMatch",
105680          "type": "string",
105681          "uniqueItems": true
105682        },
105683        {
105684          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105685          "in": "query",
105686          "name": "timeoutSeconds",
105687          "type": "integer",
105688          "uniqueItems": true
105689        },
105690        {
105691          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105692          "in": "query",
105693          "name": "watch",
105694          "type": "boolean",
105695          "uniqueItems": true
105696        }
105697      ]
105698    },
105699    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}": {
105700      "get": {
105701        "consumes": [
105702          "*/*"
105703        ],
105704        "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.",
105705        "operationId": "watchStorageV1alpha1VolumeAttachment",
105706        "produces": [
105707          "application/json",
105708          "application/yaml",
105709          "application/vnd.kubernetes.protobuf",
105710          "application/json;stream=watch",
105711          "application/vnd.kubernetes.protobuf;stream=watch"
105712        ],
105713        "responses": {
105714          "200": {
105715            "description": "OK",
105716            "schema": {
105717              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105718            }
105719          },
105720          "401": {
105721            "description": "Unauthorized"
105722          }
105723        },
105724        "schemes": [
105725          "https"
105726        ],
105727        "tags": [
105728          "storage_v1alpha1"
105729        ],
105730        "x-kubernetes-action": "watch",
105731        "x-kubernetes-group-version-kind": {
105732          "group": "storage.k8s.io",
105733          "kind": "VolumeAttachment",
105734          "version": "v1alpha1"
105735        }
105736      },
105737      "parameters": [
105738        {
105739          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105740          "in": "query",
105741          "name": "allowWatchBookmarks",
105742          "type": "boolean",
105743          "uniqueItems": true
105744        },
105745        {
105746          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105747          "in": "query",
105748          "name": "continue",
105749          "type": "string",
105750          "uniqueItems": true
105751        },
105752        {
105753          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105754          "in": "query",
105755          "name": "fieldSelector",
105756          "type": "string",
105757          "uniqueItems": true
105758        },
105759        {
105760          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105761          "in": "query",
105762          "name": "labelSelector",
105763          "type": "string",
105764          "uniqueItems": true
105765        },
105766        {
105767          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105768          "in": "query",
105769          "name": "limit",
105770          "type": "integer",
105771          "uniqueItems": true
105772        },
105773        {
105774          "description": "name of the VolumeAttachment",
105775          "in": "path",
105776          "name": "name",
105777          "required": true,
105778          "type": "string",
105779          "uniqueItems": true
105780        },
105781        {
105782          "description": "If 'true', then the output is pretty printed.",
105783          "in": "query",
105784          "name": "pretty",
105785          "type": "string",
105786          "uniqueItems": true
105787        },
105788        {
105789          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105790          "in": "query",
105791          "name": "resourceVersion",
105792          "type": "string",
105793          "uniqueItems": true
105794        },
105795        {
105796          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105797          "in": "query",
105798          "name": "resourceVersionMatch",
105799          "type": "string",
105800          "uniqueItems": true
105801        },
105802        {
105803          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105804          "in": "query",
105805          "name": "timeoutSeconds",
105806          "type": "integer",
105807          "uniqueItems": true
105808        },
105809        {
105810          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105811          "in": "query",
105812          "name": "watch",
105813          "type": "boolean",
105814          "uniqueItems": true
105815        }
105816      ]
105817    },
105818    "/apis/storage.k8s.io/v1beta1/": {
105819      "get": {
105820        "consumes": [
105821          "application/json",
105822          "application/yaml",
105823          "application/vnd.kubernetes.protobuf"
105824        ],
105825        "description": "get available resources",
105826        "operationId": "getStorageV1beta1APIResources",
105827        "produces": [
105828          "application/json",
105829          "application/yaml",
105830          "application/vnd.kubernetes.protobuf"
105831        ],
105832        "responses": {
105833          "200": {
105834            "description": "OK",
105835            "schema": {
105836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
105837            }
105838          },
105839          "401": {
105840            "description": "Unauthorized"
105841          }
105842        },
105843        "schemes": [
105844          "https"
105845        ],
105846        "tags": [
105847          "storage_v1beta1"
105848        ]
105849      }
105850    },
105851    "/apis/storage.k8s.io/v1beta1/csidrivers": {
105852      "delete": {
105853        "consumes": [
105854          "*/*"
105855        ],
105856        "description": "delete collection of CSIDriver",
105857        "operationId": "deleteStorageV1beta1CollectionCSIDriver",
105858        "parameters": [
105859          {
105860            "in": "body",
105861            "name": "body",
105862            "schema": {
105863              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
105864            }
105865          },
105866          {
105867            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105868            "in": "query",
105869            "name": "continue",
105870            "type": "string",
105871            "uniqueItems": true
105872          },
105873          {
105874            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105875            "in": "query",
105876            "name": "dryRun",
105877            "type": "string",
105878            "uniqueItems": true
105879          },
105880          {
105881            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105882            "in": "query",
105883            "name": "fieldSelector",
105884            "type": "string",
105885            "uniqueItems": true
105886          },
105887          {
105888            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
105889            "in": "query",
105890            "name": "gracePeriodSeconds",
105891            "type": "integer",
105892            "uniqueItems": true
105893          },
105894          {
105895            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105896            "in": "query",
105897            "name": "labelSelector",
105898            "type": "string",
105899            "uniqueItems": true
105900          },
105901          {
105902            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105903            "in": "query",
105904            "name": "limit",
105905            "type": "integer",
105906            "uniqueItems": true
105907          },
105908          {
105909            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
105910            "in": "query",
105911            "name": "orphanDependents",
105912            "type": "boolean",
105913            "uniqueItems": true
105914          },
105915          {
105916            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
105917            "in": "query",
105918            "name": "propagationPolicy",
105919            "type": "string",
105920            "uniqueItems": true
105921          },
105922          {
105923            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105924            "in": "query",
105925            "name": "resourceVersion",
105926            "type": "string",
105927            "uniqueItems": true
105928          },
105929          {
105930            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
105931            "in": "query",
105932            "name": "resourceVersionMatch",
105933            "type": "string",
105934            "uniqueItems": true
105935          },
105936          {
105937            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105938            "in": "query",
105939            "name": "timeoutSeconds",
105940            "type": "integer",
105941            "uniqueItems": true
105942          }
105943        ],
105944        "produces": [
105945          "application/json",
105946          "application/yaml",
105947          "application/vnd.kubernetes.protobuf"
105948        ],
105949        "responses": {
105950          "200": {
105951            "description": "OK",
105952            "schema": {
105953              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
105954            }
105955          },
105956          "401": {
105957            "description": "Unauthorized"
105958          }
105959        },
105960        "schemes": [
105961          "https"
105962        ],
105963        "tags": [
105964          "storage_v1beta1"
105965        ],
105966        "x-kubernetes-action": "deletecollection",
105967        "x-kubernetes-group-version-kind": {
105968          "group": "storage.k8s.io",
105969          "kind": "CSIDriver",
105970          "version": "v1beta1"
105971        }
105972      },
105973      "get": {
105974        "consumes": [
105975          "*/*"
105976        ],
105977        "description": "list or watch objects of kind CSIDriver",
105978        "operationId": "listStorageV1beta1CSIDriver",
105979        "parameters": [
105980          {
105981            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
105982            "in": "query",
105983            "name": "allowWatchBookmarks",
105984            "type": "boolean",
105985            "uniqueItems": true
105986          },
105987          {
105988            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105989            "in": "query",
105990            "name": "continue",
105991            "type": "string",
105992            "uniqueItems": true
105993          },
105994          {
105995            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105996            "in": "query",
105997            "name": "fieldSelector",
105998            "type": "string",
105999            "uniqueItems": true
106000          },
106001          {
106002            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106003            "in": "query",
106004            "name": "labelSelector",
106005            "type": "string",
106006            "uniqueItems": true
106007          },
106008          {
106009            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106010            "in": "query",
106011            "name": "limit",
106012            "type": "integer",
106013            "uniqueItems": true
106014          },
106015          {
106016            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106017            "in": "query",
106018            "name": "resourceVersion",
106019            "type": "string",
106020            "uniqueItems": true
106021          },
106022          {
106023            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106024            "in": "query",
106025            "name": "resourceVersionMatch",
106026            "type": "string",
106027            "uniqueItems": true
106028          },
106029          {
106030            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106031            "in": "query",
106032            "name": "timeoutSeconds",
106033            "type": "integer",
106034            "uniqueItems": true
106035          },
106036          {
106037            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106038            "in": "query",
106039            "name": "watch",
106040            "type": "boolean",
106041            "uniqueItems": true
106042          }
106043        ],
106044        "produces": [
106045          "application/json",
106046          "application/yaml",
106047          "application/vnd.kubernetes.protobuf",
106048          "application/json;stream=watch",
106049          "application/vnd.kubernetes.protobuf;stream=watch"
106050        ],
106051        "responses": {
106052          "200": {
106053            "description": "OK",
106054            "schema": {
106055              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverList"
106056            }
106057          },
106058          "401": {
106059            "description": "Unauthorized"
106060          }
106061        },
106062        "schemes": [
106063          "https"
106064        ],
106065        "tags": [
106066          "storage_v1beta1"
106067        ],
106068        "x-kubernetes-action": "list",
106069        "x-kubernetes-group-version-kind": {
106070          "group": "storage.k8s.io",
106071          "kind": "CSIDriver",
106072          "version": "v1beta1"
106073        }
106074      },
106075      "parameters": [
106076        {
106077          "description": "If 'true', then the output is pretty printed.",
106078          "in": "query",
106079          "name": "pretty",
106080          "type": "string",
106081          "uniqueItems": true
106082        }
106083      ],
106084      "post": {
106085        "consumes": [
106086          "*/*"
106087        ],
106088        "description": "create a CSIDriver",
106089        "operationId": "createStorageV1beta1CSIDriver",
106090        "parameters": [
106091          {
106092            "in": "body",
106093            "name": "body",
106094            "required": true,
106095            "schema": {
106096              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106097            }
106098          },
106099          {
106100            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106101            "in": "query",
106102            "name": "dryRun",
106103            "type": "string",
106104            "uniqueItems": true
106105          },
106106          {
106107            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106108            "in": "query",
106109            "name": "fieldManager",
106110            "type": "string",
106111            "uniqueItems": true
106112          }
106113        ],
106114        "produces": [
106115          "application/json",
106116          "application/yaml",
106117          "application/vnd.kubernetes.protobuf"
106118        ],
106119        "responses": {
106120          "200": {
106121            "description": "OK",
106122            "schema": {
106123              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106124            }
106125          },
106126          "201": {
106127            "description": "Created",
106128            "schema": {
106129              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106130            }
106131          },
106132          "202": {
106133            "description": "Accepted",
106134            "schema": {
106135              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106136            }
106137          },
106138          "401": {
106139            "description": "Unauthorized"
106140          }
106141        },
106142        "schemes": [
106143          "https"
106144        ],
106145        "tags": [
106146          "storage_v1beta1"
106147        ],
106148        "x-kubernetes-action": "post",
106149        "x-kubernetes-group-version-kind": {
106150          "group": "storage.k8s.io",
106151          "kind": "CSIDriver",
106152          "version": "v1beta1"
106153        }
106154      }
106155    },
106156    "/apis/storage.k8s.io/v1beta1/csidrivers/{name}": {
106157      "delete": {
106158        "consumes": [
106159          "*/*"
106160        ],
106161        "description": "delete a CSIDriver",
106162        "operationId": "deleteStorageV1beta1CSIDriver",
106163        "parameters": [
106164          {
106165            "in": "body",
106166            "name": "body",
106167            "schema": {
106168              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106169            }
106170          },
106171          {
106172            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106173            "in": "query",
106174            "name": "dryRun",
106175            "type": "string",
106176            "uniqueItems": true
106177          },
106178          {
106179            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106180            "in": "query",
106181            "name": "gracePeriodSeconds",
106182            "type": "integer",
106183            "uniqueItems": true
106184          },
106185          {
106186            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106187            "in": "query",
106188            "name": "orphanDependents",
106189            "type": "boolean",
106190            "uniqueItems": true
106191          },
106192          {
106193            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106194            "in": "query",
106195            "name": "propagationPolicy",
106196            "type": "string",
106197            "uniqueItems": true
106198          }
106199        ],
106200        "produces": [
106201          "application/json",
106202          "application/yaml",
106203          "application/vnd.kubernetes.protobuf"
106204        ],
106205        "responses": {
106206          "200": {
106207            "description": "OK",
106208            "schema": {
106209              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106210            }
106211          },
106212          "202": {
106213            "description": "Accepted",
106214            "schema": {
106215              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106216            }
106217          },
106218          "401": {
106219            "description": "Unauthorized"
106220          }
106221        },
106222        "schemes": [
106223          "https"
106224        ],
106225        "tags": [
106226          "storage_v1beta1"
106227        ],
106228        "x-kubernetes-action": "delete",
106229        "x-kubernetes-group-version-kind": {
106230          "group": "storage.k8s.io",
106231          "kind": "CSIDriver",
106232          "version": "v1beta1"
106233        }
106234      },
106235      "get": {
106236        "consumes": [
106237          "*/*"
106238        ],
106239        "description": "read the specified CSIDriver",
106240        "operationId": "readStorageV1beta1CSIDriver",
106241        "produces": [
106242          "application/json",
106243          "application/yaml",
106244          "application/vnd.kubernetes.protobuf"
106245        ],
106246        "responses": {
106247          "200": {
106248            "description": "OK",
106249            "schema": {
106250              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106251            }
106252          },
106253          "401": {
106254            "description": "Unauthorized"
106255          }
106256        },
106257        "schemes": [
106258          "https"
106259        ],
106260        "tags": [
106261          "storage_v1beta1"
106262        ],
106263        "x-kubernetes-action": "get",
106264        "x-kubernetes-group-version-kind": {
106265          "group": "storage.k8s.io",
106266          "kind": "CSIDriver",
106267          "version": "v1beta1"
106268        }
106269      },
106270      "parameters": [
106271        {
106272          "description": "name of the CSIDriver",
106273          "in": "path",
106274          "name": "name",
106275          "required": true,
106276          "type": "string",
106277          "uniqueItems": true
106278        },
106279        {
106280          "description": "If 'true', then the output is pretty printed.",
106281          "in": "query",
106282          "name": "pretty",
106283          "type": "string",
106284          "uniqueItems": true
106285        }
106286      ],
106287      "patch": {
106288        "consumes": [
106289          "application/json-patch+json",
106290          "application/merge-patch+json",
106291          "application/strategic-merge-patch+json",
106292          "application/apply-patch+yaml"
106293        ],
106294        "description": "partially update the specified CSIDriver",
106295        "operationId": "patchStorageV1beta1CSIDriver",
106296        "parameters": [
106297          {
106298            "in": "body",
106299            "name": "body",
106300            "required": true,
106301            "schema": {
106302              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
106303            }
106304          },
106305          {
106306            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106307            "in": "query",
106308            "name": "dryRun",
106309            "type": "string",
106310            "uniqueItems": true
106311          },
106312          {
106313            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
106314            "in": "query",
106315            "name": "fieldManager",
106316            "type": "string",
106317            "uniqueItems": true
106318          },
106319          {
106320            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
106321            "in": "query",
106322            "name": "force",
106323            "type": "boolean",
106324            "uniqueItems": true
106325          }
106326        ],
106327        "produces": [
106328          "application/json",
106329          "application/yaml",
106330          "application/vnd.kubernetes.protobuf"
106331        ],
106332        "responses": {
106333          "200": {
106334            "description": "OK",
106335            "schema": {
106336              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106337            }
106338          },
106339          "401": {
106340            "description": "Unauthorized"
106341          }
106342        },
106343        "schemes": [
106344          "https"
106345        ],
106346        "tags": [
106347          "storage_v1beta1"
106348        ],
106349        "x-kubernetes-action": "patch",
106350        "x-kubernetes-group-version-kind": {
106351          "group": "storage.k8s.io",
106352          "kind": "CSIDriver",
106353          "version": "v1beta1"
106354        }
106355      },
106356      "put": {
106357        "consumes": [
106358          "*/*"
106359        ],
106360        "description": "replace the specified CSIDriver",
106361        "operationId": "replaceStorageV1beta1CSIDriver",
106362        "parameters": [
106363          {
106364            "in": "body",
106365            "name": "body",
106366            "required": true,
106367            "schema": {
106368              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106369            }
106370          },
106371          {
106372            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106373            "in": "query",
106374            "name": "dryRun",
106375            "type": "string",
106376            "uniqueItems": true
106377          },
106378          {
106379            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106380            "in": "query",
106381            "name": "fieldManager",
106382            "type": "string",
106383            "uniqueItems": true
106384          }
106385        ],
106386        "produces": [
106387          "application/json",
106388          "application/yaml",
106389          "application/vnd.kubernetes.protobuf"
106390        ],
106391        "responses": {
106392          "200": {
106393            "description": "OK",
106394            "schema": {
106395              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106396            }
106397          },
106398          "201": {
106399            "description": "Created",
106400            "schema": {
106401              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
106402            }
106403          },
106404          "401": {
106405            "description": "Unauthorized"
106406          }
106407        },
106408        "schemes": [
106409          "https"
106410        ],
106411        "tags": [
106412          "storage_v1beta1"
106413        ],
106414        "x-kubernetes-action": "put",
106415        "x-kubernetes-group-version-kind": {
106416          "group": "storage.k8s.io",
106417          "kind": "CSIDriver",
106418          "version": "v1beta1"
106419        }
106420      }
106421    },
106422    "/apis/storage.k8s.io/v1beta1/csinodes": {
106423      "delete": {
106424        "consumes": [
106425          "*/*"
106426        ],
106427        "description": "delete collection of CSINode",
106428        "operationId": "deleteStorageV1beta1CollectionCSINode",
106429        "parameters": [
106430          {
106431            "in": "body",
106432            "name": "body",
106433            "schema": {
106434              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106435            }
106436          },
106437          {
106438            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106439            "in": "query",
106440            "name": "continue",
106441            "type": "string",
106442            "uniqueItems": true
106443          },
106444          {
106445            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106446            "in": "query",
106447            "name": "dryRun",
106448            "type": "string",
106449            "uniqueItems": true
106450          },
106451          {
106452            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106453            "in": "query",
106454            "name": "fieldSelector",
106455            "type": "string",
106456            "uniqueItems": true
106457          },
106458          {
106459            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106460            "in": "query",
106461            "name": "gracePeriodSeconds",
106462            "type": "integer",
106463            "uniqueItems": true
106464          },
106465          {
106466            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106467            "in": "query",
106468            "name": "labelSelector",
106469            "type": "string",
106470            "uniqueItems": true
106471          },
106472          {
106473            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106474            "in": "query",
106475            "name": "limit",
106476            "type": "integer",
106477            "uniqueItems": true
106478          },
106479          {
106480            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106481            "in": "query",
106482            "name": "orphanDependents",
106483            "type": "boolean",
106484            "uniqueItems": true
106485          },
106486          {
106487            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106488            "in": "query",
106489            "name": "propagationPolicy",
106490            "type": "string",
106491            "uniqueItems": true
106492          },
106493          {
106494            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106495            "in": "query",
106496            "name": "resourceVersion",
106497            "type": "string",
106498            "uniqueItems": true
106499          },
106500          {
106501            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106502            "in": "query",
106503            "name": "resourceVersionMatch",
106504            "type": "string",
106505            "uniqueItems": true
106506          },
106507          {
106508            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106509            "in": "query",
106510            "name": "timeoutSeconds",
106511            "type": "integer",
106512            "uniqueItems": true
106513          }
106514        ],
106515        "produces": [
106516          "application/json",
106517          "application/yaml",
106518          "application/vnd.kubernetes.protobuf"
106519        ],
106520        "responses": {
106521          "200": {
106522            "description": "OK",
106523            "schema": {
106524              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
106525            }
106526          },
106527          "401": {
106528            "description": "Unauthorized"
106529          }
106530        },
106531        "schemes": [
106532          "https"
106533        ],
106534        "tags": [
106535          "storage_v1beta1"
106536        ],
106537        "x-kubernetes-action": "deletecollection",
106538        "x-kubernetes-group-version-kind": {
106539          "group": "storage.k8s.io",
106540          "kind": "CSINode",
106541          "version": "v1beta1"
106542        }
106543      },
106544      "get": {
106545        "consumes": [
106546          "*/*"
106547        ],
106548        "description": "list or watch objects of kind CSINode",
106549        "operationId": "listStorageV1beta1CSINode",
106550        "parameters": [
106551          {
106552            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
106553            "in": "query",
106554            "name": "allowWatchBookmarks",
106555            "type": "boolean",
106556            "uniqueItems": true
106557          },
106558          {
106559            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106560            "in": "query",
106561            "name": "continue",
106562            "type": "string",
106563            "uniqueItems": true
106564          },
106565          {
106566            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106567            "in": "query",
106568            "name": "fieldSelector",
106569            "type": "string",
106570            "uniqueItems": true
106571          },
106572          {
106573            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106574            "in": "query",
106575            "name": "labelSelector",
106576            "type": "string",
106577            "uniqueItems": true
106578          },
106579          {
106580            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106581            "in": "query",
106582            "name": "limit",
106583            "type": "integer",
106584            "uniqueItems": true
106585          },
106586          {
106587            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106588            "in": "query",
106589            "name": "resourceVersion",
106590            "type": "string",
106591            "uniqueItems": true
106592          },
106593          {
106594            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
106595            "in": "query",
106596            "name": "resourceVersionMatch",
106597            "type": "string",
106598            "uniqueItems": true
106599          },
106600          {
106601            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106602            "in": "query",
106603            "name": "timeoutSeconds",
106604            "type": "integer",
106605            "uniqueItems": true
106606          },
106607          {
106608            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106609            "in": "query",
106610            "name": "watch",
106611            "type": "boolean",
106612            "uniqueItems": true
106613          }
106614        ],
106615        "produces": [
106616          "application/json",
106617          "application/yaml",
106618          "application/vnd.kubernetes.protobuf",
106619          "application/json;stream=watch",
106620          "application/vnd.kubernetes.protobuf;stream=watch"
106621        ],
106622        "responses": {
106623          "200": {
106624            "description": "OK",
106625            "schema": {
106626              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeList"
106627            }
106628          },
106629          "401": {
106630            "description": "Unauthorized"
106631          }
106632        },
106633        "schemes": [
106634          "https"
106635        ],
106636        "tags": [
106637          "storage_v1beta1"
106638        ],
106639        "x-kubernetes-action": "list",
106640        "x-kubernetes-group-version-kind": {
106641          "group": "storage.k8s.io",
106642          "kind": "CSINode",
106643          "version": "v1beta1"
106644        }
106645      },
106646      "parameters": [
106647        {
106648          "description": "If 'true', then the output is pretty printed.",
106649          "in": "query",
106650          "name": "pretty",
106651          "type": "string",
106652          "uniqueItems": true
106653        }
106654      ],
106655      "post": {
106656        "consumes": [
106657          "*/*"
106658        ],
106659        "description": "create a CSINode",
106660        "operationId": "createStorageV1beta1CSINode",
106661        "parameters": [
106662          {
106663            "in": "body",
106664            "name": "body",
106665            "required": true,
106666            "schema": {
106667              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106668            }
106669          },
106670          {
106671            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106672            "in": "query",
106673            "name": "dryRun",
106674            "type": "string",
106675            "uniqueItems": true
106676          },
106677          {
106678            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106679            "in": "query",
106680            "name": "fieldManager",
106681            "type": "string",
106682            "uniqueItems": true
106683          }
106684        ],
106685        "produces": [
106686          "application/json",
106687          "application/yaml",
106688          "application/vnd.kubernetes.protobuf"
106689        ],
106690        "responses": {
106691          "200": {
106692            "description": "OK",
106693            "schema": {
106694              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106695            }
106696          },
106697          "201": {
106698            "description": "Created",
106699            "schema": {
106700              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106701            }
106702          },
106703          "202": {
106704            "description": "Accepted",
106705            "schema": {
106706              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106707            }
106708          },
106709          "401": {
106710            "description": "Unauthorized"
106711          }
106712        },
106713        "schemes": [
106714          "https"
106715        ],
106716        "tags": [
106717          "storage_v1beta1"
106718        ],
106719        "x-kubernetes-action": "post",
106720        "x-kubernetes-group-version-kind": {
106721          "group": "storage.k8s.io",
106722          "kind": "CSINode",
106723          "version": "v1beta1"
106724        }
106725      }
106726    },
106727    "/apis/storage.k8s.io/v1beta1/csinodes/{name}": {
106728      "delete": {
106729        "consumes": [
106730          "*/*"
106731        ],
106732        "description": "delete a CSINode",
106733        "operationId": "deleteStorageV1beta1CSINode",
106734        "parameters": [
106735          {
106736            "in": "body",
106737            "name": "body",
106738            "schema": {
106739              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106740            }
106741          },
106742          {
106743            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106744            "in": "query",
106745            "name": "dryRun",
106746            "type": "string",
106747            "uniqueItems": true
106748          },
106749          {
106750            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
106751            "in": "query",
106752            "name": "gracePeriodSeconds",
106753            "type": "integer",
106754            "uniqueItems": true
106755          },
106756          {
106757            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
106758            "in": "query",
106759            "name": "orphanDependents",
106760            "type": "boolean",
106761            "uniqueItems": true
106762          },
106763          {
106764            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
106765            "in": "query",
106766            "name": "propagationPolicy",
106767            "type": "string",
106768            "uniqueItems": true
106769          }
106770        ],
106771        "produces": [
106772          "application/json",
106773          "application/yaml",
106774          "application/vnd.kubernetes.protobuf"
106775        ],
106776        "responses": {
106777          "200": {
106778            "description": "OK",
106779            "schema": {
106780              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106781            }
106782          },
106783          "202": {
106784            "description": "Accepted",
106785            "schema": {
106786              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106787            }
106788          },
106789          "401": {
106790            "description": "Unauthorized"
106791          }
106792        },
106793        "schemes": [
106794          "https"
106795        ],
106796        "tags": [
106797          "storage_v1beta1"
106798        ],
106799        "x-kubernetes-action": "delete",
106800        "x-kubernetes-group-version-kind": {
106801          "group": "storage.k8s.io",
106802          "kind": "CSINode",
106803          "version": "v1beta1"
106804        }
106805      },
106806      "get": {
106807        "consumes": [
106808          "*/*"
106809        ],
106810        "description": "read the specified CSINode",
106811        "operationId": "readStorageV1beta1CSINode",
106812        "produces": [
106813          "application/json",
106814          "application/yaml",
106815          "application/vnd.kubernetes.protobuf"
106816        ],
106817        "responses": {
106818          "200": {
106819            "description": "OK",
106820            "schema": {
106821              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106822            }
106823          },
106824          "401": {
106825            "description": "Unauthorized"
106826          }
106827        },
106828        "schemes": [
106829          "https"
106830        ],
106831        "tags": [
106832          "storage_v1beta1"
106833        ],
106834        "x-kubernetes-action": "get",
106835        "x-kubernetes-group-version-kind": {
106836          "group": "storage.k8s.io",
106837          "kind": "CSINode",
106838          "version": "v1beta1"
106839        }
106840      },
106841      "parameters": [
106842        {
106843          "description": "name of the CSINode",
106844          "in": "path",
106845          "name": "name",
106846          "required": true,
106847          "type": "string",
106848          "uniqueItems": true
106849        },
106850        {
106851          "description": "If 'true', then the output is pretty printed.",
106852          "in": "query",
106853          "name": "pretty",
106854          "type": "string",
106855          "uniqueItems": true
106856        }
106857      ],
106858      "patch": {
106859        "consumes": [
106860          "application/json-patch+json",
106861          "application/merge-patch+json",
106862          "application/strategic-merge-patch+json",
106863          "application/apply-patch+yaml"
106864        ],
106865        "description": "partially update the specified CSINode",
106866        "operationId": "patchStorageV1beta1CSINode",
106867        "parameters": [
106868          {
106869            "in": "body",
106870            "name": "body",
106871            "required": true,
106872            "schema": {
106873              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
106874            }
106875          },
106876          {
106877            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106878            "in": "query",
106879            "name": "dryRun",
106880            "type": "string",
106881            "uniqueItems": true
106882          },
106883          {
106884            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
106885            "in": "query",
106886            "name": "fieldManager",
106887            "type": "string",
106888            "uniqueItems": true
106889          },
106890          {
106891            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
106892            "in": "query",
106893            "name": "force",
106894            "type": "boolean",
106895            "uniqueItems": true
106896          }
106897        ],
106898        "produces": [
106899          "application/json",
106900          "application/yaml",
106901          "application/vnd.kubernetes.protobuf"
106902        ],
106903        "responses": {
106904          "200": {
106905            "description": "OK",
106906            "schema": {
106907              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106908            }
106909          },
106910          "401": {
106911            "description": "Unauthorized"
106912          }
106913        },
106914        "schemes": [
106915          "https"
106916        ],
106917        "tags": [
106918          "storage_v1beta1"
106919        ],
106920        "x-kubernetes-action": "patch",
106921        "x-kubernetes-group-version-kind": {
106922          "group": "storage.k8s.io",
106923          "kind": "CSINode",
106924          "version": "v1beta1"
106925        }
106926      },
106927      "put": {
106928        "consumes": [
106929          "*/*"
106930        ],
106931        "description": "replace the specified CSINode",
106932        "operationId": "replaceStorageV1beta1CSINode",
106933        "parameters": [
106934          {
106935            "in": "body",
106936            "name": "body",
106937            "required": true,
106938            "schema": {
106939              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106940            }
106941          },
106942          {
106943            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106944            "in": "query",
106945            "name": "dryRun",
106946            "type": "string",
106947            "uniqueItems": true
106948          },
106949          {
106950            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106951            "in": "query",
106952            "name": "fieldManager",
106953            "type": "string",
106954            "uniqueItems": true
106955          }
106956        ],
106957        "produces": [
106958          "application/json",
106959          "application/yaml",
106960          "application/vnd.kubernetes.protobuf"
106961        ],
106962        "responses": {
106963          "200": {
106964            "description": "OK",
106965            "schema": {
106966              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106967            }
106968          },
106969          "201": {
106970            "description": "Created",
106971            "schema": {
106972              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
106973            }
106974          },
106975          "401": {
106976            "description": "Unauthorized"
106977          }
106978        },
106979        "schemes": [
106980          "https"
106981        ],
106982        "tags": [
106983          "storage_v1beta1"
106984        ],
106985        "x-kubernetes-action": "put",
106986        "x-kubernetes-group-version-kind": {
106987          "group": "storage.k8s.io",
106988          "kind": "CSINode",
106989          "version": "v1beta1"
106990        }
106991      }
106992    },
106993    "/apis/storage.k8s.io/v1beta1/storageclasses": {
106994      "delete": {
106995        "consumes": [
106996          "*/*"
106997        ],
106998        "description": "delete collection of StorageClass",
106999        "operationId": "deleteStorageV1beta1CollectionStorageClass",
107000        "parameters": [
107001          {
107002            "in": "body",
107003            "name": "body",
107004            "schema": {
107005              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107006            }
107007          },
107008          {
107009            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107010            "in": "query",
107011            "name": "continue",
107012            "type": "string",
107013            "uniqueItems": true
107014          },
107015          {
107016            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107017            "in": "query",
107018            "name": "dryRun",
107019            "type": "string",
107020            "uniqueItems": true
107021          },
107022          {
107023            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107024            "in": "query",
107025            "name": "fieldSelector",
107026            "type": "string",
107027            "uniqueItems": true
107028          },
107029          {
107030            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107031            "in": "query",
107032            "name": "gracePeriodSeconds",
107033            "type": "integer",
107034            "uniqueItems": true
107035          },
107036          {
107037            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107038            "in": "query",
107039            "name": "labelSelector",
107040            "type": "string",
107041            "uniqueItems": true
107042          },
107043          {
107044            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107045            "in": "query",
107046            "name": "limit",
107047            "type": "integer",
107048            "uniqueItems": true
107049          },
107050          {
107051            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107052            "in": "query",
107053            "name": "orphanDependents",
107054            "type": "boolean",
107055            "uniqueItems": true
107056          },
107057          {
107058            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107059            "in": "query",
107060            "name": "propagationPolicy",
107061            "type": "string",
107062            "uniqueItems": true
107063          },
107064          {
107065            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107066            "in": "query",
107067            "name": "resourceVersion",
107068            "type": "string",
107069            "uniqueItems": true
107070          },
107071          {
107072            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107073            "in": "query",
107074            "name": "resourceVersionMatch",
107075            "type": "string",
107076            "uniqueItems": true
107077          },
107078          {
107079            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107080            "in": "query",
107081            "name": "timeoutSeconds",
107082            "type": "integer",
107083            "uniqueItems": true
107084          }
107085        ],
107086        "produces": [
107087          "application/json",
107088          "application/yaml",
107089          "application/vnd.kubernetes.protobuf"
107090        ],
107091        "responses": {
107092          "200": {
107093            "description": "OK",
107094            "schema": {
107095              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107096            }
107097          },
107098          "401": {
107099            "description": "Unauthorized"
107100          }
107101        },
107102        "schemes": [
107103          "https"
107104        ],
107105        "tags": [
107106          "storage_v1beta1"
107107        ],
107108        "x-kubernetes-action": "deletecollection",
107109        "x-kubernetes-group-version-kind": {
107110          "group": "storage.k8s.io",
107111          "kind": "StorageClass",
107112          "version": "v1beta1"
107113        }
107114      },
107115      "get": {
107116        "consumes": [
107117          "*/*"
107118        ],
107119        "description": "list or watch objects of kind StorageClass",
107120        "operationId": "listStorageV1beta1StorageClass",
107121        "parameters": [
107122          {
107123            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
107124            "in": "query",
107125            "name": "allowWatchBookmarks",
107126            "type": "boolean",
107127            "uniqueItems": true
107128          },
107129          {
107130            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107131            "in": "query",
107132            "name": "continue",
107133            "type": "string",
107134            "uniqueItems": true
107135          },
107136          {
107137            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107138            "in": "query",
107139            "name": "fieldSelector",
107140            "type": "string",
107141            "uniqueItems": true
107142          },
107143          {
107144            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107145            "in": "query",
107146            "name": "labelSelector",
107147            "type": "string",
107148            "uniqueItems": true
107149          },
107150          {
107151            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107152            "in": "query",
107153            "name": "limit",
107154            "type": "integer",
107155            "uniqueItems": true
107156          },
107157          {
107158            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107159            "in": "query",
107160            "name": "resourceVersion",
107161            "type": "string",
107162            "uniqueItems": true
107163          },
107164          {
107165            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107166            "in": "query",
107167            "name": "resourceVersionMatch",
107168            "type": "string",
107169            "uniqueItems": true
107170          },
107171          {
107172            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107173            "in": "query",
107174            "name": "timeoutSeconds",
107175            "type": "integer",
107176            "uniqueItems": true
107177          },
107178          {
107179            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107180            "in": "query",
107181            "name": "watch",
107182            "type": "boolean",
107183            "uniqueItems": true
107184          }
107185        ],
107186        "produces": [
107187          "application/json",
107188          "application/yaml",
107189          "application/vnd.kubernetes.protobuf",
107190          "application/json;stream=watch",
107191          "application/vnd.kubernetes.protobuf;stream=watch"
107192        ],
107193        "responses": {
107194          "200": {
107195            "description": "OK",
107196            "schema": {
107197              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClassList"
107198            }
107199          },
107200          "401": {
107201            "description": "Unauthorized"
107202          }
107203        },
107204        "schemes": [
107205          "https"
107206        ],
107207        "tags": [
107208          "storage_v1beta1"
107209        ],
107210        "x-kubernetes-action": "list",
107211        "x-kubernetes-group-version-kind": {
107212          "group": "storage.k8s.io",
107213          "kind": "StorageClass",
107214          "version": "v1beta1"
107215        }
107216      },
107217      "parameters": [
107218        {
107219          "description": "If 'true', then the output is pretty printed.",
107220          "in": "query",
107221          "name": "pretty",
107222          "type": "string",
107223          "uniqueItems": true
107224        }
107225      ],
107226      "post": {
107227        "consumes": [
107228          "*/*"
107229        ],
107230        "description": "create a StorageClass",
107231        "operationId": "createStorageV1beta1StorageClass",
107232        "parameters": [
107233          {
107234            "in": "body",
107235            "name": "body",
107236            "required": true,
107237            "schema": {
107238              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107239            }
107240          },
107241          {
107242            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107243            "in": "query",
107244            "name": "dryRun",
107245            "type": "string",
107246            "uniqueItems": true
107247          },
107248          {
107249            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107250            "in": "query",
107251            "name": "fieldManager",
107252            "type": "string",
107253            "uniqueItems": true
107254          }
107255        ],
107256        "produces": [
107257          "application/json",
107258          "application/yaml",
107259          "application/vnd.kubernetes.protobuf"
107260        ],
107261        "responses": {
107262          "200": {
107263            "description": "OK",
107264            "schema": {
107265              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107266            }
107267          },
107268          "201": {
107269            "description": "Created",
107270            "schema": {
107271              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107272            }
107273          },
107274          "202": {
107275            "description": "Accepted",
107276            "schema": {
107277              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107278            }
107279          },
107280          "401": {
107281            "description": "Unauthorized"
107282          }
107283        },
107284        "schemes": [
107285          "https"
107286        ],
107287        "tags": [
107288          "storage_v1beta1"
107289        ],
107290        "x-kubernetes-action": "post",
107291        "x-kubernetes-group-version-kind": {
107292          "group": "storage.k8s.io",
107293          "kind": "StorageClass",
107294          "version": "v1beta1"
107295        }
107296      }
107297    },
107298    "/apis/storage.k8s.io/v1beta1/storageclasses/{name}": {
107299      "delete": {
107300        "consumes": [
107301          "*/*"
107302        ],
107303        "description": "delete a StorageClass",
107304        "operationId": "deleteStorageV1beta1StorageClass",
107305        "parameters": [
107306          {
107307            "in": "body",
107308            "name": "body",
107309            "schema": {
107310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107311            }
107312          },
107313          {
107314            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107315            "in": "query",
107316            "name": "dryRun",
107317            "type": "string",
107318            "uniqueItems": true
107319          },
107320          {
107321            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107322            "in": "query",
107323            "name": "gracePeriodSeconds",
107324            "type": "integer",
107325            "uniqueItems": true
107326          },
107327          {
107328            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107329            "in": "query",
107330            "name": "orphanDependents",
107331            "type": "boolean",
107332            "uniqueItems": true
107333          },
107334          {
107335            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107336            "in": "query",
107337            "name": "propagationPolicy",
107338            "type": "string",
107339            "uniqueItems": true
107340          }
107341        ],
107342        "produces": [
107343          "application/json",
107344          "application/yaml",
107345          "application/vnd.kubernetes.protobuf"
107346        ],
107347        "responses": {
107348          "200": {
107349            "description": "OK",
107350            "schema": {
107351              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107352            }
107353          },
107354          "202": {
107355            "description": "Accepted",
107356            "schema": {
107357              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107358            }
107359          },
107360          "401": {
107361            "description": "Unauthorized"
107362          }
107363        },
107364        "schemes": [
107365          "https"
107366        ],
107367        "tags": [
107368          "storage_v1beta1"
107369        ],
107370        "x-kubernetes-action": "delete",
107371        "x-kubernetes-group-version-kind": {
107372          "group": "storage.k8s.io",
107373          "kind": "StorageClass",
107374          "version": "v1beta1"
107375        }
107376      },
107377      "get": {
107378        "consumes": [
107379          "*/*"
107380        ],
107381        "description": "read the specified StorageClass",
107382        "operationId": "readStorageV1beta1StorageClass",
107383        "produces": [
107384          "application/json",
107385          "application/yaml",
107386          "application/vnd.kubernetes.protobuf"
107387        ],
107388        "responses": {
107389          "200": {
107390            "description": "OK",
107391            "schema": {
107392              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107393            }
107394          },
107395          "401": {
107396            "description": "Unauthorized"
107397          }
107398        },
107399        "schemes": [
107400          "https"
107401        ],
107402        "tags": [
107403          "storage_v1beta1"
107404        ],
107405        "x-kubernetes-action": "get",
107406        "x-kubernetes-group-version-kind": {
107407          "group": "storage.k8s.io",
107408          "kind": "StorageClass",
107409          "version": "v1beta1"
107410        }
107411      },
107412      "parameters": [
107413        {
107414          "description": "name of the StorageClass",
107415          "in": "path",
107416          "name": "name",
107417          "required": true,
107418          "type": "string",
107419          "uniqueItems": true
107420        },
107421        {
107422          "description": "If 'true', then the output is pretty printed.",
107423          "in": "query",
107424          "name": "pretty",
107425          "type": "string",
107426          "uniqueItems": true
107427        }
107428      ],
107429      "patch": {
107430        "consumes": [
107431          "application/json-patch+json",
107432          "application/merge-patch+json",
107433          "application/strategic-merge-patch+json",
107434          "application/apply-patch+yaml"
107435        ],
107436        "description": "partially update the specified StorageClass",
107437        "operationId": "patchStorageV1beta1StorageClass",
107438        "parameters": [
107439          {
107440            "in": "body",
107441            "name": "body",
107442            "required": true,
107443            "schema": {
107444              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
107445            }
107446          },
107447          {
107448            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107449            "in": "query",
107450            "name": "dryRun",
107451            "type": "string",
107452            "uniqueItems": true
107453          },
107454          {
107455            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
107456            "in": "query",
107457            "name": "fieldManager",
107458            "type": "string",
107459            "uniqueItems": true
107460          },
107461          {
107462            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
107463            "in": "query",
107464            "name": "force",
107465            "type": "boolean",
107466            "uniqueItems": true
107467          }
107468        ],
107469        "produces": [
107470          "application/json",
107471          "application/yaml",
107472          "application/vnd.kubernetes.protobuf"
107473        ],
107474        "responses": {
107475          "200": {
107476            "description": "OK",
107477            "schema": {
107478              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107479            }
107480          },
107481          "401": {
107482            "description": "Unauthorized"
107483          }
107484        },
107485        "schemes": [
107486          "https"
107487        ],
107488        "tags": [
107489          "storage_v1beta1"
107490        ],
107491        "x-kubernetes-action": "patch",
107492        "x-kubernetes-group-version-kind": {
107493          "group": "storage.k8s.io",
107494          "kind": "StorageClass",
107495          "version": "v1beta1"
107496        }
107497      },
107498      "put": {
107499        "consumes": [
107500          "*/*"
107501        ],
107502        "description": "replace the specified StorageClass",
107503        "operationId": "replaceStorageV1beta1StorageClass",
107504        "parameters": [
107505          {
107506            "in": "body",
107507            "name": "body",
107508            "required": true,
107509            "schema": {
107510              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107511            }
107512          },
107513          {
107514            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107515            "in": "query",
107516            "name": "dryRun",
107517            "type": "string",
107518            "uniqueItems": true
107519          },
107520          {
107521            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107522            "in": "query",
107523            "name": "fieldManager",
107524            "type": "string",
107525            "uniqueItems": true
107526          }
107527        ],
107528        "produces": [
107529          "application/json",
107530          "application/yaml",
107531          "application/vnd.kubernetes.protobuf"
107532        ],
107533        "responses": {
107534          "200": {
107535            "description": "OK",
107536            "schema": {
107537              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107538            }
107539          },
107540          "201": {
107541            "description": "Created",
107542            "schema": {
107543              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
107544            }
107545          },
107546          "401": {
107547            "description": "Unauthorized"
107548          }
107549        },
107550        "schemes": [
107551          "https"
107552        ],
107553        "tags": [
107554          "storage_v1beta1"
107555        ],
107556        "x-kubernetes-action": "put",
107557        "x-kubernetes-group-version-kind": {
107558          "group": "storage.k8s.io",
107559          "kind": "StorageClass",
107560          "version": "v1beta1"
107561        }
107562      }
107563    },
107564    "/apis/storage.k8s.io/v1beta1/volumeattachments": {
107565      "delete": {
107566        "consumes": [
107567          "*/*"
107568        ],
107569        "description": "delete collection of VolumeAttachment",
107570        "operationId": "deleteStorageV1beta1CollectionVolumeAttachment",
107571        "parameters": [
107572          {
107573            "in": "body",
107574            "name": "body",
107575            "schema": {
107576              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107577            }
107578          },
107579          {
107580            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107581            "in": "query",
107582            "name": "continue",
107583            "type": "string",
107584            "uniqueItems": true
107585          },
107586          {
107587            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107588            "in": "query",
107589            "name": "dryRun",
107590            "type": "string",
107591            "uniqueItems": true
107592          },
107593          {
107594            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107595            "in": "query",
107596            "name": "fieldSelector",
107597            "type": "string",
107598            "uniqueItems": true
107599          },
107600          {
107601            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107602            "in": "query",
107603            "name": "gracePeriodSeconds",
107604            "type": "integer",
107605            "uniqueItems": true
107606          },
107607          {
107608            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107609            "in": "query",
107610            "name": "labelSelector",
107611            "type": "string",
107612            "uniqueItems": true
107613          },
107614          {
107615            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107616            "in": "query",
107617            "name": "limit",
107618            "type": "integer",
107619            "uniqueItems": true
107620          },
107621          {
107622            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107623            "in": "query",
107624            "name": "orphanDependents",
107625            "type": "boolean",
107626            "uniqueItems": true
107627          },
107628          {
107629            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107630            "in": "query",
107631            "name": "propagationPolicy",
107632            "type": "string",
107633            "uniqueItems": true
107634          },
107635          {
107636            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107637            "in": "query",
107638            "name": "resourceVersion",
107639            "type": "string",
107640            "uniqueItems": true
107641          },
107642          {
107643            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107644            "in": "query",
107645            "name": "resourceVersionMatch",
107646            "type": "string",
107647            "uniqueItems": true
107648          },
107649          {
107650            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107651            "in": "query",
107652            "name": "timeoutSeconds",
107653            "type": "integer",
107654            "uniqueItems": true
107655          }
107656        ],
107657        "produces": [
107658          "application/json",
107659          "application/yaml",
107660          "application/vnd.kubernetes.protobuf"
107661        ],
107662        "responses": {
107663          "200": {
107664            "description": "OK",
107665            "schema": {
107666              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107667            }
107668          },
107669          "401": {
107670            "description": "Unauthorized"
107671          }
107672        },
107673        "schemes": [
107674          "https"
107675        ],
107676        "tags": [
107677          "storage_v1beta1"
107678        ],
107679        "x-kubernetes-action": "deletecollection",
107680        "x-kubernetes-group-version-kind": {
107681          "group": "storage.k8s.io",
107682          "kind": "VolumeAttachment",
107683          "version": "v1beta1"
107684        }
107685      },
107686      "get": {
107687        "consumes": [
107688          "*/*"
107689        ],
107690        "description": "list or watch objects of kind VolumeAttachment",
107691        "operationId": "listStorageV1beta1VolumeAttachment",
107692        "parameters": [
107693          {
107694            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
107695            "in": "query",
107696            "name": "allowWatchBookmarks",
107697            "type": "boolean",
107698            "uniqueItems": true
107699          },
107700          {
107701            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107702            "in": "query",
107703            "name": "continue",
107704            "type": "string",
107705            "uniqueItems": true
107706          },
107707          {
107708            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107709            "in": "query",
107710            "name": "fieldSelector",
107711            "type": "string",
107712            "uniqueItems": true
107713          },
107714          {
107715            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107716            "in": "query",
107717            "name": "labelSelector",
107718            "type": "string",
107719            "uniqueItems": true
107720          },
107721          {
107722            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107723            "in": "query",
107724            "name": "limit",
107725            "type": "integer",
107726            "uniqueItems": true
107727          },
107728          {
107729            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107730            "in": "query",
107731            "name": "resourceVersion",
107732            "type": "string",
107733            "uniqueItems": true
107734          },
107735          {
107736            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
107737            "in": "query",
107738            "name": "resourceVersionMatch",
107739            "type": "string",
107740            "uniqueItems": true
107741          },
107742          {
107743            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107744            "in": "query",
107745            "name": "timeoutSeconds",
107746            "type": "integer",
107747            "uniqueItems": true
107748          },
107749          {
107750            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107751            "in": "query",
107752            "name": "watch",
107753            "type": "boolean",
107754            "uniqueItems": true
107755          }
107756        ],
107757        "produces": [
107758          "application/json",
107759          "application/yaml",
107760          "application/vnd.kubernetes.protobuf",
107761          "application/json;stream=watch",
107762          "application/vnd.kubernetes.protobuf;stream=watch"
107763        ],
107764        "responses": {
107765          "200": {
107766            "description": "OK",
107767            "schema": {
107768              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentList"
107769            }
107770          },
107771          "401": {
107772            "description": "Unauthorized"
107773          }
107774        },
107775        "schemes": [
107776          "https"
107777        ],
107778        "tags": [
107779          "storage_v1beta1"
107780        ],
107781        "x-kubernetes-action": "list",
107782        "x-kubernetes-group-version-kind": {
107783          "group": "storage.k8s.io",
107784          "kind": "VolumeAttachment",
107785          "version": "v1beta1"
107786        }
107787      },
107788      "parameters": [
107789        {
107790          "description": "If 'true', then the output is pretty printed.",
107791          "in": "query",
107792          "name": "pretty",
107793          "type": "string",
107794          "uniqueItems": true
107795        }
107796      ],
107797      "post": {
107798        "consumes": [
107799          "*/*"
107800        ],
107801        "description": "create a VolumeAttachment",
107802        "operationId": "createStorageV1beta1VolumeAttachment",
107803        "parameters": [
107804          {
107805            "in": "body",
107806            "name": "body",
107807            "required": true,
107808            "schema": {
107809              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107810            }
107811          },
107812          {
107813            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107814            "in": "query",
107815            "name": "dryRun",
107816            "type": "string",
107817            "uniqueItems": true
107818          },
107819          {
107820            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107821            "in": "query",
107822            "name": "fieldManager",
107823            "type": "string",
107824            "uniqueItems": true
107825          }
107826        ],
107827        "produces": [
107828          "application/json",
107829          "application/yaml",
107830          "application/vnd.kubernetes.protobuf"
107831        ],
107832        "responses": {
107833          "200": {
107834            "description": "OK",
107835            "schema": {
107836              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107837            }
107838          },
107839          "201": {
107840            "description": "Created",
107841            "schema": {
107842              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107843            }
107844          },
107845          "202": {
107846            "description": "Accepted",
107847            "schema": {
107848              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107849            }
107850          },
107851          "401": {
107852            "description": "Unauthorized"
107853          }
107854        },
107855        "schemes": [
107856          "https"
107857        ],
107858        "tags": [
107859          "storage_v1beta1"
107860        ],
107861        "x-kubernetes-action": "post",
107862        "x-kubernetes-group-version-kind": {
107863          "group": "storage.k8s.io",
107864          "kind": "VolumeAttachment",
107865          "version": "v1beta1"
107866        }
107867      }
107868    },
107869    "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}": {
107870      "delete": {
107871        "consumes": [
107872          "*/*"
107873        ],
107874        "description": "delete a VolumeAttachment",
107875        "operationId": "deleteStorageV1beta1VolumeAttachment",
107876        "parameters": [
107877          {
107878            "in": "body",
107879            "name": "body",
107880            "schema": {
107881              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107882            }
107883          },
107884          {
107885            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107886            "in": "query",
107887            "name": "dryRun",
107888            "type": "string",
107889            "uniqueItems": true
107890          },
107891          {
107892            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
107893            "in": "query",
107894            "name": "gracePeriodSeconds",
107895            "type": "integer",
107896            "uniqueItems": true
107897          },
107898          {
107899            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
107900            "in": "query",
107901            "name": "orphanDependents",
107902            "type": "boolean",
107903            "uniqueItems": true
107904          },
107905          {
107906            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
107907            "in": "query",
107908            "name": "propagationPolicy",
107909            "type": "string",
107910            "uniqueItems": true
107911          }
107912        ],
107913        "produces": [
107914          "application/json",
107915          "application/yaml",
107916          "application/vnd.kubernetes.protobuf"
107917        ],
107918        "responses": {
107919          "200": {
107920            "description": "OK",
107921            "schema": {
107922              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107923            }
107924          },
107925          "202": {
107926            "description": "Accepted",
107927            "schema": {
107928              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107929            }
107930          },
107931          "401": {
107932            "description": "Unauthorized"
107933          }
107934        },
107935        "schemes": [
107936          "https"
107937        ],
107938        "tags": [
107939          "storage_v1beta1"
107940        ],
107941        "x-kubernetes-action": "delete",
107942        "x-kubernetes-group-version-kind": {
107943          "group": "storage.k8s.io",
107944          "kind": "VolumeAttachment",
107945          "version": "v1beta1"
107946        }
107947      },
107948      "get": {
107949        "consumes": [
107950          "*/*"
107951        ],
107952        "description": "read the specified VolumeAttachment",
107953        "operationId": "readStorageV1beta1VolumeAttachment",
107954        "produces": [
107955          "application/json",
107956          "application/yaml",
107957          "application/vnd.kubernetes.protobuf"
107958        ],
107959        "responses": {
107960          "200": {
107961            "description": "OK",
107962            "schema": {
107963              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
107964            }
107965          },
107966          "401": {
107967            "description": "Unauthorized"
107968          }
107969        },
107970        "schemes": [
107971          "https"
107972        ],
107973        "tags": [
107974          "storage_v1beta1"
107975        ],
107976        "x-kubernetes-action": "get",
107977        "x-kubernetes-group-version-kind": {
107978          "group": "storage.k8s.io",
107979          "kind": "VolumeAttachment",
107980          "version": "v1beta1"
107981        }
107982      },
107983      "parameters": [
107984        {
107985          "description": "name of the VolumeAttachment",
107986          "in": "path",
107987          "name": "name",
107988          "required": true,
107989          "type": "string",
107990          "uniqueItems": true
107991        },
107992        {
107993          "description": "If 'true', then the output is pretty printed.",
107994          "in": "query",
107995          "name": "pretty",
107996          "type": "string",
107997          "uniqueItems": true
107998        }
107999      ],
108000      "patch": {
108001        "consumes": [
108002          "application/json-patch+json",
108003          "application/merge-patch+json",
108004          "application/strategic-merge-patch+json",
108005          "application/apply-patch+yaml"
108006        ],
108007        "description": "partially update the specified VolumeAttachment",
108008        "operationId": "patchStorageV1beta1VolumeAttachment",
108009        "parameters": [
108010          {
108011            "in": "body",
108012            "name": "body",
108013            "required": true,
108014            "schema": {
108015              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
108016            }
108017          },
108018          {
108019            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108020            "in": "query",
108021            "name": "dryRun",
108022            "type": "string",
108023            "uniqueItems": true
108024          },
108025          {
108026            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
108027            "in": "query",
108028            "name": "fieldManager",
108029            "type": "string",
108030            "uniqueItems": true
108031          },
108032          {
108033            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
108034            "in": "query",
108035            "name": "force",
108036            "type": "boolean",
108037            "uniqueItems": true
108038          }
108039        ],
108040        "produces": [
108041          "application/json",
108042          "application/yaml",
108043          "application/vnd.kubernetes.protobuf"
108044        ],
108045        "responses": {
108046          "200": {
108047            "description": "OK",
108048            "schema": {
108049              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108050            }
108051          },
108052          "401": {
108053            "description": "Unauthorized"
108054          }
108055        },
108056        "schemes": [
108057          "https"
108058        ],
108059        "tags": [
108060          "storage_v1beta1"
108061        ],
108062        "x-kubernetes-action": "patch",
108063        "x-kubernetes-group-version-kind": {
108064          "group": "storage.k8s.io",
108065          "kind": "VolumeAttachment",
108066          "version": "v1beta1"
108067        }
108068      },
108069      "put": {
108070        "consumes": [
108071          "*/*"
108072        ],
108073        "description": "replace the specified VolumeAttachment",
108074        "operationId": "replaceStorageV1beta1VolumeAttachment",
108075        "parameters": [
108076          {
108077            "in": "body",
108078            "name": "body",
108079            "required": true,
108080            "schema": {
108081              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108082            }
108083          },
108084          {
108085            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108086            "in": "query",
108087            "name": "dryRun",
108088            "type": "string",
108089            "uniqueItems": true
108090          },
108091          {
108092            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108093            "in": "query",
108094            "name": "fieldManager",
108095            "type": "string",
108096            "uniqueItems": true
108097          }
108098        ],
108099        "produces": [
108100          "application/json",
108101          "application/yaml",
108102          "application/vnd.kubernetes.protobuf"
108103        ],
108104        "responses": {
108105          "200": {
108106            "description": "OK",
108107            "schema": {
108108              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108109            }
108110          },
108111          "201": {
108112            "description": "Created",
108113            "schema": {
108114              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
108115            }
108116          },
108117          "401": {
108118            "description": "Unauthorized"
108119          }
108120        },
108121        "schemes": [
108122          "https"
108123        ],
108124        "tags": [
108125          "storage_v1beta1"
108126        ],
108127        "x-kubernetes-action": "put",
108128        "x-kubernetes-group-version-kind": {
108129          "group": "storage.k8s.io",
108130          "kind": "VolumeAttachment",
108131          "version": "v1beta1"
108132        }
108133      }
108134    },
108135    "/apis/storage.k8s.io/v1beta1/watch/csidrivers": {
108136      "get": {
108137        "consumes": [
108138          "*/*"
108139        ],
108140        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
108141        "operationId": "watchStorageV1beta1CSIDriverList",
108142        "produces": [
108143          "application/json",
108144          "application/yaml",
108145          "application/vnd.kubernetes.protobuf",
108146          "application/json;stream=watch",
108147          "application/vnd.kubernetes.protobuf;stream=watch"
108148        ],
108149        "responses": {
108150          "200": {
108151            "description": "OK",
108152            "schema": {
108153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108154            }
108155          },
108156          "401": {
108157            "description": "Unauthorized"
108158          }
108159        },
108160        "schemes": [
108161          "https"
108162        ],
108163        "tags": [
108164          "storage_v1beta1"
108165        ],
108166        "x-kubernetes-action": "watchlist",
108167        "x-kubernetes-group-version-kind": {
108168          "group": "storage.k8s.io",
108169          "kind": "CSIDriver",
108170          "version": "v1beta1"
108171        }
108172      },
108173      "parameters": [
108174        {
108175          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108176          "in": "query",
108177          "name": "allowWatchBookmarks",
108178          "type": "boolean",
108179          "uniqueItems": true
108180        },
108181        {
108182          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108183          "in": "query",
108184          "name": "continue",
108185          "type": "string",
108186          "uniqueItems": true
108187        },
108188        {
108189          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108190          "in": "query",
108191          "name": "fieldSelector",
108192          "type": "string",
108193          "uniqueItems": true
108194        },
108195        {
108196          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108197          "in": "query",
108198          "name": "labelSelector",
108199          "type": "string",
108200          "uniqueItems": true
108201        },
108202        {
108203          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108204          "in": "query",
108205          "name": "limit",
108206          "type": "integer",
108207          "uniqueItems": true
108208        },
108209        {
108210          "description": "If 'true', then the output is pretty printed.",
108211          "in": "query",
108212          "name": "pretty",
108213          "type": "string",
108214          "uniqueItems": true
108215        },
108216        {
108217          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108218          "in": "query",
108219          "name": "resourceVersion",
108220          "type": "string",
108221          "uniqueItems": true
108222        },
108223        {
108224          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108225          "in": "query",
108226          "name": "resourceVersionMatch",
108227          "type": "string",
108228          "uniqueItems": true
108229        },
108230        {
108231          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108232          "in": "query",
108233          "name": "timeoutSeconds",
108234          "type": "integer",
108235          "uniqueItems": true
108236        },
108237        {
108238          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108239          "in": "query",
108240          "name": "watch",
108241          "type": "boolean",
108242          "uniqueItems": true
108243        }
108244      ]
108245    },
108246    "/apis/storage.k8s.io/v1beta1/watch/csidrivers/{name}": {
108247      "get": {
108248        "consumes": [
108249          "*/*"
108250        ],
108251        "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.",
108252        "operationId": "watchStorageV1beta1CSIDriver",
108253        "produces": [
108254          "application/json",
108255          "application/yaml",
108256          "application/vnd.kubernetes.protobuf",
108257          "application/json;stream=watch",
108258          "application/vnd.kubernetes.protobuf;stream=watch"
108259        ],
108260        "responses": {
108261          "200": {
108262            "description": "OK",
108263            "schema": {
108264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108265            }
108266          },
108267          "401": {
108268            "description": "Unauthorized"
108269          }
108270        },
108271        "schemes": [
108272          "https"
108273        ],
108274        "tags": [
108275          "storage_v1beta1"
108276        ],
108277        "x-kubernetes-action": "watch",
108278        "x-kubernetes-group-version-kind": {
108279          "group": "storage.k8s.io",
108280          "kind": "CSIDriver",
108281          "version": "v1beta1"
108282        }
108283      },
108284      "parameters": [
108285        {
108286          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108287          "in": "query",
108288          "name": "allowWatchBookmarks",
108289          "type": "boolean",
108290          "uniqueItems": true
108291        },
108292        {
108293          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108294          "in": "query",
108295          "name": "continue",
108296          "type": "string",
108297          "uniqueItems": true
108298        },
108299        {
108300          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108301          "in": "query",
108302          "name": "fieldSelector",
108303          "type": "string",
108304          "uniqueItems": true
108305        },
108306        {
108307          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108308          "in": "query",
108309          "name": "labelSelector",
108310          "type": "string",
108311          "uniqueItems": true
108312        },
108313        {
108314          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108315          "in": "query",
108316          "name": "limit",
108317          "type": "integer",
108318          "uniqueItems": true
108319        },
108320        {
108321          "description": "name of the CSIDriver",
108322          "in": "path",
108323          "name": "name",
108324          "required": true,
108325          "type": "string",
108326          "uniqueItems": true
108327        },
108328        {
108329          "description": "If 'true', then the output is pretty printed.",
108330          "in": "query",
108331          "name": "pretty",
108332          "type": "string",
108333          "uniqueItems": true
108334        },
108335        {
108336          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108337          "in": "query",
108338          "name": "resourceVersion",
108339          "type": "string",
108340          "uniqueItems": true
108341        },
108342        {
108343          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108344          "in": "query",
108345          "name": "resourceVersionMatch",
108346          "type": "string",
108347          "uniqueItems": true
108348        },
108349        {
108350          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108351          "in": "query",
108352          "name": "timeoutSeconds",
108353          "type": "integer",
108354          "uniqueItems": true
108355        },
108356        {
108357          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108358          "in": "query",
108359          "name": "watch",
108360          "type": "boolean",
108361          "uniqueItems": true
108362        }
108363      ]
108364    },
108365    "/apis/storage.k8s.io/v1beta1/watch/csinodes": {
108366      "get": {
108367        "consumes": [
108368          "*/*"
108369        ],
108370        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
108371        "operationId": "watchStorageV1beta1CSINodeList",
108372        "produces": [
108373          "application/json",
108374          "application/yaml",
108375          "application/vnd.kubernetes.protobuf",
108376          "application/json;stream=watch",
108377          "application/vnd.kubernetes.protobuf;stream=watch"
108378        ],
108379        "responses": {
108380          "200": {
108381            "description": "OK",
108382            "schema": {
108383              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108384            }
108385          },
108386          "401": {
108387            "description": "Unauthorized"
108388          }
108389        },
108390        "schemes": [
108391          "https"
108392        ],
108393        "tags": [
108394          "storage_v1beta1"
108395        ],
108396        "x-kubernetes-action": "watchlist",
108397        "x-kubernetes-group-version-kind": {
108398          "group": "storage.k8s.io",
108399          "kind": "CSINode",
108400          "version": "v1beta1"
108401        }
108402      },
108403      "parameters": [
108404        {
108405          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108406          "in": "query",
108407          "name": "allowWatchBookmarks",
108408          "type": "boolean",
108409          "uniqueItems": true
108410        },
108411        {
108412          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108413          "in": "query",
108414          "name": "continue",
108415          "type": "string",
108416          "uniqueItems": true
108417        },
108418        {
108419          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108420          "in": "query",
108421          "name": "fieldSelector",
108422          "type": "string",
108423          "uniqueItems": true
108424        },
108425        {
108426          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108427          "in": "query",
108428          "name": "labelSelector",
108429          "type": "string",
108430          "uniqueItems": true
108431        },
108432        {
108433          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108434          "in": "query",
108435          "name": "limit",
108436          "type": "integer",
108437          "uniqueItems": true
108438        },
108439        {
108440          "description": "If 'true', then the output is pretty printed.",
108441          "in": "query",
108442          "name": "pretty",
108443          "type": "string",
108444          "uniqueItems": true
108445        },
108446        {
108447          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108448          "in": "query",
108449          "name": "resourceVersion",
108450          "type": "string",
108451          "uniqueItems": true
108452        },
108453        {
108454          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108455          "in": "query",
108456          "name": "resourceVersionMatch",
108457          "type": "string",
108458          "uniqueItems": true
108459        },
108460        {
108461          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108462          "in": "query",
108463          "name": "timeoutSeconds",
108464          "type": "integer",
108465          "uniqueItems": true
108466        },
108467        {
108468          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108469          "in": "query",
108470          "name": "watch",
108471          "type": "boolean",
108472          "uniqueItems": true
108473        }
108474      ]
108475    },
108476    "/apis/storage.k8s.io/v1beta1/watch/csinodes/{name}": {
108477      "get": {
108478        "consumes": [
108479          "*/*"
108480        ],
108481        "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.",
108482        "operationId": "watchStorageV1beta1CSINode",
108483        "produces": [
108484          "application/json",
108485          "application/yaml",
108486          "application/vnd.kubernetes.protobuf",
108487          "application/json;stream=watch",
108488          "application/vnd.kubernetes.protobuf;stream=watch"
108489        ],
108490        "responses": {
108491          "200": {
108492            "description": "OK",
108493            "schema": {
108494              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108495            }
108496          },
108497          "401": {
108498            "description": "Unauthorized"
108499          }
108500        },
108501        "schemes": [
108502          "https"
108503        ],
108504        "tags": [
108505          "storage_v1beta1"
108506        ],
108507        "x-kubernetes-action": "watch",
108508        "x-kubernetes-group-version-kind": {
108509          "group": "storage.k8s.io",
108510          "kind": "CSINode",
108511          "version": "v1beta1"
108512        }
108513      },
108514      "parameters": [
108515        {
108516          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108517          "in": "query",
108518          "name": "allowWatchBookmarks",
108519          "type": "boolean",
108520          "uniqueItems": true
108521        },
108522        {
108523          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108524          "in": "query",
108525          "name": "continue",
108526          "type": "string",
108527          "uniqueItems": true
108528        },
108529        {
108530          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108531          "in": "query",
108532          "name": "fieldSelector",
108533          "type": "string",
108534          "uniqueItems": true
108535        },
108536        {
108537          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108538          "in": "query",
108539          "name": "labelSelector",
108540          "type": "string",
108541          "uniqueItems": true
108542        },
108543        {
108544          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108545          "in": "query",
108546          "name": "limit",
108547          "type": "integer",
108548          "uniqueItems": true
108549        },
108550        {
108551          "description": "name of the CSINode",
108552          "in": "path",
108553          "name": "name",
108554          "required": true,
108555          "type": "string",
108556          "uniqueItems": true
108557        },
108558        {
108559          "description": "If 'true', then the output is pretty printed.",
108560          "in": "query",
108561          "name": "pretty",
108562          "type": "string",
108563          "uniqueItems": true
108564        },
108565        {
108566          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108567          "in": "query",
108568          "name": "resourceVersion",
108569          "type": "string",
108570          "uniqueItems": true
108571        },
108572        {
108573          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108574          "in": "query",
108575          "name": "resourceVersionMatch",
108576          "type": "string",
108577          "uniqueItems": true
108578        },
108579        {
108580          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108581          "in": "query",
108582          "name": "timeoutSeconds",
108583          "type": "integer",
108584          "uniqueItems": true
108585        },
108586        {
108587          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108588          "in": "query",
108589          "name": "watch",
108590          "type": "boolean",
108591          "uniqueItems": true
108592        }
108593      ]
108594    },
108595    "/apis/storage.k8s.io/v1beta1/watch/storageclasses": {
108596      "get": {
108597        "consumes": [
108598          "*/*"
108599        ],
108600        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
108601        "operationId": "watchStorageV1beta1StorageClassList",
108602        "produces": [
108603          "application/json",
108604          "application/yaml",
108605          "application/vnd.kubernetes.protobuf",
108606          "application/json;stream=watch",
108607          "application/vnd.kubernetes.protobuf;stream=watch"
108608        ],
108609        "responses": {
108610          "200": {
108611            "description": "OK",
108612            "schema": {
108613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108614            }
108615          },
108616          "401": {
108617            "description": "Unauthorized"
108618          }
108619        },
108620        "schemes": [
108621          "https"
108622        ],
108623        "tags": [
108624          "storage_v1beta1"
108625        ],
108626        "x-kubernetes-action": "watchlist",
108627        "x-kubernetes-group-version-kind": {
108628          "group": "storage.k8s.io",
108629          "kind": "StorageClass",
108630          "version": "v1beta1"
108631        }
108632      },
108633      "parameters": [
108634        {
108635          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108636          "in": "query",
108637          "name": "allowWatchBookmarks",
108638          "type": "boolean",
108639          "uniqueItems": true
108640        },
108641        {
108642          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108643          "in": "query",
108644          "name": "continue",
108645          "type": "string",
108646          "uniqueItems": true
108647        },
108648        {
108649          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108650          "in": "query",
108651          "name": "fieldSelector",
108652          "type": "string",
108653          "uniqueItems": true
108654        },
108655        {
108656          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108657          "in": "query",
108658          "name": "labelSelector",
108659          "type": "string",
108660          "uniqueItems": true
108661        },
108662        {
108663          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108664          "in": "query",
108665          "name": "limit",
108666          "type": "integer",
108667          "uniqueItems": true
108668        },
108669        {
108670          "description": "If 'true', then the output is pretty printed.",
108671          "in": "query",
108672          "name": "pretty",
108673          "type": "string",
108674          "uniqueItems": true
108675        },
108676        {
108677          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108678          "in": "query",
108679          "name": "resourceVersion",
108680          "type": "string",
108681          "uniqueItems": true
108682        },
108683        {
108684          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108685          "in": "query",
108686          "name": "resourceVersionMatch",
108687          "type": "string",
108688          "uniqueItems": true
108689        },
108690        {
108691          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108692          "in": "query",
108693          "name": "timeoutSeconds",
108694          "type": "integer",
108695          "uniqueItems": true
108696        },
108697        {
108698          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108699          "in": "query",
108700          "name": "watch",
108701          "type": "boolean",
108702          "uniqueItems": true
108703        }
108704      ]
108705    },
108706    "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}": {
108707      "get": {
108708        "consumes": [
108709          "*/*"
108710        ],
108711        "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.",
108712        "operationId": "watchStorageV1beta1StorageClass",
108713        "produces": [
108714          "application/json",
108715          "application/yaml",
108716          "application/vnd.kubernetes.protobuf",
108717          "application/json;stream=watch",
108718          "application/vnd.kubernetes.protobuf;stream=watch"
108719        ],
108720        "responses": {
108721          "200": {
108722            "description": "OK",
108723            "schema": {
108724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108725            }
108726          },
108727          "401": {
108728            "description": "Unauthorized"
108729          }
108730        },
108731        "schemes": [
108732          "https"
108733        ],
108734        "tags": [
108735          "storage_v1beta1"
108736        ],
108737        "x-kubernetes-action": "watch",
108738        "x-kubernetes-group-version-kind": {
108739          "group": "storage.k8s.io",
108740          "kind": "StorageClass",
108741          "version": "v1beta1"
108742        }
108743      },
108744      "parameters": [
108745        {
108746          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108747          "in": "query",
108748          "name": "allowWatchBookmarks",
108749          "type": "boolean",
108750          "uniqueItems": true
108751        },
108752        {
108753          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108754          "in": "query",
108755          "name": "continue",
108756          "type": "string",
108757          "uniqueItems": true
108758        },
108759        {
108760          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108761          "in": "query",
108762          "name": "fieldSelector",
108763          "type": "string",
108764          "uniqueItems": true
108765        },
108766        {
108767          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108768          "in": "query",
108769          "name": "labelSelector",
108770          "type": "string",
108771          "uniqueItems": true
108772        },
108773        {
108774          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108775          "in": "query",
108776          "name": "limit",
108777          "type": "integer",
108778          "uniqueItems": true
108779        },
108780        {
108781          "description": "name of the StorageClass",
108782          "in": "path",
108783          "name": "name",
108784          "required": true,
108785          "type": "string",
108786          "uniqueItems": true
108787        },
108788        {
108789          "description": "If 'true', then the output is pretty printed.",
108790          "in": "query",
108791          "name": "pretty",
108792          "type": "string",
108793          "uniqueItems": true
108794        },
108795        {
108796          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108797          "in": "query",
108798          "name": "resourceVersion",
108799          "type": "string",
108800          "uniqueItems": true
108801        },
108802        {
108803          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108804          "in": "query",
108805          "name": "resourceVersionMatch",
108806          "type": "string",
108807          "uniqueItems": true
108808        },
108809        {
108810          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108811          "in": "query",
108812          "name": "timeoutSeconds",
108813          "type": "integer",
108814          "uniqueItems": true
108815        },
108816        {
108817          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108818          "in": "query",
108819          "name": "watch",
108820          "type": "boolean",
108821          "uniqueItems": true
108822        }
108823      ]
108824    },
108825    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments": {
108826      "get": {
108827        "consumes": [
108828          "*/*"
108829        ],
108830        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
108831        "operationId": "watchStorageV1beta1VolumeAttachmentList",
108832        "produces": [
108833          "application/json",
108834          "application/yaml",
108835          "application/vnd.kubernetes.protobuf",
108836          "application/json;stream=watch",
108837          "application/vnd.kubernetes.protobuf;stream=watch"
108838        ],
108839        "responses": {
108840          "200": {
108841            "description": "OK",
108842            "schema": {
108843              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108844            }
108845          },
108846          "401": {
108847            "description": "Unauthorized"
108848          }
108849        },
108850        "schemes": [
108851          "https"
108852        ],
108853        "tags": [
108854          "storage_v1beta1"
108855        ],
108856        "x-kubernetes-action": "watchlist",
108857        "x-kubernetes-group-version-kind": {
108858          "group": "storage.k8s.io",
108859          "kind": "VolumeAttachment",
108860          "version": "v1beta1"
108861        }
108862      },
108863      "parameters": [
108864        {
108865          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108866          "in": "query",
108867          "name": "allowWatchBookmarks",
108868          "type": "boolean",
108869          "uniqueItems": true
108870        },
108871        {
108872          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108873          "in": "query",
108874          "name": "continue",
108875          "type": "string",
108876          "uniqueItems": true
108877        },
108878        {
108879          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108880          "in": "query",
108881          "name": "fieldSelector",
108882          "type": "string",
108883          "uniqueItems": true
108884        },
108885        {
108886          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108887          "in": "query",
108888          "name": "labelSelector",
108889          "type": "string",
108890          "uniqueItems": true
108891        },
108892        {
108893          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108894          "in": "query",
108895          "name": "limit",
108896          "type": "integer",
108897          "uniqueItems": true
108898        },
108899        {
108900          "description": "If 'true', then the output is pretty printed.",
108901          "in": "query",
108902          "name": "pretty",
108903          "type": "string",
108904          "uniqueItems": true
108905        },
108906        {
108907          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108908          "in": "query",
108909          "name": "resourceVersion",
108910          "type": "string",
108911          "uniqueItems": true
108912        },
108913        {
108914          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
108915          "in": "query",
108916          "name": "resourceVersionMatch",
108917          "type": "string",
108918          "uniqueItems": true
108919        },
108920        {
108921          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108922          "in": "query",
108923          "name": "timeoutSeconds",
108924          "type": "integer",
108925          "uniqueItems": true
108926        },
108927        {
108928          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108929          "in": "query",
108930          "name": "watch",
108931          "type": "boolean",
108932          "uniqueItems": true
108933        }
108934      ]
108935    },
108936    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments/{name}": {
108937      "get": {
108938        "consumes": [
108939          "*/*"
108940        ],
108941        "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.",
108942        "operationId": "watchStorageV1beta1VolumeAttachment",
108943        "produces": [
108944          "application/json",
108945          "application/yaml",
108946          "application/vnd.kubernetes.protobuf",
108947          "application/json;stream=watch",
108948          "application/vnd.kubernetes.protobuf;stream=watch"
108949        ],
108950        "responses": {
108951          "200": {
108952            "description": "OK",
108953            "schema": {
108954              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
108955            }
108956          },
108957          "401": {
108958            "description": "Unauthorized"
108959          }
108960        },
108961        "schemes": [
108962          "https"
108963        ],
108964        "tags": [
108965          "storage_v1beta1"
108966        ],
108967        "x-kubernetes-action": "watch",
108968        "x-kubernetes-group-version-kind": {
108969          "group": "storage.k8s.io",
108970          "kind": "VolumeAttachment",
108971          "version": "v1beta1"
108972        }
108973      },
108974      "parameters": [
108975        {
108976          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
108977          "in": "query",
108978          "name": "allowWatchBookmarks",
108979          "type": "boolean",
108980          "uniqueItems": true
108981        },
108982        {
108983          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108984          "in": "query",
108985          "name": "continue",
108986          "type": "string",
108987          "uniqueItems": true
108988        },
108989        {
108990          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108991          "in": "query",
108992          "name": "fieldSelector",
108993          "type": "string",
108994          "uniqueItems": true
108995        },
108996        {
108997          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108998          "in": "query",
108999          "name": "labelSelector",
109000          "type": "string",
109001          "uniqueItems": true
109002        },
109003        {
109004          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109005          "in": "query",
109006          "name": "limit",
109007          "type": "integer",
109008          "uniqueItems": true
109009        },
109010        {
109011          "description": "name of the VolumeAttachment",
109012          "in": "path",
109013          "name": "name",
109014          "required": true,
109015          "type": "string",
109016          "uniqueItems": true
109017        },
109018        {
109019          "description": "If 'true', then the output is pretty printed.",
109020          "in": "query",
109021          "name": "pretty",
109022          "type": "string",
109023          "uniqueItems": true
109024        },
109025        {
109026          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
109027          "in": "query",
109028          "name": "resourceVersion",
109029          "type": "string",
109030          "uniqueItems": true
109031        },
109032        {
109033          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
109034          "in": "query",
109035          "name": "resourceVersionMatch",
109036          "type": "string",
109037          "uniqueItems": true
109038        },
109039        {
109040          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109041          "in": "query",
109042          "name": "timeoutSeconds",
109043          "type": "integer",
109044          "uniqueItems": true
109045        },
109046        {
109047          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109048          "in": "query",
109049          "name": "watch",
109050          "type": "boolean",
109051          "uniqueItems": true
109052        }
109053      ]
109054    },
109055    "/logs/": {
109056      "get": {
109057        "operationId": "logFileListHandler",
109058        "responses": {
109059          "401": {
109060            "description": "Unauthorized"
109061          }
109062        },
109063        "schemes": [
109064          "https"
109065        ],
109066        "tags": [
109067          "logs"
109068        ]
109069      }
109070    },
109071    "/logs/{logpath}": {
109072      "get": {
109073        "operationId": "logFileHandler",
109074        "responses": {
109075          "401": {
109076            "description": "Unauthorized"
109077          }
109078        },
109079        "schemes": [
109080          "https"
109081        ],
109082        "tags": [
109083          "logs"
109084        ]
109085      },
109086      "parameters": [
109087        {
109088          "description": "path to the log",
109089          "in": "path",
109090          "name": "logpath",
109091          "required": true,
109092          "type": "string",
109093          "uniqueItems": true
109094        }
109095      ]
109096    },
109097    "/openid/v1/jwks/": {
109098      "get": {
109099        "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)",
109100        "operationId": "getServiceAccountIssuerOpenIDKeyset",
109101        "produces": [
109102          "application/jwk-set+json"
109103        ],
109104        "responses": {
109105          "200": {
109106            "description": "OK",
109107            "schema": {
109108              "type": "string"
109109            }
109110          },
109111          "401": {
109112            "description": "Unauthorized"
109113          }
109114        },
109115        "schemes": [
109116          "https"
109117        ],
109118        "tags": [
109119          "openid"
109120        ]
109121      }
109122    },
109123    "/version/": {
109124      "get": {
109125        "consumes": [
109126          "application/json"
109127        ],
109128        "description": "get the code version",
109129        "operationId": "getCodeVersion",
109130        "produces": [
109131          "application/json"
109132        ],
109133        "responses": {
109134          "200": {
109135            "description": "OK",
109136            "schema": {
109137              "$ref": "#/definitions/io.k8s.apimachinery.pkg.version.Info"
109138            }
109139          },
109140          "401": {
109141            "description": "Unauthorized"
109142          }
109143        },
109144        "schemes": [
109145          "https"
109146        ],
109147        "tags": [
109148          "version"
109149        ]
109150      }
109151    }
109152  },
109153  "security": [
109154    {
109155      "BearerToken": []
109156    }
109157  ],
109158  "securityDefinitions": {
109159    "BearerToken": {
109160      "description": "Bearer Token authentication",
109161      "in": "header",
109162      "name": "authorization",
109163      "type": "apiKey"
109164    }
109165  },
109166  "swagger": "2.0"
109167}
109168