1{
2 "components": {
3 "schemas": {
4 "io.k8s.api.authentication.v1.BoundObjectReference": {
5 "description": "BoundObjectReference is a reference to an object that a token is bound to.",
6 "properties": {
7 "apiVersion": {
8 "description": "API version of the referent.",
9 "type": "string"
10 },
11 "kind": {
12 "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
13 "type": "string"
14 },
15 "name": {
16 "description": "Name of the referent.",
17 "type": "string"
18 },
19 "uid": {
20 "description": "UID of the referent.",
21 "type": "string"
22 }
23 },
24 "type": "object"
25 },
26 "io.k8s.api.authentication.v1.TokenRequest": {
27 "description": "TokenRequest requests a token for a given service account.",
28 "properties": {
29 "apiVersion": {
30 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
31 "type": "string"
32 },
33 "kind": {
34 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
35 "type": "string"
36 },
37 "metadata": {
38 "allOf": [
39 {
40 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
41 }
42 ],
43 "default": {},
44 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
45 },
46 "spec": {
47 "allOf": [
48 {
49 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequestSpec"
50 }
51 ],
52 "default": {},
53 "description": "Spec holds information about the request being evaluated"
54 },
55 "status": {
56 "allOf": [
57 {
58 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequestStatus"
59 }
60 ],
61 "default": {},
62 "description": "Status is filled in by the server and indicates whether the token can be authenticated."
63 }
64 },
65 "required": [
66 "spec"
67 ],
68 "type": "object",
69 "x-kubernetes-group-version-kind": [
70 {
71 "group": "authentication.k8s.io",
72 "kind": "TokenRequest",
73 "version": "v1"
74 }
75 ]
76 },
77 "io.k8s.api.authentication.v1.TokenRequestSpec": {
78 "description": "TokenRequestSpec contains client provided parameters of a token request.",
79 "properties": {
80 "audiences": {
81 "description": "Audiences are the intendend audiences of the token. A recipient of a token must identify 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.",
82 "items": {
83 "default": "",
84 "type": "string"
85 },
86 "type": "array",
87 "x-kubernetes-list-type": "atomic"
88 },
89 "boundObjectRef": {
90 "allOf": [
91 {
92 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.BoundObjectReference"
93 }
94 ],
95 "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."
96 },
97 "expirationSeconds": {
98 "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.",
99 "format": "int64",
100 "type": "integer"
101 }
102 },
103 "required": [
104 "audiences"
105 ],
106 "type": "object"
107 },
108 "io.k8s.api.authentication.v1.TokenRequestStatus": {
109 "description": "TokenRequestStatus is the result of a token request.",
110 "properties": {
111 "expirationTimestamp": {
112 "allOf": [
113 {
114 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
115 }
116 ],
117 "description": "ExpirationTimestamp is the time of expiration of the returned token."
118 },
119 "token": {
120 "default": "",
121 "description": "Token is the opaque bearer token.",
122 "type": "string"
123 }
124 },
125 "required": [
126 "token",
127 "expirationTimestamp"
128 ],
129 "type": "object"
130 },
131 "io.k8s.api.autoscaling.v1.Scale": {
132 "description": "Scale represents a scaling request for a resource.",
133 "properties": {
134 "apiVersion": {
135 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
136 "type": "string"
137 },
138 "kind": {
139 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
140 "type": "string"
141 },
142 "metadata": {
143 "allOf": [
144 {
145 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
146 }
147 ],
148 "default": {},
149 "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
150 },
151 "spec": {
152 "allOf": [
153 {
154 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleSpec"
155 }
156 ],
157 "default": {},
158 "description": "spec defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
159 },
160 "status": {
161 "allOf": [
162 {
163 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleStatus"
164 }
165 ],
166 "default": {},
167 "description": "status is the current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only."
168 }
169 },
170 "type": "object",
171 "x-kubernetes-group-version-kind": [
172 {
173 "group": "autoscaling",
174 "kind": "Scale",
175 "version": "v1"
176 }
177 ]
178 },
179 "io.k8s.api.autoscaling.v1.ScaleSpec": {
180 "description": "ScaleSpec describes the attributes of a scale subresource.",
181 "properties": {
182 "replicas": {
183 "description": "replicas is the desired number of instances for the scaled object.",
184 "format": "int32",
185 "type": "integer"
186 }
187 },
188 "type": "object"
189 },
190 "io.k8s.api.autoscaling.v1.ScaleStatus": {
191 "description": "ScaleStatus represents the current status of a scale subresource.",
192 "properties": {
193 "replicas": {
194 "default": 0,
195 "description": "replicas is the actual number of observed instances of the scaled object.",
196 "format": "int32",
197 "type": "integer"
198 },
199 "selector": {
200 "description": "selector is the 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: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/",
201 "type": "string"
202 }
203 },
204 "required": [
205 "replicas"
206 ],
207 "type": "object"
208 },
209 "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
210 "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.",
211 "properties": {
212 "fsType": {
213 "description": "fsType is the 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",
214 "type": "string"
215 },
216 "partition": {
217 "description": "partition is 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).",
218 "format": "int32",
219 "type": "integer"
220 },
221 "readOnly": {
222 "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
223 "type": "boolean"
224 },
225 "volumeID": {
226 "default": "",
227 "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
228 "type": "string"
229 }
230 },
231 "required": [
232 "volumeID"
233 ],
234 "type": "object"
235 },
236 "io.k8s.api.core.v1.Affinity": {
237 "description": "Affinity is a group of affinity scheduling rules.",
238 "properties": {
239 "nodeAffinity": {
240 "allOf": [
241 {
242 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeAffinity"
243 }
244 ],
245 "description": "Describes node affinity scheduling rules for the pod."
246 },
247 "podAffinity": {
248 "allOf": [
249 {
250 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinity"
251 }
252 ],
253 "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
254 },
255 "podAntiAffinity": {
256 "allOf": [
257 {
258 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAntiAffinity"
259 }
260 ],
261 "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
262 }
263 },
264 "type": "object"
265 },
266 "io.k8s.api.core.v1.AppArmorProfile": {
267 "description": "AppArmorProfile defines a pod or container's AppArmor settings.",
268 "properties": {
269 "localhostProfile": {
270 "description": "localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is \"Localhost\".",
271 "type": "string"
272 },
273 "type": {
274 "default": "",
275 "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n Localhost - a profile pre-loaded on the node.\n RuntimeDefault - the container runtime's default profile.\n Unconfined - no AppArmor enforcement.",
276 "type": "string"
277 }
278 },
279 "required": [
280 "type"
281 ],
282 "type": "object",
283 "x-kubernetes-unions": [
284 {
285 "discriminator": "type",
286 "fields-to-discriminateBy": {
287 "localhostProfile": "LocalhostProfile"
288 }
289 }
290 ]
291 },
292 "io.k8s.api.core.v1.AttachedVolume": {
293 "description": "AttachedVolume describes a volume attached to a node",
294 "properties": {
295 "devicePath": {
296 "default": "",
297 "description": "DevicePath represents the device path where the volume should be available",
298 "type": "string"
299 },
300 "name": {
301 "default": "",
302 "description": "Name of the attached volume",
303 "type": "string"
304 }
305 },
306 "required": [
307 "name",
308 "devicePath"
309 ],
310 "type": "object"
311 },
312 "io.k8s.api.core.v1.AzureDiskVolumeSource": {
313 "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
314 "properties": {
315 "cachingMode": {
316 "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
317 "type": "string"
318 },
319 "diskName": {
320 "default": "",
321 "description": "diskName is the Name of the data disk in the blob storage",
322 "type": "string"
323 },
324 "diskURI": {
325 "default": "",
326 "description": "diskURI is the URI of data disk in the blob storage",
327 "type": "string"
328 },
329 "fsType": {
330 "description": "fsType is 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.",
331 "type": "string"
332 },
333 "kind": {
334 "description": "kind expected values are 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",
335 "type": "string"
336 },
337 "readOnly": {
338 "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
339 "type": "boolean"
340 }
341 },
342 "required": [
343 "diskName",
344 "diskURI"
345 ],
346 "type": "object"
347 },
348 "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": {
349 "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
350 "properties": {
351 "readOnly": {
352 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
353 "type": "boolean"
354 },
355 "secretName": {
356 "default": "",
357 "description": "secretName is the name of secret that contains Azure Storage Account Name and Key",
358 "type": "string"
359 },
360 "secretNamespace": {
361 "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
362 "type": "string"
363 },
364 "shareName": {
365 "default": "",
366 "description": "shareName is the azure Share Name",
367 "type": "string"
368 }
369 },
370 "required": [
371 "secretName",
372 "shareName"
373 ],
374 "type": "object"
375 },
376 "io.k8s.api.core.v1.AzureFileVolumeSource": {
377 "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
378 "properties": {
379 "readOnly": {
380 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
381 "type": "boolean"
382 },
383 "secretName": {
384 "default": "",
385 "description": "secretName is the name of secret that contains Azure Storage Account Name and Key",
386 "type": "string"
387 },
388 "shareName": {
389 "default": "",
390 "description": "shareName is the azure share Name",
391 "type": "string"
392 }
393 },
394 "required": [
395 "secretName",
396 "shareName"
397 ],
398 "type": "object"
399 },
400 "io.k8s.api.core.v1.Binding": {
401 "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.",
402 "properties": {
403 "apiVersion": {
404 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
405 "type": "string"
406 },
407 "kind": {
408 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
409 "type": "string"
410 },
411 "metadata": {
412 "allOf": [
413 {
414 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
415 }
416 ],
417 "default": {},
418 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
419 },
420 "target": {
421 "allOf": [
422 {
423 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
424 }
425 ],
426 "default": {},
427 "description": "The target object that you want to bind to the standard object."
428 }
429 },
430 "required": [
431 "target"
432 ],
433 "type": "object",
434 "x-kubernetes-group-version-kind": [
435 {
436 "group": "",
437 "kind": "Binding",
438 "version": "v1"
439 }
440 ]
441 },
442 "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
443 "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
444 "properties": {
445 "controllerExpandSecretRef": {
446 "allOf": [
447 {
448 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
449 }
450 ],
451 "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 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."
452 },
453 "controllerPublishSecretRef": {
454 "allOf": [
455 {
456 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
457 }
458 ],
459 "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."
460 },
461 "driver": {
462 "default": "",
463 "description": "driver is the name of the driver to use for this volume. Required.",
464 "type": "string"
465 },
466 "fsType": {
467 "description": "fsType to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
468 "type": "string"
469 },
470 "nodeExpandSecretRef": {
471 "allOf": [
472 {
473 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
474 }
475 ],
476 "description": "nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call. This field is optional, may be omitted if no secret is required. If the secret object contains more than one secret, all secrets are passed."
477 },
478 "nodePublishSecretRef": {
479 "allOf": [
480 {
481 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
482 }
483 ],
484 "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."
485 },
486 "nodeStageSecretRef": {
487 "allOf": [
488 {
489 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
490 }
491 ],
492 "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."
493 },
494 "readOnly": {
495 "description": "readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
496 "type": "boolean"
497 },
498 "volumeAttributes": {
499 "additionalProperties": {
500 "default": "",
501 "type": "string"
502 },
503 "description": "volumeAttributes of the volume to publish.",
504 "type": "object"
505 },
506 "volumeHandle": {
507 "default": "",
508 "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.",
509 "type": "string"
510 }
511 },
512 "required": [
513 "driver",
514 "volumeHandle"
515 ],
516 "type": "object"
517 },
518 "io.k8s.api.core.v1.CSIVolumeSource": {
519 "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
520 "properties": {
521 "driver": {
522 "default": "",
523 "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.",
524 "type": "string"
525 },
526 "fsType": {
527 "description": "fsType 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.",
528 "type": "string"
529 },
530 "nodePublishSecretRef": {
531 "allOf": [
532 {
533 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
534 }
535 ],
536 "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."
537 },
538 "readOnly": {
539 "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).",
540 "type": "boolean"
541 },
542 "volumeAttributes": {
543 "additionalProperties": {
544 "default": "",
545 "type": "string"
546 },
547 "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
548 "type": "object"
549 }
550 },
551 "required": [
552 "driver"
553 ],
554 "type": "object"
555 },
556 "io.k8s.api.core.v1.Capabilities": {
557 "description": "Adds and removes POSIX capabilities from running containers.",
558 "properties": {
559 "add": {
560 "description": "Added capabilities",
561 "items": {
562 "default": "",
563 "type": "string"
564 },
565 "type": "array",
566 "x-kubernetes-list-type": "atomic"
567 },
568 "drop": {
569 "description": "Removed capabilities",
570 "items": {
571 "default": "",
572 "type": "string"
573 },
574 "type": "array",
575 "x-kubernetes-list-type": "atomic"
576 }
577 },
578 "type": "object"
579 },
580 "io.k8s.api.core.v1.CephFSPersistentVolumeSource": {
581 "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
582 "properties": {
583 "monitors": {
584 "description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
585 "items": {
586 "default": "",
587 "type": "string"
588 },
589 "type": "array",
590 "x-kubernetes-list-type": "atomic"
591 },
592 "path": {
593 "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
594 "type": "string"
595 },
596 "readOnly": {
597 "description": "readOnly is 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",
598 "type": "boolean"
599 },
600 "secretFile": {
601 "description": "secretFile is 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",
602 "type": "string"
603 },
604 "secretRef": {
605 "allOf": [
606 {
607 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
608 }
609 ],
610 "description": "secretRef is 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"
611 },
612 "user": {
613 "description": "user is Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
614 "type": "string"
615 }
616 },
617 "required": [
618 "monitors"
619 ],
620 "type": "object"
621 },
622 "io.k8s.api.core.v1.CephFSVolumeSource": {
623 "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
624 "properties": {
625 "monitors": {
626 "description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
627 "items": {
628 "default": "",
629 "type": "string"
630 },
631 "type": "array",
632 "x-kubernetes-list-type": "atomic"
633 },
634 "path": {
635 "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
636 "type": "string"
637 },
638 "readOnly": {
639 "description": "readOnly is 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",
640 "type": "boolean"
641 },
642 "secretFile": {
643 "description": "secretFile is 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",
644 "type": "string"
645 },
646 "secretRef": {
647 "allOf": [
648 {
649 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
650 }
651 ],
652 "description": "secretRef is 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"
653 },
654 "user": {
655 "description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
656 "type": "string"
657 }
658 },
659 "required": [
660 "monitors"
661 ],
662 "type": "object"
663 },
664 "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
665 "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.",
666 "properties": {
667 "fsType": {
668 "description": "fsType 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",
669 "type": "string"
670 },
671 "readOnly": {
672 "description": "readOnly is 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",
673 "type": "boolean"
674 },
675 "secretRef": {
676 "allOf": [
677 {
678 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
679 }
680 ],
681 "description": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack."
682 },
683 "volumeID": {
684 "default": "",
685 "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
686 "type": "string"
687 }
688 },
689 "required": [
690 "volumeID"
691 ],
692 "type": "object"
693 },
694 "io.k8s.api.core.v1.CinderVolumeSource": {
695 "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.",
696 "properties": {
697 "fsType": {
698 "description": "fsType is the 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",
699 "type": "string"
700 },
701 "readOnly": {
702 "description": "readOnly 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",
703 "type": "boolean"
704 },
705 "secretRef": {
706 "allOf": [
707 {
708 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
709 }
710 ],
711 "description": "secretRef is optional: points to a secret object containing parameters used to connect to OpenStack."
712 },
713 "volumeID": {
714 "default": "",
715 "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
716 "type": "string"
717 }
718 },
719 "required": [
720 "volumeID"
721 ],
722 "type": "object"
723 },
724 "io.k8s.api.core.v1.ClaimSource": {
725 "description": "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.",
726 "properties": {
727 "resourceClaimName": {
728 "description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.",
729 "type": "string"
730 },
731 "resourceClaimTemplateName": {
732 "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.",
733 "type": "string"
734 }
735 },
736 "type": "object"
737 },
738 "io.k8s.api.core.v1.ClientIPConfig": {
739 "description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
740 "properties": {
741 "timeoutSeconds": {
742 "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).",
743 "format": "int32",
744 "type": "integer"
745 }
746 },
747 "type": "object"
748 },
749 "io.k8s.api.core.v1.ClusterTrustBundleProjection": {
750 "description": "ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.",
751 "properties": {
752 "labelSelector": {
753 "allOf": [
754 {
755 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
756 }
757 ],
758 "description": "Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as \"match nothing\". If set but empty, interpreted as \"match everything\"."
759 },
760 "name": {
761 "description": "Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.",
762 "type": "string"
763 },
764 "optional": {
765 "description": "If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.",
766 "type": "boolean"
767 },
768 "path": {
769 "default": "",
770 "description": "Relative path from the volume root to write the bundle.",
771 "type": "string"
772 },
773 "signerName": {
774 "description": "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.",
775 "type": "string"
776 }
777 },
778 "required": [
779 "path"
780 ],
781 "type": "object"
782 },
783 "io.k8s.api.core.v1.ComponentCondition": {
784 "description": "Information about the condition of a component.",
785 "properties": {
786 "error": {
787 "description": "Condition error code for a component. For example, a health check error code.",
788 "type": "string"
789 },
790 "message": {
791 "description": "Message about the condition for a component. For example, information about a health check.",
792 "type": "string"
793 },
794 "status": {
795 "default": "",
796 "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
797 "type": "string"
798 },
799 "type": {
800 "default": "",
801 "description": "Type of condition for a component. Valid value: \"Healthy\"",
802 "type": "string"
803 }
804 },
805 "required": [
806 "type",
807 "status"
808 ],
809 "type": "object"
810 },
811 "io.k8s.api.core.v1.ComponentStatus": {
812 "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+",
813 "properties": {
814 "apiVersion": {
815 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
816 "type": "string"
817 },
818 "conditions": {
819 "description": "List of component conditions observed",
820 "items": {
821 "allOf": [
822 {
823 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentCondition"
824 }
825 ],
826 "default": {}
827 },
828 "type": "array",
829 "x-kubernetes-list-map-keys": [
830 "type"
831 ],
832 "x-kubernetes-list-type": "map",
833 "x-kubernetes-patch-merge-key": "type",
834 "x-kubernetes-patch-strategy": "merge"
835 },
836 "kind": {
837 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
838 "type": "string"
839 },
840 "metadata": {
841 "allOf": [
842 {
843 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
844 }
845 ],
846 "default": {},
847 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
848 }
849 },
850 "type": "object",
851 "x-kubernetes-group-version-kind": [
852 {
853 "group": "",
854 "kind": "ComponentStatus",
855 "version": "v1"
856 }
857 ]
858 },
859 "io.k8s.api.core.v1.ComponentStatusList": {
860 "description": "Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+",
861 "properties": {
862 "apiVersion": {
863 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
864 "type": "string"
865 },
866 "items": {
867 "description": "List of ComponentStatus objects.",
868 "items": {
869 "allOf": [
870 {
871 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus"
872 }
873 ],
874 "default": {}
875 },
876 "type": "array"
877 },
878 "kind": {
879 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
880 "type": "string"
881 },
882 "metadata": {
883 "allOf": [
884 {
885 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
886 }
887 ],
888 "default": {},
889 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
890 }
891 },
892 "required": [
893 "items"
894 ],
895 "type": "object",
896 "x-kubernetes-group-version-kind": [
897 {
898 "group": "",
899 "kind": "ComponentStatusList",
900 "version": "v1"
901 }
902 ]
903 },
904 "io.k8s.api.core.v1.ConfigMap": {
905 "description": "ConfigMap holds configuration data for pods to consume.",
906 "properties": {
907 "apiVersion": {
908 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
909 "type": "string"
910 },
911 "binaryData": {
912 "additionalProperties": {
913 "format": "byte",
914 "type": "string"
915 },
916 "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.",
917 "type": "object"
918 },
919 "data": {
920 "additionalProperties": {
921 "default": "",
922 "type": "string"
923 },
924 "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.",
925 "type": "object"
926 },
927 "immutable": {
928 "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.",
929 "type": "boolean"
930 },
931 "kind": {
932 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
933 "type": "string"
934 },
935 "metadata": {
936 "allOf": [
937 {
938 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
939 }
940 ],
941 "default": {},
942 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
943 }
944 },
945 "type": "object",
946 "x-kubernetes-group-version-kind": [
947 {
948 "group": "",
949 "kind": "ConfigMap",
950 "version": "v1"
951 }
952 ]
953 },
954 "io.k8s.api.core.v1.ConfigMapEnvSource": {
955 "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.",
956 "properties": {
957 "name": {
958 "default": "",
959 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
960 "type": "string"
961 },
962 "optional": {
963 "description": "Specify whether the ConfigMap must be defined",
964 "type": "boolean"
965 }
966 },
967 "type": "object"
968 },
969 "io.k8s.api.core.v1.ConfigMapKeySelector": {
970 "description": "Selects a key from a ConfigMap.",
971 "properties": {
972 "key": {
973 "default": "",
974 "description": "The key to select.",
975 "type": "string"
976 },
977 "name": {
978 "default": "",
979 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
980 "type": "string"
981 },
982 "optional": {
983 "description": "Specify whether the ConfigMap or its key must be defined",
984 "type": "boolean"
985 }
986 },
987 "required": [
988 "key"
989 ],
990 "type": "object",
991 "x-kubernetes-map-type": "atomic"
992 },
993 "io.k8s.api.core.v1.ConfigMapList": {
994 "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
995 "properties": {
996 "apiVersion": {
997 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
998 "type": "string"
999 },
1000 "items": {
1001 "description": "Items is the list of ConfigMaps.",
1002 "items": {
1003 "allOf": [
1004 {
1005 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
1006 }
1007 ],
1008 "default": {}
1009 },
1010 "type": "array"
1011 },
1012 "kind": {
1013 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1014 "type": "string"
1015 },
1016 "metadata": {
1017 "allOf": [
1018 {
1019 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1020 }
1021 ],
1022 "default": {},
1023 "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1024 }
1025 },
1026 "required": [
1027 "items"
1028 ],
1029 "type": "object",
1030 "x-kubernetes-group-version-kind": [
1031 {
1032 "group": "",
1033 "kind": "ConfigMapList",
1034 "version": "v1"
1035 }
1036 ]
1037 },
1038 "io.k8s.api.core.v1.ConfigMapNodeConfigSource": {
1039 "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration",
1040 "properties": {
1041 "kubeletConfigKey": {
1042 "default": "",
1043 "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.",
1044 "type": "string"
1045 },
1046 "name": {
1047 "default": "",
1048 "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
1049 "type": "string"
1050 },
1051 "namespace": {
1052 "default": "",
1053 "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
1054 "type": "string"
1055 },
1056 "resourceVersion": {
1057 "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
1058 "type": "string"
1059 },
1060 "uid": {
1061 "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
1062 "type": "string"
1063 }
1064 },
1065 "required": [
1066 "namespace",
1067 "name",
1068 "kubeletConfigKey"
1069 ],
1070 "type": "object"
1071 },
1072 "io.k8s.api.core.v1.ConfigMapProjection": {
1073 "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.",
1074 "properties": {
1075 "items": {
1076 "description": "items 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 '..'.",
1077 "items": {
1078 "allOf": [
1079 {
1080 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath"
1081 }
1082 ],
1083 "default": {}
1084 },
1085 "type": "array",
1086 "x-kubernetes-list-type": "atomic"
1087 },
1088 "name": {
1089 "default": "",
1090 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
1091 "type": "string"
1092 },
1093 "optional": {
1094 "description": "optional specify whether the ConfigMap or its keys must be defined",
1095 "type": "boolean"
1096 }
1097 },
1098 "type": "object"
1099 },
1100 "io.k8s.api.core.v1.ConfigMapVolumeSource": {
1101 "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.",
1102 "properties": {
1103 "defaultMode": {
1104 "description": "defaultMode is 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.",
1105 "format": "int32",
1106 "type": "integer"
1107 },
1108 "items": {
1109 "description": "items 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 '..'.",
1110 "items": {
1111 "allOf": [
1112 {
1113 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath"
1114 }
1115 ],
1116 "default": {}
1117 },
1118 "type": "array",
1119 "x-kubernetes-list-type": "atomic"
1120 },
1121 "name": {
1122 "default": "",
1123 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
1124 "type": "string"
1125 },
1126 "optional": {
1127 "description": "optional specify whether the ConfigMap or its keys must be defined",
1128 "type": "boolean"
1129 }
1130 },
1131 "type": "object"
1132 },
1133 "io.k8s.api.core.v1.Container": {
1134 "description": "A single application container that you want to run within a pod.",
1135 "properties": {
1136 "args": {
1137 "description": "Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
1138 "items": {
1139 "default": "",
1140 "type": "string"
1141 },
1142 "type": "array",
1143 "x-kubernetes-list-type": "atomic"
1144 },
1145 "command": {
1146 "description": "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
1147 "items": {
1148 "default": "",
1149 "type": "string"
1150 },
1151 "type": "array",
1152 "x-kubernetes-list-type": "atomic"
1153 },
1154 "env": {
1155 "description": "List of environment variables to set in the container. Cannot be updated.",
1156 "items": {
1157 "allOf": [
1158 {
1159 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar"
1160 }
1161 ],
1162 "default": {}
1163 },
1164 "type": "array",
1165 "x-kubernetes-list-map-keys": [
1166 "name"
1167 ],
1168 "x-kubernetes-list-type": "map",
1169 "x-kubernetes-patch-merge-key": "name",
1170 "x-kubernetes-patch-strategy": "merge"
1171 },
1172 "envFrom": {
1173 "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.",
1174 "items": {
1175 "allOf": [
1176 {
1177 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource"
1178 }
1179 ],
1180 "default": {}
1181 },
1182 "type": "array",
1183 "x-kubernetes-list-type": "atomic"
1184 },
1185 "image": {
1186 "description": "Container 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.",
1187 "type": "string"
1188 },
1189 "imagePullPolicy": {
1190 "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",
1191 "type": "string"
1192 },
1193 "lifecycle": {
1194 "allOf": [
1195 {
1196 "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle"
1197 }
1198 ],
1199 "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
1200 },
1201 "livenessProbe": {
1202 "allOf": [
1203 {
1204 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
1205 }
1206 ],
1207 "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"
1208 },
1209 "name": {
1210 "default": "",
1211 "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.",
1212 "type": "string"
1213 },
1214 "ports": {
1215 "description": "List of ports to expose from the container. 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. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.",
1216 "items": {
1217 "allOf": [
1218 {
1219 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort"
1220 }
1221 ],
1222 "default": {}
1223 },
1224 "type": "array",
1225 "x-kubernetes-list-map-keys": [
1226 "containerPort",
1227 "protocol"
1228 ],
1229 "x-kubernetes-list-type": "map",
1230 "x-kubernetes-patch-merge-key": "containerPort",
1231 "x-kubernetes-patch-strategy": "merge"
1232 },
1233 "readinessProbe": {
1234 "allOf": [
1235 {
1236 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
1237 }
1238 ],
1239 "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"
1240 },
1241 "resizePolicy": {
1242 "description": "Resources resize policy for the container.",
1243 "items": {
1244 "allOf": [
1245 {
1246 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerResizePolicy"
1247 }
1248 ],
1249 "default": {}
1250 },
1251 "type": "array",
1252 "x-kubernetes-list-type": "atomic"
1253 },
1254 "resources": {
1255 "allOf": [
1256 {
1257 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
1258 }
1259 ],
1260 "default": {},
1261 "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
1262 },
1263 "restartPolicy": {
1264 "description": "RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \"Always\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \"Always\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \"Always\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \"sidecar\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.",
1265 "type": "string"
1266 },
1267 "securityContext": {
1268 "allOf": [
1269 {
1270 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext"
1271 }
1272 ],
1273 "description": "SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
1274 },
1275 "startupProbe": {
1276 "allOf": [
1277 {
1278 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
1279 }
1280 ],
1281 "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"
1282 },
1283 "stdin": {
1284 "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.",
1285 "type": "boolean"
1286 },
1287 "stdinOnce": {
1288 "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",
1289 "type": "boolean"
1290 },
1291 "terminationMessagePath": {
1292 "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.",
1293 "type": "string"
1294 },
1295 "terminationMessagePolicy": {
1296 "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.",
1297 "type": "string"
1298 },
1299 "tty": {
1300 "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
1301 "type": "boolean"
1302 },
1303 "volumeDevices": {
1304 "description": "volumeDevices is the list of block devices to be used by the container.",
1305 "items": {
1306 "allOf": [
1307 {
1308 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice"
1309 }
1310 ],
1311 "default": {}
1312 },
1313 "type": "array",
1314 "x-kubernetes-list-map-keys": [
1315 "devicePath"
1316 ],
1317 "x-kubernetes-list-type": "map",
1318 "x-kubernetes-patch-merge-key": "devicePath",
1319 "x-kubernetes-patch-strategy": "merge"
1320 },
1321 "volumeMounts": {
1322 "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
1323 "items": {
1324 "allOf": [
1325 {
1326 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount"
1327 }
1328 ],
1329 "default": {}
1330 },
1331 "type": "array",
1332 "x-kubernetes-list-map-keys": [
1333 "mountPath"
1334 ],
1335 "x-kubernetes-list-type": "map",
1336 "x-kubernetes-patch-merge-key": "mountPath",
1337 "x-kubernetes-patch-strategy": "merge"
1338 },
1339 "workingDir": {
1340 "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.",
1341 "type": "string"
1342 }
1343 },
1344 "required": [
1345 "name"
1346 ],
1347 "type": "object"
1348 },
1349 "io.k8s.api.core.v1.ContainerImage": {
1350 "description": "Describe a container image",
1351 "properties": {
1352 "names": {
1353 "description": "Names by which this image is known. e.g. [\"kubernetes.example/hyperkube:v1.0.7\", \"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7\"]",
1354 "items": {
1355 "default": "",
1356 "type": "string"
1357 },
1358 "type": "array",
1359 "x-kubernetes-list-type": "atomic"
1360 },
1361 "sizeBytes": {
1362 "description": "The size of the image in bytes.",
1363 "format": "int64",
1364 "type": "integer"
1365 }
1366 },
1367 "type": "object"
1368 },
1369 "io.k8s.api.core.v1.ContainerPort": {
1370 "description": "ContainerPort represents a network port in a single container.",
1371 "properties": {
1372 "containerPort": {
1373 "default": 0,
1374 "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
1375 "format": "int32",
1376 "type": "integer"
1377 },
1378 "hostIP": {
1379 "description": "What host IP to bind the external port to.",
1380 "type": "string"
1381 },
1382 "hostPort": {
1383 "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.",
1384 "format": "int32",
1385 "type": "integer"
1386 },
1387 "name": {
1388 "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.",
1389 "type": "string"
1390 },
1391 "protocol": {
1392 "default": "TCP",
1393 "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
1394 "type": "string"
1395 }
1396 },
1397 "required": [
1398 "containerPort"
1399 ],
1400 "type": "object"
1401 },
1402 "io.k8s.api.core.v1.ContainerResizePolicy": {
1403 "description": "ContainerResizePolicy represents resource resize policy for the container.",
1404 "properties": {
1405 "resourceName": {
1406 "default": "",
1407 "description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.",
1408 "type": "string"
1409 },
1410 "restartPolicy": {
1411 "default": "",
1412 "description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.",
1413 "type": "string"
1414 }
1415 },
1416 "required": [
1417 "resourceName",
1418 "restartPolicy"
1419 ],
1420 "type": "object"
1421 },
1422 "io.k8s.api.core.v1.ContainerState": {
1423 "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.",
1424 "properties": {
1425 "running": {
1426 "allOf": [
1427 {
1428 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateRunning"
1429 }
1430 ],
1431 "description": "Details about a running container"
1432 },
1433 "terminated": {
1434 "allOf": [
1435 {
1436 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateTerminated"
1437 }
1438 ],
1439 "description": "Details about a terminated container"
1440 },
1441 "waiting": {
1442 "allOf": [
1443 {
1444 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateWaiting"
1445 }
1446 ],
1447 "description": "Details about a waiting container"
1448 }
1449 },
1450 "type": "object"
1451 },
1452 "io.k8s.api.core.v1.ContainerStateRunning": {
1453 "description": "ContainerStateRunning is a running state of a container.",
1454 "properties": {
1455 "startedAt": {
1456 "allOf": [
1457 {
1458 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1459 }
1460 ],
1461 "description": "Time at which the container was last (re-)started"
1462 }
1463 },
1464 "type": "object"
1465 },
1466 "io.k8s.api.core.v1.ContainerStateTerminated": {
1467 "description": "ContainerStateTerminated is a terminated state of a container.",
1468 "properties": {
1469 "containerID": {
1470 "description": "Container's ID in the format '<type>://<container_id>'",
1471 "type": "string"
1472 },
1473 "exitCode": {
1474 "default": 0,
1475 "description": "Exit status from the last termination of the container",
1476 "format": "int32",
1477 "type": "integer"
1478 },
1479 "finishedAt": {
1480 "allOf": [
1481 {
1482 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1483 }
1484 ],
1485 "description": "Time at which the container last terminated"
1486 },
1487 "message": {
1488 "description": "Message regarding the last termination of the container",
1489 "type": "string"
1490 },
1491 "reason": {
1492 "description": "(brief) reason from the last termination of the container",
1493 "type": "string"
1494 },
1495 "signal": {
1496 "description": "Signal from the last termination of the container",
1497 "format": "int32",
1498 "type": "integer"
1499 },
1500 "startedAt": {
1501 "allOf": [
1502 {
1503 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1504 }
1505 ],
1506 "description": "Time at which previous execution of the container started"
1507 }
1508 },
1509 "required": [
1510 "exitCode"
1511 ],
1512 "type": "object"
1513 },
1514 "io.k8s.api.core.v1.ContainerStateWaiting": {
1515 "description": "ContainerStateWaiting is a waiting state of a container.",
1516 "properties": {
1517 "message": {
1518 "description": "Message regarding why the container is not yet running.",
1519 "type": "string"
1520 },
1521 "reason": {
1522 "description": "(brief) reason the container is not yet running.",
1523 "type": "string"
1524 }
1525 },
1526 "type": "object"
1527 },
1528 "io.k8s.api.core.v1.ContainerStatus": {
1529 "description": "ContainerStatus contains details for the current status of this container.",
1530 "properties": {
1531 "allocatedResources": {
1532 "additionalProperties": {
1533 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
1534 },
1535 "description": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.",
1536 "type": "object"
1537 },
1538 "containerID": {
1539 "description": "ContainerID is the ID of the container in the format '<type>://<container_id>'. Where type is a container runtime identifier, returned from Version call of CRI API (for example \"containerd\").",
1540 "type": "string"
1541 },
1542 "image": {
1543 "default": "",
1544 "description": "Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.",
1545 "type": "string"
1546 },
1547 "imageID": {
1548 "default": "",
1549 "description": "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.",
1550 "type": "string"
1551 },
1552 "lastState": {
1553 "allOf": [
1554 {
1555 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerState"
1556 }
1557 ],
1558 "default": {},
1559 "description": "LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0."
1560 },
1561 "name": {
1562 "default": "",
1563 "description": "Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.",
1564 "type": "string"
1565 },
1566 "ready": {
1567 "default": false,
1568 "description": "Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field).\n\nThe value is typically used to determine whether a container is ready to accept traffic.",
1569 "type": "boolean"
1570 },
1571 "resources": {
1572 "allOf": [
1573 {
1574 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
1575 }
1576 ],
1577 "description": "Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized."
1578 },
1579 "restartCount": {
1580 "default": 0,
1581 "description": "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.",
1582 "format": "int32",
1583 "type": "integer"
1584 },
1585 "started": {
1586 "description": "Started indicates whether the container has finished its postStart lifecycle hook and 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. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.",
1587 "type": "boolean"
1588 },
1589 "state": {
1590 "allOf": [
1591 {
1592 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerState"
1593 }
1594 ],
1595 "default": {},
1596 "description": "State holds details about the container's current condition."
1597 },
1598 "volumeMounts": {
1599 "description": "Status of volume mounts.",
1600 "items": {
1601 "allOf": [
1602 {
1603 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMountStatus"
1604 }
1605 ],
1606 "default": {}
1607 },
1608 "type": "array",
1609 "x-kubernetes-list-map-keys": [
1610 "mountPath"
1611 ],
1612 "x-kubernetes-list-type": "map",
1613 "x-kubernetes-patch-merge-key": "mountPath",
1614 "x-kubernetes-patch-strategy": "merge"
1615 }
1616 },
1617 "required": [
1618 "name",
1619 "ready",
1620 "restartCount",
1621 "image",
1622 "imageID"
1623 ],
1624 "type": "object"
1625 },
1626 "io.k8s.api.core.v1.DaemonEndpoint": {
1627 "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
1628 "properties": {
1629 "Port": {
1630 "default": 0,
1631 "description": "Port number of the given endpoint.",
1632 "format": "int32",
1633 "type": "integer"
1634 }
1635 },
1636 "required": [
1637 "Port"
1638 ],
1639 "type": "object"
1640 },
1641 "io.k8s.api.core.v1.DownwardAPIProjection": {
1642 "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.",
1643 "properties": {
1644 "items": {
1645 "description": "Items is a list of DownwardAPIVolume file",
1646 "items": {
1647 "allOf": [
1648 {
1649 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile"
1650 }
1651 ],
1652 "default": {}
1653 },
1654 "type": "array",
1655 "x-kubernetes-list-type": "atomic"
1656 }
1657 },
1658 "type": "object"
1659 },
1660 "io.k8s.api.core.v1.DownwardAPIVolumeFile": {
1661 "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
1662 "properties": {
1663 "fieldRef": {
1664 "allOf": [
1665 {
1666 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector"
1667 }
1668 ],
1669 "description": "Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported."
1670 },
1671 "mode": {
1672 "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.",
1673 "format": "int32",
1674 "type": "integer"
1675 },
1676 "path": {
1677 "default": "",
1678 "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 '..'",
1679 "type": "string"
1680 },
1681 "resourceFieldRef": {
1682 "allOf": [
1683 {
1684 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector"
1685 }
1686 ],
1687 "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
1688 }
1689 },
1690 "required": [
1691 "path"
1692 ],
1693 "type": "object"
1694 },
1695 "io.k8s.api.core.v1.DownwardAPIVolumeSource": {
1696 "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
1697 "properties": {
1698 "defaultMode": {
1699 "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.",
1700 "format": "int32",
1701 "type": "integer"
1702 },
1703 "items": {
1704 "description": "Items is a list of downward API volume file",
1705 "items": {
1706 "allOf": [
1707 {
1708 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile"
1709 }
1710 ],
1711 "default": {}
1712 },
1713 "type": "array",
1714 "x-kubernetes-list-type": "atomic"
1715 }
1716 },
1717 "type": "object"
1718 },
1719 "io.k8s.api.core.v1.EmptyDirVolumeSource": {
1720 "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
1721 "properties": {
1722 "medium": {
1723 "description": "medium represents 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",
1724 "type": "string"
1725 },
1726 "sizeLimit": {
1727 "allOf": [
1728 {
1729 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
1730 }
1731 ],
1732 "description": "sizeLimit is the 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: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
1733 }
1734 },
1735 "type": "object"
1736 },
1737 "io.k8s.api.core.v1.EndpointAddress": {
1738 "description": "EndpointAddress is a tuple that describes single IP address.",
1739 "properties": {
1740 "hostname": {
1741 "description": "The Hostname of this endpoint",
1742 "type": "string"
1743 },
1744 "ip": {
1745 "default": "",
1746 "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).",
1747 "type": "string"
1748 },
1749 "nodeName": {
1750 "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
1751 "type": "string"
1752 },
1753 "targetRef": {
1754 "allOf": [
1755 {
1756 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
1757 }
1758 ],
1759 "description": "Reference to object providing the endpoint."
1760 }
1761 },
1762 "required": [
1763 "ip"
1764 ],
1765 "type": "object",
1766 "x-kubernetes-map-type": "atomic"
1767 },
1768 "io.k8s.api.core.v1.EndpointPort": {
1769 "description": "EndpointPort is a tuple that describes a single port.",
1770 "properties": {
1771 "appProtocol": {
1772 "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.",
1773 "type": "string"
1774 },
1775 "name": {
1776 "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.",
1777 "type": "string"
1778 },
1779 "port": {
1780 "default": 0,
1781 "description": "The port number of the endpoint.",
1782 "format": "int32",
1783 "type": "integer"
1784 },
1785 "protocol": {
1786 "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
1787 "type": "string"
1788 }
1789 },
1790 "required": [
1791 "port"
1792 ],
1793 "type": "object",
1794 "x-kubernetes-map-type": "atomic"
1795 },
1796 "io.k8s.api.core.v1.EndpointSubset": {
1797 "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\t{\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t}\n\nThe resulting set of endpoints can be viewed as:\n\n\ta: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n\tb: [ 10.10.1.1:309, 10.10.2.2:309 ]",
1798 "properties": {
1799 "addresses": {
1800 "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.",
1801 "items": {
1802 "allOf": [
1803 {
1804 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointAddress"
1805 }
1806 ],
1807 "default": {}
1808 },
1809 "type": "array",
1810 "x-kubernetes-list-type": "atomic"
1811 },
1812 "notReadyAddresses": {
1813 "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.",
1814 "items": {
1815 "allOf": [
1816 {
1817 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointAddress"
1818 }
1819 ],
1820 "default": {}
1821 },
1822 "type": "array",
1823 "x-kubernetes-list-type": "atomic"
1824 },
1825 "ports": {
1826 "description": "Port numbers available on the related IP addresses.",
1827 "items": {
1828 "allOf": [
1829 {
1830 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointPort"
1831 }
1832 ],
1833 "default": {}
1834 },
1835 "type": "array",
1836 "x-kubernetes-list-type": "atomic"
1837 }
1838 },
1839 "type": "object"
1840 },
1841 "io.k8s.api.core.v1.Endpoints": {
1842 "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n\n\t Name: \"mysvc\",\n\t Subsets: [\n\t {\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t },\n\t {\n\t Addresses: [{\"ip\": \"10.10.3.3\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n\t },\n\t]",
1843 "properties": {
1844 "apiVersion": {
1845 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1846 "type": "string"
1847 },
1848 "kind": {
1849 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1850 "type": "string"
1851 },
1852 "metadata": {
1853 "allOf": [
1854 {
1855 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1856 }
1857 ],
1858 "default": {},
1859 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1860 },
1861 "subsets": {
1862 "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.",
1863 "items": {
1864 "allOf": [
1865 {
1866 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointSubset"
1867 }
1868 ],
1869 "default": {}
1870 },
1871 "type": "array",
1872 "x-kubernetes-list-type": "atomic"
1873 }
1874 },
1875 "type": "object",
1876 "x-kubernetes-group-version-kind": [
1877 {
1878 "group": "",
1879 "kind": "Endpoints",
1880 "version": "v1"
1881 }
1882 ]
1883 },
1884 "io.k8s.api.core.v1.EndpointsList": {
1885 "description": "EndpointsList is a list of endpoints.",
1886 "properties": {
1887 "apiVersion": {
1888 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1889 "type": "string"
1890 },
1891 "items": {
1892 "description": "List of endpoints.",
1893 "items": {
1894 "allOf": [
1895 {
1896 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
1897 }
1898 ],
1899 "default": {}
1900 },
1901 "type": "array"
1902 },
1903 "kind": {
1904 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1905 "type": "string"
1906 },
1907 "metadata": {
1908 "allOf": [
1909 {
1910 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1911 }
1912 ],
1913 "default": {},
1914 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
1915 }
1916 },
1917 "required": [
1918 "items"
1919 ],
1920 "type": "object",
1921 "x-kubernetes-group-version-kind": [
1922 {
1923 "group": "",
1924 "kind": "EndpointsList",
1925 "version": "v1"
1926 }
1927 ]
1928 },
1929 "io.k8s.api.core.v1.EnvFromSource": {
1930 "description": "EnvFromSource represents the source of a set of ConfigMaps",
1931 "properties": {
1932 "configMapRef": {
1933 "allOf": [
1934 {
1935 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapEnvSource"
1936 }
1937 ],
1938 "description": "The ConfigMap to select from"
1939 },
1940 "prefix": {
1941 "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
1942 "type": "string"
1943 },
1944 "secretRef": {
1945 "allOf": [
1946 {
1947 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretEnvSource"
1948 }
1949 ],
1950 "description": "The Secret to select from"
1951 }
1952 },
1953 "type": "object"
1954 },
1955 "io.k8s.api.core.v1.EnvVar": {
1956 "description": "EnvVar represents an environment variable present in a Container.",
1957 "properties": {
1958 "name": {
1959 "default": "",
1960 "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
1961 "type": "string"
1962 },
1963 "value": {
1964 "description": "Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
1965 "type": "string"
1966 },
1967 "valueFrom": {
1968 "allOf": [
1969 {
1970 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVarSource"
1971 }
1972 ],
1973 "description": "Source for the environment variable's value. Cannot be used if value is not empty."
1974 }
1975 },
1976 "required": [
1977 "name"
1978 ],
1979 "type": "object"
1980 },
1981 "io.k8s.api.core.v1.EnvVarSource": {
1982 "description": "EnvVarSource represents a source for the value of an EnvVar.",
1983 "properties": {
1984 "configMapKeyRef": {
1985 "allOf": [
1986 {
1987 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapKeySelector"
1988 }
1989 ],
1990 "description": "Selects a key of a ConfigMap."
1991 },
1992 "fieldRef": {
1993 "allOf": [
1994 {
1995 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector"
1996 }
1997 ],
1998 "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."
1999 },
2000 "resourceFieldRef": {
2001 "allOf": [
2002 {
2003 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector"
2004 }
2005 ],
2006 "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."
2007 },
2008 "secretKeyRef": {
2009 "allOf": [
2010 {
2011 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretKeySelector"
2012 }
2013 ],
2014 "description": "Selects a key of a secret in the pod's namespace"
2015 }
2016 },
2017 "type": "object"
2018 },
2019 "io.k8s.api.core.v1.EphemeralContainer": {
2020 "description": "An EphemeralContainer is a temporary container that you may add 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. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.\n\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.",
2021 "properties": {
2022 "args": {
2023 "description": "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
2024 "items": {
2025 "default": "",
2026 "type": "string"
2027 },
2028 "type": "array",
2029 "x-kubernetes-list-type": "atomic"
2030 },
2031 "command": {
2032 "description": "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
2033 "items": {
2034 "default": "",
2035 "type": "string"
2036 },
2037 "type": "array",
2038 "x-kubernetes-list-type": "atomic"
2039 },
2040 "env": {
2041 "description": "List of environment variables to set in the container. Cannot be updated.",
2042 "items": {
2043 "allOf": [
2044 {
2045 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar"
2046 }
2047 ],
2048 "default": {}
2049 },
2050 "type": "array",
2051 "x-kubernetes-list-map-keys": [
2052 "name"
2053 ],
2054 "x-kubernetes-list-type": "map",
2055 "x-kubernetes-patch-merge-key": "name",
2056 "x-kubernetes-patch-strategy": "merge"
2057 },
2058 "envFrom": {
2059 "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.",
2060 "items": {
2061 "allOf": [
2062 {
2063 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource"
2064 }
2065 ],
2066 "default": {}
2067 },
2068 "type": "array",
2069 "x-kubernetes-list-type": "atomic"
2070 },
2071 "image": {
2072 "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images",
2073 "type": "string"
2074 },
2075 "imagePullPolicy": {
2076 "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",
2077 "type": "string"
2078 },
2079 "lifecycle": {
2080 "allOf": [
2081 {
2082 "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle"
2083 }
2084 ],
2085 "description": "Lifecycle is not allowed for ephemeral containers."
2086 },
2087 "livenessProbe": {
2088 "allOf": [
2089 {
2090 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
2091 }
2092 ],
2093 "description": "Probes are not allowed for ephemeral containers."
2094 },
2095 "name": {
2096 "default": "",
2097 "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
2098 "type": "string"
2099 },
2100 "ports": {
2101 "description": "Ports are not allowed for ephemeral containers.",
2102 "items": {
2103 "allOf": [
2104 {
2105 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort"
2106 }
2107 ],
2108 "default": {}
2109 },
2110 "type": "array",
2111 "x-kubernetes-list-map-keys": [
2112 "containerPort",
2113 "protocol"
2114 ],
2115 "x-kubernetes-list-type": "map",
2116 "x-kubernetes-patch-merge-key": "containerPort",
2117 "x-kubernetes-patch-strategy": "merge"
2118 },
2119 "readinessProbe": {
2120 "allOf": [
2121 {
2122 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
2123 }
2124 ],
2125 "description": "Probes are not allowed for ephemeral containers."
2126 },
2127 "resizePolicy": {
2128 "description": "Resources resize policy for the container.",
2129 "items": {
2130 "allOf": [
2131 {
2132 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerResizePolicy"
2133 }
2134 ],
2135 "default": {}
2136 },
2137 "type": "array",
2138 "x-kubernetes-list-type": "atomic"
2139 },
2140 "resources": {
2141 "allOf": [
2142 {
2143 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements"
2144 }
2145 ],
2146 "default": {},
2147 "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
2148 },
2149 "restartPolicy": {
2150 "description": "Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers.",
2151 "type": "string"
2152 },
2153 "securityContext": {
2154 "allOf": [
2155 {
2156 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext"
2157 }
2158 ],
2159 "description": "Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext."
2160 },
2161 "startupProbe": {
2162 "allOf": [
2163 {
2164 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
2165 }
2166 ],
2167 "description": "Probes are not allowed for ephemeral containers."
2168 },
2169 "stdin": {
2170 "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.",
2171 "type": "boolean"
2172 },
2173 "stdinOnce": {
2174 "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",
2175 "type": "boolean"
2176 },
2177 "targetContainerName": {
2178 "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 uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.",
2179 "type": "string"
2180 },
2181 "terminationMessagePath": {
2182 "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.",
2183 "type": "string"
2184 },
2185 "terminationMessagePolicy": {
2186 "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.",
2187 "type": "string"
2188 },
2189 "tty": {
2190 "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
2191 "type": "boolean"
2192 },
2193 "volumeDevices": {
2194 "description": "volumeDevices is the list of block devices to be used by the container.",
2195 "items": {
2196 "allOf": [
2197 {
2198 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice"
2199 }
2200 ],
2201 "default": {}
2202 },
2203 "type": "array",
2204 "x-kubernetes-list-map-keys": [
2205 "devicePath"
2206 ],
2207 "x-kubernetes-list-type": "map",
2208 "x-kubernetes-patch-merge-key": "devicePath",
2209 "x-kubernetes-patch-strategy": "merge"
2210 },
2211 "volumeMounts": {
2212 "description": "Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.",
2213 "items": {
2214 "allOf": [
2215 {
2216 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount"
2217 }
2218 ],
2219 "default": {}
2220 },
2221 "type": "array",
2222 "x-kubernetes-list-map-keys": [
2223 "mountPath"
2224 ],
2225 "x-kubernetes-list-type": "map",
2226 "x-kubernetes-patch-merge-key": "mountPath",
2227 "x-kubernetes-patch-strategy": "merge"
2228 },
2229 "workingDir": {
2230 "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.",
2231 "type": "string"
2232 }
2233 },
2234 "required": [
2235 "name"
2236 ],
2237 "type": "object"
2238 },
2239 "io.k8s.api.core.v1.EphemeralVolumeSource": {
2240 "description": "Represents an ephemeral volume that is handled by a normal storage driver.",
2241 "properties": {
2242 "volumeClaimTemplate": {
2243 "allOf": [
2244 {
2245 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimTemplate"
2246 }
2247 ],
2248 "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."
2249 }
2250 },
2251 "type": "object"
2252 },
2253 "io.k8s.api.core.v1.Event": {
2254 "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.",
2255 "properties": {
2256 "action": {
2257 "description": "What action was taken/failed regarding to the Regarding object.",
2258 "type": "string"
2259 },
2260 "apiVersion": {
2261 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2262 "type": "string"
2263 },
2264 "count": {
2265 "description": "The number of times this event has occurred.",
2266 "format": "int32",
2267 "type": "integer"
2268 },
2269 "eventTime": {
2270 "allOf": [
2271 {
2272 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
2273 }
2274 ],
2275 "description": "Time when this Event was first observed."
2276 },
2277 "firstTimestamp": {
2278 "allOf": [
2279 {
2280 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
2281 }
2282 ],
2283 "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)"
2284 },
2285 "involvedObject": {
2286 "allOf": [
2287 {
2288 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
2289 }
2290 ],
2291 "default": {},
2292 "description": "The object that this event is about."
2293 },
2294 "kind": {
2295 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2296 "type": "string"
2297 },
2298 "lastTimestamp": {
2299 "allOf": [
2300 {
2301 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
2302 }
2303 ],
2304 "description": "The time at which the most recent occurrence of this event was recorded."
2305 },
2306 "message": {
2307 "description": "A human-readable description of the status of this operation.",
2308 "type": "string"
2309 },
2310 "metadata": {
2311 "allOf": [
2312 {
2313 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2314 }
2315 ],
2316 "default": {},
2317 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2318 },
2319 "reason": {
2320 "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
2321 "type": "string"
2322 },
2323 "related": {
2324 "allOf": [
2325 {
2326 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
2327 }
2328 ],
2329 "description": "Optional secondary object for more complex actions."
2330 },
2331 "reportingComponent": {
2332 "default": "",
2333 "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
2334 "type": "string"
2335 },
2336 "reportingInstance": {
2337 "default": "",
2338 "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
2339 "type": "string"
2340 },
2341 "series": {
2342 "allOf": [
2343 {
2344 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventSeries"
2345 }
2346 ],
2347 "description": "Data about the Event series this event represents or nil if it's a singleton Event."
2348 },
2349 "source": {
2350 "allOf": [
2351 {
2352 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventSource"
2353 }
2354 ],
2355 "default": {},
2356 "description": "The component reporting this event. Should be a short machine understandable string."
2357 },
2358 "type": {
2359 "description": "Type of this event (Normal, Warning), new types could be added in the future",
2360 "type": "string"
2361 }
2362 },
2363 "required": [
2364 "metadata",
2365 "involvedObject"
2366 ],
2367 "type": "object",
2368 "x-kubernetes-group-version-kind": [
2369 {
2370 "group": "",
2371 "kind": "Event",
2372 "version": "v1"
2373 }
2374 ]
2375 },
2376 "io.k8s.api.core.v1.EventList": {
2377 "description": "EventList is a list of events.",
2378 "properties": {
2379 "apiVersion": {
2380 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2381 "type": "string"
2382 },
2383 "items": {
2384 "description": "List of events",
2385 "items": {
2386 "allOf": [
2387 {
2388 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
2389 }
2390 ],
2391 "default": {}
2392 },
2393 "type": "array"
2394 },
2395 "kind": {
2396 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2397 "type": "string"
2398 },
2399 "metadata": {
2400 "allOf": [
2401 {
2402 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
2403 }
2404 ],
2405 "default": {},
2406 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
2407 }
2408 },
2409 "required": [
2410 "items"
2411 ],
2412 "type": "object",
2413 "x-kubernetes-group-version-kind": [
2414 {
2415 "group": "",
2416 "kind": "EventList",
2417 "version": "v1"
2418 }
2419 ]
2420 },
2421 "io.k8s.api.core.v1.EventSeries": {
2422 "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
2423 "properties": {
2424 "count": {
2425 "description": "Number of occurrences in this series up to the last heartbeat time",
2426 "format": "int32",
2427 "type": "integer"
2428 },
2429 "lastObservedTime": {
2430 "allOf": [
2431 {
2432 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
2433 }
2434 ],
2435 "description": "Time of the last occurrence observed"
2436 }
2437 },
2438 "type": "object"
2439 },
2440 "io.k8s.api.core.v1.EventSource": {
2441 "description": "EventSource contains information for an event.",
2442 "properties": {
2443 "component": {
2444 "description": "Component from which the event is generated.",
2445 "type": "string"
2446 },
2447 "host": {
2448 "description": "Node name on which the event is generated.",
2449 "type": "string"
2450 }
2451 },
2452 "type": "object"
2453 },
2454 "io.k8s.api.core.v1.ExecAction": {
2455 "description": "ExecAction describes a \"run in container\" action.",
2456 "properties": {
2457 "command": {
2458 "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.",
2459 "items": {
2460 "default": "",
2461 "type": "string"
2462 },
2463 "type": "array",
2464 "x-kubernetes-list-type": "atomic"
2465 }
2466 },
2467 "type": "object"
2468 },
2469 "io.k8s.api.core.v1.FCVolumeSource": {
2470 "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.",
2471 "properties": {
2472 "fsType": {
2473 "description": "fsType is the 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.",
2474 "type": "string"
2475 },
2476 "lun": {
2477 "description": "lun is Optional: FC target lun number",
2478 "format": "int32",
2479 "type": "integer"
2480 },
2481 "readOnly": {
2482 "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
2483 "type": "boolean"
2484 },
2485 "targetWWNs": {
2486 "description": "targetWWNs is Optional: FC target worldwide names (WWNs)",
2487 "items": {
2488 "default": "",
2489 "type": "string"
2490 },
2491 "type": "array",
2492 "x-kubernetes-list-type": "atomic"
2493 },
2494 "wwids": {
2495 "description": "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
2496 "items": {
2497 "default": "",
2498 "type": "string"
2499 },
2500 "type": "array",
2501 "x-kubernetes-list-type": "atomic"
2502 }
2503 },
2504 "type": "object"
2505 },
2506 "io.k8s.api.core.v1.FlexPersistentVolumeSource": {
2507 "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
2508 "properties": {
2509 "driver": {
2510 "default": "",
2511 "description": "driver is the name of the driver to use for this volume.",
2512 "type": "string"
2513 },
2514 "fsType": {
2515 "description": "fsType is the 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.",
2516 "type": "string"
2517 },
2518 "options": {
2519 "additionalProperties": {
2520 "default": "",
2521 "type": "string"
2522 },
2523 "description": "options is Optional: this field holds extra command options if any.",
2524 "type": "object"
2525 },
2526 "readOnly": {
2527 "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
2528 "type": "boolean"
2529 },
2530 "secretRef": {
2531 "allOf": [
2532 {
2533 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
2534 }
2535 ],
2536 "description": "secretRef is 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."
2537 }
2538 },
2539 "required": [
2540 "driver"
2541 ],
2542 "type": "object"
2543 },
2544 "io.k8s.api.core.v1.FlexVolumeSource": {
2545 "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
2546 "properties": {
2547 "driver": {
2548 "default": "",
2549 "description": "driver is the name of the driver to use for this volume.",
2550 "type": "string"
2551 },
2552 "fsType": {
2553 "description": "fsType is the 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.",
2554 "type": "string"
2555 },
2556 "options": {
2557 "additionalProperties": {
2558 "default": "",
2559 "type": "string"
2560 },
2561 "description": "options is Optional: this field holds extra command options if any.",
2562 "type": "object"
2563 },
2564 "readOnly": {
2565 "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
2566 "type": "boolean"
2567 },
2568 "secretRef": {
2569 "allOf": [
2570 {
2571 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
2572 }
2573 ],
2574 "description": "secretRef is 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."
2575 }
2576 },
2577 "required": [
2578 "driver"
2579 ],
2580 "type": "object"
2581 },
2582 "io.k8s.api.core.v1.FlockerVolumeSource": {
2583 "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.",
2584 "properties": {
2585 "datasetName": {
2586 "description": "datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
2587 "type": "string"
2588 },
2589 "datasetUUID": {
2590 "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset",
2591 "type": "string"
2592 }
2593 },
2594 "type": "object"
2595 },
2596 "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": {
2597 "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.",
2598 "properties": {
2599 "fsType": {
2600 "description": "fsType is 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",
2601 "type": "string"
2602 },
2603 "partition": {
2604 "description": "partition is 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",
2605 "format": "int32",
2606 "type": "integer"
2607 },
2608 "pdName": {
2609 "default": "",
2610 "description": "pdName is 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",
2611 "type": "string"
2612 },
2613 "readOnly": {
2614 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
2615 "type": "boolean"
2616 }
2617 },
2618 "required": [
2619 "pdName"
2620 ],
2621 "type": "object"
2622 },
2623 "io.k8s.api.core.v1.GRPCAction": {
2624 "properties": {
2625 "port": {
2626 "default": 0,
2627 "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
2628 "format": "int32",
2629 "type": "integer"
2630 },
2631 "service": {
2632 "default": "",
2633 "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
2634 "type": "string"
2635 }
2636 },
2637 "required": [
2638 "port"
2639 ],
2640 "type": "object"
2641 },
2642 "io.k8s.api.core.v1.GitRepoVolumeSource": {
2643 "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.",
2644 "properties": {
2645 "directory": {
2646 "description": "directory is the 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.",
2647 "type": "string"
2648 },
2649 "repository": {
2650 "default": "",
2651 "description": "repository is the URL",
2652 "type": "string"
2653 },
2654 "revision": {
2655 "description": "revision is the commit hash for the specified revision.",
2656 "type": "string"
2657 }
2658 },
2659 "required": [
2660 "repository"
2661 ],
2662 "type": "object"
2663 },
2664 "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": {
2665 "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
2666 "properties": {
2667 "endpoints": {
2668 "default": "",
2669 "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
2670 "type": "string"
2671 },
2672 "endpointsNamespace": {
2673 "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",
2674 "type": "string"
2675 },
2676 "path": {
2677 "default": "",
2678 "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
2679 "type": "string"
2680 },
2681 "readOnly": {
2682 "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",
2683 "type": "boolean"
2684 }
2685 },
2686 "required": [
2687 "endpoints",
2688 "path"
2689 ],
2690 "type": "object"
2691 },
2692 "io.k8s.api.core.v1.GlusterfsVolumeSource": {
2693 "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
2694 "properties": {
2695 "endpoints": {
2696 "default": "",
2697 "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
2698 "type": "string"
2699 },
2700 "path": {
2701 "default": "",
2702 "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
2703 "type": "string"
2704 },
2705 "readOnly": {
2706 "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",
2707 "type": "boolean"
2708 }
2709 },
2710 "required": [
2711 "endpoints",
2712 "path"
2713 ],
2714 "type": "object"
2715 },
2716 "io.k8s.api.core.v1.HTTPGetAction": {
2717 "description": "HTTPGetAction describes an action based on HTTP Get requests.",
2718 "properties": {
2719 "host": {
2720 "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
2721 "type": "string"
2722 },
2723 "httpHeaders": {
2724 "description": "Custom headers to set in the request. HTTP allows repeated headers.",
2725 "items": {
2726 "allOf": [
2727 {
2728 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPHeader"
2729 }
2730 ],
2731 "default": {}
2732 },
2733 "type": "array",
2734 "x-kubernetes-list-type": "atomic"
2735 },
2736 "path": {
2737 "description": "Path to access on the HTTP server.",
2738 "type": "string"
2739 },
2740 "port": {
2741 "allOf": [
2742 {
2743 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
2744 }
2745 ],
2746 "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."
2747 },
2748 "scheme": {
2749 "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
2750 "type": "string"
2751 }
2752 },
2753 "required": [
2754 "port"
2755 ],
2756 "type": "object"
2757 },
2758 "io.k8s.api.core.v1.HTTPHeader": {
2759 "description": "HTTPHeader describes a custom header to be used in HTTP probes",
2760 "properties": {
2761 "name": {
2762 "default": "",
2763 "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.",
2764 "type": "string"
2765 },
2766 "value": {
2767 "default": "",
2768 "description": "The header field value",
2769 "type": "string"
2770 }
2771 },
2772 "required": [
2773 "name",
2774 "value"
2775 ],
2776 "type": "object"
2777 },
2778 "io.k8s.api.core.v1.HostAlias": {
2779 "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
2780 "properties": {
2781 "hostnames": {
2782 "description": "Hostnames for the above IP address.",
2783 "items": {
2784 "default": "",
2785 "type": "string"
2786 },
2787 "type": "array",
2788 "x-kubernetes-list-type": "atomic"
2789 },
2790 "ip": {
2791 "default": "",
2792 "description": "IP address of the host file entry.",
2793 "type": "string"
2794 }
2795 },
2796 "required": [
2797 "ip"
2798 ],
2799 "type": "object"
2800 },
2801 "io.k8s.api.core.v1.HostIP": {
2802 "description": "HostIP represents a single IP address allocated to the host.",
2803 "properties": {
2804 "ip": {
2805 "description": "IP is the IP address assigned to the host",
2806 "type": "string"
2807 }
2808 },
2809 "type": "object"
2810 },
2811 "io.k8s.api.core.v1.HostPathVolumeSource": {
2812 "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
2813 "properties": {
2814 "path": {
2815 "default": "",
2816 "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",
2817 "type": "string"
2818 },
2819 "type": {
2820 "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
2821 "type": "string"
2822 }
2823 },
2824 "required": [
2825 "path"
2826 ],
2827 "type": "object"
2828 },
2829 "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": {
2830 "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
2831 "properties": {
2832 "chapAuthDiscovery": {
2833 "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication",
2834 "type": "boolean"
2835 },
2836 "chapAuthSession": {
2837 "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication",
2838 "type": "boolean"
2839 },
2840 "fsType": {
2841 "description": "fsType is the 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",
2842 "type": "string"
2843 },
2844 "initiatorName": {
2845 "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
2846 "type": "string"
2847 },
2848 "iqn": {
2849 "default": "",
2850 "description": "iqn is Target iSCSI Qualified Name.",
2851 "type": "string"
2852 },
2853 "iscsiInterface": {
2854 "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
2855 "type": "string"
2856 },
2857 "lun": {
2858 "default": 0,
2859 "description": "lun is iSCSI Target Lun number.",
2860 "format": "int32",
2861 "type": "integer"
2862 },
2863 "portals": {
2864 "description": "portals is the 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).",
2865 "items": {
2866 "default": "",
2867 "type": "string"
2868 },
2869 "type": "array",
2870 "x-kubernetes-list-type": "atomic"
2871 },
2872 "readOnly": {
2873 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
2874 "type": "boolean"
2875 },
2876 "secretRef": {
2877 "allOf": [
2878 {
2879 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
2880 }
2881 ],
2882 "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication"
2883 },
2884 "targetPortal": {
2885 "default": "",
2886 "description": "targetPortal is 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).",
2887 "type": "string"
2888 }
2889 },
2890 "required": [
2891 "targetPortal",
2892 "iqn",
2893 "lun"
2894 ],
2895 "type": "object"
2896 },
2897 "io.k8s.api.core.v1.ISCSIVolumeSource": {
2898 "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
2899 "properties": {
2900 "chapAuthDiscovery": {
2901 "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication",
2902 "type": "boolean"
2903 },
2904 "chapAuthSession": {
2905 "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication",
2906 "type": "boolean"
2907 },
2908 "fsType": {
2909 "description": "fsType is the 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",
2910 "type": "string"
2911 },
2912 "initiatorName": {
2913 "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
2914 "type": "string"
2915 },
2916 "iqn": {
2917 "default": "",
2918 "description": "iqn is the target iSCSI Qualified Name.",
2919 "type": "string"
2920 },
2921 "iscsiInterface": {
2922 "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
2923 "type": "string"
2924 },
2925 "lun": {
2926 "default": 0,
2927 "description": "lun represents iSCSI Target Lun number.",
2928 "format": "int32",
2929 "type": "integer"
2930 },
2931 "portals": {
2932 "description": "portals is the 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).",
2933 "items": {
2934 "default": "",
2935 "type": "string"
2936 },
2937 "type": "array",
2938 "x-kubernetes-list-type": "atomic"
2939 },
2940 "readOnly": {
2941 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
2942 "type": "boolean"
2943 },
2944 "secretRef": {
2945 "allOf": [
2946 {
2947 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
2948 }
2949 ],
2950 "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication"
2951 },
2952 "targetPortal": {
2953 "default": "",
2954 "description": "targetPortal is 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).",
2955 "type": "string"
2956 }
2957 },
2958 "required": [
2959 "targetPortal",
2960 "iqn",
2961 "lun"
2962 ],
2963 "type": "object"
2964 },
2965 "io.k8s.api.core.v1.KeyToPath": {
2966 "description": "Maps a string key to a path within a volume.",
2967 "properties": {
2968 "key": {
2969 "default": "",
2970 "description": "key is the key to project.",
2971 "type": "string"
2972 },
2973 "mode": {
2974 "description": "mode is 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.",
2975 "format": "int32",
2976 "type": "integer"
2977 },
2978 "path": {
2979 "default": "",
2980 "description": "path is 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 '..'.",
2981 "type": "string"
2982 }
2983 },
2984 "required": [
2985 "key",
2986 "path"
2987 ],
2988 "type": "object"
2989 },
2990 "io.k8s.api.core.v1.Lifecycle": {
2991 "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.",
2992 "properties": {
2993 "postStart": {
2994 "allOf": [
2995 {
2996 "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler"
2997 }
2998 ],
2999 "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"
3000 },
3001 "preStop": {
3002 "allOf": [
3003 {
3004 "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler"
3005 }
3006 ],
3007 "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 Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). 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"
3008 }
3009 },
3010 "type": "object"
3011 },
3012 "io.k8s.api.core.v1.LifecycleHandler": {
3013 "description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.",
3014 "properties": {
3015 "exec": {
3016 "allOf": [
3017 {
3018 "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction"
3019 }
3020 ],
3021 "description": "Exec specifies the action to take."
3022 },
3023 "httpGet": {
3024 "allOf": [
3025 {
3026 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
3027 }
3028 ],
3029 "description": "HTTPGet specifies the http request to perform."
3030 },
3031 "sleep": {
3032 "allOf": [
3033 {
3034 "$ref": "#/components/schemas/io.k8s.api.core.v1.SleepAction"
3035 }
3036 ],
3037 "description": "Sleep represents the duration that the container should sleep before being terminated."
3038 },
3039 "tcpSocket": {
3040 "allOf": [
3041 {
3042 "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction"
3043 }
3044 ],
3045 "description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified."
3046 }
3047 },
3048 "type": "object"
3049 },
3050 "io.k8s.api.core.v1.LimitRange": {
3051 "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
3052 "properties": {
3053 "apiVersion": {
3054 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3055 "type": "string"
3056 },
3057 "kind": {
3058 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3059 "type": "string"
3060 },
3061 "metadata": {
3062 "allOf": [
3063 {
3064 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3065 }
3066 ],
3067 "default": {},
3068 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3069 },
3070 "spec": {
3071 "allOf": [
3072 {
3073 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeSpec"
3074 }
3075 ],
3076 "default": {},
3077 "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3078 }
3079 },
3080 "type": "object",
3081 "x-kubernetes-group-version-kind": [
3082 {
3083 "group": "",
3084 "kind": "LimitRange",
3085 "version": "v1"
3086 }
3087 ]
3088 },
3089 "io.k8s.api.core.v1.LimitRangeItem": {
3090 "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
3091 "properties": {
3092 "default": {
3093 "additionalProperties": {
3094 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3095 },
3096 "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
3097 "type": "object"
3098 },
3099 "defaultRequest": {
3100 "additionalProperties": {
3101 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3102 },
3103 "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
3104 "type": "object"
3105 },
3106 "max": {
3107 "additionalProperties": {
3108 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3109 },
3110 "description": "Max usage constraints on this kind by resource name.",
3111 "type": "object"
3112 },
3113 "maxLimitRequestRatio": {
3114 "additionalProperties": {
3115 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3116 },
3117 "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.",
3118 "type": "object"
3119 },
3120 "min": {
3121 "additionalProperties": {
3122 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3123 },
3124 "description": "Min usage constraints on this kind by resource name.",
3125 "type": "object"
3126 },
3127 "type": {
3128 "default": "",
3129 "description": "Type of resource that this limit applies to.",
3130 "type": "string"
3131 }
3132 },
3133 "required": [
3134 "type"
3135 ],
3136 "type": "object"
3137 },
3138 "io.k8s.api.core.v1.LimitRangeList": {
3139 "description": "LimitRangeList is a list of LimitRange items.",
3140 "properties": {
3141 "apiVersion": {
3142 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3143 "type": "string"
3144 },
3145 "items": {
3146 "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
3147 "items": {
3148 "allOf": [
3149 {
3150 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
3151 }
3152 ],
3153 "default": {}
3154 },
3155 "type": "array"
3156 },
3157 "kind": {
3158 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3159 "type": "string"
3160 },
3161 "metadata": {
3162 "allOf": [
3163 {
3164 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3165 }
3166 ],
3167 "default": {},
3168 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
3169 }
3170 },
3171 "required": [
3172 "items"
3173 ],
3174 "type": "object",
3175 "x-kubernetes-group-version-kind": [
3176 {
3177 "group": "",
3178 "kind": "LimitRangeList",
3179 "version": "v1"
3180 }
3181 ]
3182 },
3183 "io.k8s.api.core.v1.LimitRangeSpec": {
3184 "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
3185 "properties": {
3186 "limits": {
3187 "description": "Limits is the list of LimitRangeItem objects that are enforced.",
3188 "items": {
3189 "allOf": [
3190 {
3191 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeItem"
3192 }
3193 ],
3194 "default": {}
3195 },
3196 "type": "array",
3197 "x-kubernetes-list-type": "atomic"
3198 }
3199 },
3200 "required": [
3201 "limits"
3202 ],
3203 "type": "object"
3204 },
3205 "io.k8s.api.core.v1.LoadBalancerIngress": {
3206 "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
3207 "properties": {
3208 "hostname": {
3209 "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
3210 "type": "string"
3211 },
3212 "ip": {
3213 "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
3214 "type": "string"
3215 },
3216 "ipMode": {
3217 "description": "IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.",
3218 "type": "string"
3219 },
3220 "ports": {
3221 "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it",
3222 "items": {
3223 "allOf": [
3224 {
3225 "$ref": "#/components/schemas/io.k8s.api.core.v1.PortStatus"
3226 }
3227 ],
3228 "default": {}
3229 },
3230 "type": "array",
3231 "x-kubernetes-list-type": "atomic"
3232 }
3233 },
3234 "type": "object"
3235 },
3236 "io.k8s.api.core.v1.LoadBalancerStatus": {
3237 "description": "LoadBalancerStatus represents the status of a load-balancer.",
3238 "properties": {
3239 "ingress": {
3240 "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
3241 "items": {
3242 "allOf": [
3243 {
3244 "$ref": "#/components/schemas/io.k8s.api.core.v1.LoadBalancerIngress"
3245 }
3246 ],
3247 "default": {}
3248 },
3249 "type": "array",
3250 "x-kubernetes-list-type": "atomic"
3251 }
3252 },
3253 "type": "object"
3254 },
3255 "io.k8s.api.core.v1.LocalObjectReference": {
3256 "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
3257 "properties": {
3258 "name": {
3259 "default": "",
3260 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
3261 "type": "string"
3262 }
3263 },
3264 "type": "object",
3265 "x-kubernetes-map-type": "atomic"
3266 },
3267 "io.k8s.api.core.v1.LocalVolumeSource": {
3268 "description": "Local represents directly-attached storage with node affinity (Beta feature)",
3269 "properties": {
3270 "fsType": {
3271 "description": "fsType is the 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 filesystem if unspecified.",
3272 "type": "string"
3273 },
3274 "path": {
3275 "default": "",
3276 "description": "path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
3277 "type": "string"
3278 }
3279 },
3280 "required": [
3281 "path"
3282 ],
3283 "type": "object"
3284 },
3285 "io.k8s.api.core.v1.ModifyVolumeStatus": {
3286 "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation",
3287 "properties": {
3288 "status": {
3289 "default": "",
3290 "description": "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n the specified VolumeAttributesClass not existing.\n - InProgress\n InProgress indicates that the volume is being modified.\n - Infeasible\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.",
3291 "type": "string"
3292 },
3293 "targetVolumeAttributesClassName": {
3294 "description": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
3295 "type": "string"
3296 }
3297 },
3298 "required": [
3299 "status"
3300 ],
3301 "type": "object"
3302 },
3303 "io.k8s.api.core.v1.NFSVolumeSource": {
3304 "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
3305 "properties": {
3306 "path": {
3307 "default": "",
3308 "description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
3309 "type": "string"
3310 },
3311 "readOnly": {
3312 "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",
3313 "type": "boolean"
3314 },
3315 "server": {
3316 "default": "",
3317 "description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
3318 "type": "string"
3319 }
3320 },
3321 "required": [
3322 "server",
3323 "path"
3324 ],
3325 "type": "object"
3326 },
3327 "io.k8s.api.core.v1.Namespace": {
3328 "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
3329 "properties": {
3330 "apiVersion": {
3331 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3332 "type": "string"
3333 },
3334 "kind": {
3335 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3336 "type": "string"
3337 },
3338 "metadata": {
3339 "allOf": [
3340 {
3341 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3342 }
3343 ],
3344 "default": {},
3345 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3346 },
3347 "spec": {
3348 "allOf": [
3349 {
3350 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceSpec"
3351 }
3352 ],
3353 "default": {},
3354 "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"
3355 },
3356 "status": {
3357 "allOf": [
3358 {
3359 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceStatus"
3360 }
3361 ],
3362 "default": {},
3363 "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"
3364 }
3365 },
3366 "type": "object",
3367 "x-kubernetes-group-version-kind": [
3368 {
3369 "group": "",
3370 "kind": "Namespace",
3371 "version": "v1"
3372 }
3373 ]
3374 },
3375 "io.k8s.api.core.v1.NamespaceCondition": {
3376 "description": "NamespaceCondition contains details about state of namespace.",
3377 "properties": {
3378 "lastTransitionTime": {
3379 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
3380 },
3381 "message": {
3382 "type": "string"
3383 },
3384 "reason": {
3385 "type": "string"
3386 },
3387 "status": {
3388 "default": "",
3389 "description": "Status of the condition, one of True, False, Unknown.",
3390 "type": "string"
3391 },
3392 "type": {
3393 "default": "",
3394 "description": "Type of namespace controller condition.",
3395 "type": "string"
3396 }
3397 },
3398 "required": [
3399 "type",
3400 "status"
3401 ],
3402 "type": "object"
3403 },
3404 "io.k8s.api.core.v1.NamespaceList": {
3405 "description": "NamespaceList is a list of Namespaces.",
3406 "properties": {
3407 "apiVersion": {
3408 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3409 "type": "string"
3410 },
3411 "items": {
3412 "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
3413 "items": {
3414 "allOf": [
3415 {
3416 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
3417 }
3418 ],
3419 "default": {}
3420 },
3421 "type": "array"
3422 },
3423 "kind": {
3424 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3425 "type": "string"
3426 },
3427 "metadata": {
3428 "allOf": [
3429 {
3430 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3431 }
3432 ],
3433 "default": {},
3434 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
3435 }
3436 },
3437 "required": [
3438 "items"
3439 ],
3440 "type": "object",
3441 "x-kubernetes-group-version-kind": [
3442 {
3443 "group": "",
3444 "kind": "NamespaceList",
3445 "version": "v1"
3446 }
3447 ]
3448 },
3449 "io.k8s.api.core.v1.NamespaceSpec": {
3450 "description": "NamespaceSpec describes the attributes on a Namespace.",
3451 "properties": {
3452 "finalizers": {
3453 "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/",
3454 "items": {
3455 "default": "",
3456 "type": "string"
3457 },
3458 "type": "array",
3459 "x-kubernetes-list-type": "atomic"
3460 }
3461 },
3462 "type": "object"
3463 },
3464 "io.k8s.api.core.v1.NamespaceStatus": {
3465 "description": "NamespaceStatus is information about the current status of a Namespace.",
3466 "properties": {
3467 "conditions": {
3468 "description": "Represents the latest available observations of a namespace's current state.",
3469 "items": {
3470 "allOf": [
3471 {
3472 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceCondition"
3473 }
3474 ],
3475 "default": {}
3476 },
3477 "type": "array",
3478 "x-kubernetes-list-map-keys": [
3479 "type"
3480 ],
3481 "x-kubernetes-list-type": "map",
3482 "x-kubernetes-patch-merge-key": "type",
3483 "x-kubernetes-patch-strategy": "merge"
3484 },
3485 "phase": {
3486 "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
3487 "type": "string"
3488 }
3489 },
3490 "type": "object"
3491 },
3492 "io.k8s.api.core.v1.Node": {
3493 "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
3494 "properties": {
3495 "apiVersion": {
3496 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3497 "type": "string"
3498 },
3499 "kind": {
3500 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3501 "type": "string"
3502 },
3503 "metadata": {
3504 "allOf": [
3505 {
3506 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3507 }
3508 ],
3509 "default": {},
3510 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3511 },
3512 "spec": {
3513 "allOf": [
3514 {
3515 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSpec"
3516 }
3517 ],
3518 "default": {},
3519 "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3520 },
3521 "status": {
3522 "allOf": [
3523 {
3524 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeStatus"
3525 }
3526 ],
3527 "default": {},
3528 "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"
3529 }
3530 },
3531 "type": "object",
3532 "x-kubernetes-group-version-kind": [
3533 {
3534 "group": "",
3535 "kind": "Node",
3536 "version": "v1"
3537 }
3538 ]
3539 },
3540 "io.k8s.api.core.v1.NodeAddress": {
3541 "description": "NodeAddress contains information for the node's address.",
3542 "properties": {
3543 "address": {
3544 "default": "",
3545 "description": "The node address.",
3546 "type": "string"
3547 },
3548 "type": {
3549 "default": "",
3550 "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
3551 "type": "string"
3552 }
3553 },
3554 "required": [
3555 "type",
3556 "address"
3557 ],
3558 "type": "object"
3559 },
3560 "io.k8s.api.core.v1.NodeAffinity": {
3561 "description": "Node affinity is a group of node affinity scheduling rules.",
3562 "properties": {
3563 "preferredDuringSchedulingIgnoredDuringExecution": {
3564 "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.",
3565 "items": {
3566 "allOf": [
3567 {
3568 "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm"
3569 }
3570 ],
3571 "default": {}
3572 },
3573 "type": "array",
3574 "x-kubernetes-list-type": "atomic"
3575 },
3576 "requiredDuringSchedulingIgnoredDuringExecution": {
3577 "allOf": [
3578 {
3579 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
3580 }
3581 ],
3582 "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."
3583 }
3584 },
3585 "type": "object"
3586 },
3587 "io.k8s.api.core.v1.NodeCondition": {
3588 "description": "NodeCondition contains condition information for a node.",
3589 "properties": {
3590 "lastHeartbeatTime": {
3591 "allOf": [
3592 {
3593 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
3594 }
3595 ],
3596 "description": "Last time we got an update on a given condition."
3597 },
3598 "lastTransitionTime": {
3599 "allOf": [
3600 {
3601 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
3602 }
3603 ],
3604 "description": "Last time the condition transit from one status to another."
3605 },
3606 "message": {
3607 "description": "Human readable message indicating details about last transition.",
3608 "type": "string"
3609 },
3610 "reason": {
3611 "description": "(brief) reason for the condition's last transition.",
3612 "type": "string"
3613 },
3614 "status": {
3615 "default": "",
3616 "description": "Status of the condition, one of True, False, Unknown.",
3617 "type": "string"
3618 },
3619 "type": {
3620 "default": "",
3621 "description": "Type of node condition.",
3622 "type": "string"
3623 }
3624 },
3625 "required": [
3626 "type",
3627 "status"
3628 ],
3629 "type": "object"
3630 },
3631 "io.k8s.api.core.v1.NodeConfigSource": {
3632 "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22",
3633 "properties": {
3634 "configMap": {
3635 "allOf": [
3636 {
3637 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapNodeConfigSource"
3638 }
3639 ],
3640 "description": "ConfigMap is a reference to a Node's ConfigMap"
3641 }
3642 },
3643 "type": "object"
3644 },
3645 "io.k8s.api.core.v1.NodeConfigStatus": {
3646 "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
3647 "properties": {
3648 "active": {
3649 "allOf": [
3650 {
3651 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource"
3652 }
3653 ],
3654 "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."
3655 },
3656 "assigned": {
3657 "allOf": [
3658 {
3659 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource"
3660 }
3661 ],
3662 "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."
3663 },
3664 "error": {
3665 "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.",
3666 "type": "string"
3667 },
3668 "lastKnownGood": {
3669 "allOf": [
3670 {
3671 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource"
3672 }
3673 ],
3674 "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."
3675 }
3676 },
3677 "type": "object"
3678 },
3679 "io.k8s.api.core.v1.NodeDaemonEndpoints": {
3680 "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
3681 "properties": {
3682 "kubeletEndpoint": {
3683 "allOf": [
3684 {
3685 "$ref": "#/components/schemas/io.k8s.api.core.v1.DaemonEndpoint"
3686 }
3687 ],
3688 "default": {},
3689 "description": "Endpoint on which Kubelet is listening."
3690 }
3691 },
3692 "type": "object"
3693 },
3694 "io.k8s.api.core.v1.NodeList": {
3695 "description": "NodeList is the whole list of all Nodes which have been registered with master.",
3696 "properties": {
3697 "apiVersion": {
3698 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3699 "type": "string"
3700 },
3701 "items": {
3702 "description": "List of nodes",
3703 "items": {
3704 "allOf": [
3705 {
3706 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
3707 }
3708 ],
3709 "default": {}
3710 },
3711 "type": "array"
3712 },
3713 "kind": {
3714 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3715 "type": "string"
3716 },
3717 "metadata": {
3718 "allOf": [
3719 {
3720 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3721 }
3722 ],
3723 "default": {},
3724 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
3725 }
3726 },
3727 "required": [
3728 "items"
3729 ],
3730 "type": "object",
3731 "x-kubernetes-group-version-kind": [
3732 {
3733 "group": "",
3734 "kind": "NodeList",
3735 "version": "v1"
3736 }
3737 ]
3738 },
3739 "io.k8s.api.core.v1.NodeRuntimeHandler": {
3740 "description": "NodeRuntimeHandler is a set of runtime handler information.",
3741 "properties": {
3742 "features": {
3743 "allOf": [
3744 {
3745 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeRuntimeHandlerFeatures"
3746 }
3747 ],
3748 "description": "Supported features."
3749 },
3750 "name": {
3751 "default": "",
3752 "description": "Runtime handler name. Empty for the default runtime handler.",
3753 "type": "string"
3754 }
3755 },
3756 "type": "object"
3757 },
3758 "io.k8s.api.core.v1.NodeRuntimeHandlerFeatures": {
3759 "description": "NodeRuntimeHandlerFeatures is a set of runtime features.",
3760 "properties": {
3761 "recursiveReadOnlyMounts": {
3762 "description": "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
3763 "type": "boolean"
3764 }
3765 },
3766 "type": "object"
3767 },
3768 "io.k8s.api.core.v1.NodeSelector": {
3769 "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.",
3770 "properties": {
3771 "nodeSelectorTerms": {
3772 "description": "Required. A list of node selector terms. The terms are ORed.",
3773 "items": {
3774 "allOf": [
3775 {
3776 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm"
3777 }
3778 ],
3779 "default": {}
3780 },
3781 "type": "array",
3782 "x-kubernetes-list-type": "atomic"
3783 }
3784 },
3785 "required": [
3786 "nodeSelectorTerms"
3787 ],
3788 "type": "object",
3789 "x-kubernetes-map-type": "atomic"
3790 },
3791 "io.k8s.api.core.v1.NodeSelectorRequirement": {
3792 "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
3793 "properties": {
3794 "key": {
3795 "default": "",
3796 "description": "The label key that the selector applies to.",
3797 "type": "string"
3798 },
3799 "operator": {
3800 "default": "",
3801 "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
3802 "type": "string"
3803 },
3804 "values": {
3805 "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.",
3806 "items": {
3807 "default": "",
3808 "type": "string"
3809 },
3810 "type": "array",
3811 "x-kubernetes-list-type": "atomic"
3812 }
3813 },
3814 "required": [
3815 "key",
3816 "operator"
3817 ],
3818 "type": "object"
3819 },
3820 "io.k8s.api.core.v1.NodeSelectorTerm": {
3821 "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.",
3822 "properties": {
3823 "matchExpressions": {
3824 "description": "A list of node selector requirements by node's labels.",
3825 "items": {
3826 "allOf": [
3827 {
3828 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"
3829 }
3830 ],
3831 "default": {}
3832 },
3833 "type": "array",
3834 "x-kubernetes-list-type": "atomic"
3835 },
3836 "matchFields": {
3837 "description": "A list of node selector requirements by node's fields.",
3838 "items": {
3839 "allOf": [
3840 {
3841 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"
3842 }
3843 ],
3844 "default": {}
3845 },
3846 "type": "array",
3847 "x-kubernetes-list-type": "atomic"
3848 }
3849 },
3850 "type": "object",
3851 "x-kubernetes-map-type": "atomic"
3852 },
3853 "io.k8s.api.core.v1.NodeSpec": {
3854 "description": "NodeSpec describes the attributes that a node is created with.",
3855 "properties": {
3856 "configSource": {
3857 "allOf": [
3858 {
3859 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource"
3860 }
3861 ],
3862 "description": "Deprecated: Previously used to specify the source of the node's configuration for the DynamicKubeletConfig feature. This feature is removed."
3863 },
3864 "externalID": {
3865 "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966",
3866 "type": "string"
3867 },
3868 "podCIDR": {
3869 "description": "PodCIDR represents the pod IP range assigned to the node.",
3870 "type": "string"
3871 },
3872 "podCIDRs": {
3873 "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.",
3874 "items": {
3875 "default": "",
3876 "type": "string"
3877 },
3878 "type": "array",
3879 "x-kubernetes-list-type": "set",
3880 "x-kubernetes-patch-strategy": "merge"
3881 },
3882 "providerID": {
3883 "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
3884 "type": "string"
3885 },
3886 "taints": {
3887 "description": "If specified, the node's taints.",
3888 "items": {
3889 "allOf": [
3890 {
3891 "$ref": "#/components/schemas/io.k8s.api.core.v1.Taint"
3892 }
3893 ],
3894 "default": {}
3895 },
3896 "type": "array",
3897 "x-kubernetes-list-type": "atomic"
3898 },
3899 "unschedulable": {
3900 "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",
3901 "type": "boolean"
3902 }
3903 },
3904 "type": "object"
3905 },
3906 "io.k8s.api.core.v1.NodeStatus": {
3907 "description": "NodeStatus is information about the current status of a node.",
3908 "properties": {
3909 "addresses": {
3910 "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 https://pr.k8s.io/79391 for an example. Consumers should assume that addresses can change during the lifetime of a Node. However, there are some exceptions where this may not be possible, such as Pods that inherit a Node's address in its own status or consumers of the downward API (status.hostIP).",
3911 "items": {
3912 "allOf": [
3913 {
3914 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeAddress"
3915 }
3916 ],
3917 "default": {}
3918 },
3919 "type": "array",
3920 "x-kubernetes-list-map-keys": [
3921 "type"
3922 ],
3923 "x-kubernetes-list-type": "map",
3924 "x-kubernetes-patch-merge-key": "type",
3925 "x-kubernetes-patch-strategy": "merge"
3926 },
3927 "allocatable": {
3928 "additionalProperties": {
3929 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3930 },
3931 "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
3932 "type": "object"
3933 },
3934 "capacity": {
3935 "additionalProperties": {
3936 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
3937 },
3938 "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
3939 "type": "object"
3940 },
3941 "conditions": {
3942 "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
3943 "items": {
3944 "allOf": [
3945 {
3946 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeCondition"
3947 }
3948 ],
3949 "default": {}
3950 },
3951 "type": "array",
3952 "x-kubernetes-list-map-keys": [
3953 "type"
3954 ],
3955 "x-kubernetes-list-type": "map",
3956 "x-kubernetes-patch-merge-key": "type",
3957 "x-kubernetes-patch-strategy": "merge"
3958 },
3959 "config": {
3960 "allOf": [
3961 {
3962 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigStatus"
3963 }
3964 ],
3965 "description": "Status of the config assigned to the node via the dynamic Kubelet config feature."
3966 },
3967 "daemonEndpoints": {
3968 "allOf": [
3969 {
3970 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeDaemonEndpoints"
3971 }
3972 ],
3973 "default": {},
3974 "description": "Endpoints of daemons running on the Node."
3975 },
3976 "images": {
3977 "description": "List of container images on this node",
3978 "items": {
3979 "allOf": [
3980 {
3981 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerImage"
3982 }
3983 ],
3984 "default": {}
3985 },
3986 "type": "array",
3987 "x-kubernetes-list-type": "atomic"
3988 },
3989 "nodeInfo": {
3990 "allOf": [
3991 {
3992 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSystemInfo"
3993 }
3994 ],
3995 "default": {},
3996 "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
3997 },
3998 "phase": {
3999 "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.",
4000 "type": "string"
4001 },
4002 "runtimeHandlers": {
4003 "description": "The available runtime handlers.",
4004 "items": {
4005 "allOf": [
4006 {
4007 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeRuntimeHandler"
4008 }
4009 ],
4010 "default": {}
4011 },
4012 "type": "array",
4013 "x-kubernetes-list-type": "atomic"
4014 },
4015 "volumesAttached": {
4016 "description": "List of volumes that are attached to the node.",
4017 "items": {
4018 "allOf": [
4019 {
4020 "$ref": "#/components/schemas/io.k8s.api.core.v1.AttachedVolume"
4021 }
4022 ],
4023 "default": {}
4024 },
4025 "type": "array",
4026 "x-kubernetes-list-type": "atomic"
4027 },
4028 "volumesInUse": {
4029 "description": "List of attachable volumes in use (mounted) by the node.",
4030 "items": {
4031 "default": "",
4032 "type": "string"
4033 },
4034 "type": "array",
4035 "x-kubernetes-list-type": "atomic"
4036 }
4037 },
4038 "type": "object"
4039 },
4040 "io.k8s.api.core.v1.NodeSystemInfo": {
4041 "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
4042 "properties": {
4043 "architecture": {
4044 "default": "",
4045 "description": "The Architecture reported by the node",
4046 "type": "string"
4047 },
4048 "bootID": {
4049 "default": "",
4050 "description": "Boot ID reported by the node.",
4051 "type": "string"
4052 },
4053 "containerRuntimeVersion": {
4054 "default": "",
4055 "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
4056 "type": "string"
4057 },
4058 "kernelVersion": {
4059 "default": "",
4060 "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
4061 "type": "string"
4062 },
4063 "kubeProxyVersion": {
4064 "default": "",
4065 "description": "KubeProxy Version reported by the node.",
4066 "type": "string"
4067 },
4068 "kubeletVersion": {
4069 "default": "",
4070 "description": "Kubelet Version reported by the node.",
4071 "type": "string"
4072 },
4073 "machineID": {
4074 "default": "",
4075 "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",
4076 "type": "string"
4077 },
4078 "operatingSystem": {
4079 "default": "",
4080 "description": "The Operating System reported by the node",
4081 "type": "string"
4082 },
4083 "osImage": {
4084 "default": "",
4085 "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
4086 "type": "string"
4087 },
4088 "systemUUID": {
4089 "default": "",
4090 "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",
4091 "type": "string"
4092 }
4093 },
4094 "required": [
4095 "machineID",
4096 "systemUUID",
4097 "bootID",
4098 "kernelVersion",
4099 "osImage",
4100 "containerRuntimeVersion",
4101 "kubeletVersion",
4102 "kubeProxyVersion",
4103 "operatingSystem",
4104 "architecture"
4105 ],
4106 "type": "object"
4107 },
4108 "io.k8s.api.core.v1.ObjectFieldSelector": {
4109 "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
4110 "properties": {
4111 "apiVersion": {
4112 "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
4113 "type": "string"
4114 },
4115 "fieldPath": {
4116 "default": "",
4117 "description": "Path of the field to select in the specified API version.",
4118 "type": "string"
4119 }
4120 },
4121 "required": [
4122 "fieldPath"
4123 ],
4124 "type": "object",
4125 "x-kubernetes-map-type": "atomic"
4126 },
4127 "io.k8s.api.core.v1.ObjectReference": {
4128 "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
4129 "properties": {
4130 "apiVersion": {
4131 "description": "API version of the referent.",
4132 "type": "string"
4133 },
4134 "fieldPath": {
4135 "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.",
4136 "type": "string"
4137 },
4138 "kind": {
4139 "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4140 "type": "string"
4141 },
4142 "name": {
4143 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
4144 "type": "string"
4145 },
4146 "namespace": {
4147 "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
4148 "type": "string"
4149 },
4150 "resourceVersion": {
4151 "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",
4152 "type": "string"
4153 },
4154 "uid": {
4155 "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
4156 "type": "string"
4157 }
4158 },
4159 "type": "object",
4160 "x-kubernetes-map-type": "atomic"
4161 },
4162 "io.k8s.api.core.v1.PersistentVolume": {
4163 "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",
4164 "properties": {
4165 "apiVersion": {
4166 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4167 "type": "string"
4168 },
4169 "kind": {
4170 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4171 "type": "string"
4172 },
4173 "metadata": {
4174 "allOf": [
4175 {
4176 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4177 }
4178 ],
4179 "default": {},
4180 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4181 },
4182 "spec": {
4183 "allOf": [
4184 {
4185 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeSpec"
4186 }
4187 ],
4188 "default": {},
4189 "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"
4190 },
4191 "status": {
4192 "allOf": [
4193 {
4194 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeStatus"
4195 }
4196 ],
4197 "default": {},
4198 "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"
4199 }
4200 },
4201 "type": "object",
4202 "x-kubernetes-group-version-kind": [
4203 {
4204 "group": "",
4205 "kind": "PersistentVolume",
4206 "version": "v1"
4207 }
4208 ]
4209 },
4210 "io.k8s.api.core.v1.PersistentVolumeClaim": {
4211 "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
4212 "properties": {
4213 "apiVersion": {
4214 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4215 "type": "string"
4216 },
4217 "kind": {
4218 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4219 "type": "string"
4220 },
4221 "metadata": {
4222 "allOf": [
4223 {
4224 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4225 }
4226 ],
4227 "default": {},
4228 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4229 },
4230 "spec": {
4231 "allOf": [
4232 {
4233 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec"
4234 }
4235 ],
4236 "default": {},
4237 "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"
4238 },
4239 "status": {
4240 "allOf": [
4241 {
4242 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimStatus"
4243 }
4244 ],
4245 "default": {},
4246 "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"
4247 }
4248 },
4249 "type": "object",
4250 "x-kubernetes-group-version-kind": [
4251 {
4252 "group": "",
4253 "kind": "PersistentVolumeClaim",
4254 "version": "v1"
4255 }
4256 ]
4257 },
4258 "io.k8s.api.core.v1.PersistentVolumeClaimCondition": {
4259 "description": "PersistentVolumeClaimCondition contains details about state of pvc",
4260 "properties": {
4261 "lastProbeTime": {
4262 "allOf": [
4263 {
4264 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
4265 }
4266 ],
4267 "description": "lastProbeTime is the time we probed the condition."
4268 },
4269 "lastTransitionTime": {
4270 "allOf": [
4271 {
4272 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
4273 }
4274 ],
4275 "description": "lastTransitionTime is the time the condition transitioned from one status to another."
4276 },
4277 "message": {
4278 "description": "message is the human-readable message indicating details about last transition.",
4279 "type": "string"
4280 },
4281 "reason": {
4282 "description": "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"Resizing\" that means the underlying persistent volume is being resized.",
4283 "type": "string"
4284 },
4285 "status": {
4286 "default": "",
4287 "type": "string"
4288 },
4289 "type": {
4290 "default": "",
4291 "type": "string"
4292 }
4293 },
4294 "required": [
4295 "type",
4296 "status"
4297 ],
4298 "type": "object"
4299 },
4300 "io.k8s.api.core.v1.PersistentVolumeClaimList": {
4301 "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
4302 "properties": {
4303 "apiVersion": {
4304 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4305 "type": "string"
4306 },
4307 "items": {
4308 "description": "items is a list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
4309 "items": {
4310 "allOf": [
4311 {
4312 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
4313 }
4314 ],
4315 "default": {}
4316 },
4317 "type": "array"
4318 },
4319 "kind": {
4320 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4321 "type": "string"
4322 },
4323 "metadata": {
4324 "allOf": [
4325 {
4326 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4327 }
4328 ],
4329 "default": {},
4330 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
4331 }
4332 },
4333 "required": [
4334 "items"
4335 ],
4336 "type": "object",
4337 "x-kubernetes-group-version-kind": [
4338 {
4339 "group": "",
4340 "kind": "PersistentVolumeClaimList",
4341 "version": "v1"
4342 }
4343 ]
4344 },
4345 "io.k8s.api.core.v1.PersistentVolumeClaimSpec": {
4346 "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
4347 "properties": {
4348 "accessModes": {
4349 "description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
4350 "items": {
4351 "default": "",
4352 "type": "string"
4353 },
4354 "type": "array",
4355 "x-kubernetes-list-type": "atomic"
4356 },
4357 "dataSource": {
4358 "allOf": [
4359 {
4360 "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedLocalObjectReference"
4361 }
4362 ],
4363 "description": "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource."
4364 },
4365 "dataSourceRef": {
4366 "allOf": [
4367 {
4368 "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedObjectReference"
4369 }
4370 ],
4371 "description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled."
4372 },
4373 "resources": {
4374 "allOf": [
4375 {
4376 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeResourceRequirements"
4377 }
4378 ],
4379 "default": {},
4380 "description": "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
4381 },
4382 "selector": {
4383 "allOf": [
4384 {
4385 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
4386 }
4387 ],
4388 "description": "selector is a label query over volumes to consider for binding."
4389 },
4390 "storageClassName": {
4391 "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
4392 "type": "string"
4393 },
4394 "volumeAttributesClassName": {
4395 "description": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.",
4396 "type": "string"
4397 },
4398 "volumeMode": {
4399 "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.",
4400 "type": "string"
4401 },
4402 "volumeName": {
4403 "description": "volumeName is the binding reference to the PersistentVolume backing this claim.",
4404 "type": "string"
4405 }
4406 },
4407 "type": "object"
4408 },
4409 "io.k8s.api.core.v1.PersistentVolumeClaimStatus": {
4410 "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
4411 "properties": {
4412 "accessModes": {
4413 "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",
4414 "items": {
4415 "default": "",
4416 "type": "string"
4417 },
4418 "type": "array",
4419 "x-kubernetes-list-type": "atomic"
4420 },
4421 "allocatedResourceStatuses": {
4422 "additionalProperties": {
4423 "default": "",
4424 "type": "string"
4425 },
4426 "description": "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.",
4427 "type": "object",
4428 "x-kubernetes-map-type": "granular"
4429 },
4430 "allocatedResources": {
4431 "additionalProperties": {
4432 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
4433 },
4434 "description": "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.",
4435 "type": "object"
4436 },
4437 "capacity": {
4438 "additionalProperties": {
4439 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
4440 },
4441 "description": "capacity represents the actual resources of the underlying volume.",
4442 "type": "object"
4443 },
4444 "conditions": {
4445 "description": "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'Resizing'.",
4446 "items": {
4447 "allOf": [
4448 {
4449 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
4450 }
4451 ],
4452 "default": {}
4453 },
4454 "type": "array",
4455 "x-kubernetes-list-map-keys": [
4456 "type"
4457 ],
4458 "x-kubernetes-list-type": "map",
4459 "x-kubernetes-patch-merge-key": "type",
4460 "x-kubernetes-patch-strategy": "merge"
4461 },
4462 "currentVolumeAttributesClassName": {
4463 "description": "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature.",
4464 "type": "string"
4465 },
4466 "modifyVolumeStatus": {
4467 "allOf": [
4468 {
4469 "$ref": "#/components/schemas/io.k8s.api.core.v1.ModifyVolumeStatus"
4470 }
4471 ],
4472 "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is an alpha field and requires enabling VolumeAttributesClass feature."
4473 },
4474 "phase": {
4475 "description": "phase represents the current phase of PersistentVolumeClaim.",
4476 "type": "string"
4477 }
4478 },
4479 "type": "object"
4480 },
4481 "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": {
4482 "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.",
4483 "properties": {
4484 "metadata": {
4485 "allOf": [
4486 {
4487 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4488 }
4489 ],
4490 "default": {},
4491 "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."
4492 },
4493 "spec": {
4494 "allOf": [
4495 {
4496 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec"
4497 }
4498 ],
4499 "default": {},
4500 "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."
4501 }
4502 },
4503 "required": [
4504 "spec"
4505 ],
4506 "type": "object"
4507 },
4508 "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": {
4509 "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).",
4510 "properties": {
4511 "claimName": {
4512 "default": "",
4513 "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",
4514 "type": "string"
4515 },
4516 "readOnly": {
4517 "description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.",
4518 "type": "boolean"
4519 }
4520 },
4521 "required": [
4522 "claimName"
4523 ],
4524 "type": "object"
4525 },
4526 "io.k8s.api.core.v1.PersistentVolumeList": {
4527 "description": "PersistentVolumeList is a list of PersistentVolume items.",
4528 "properties": {
4529 "apiVersion": {
4530 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4531 "type": "string"
4532 },
4533 "items": {
4534 "description": "items is a list of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
4535 "items": {
4536 "allOf": [
4537 {
4538 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
4539 }
4540 ],
4541 "default": {}
4542 },
4543 "type": "array"
4544 },
4545 "kind": {
4546 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4547 "type": "string"
4548 },
4549 "metadata": {
4550 "allOf": [
4551 {
4552 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
4553 }
4554 ],
4555 "default": {},
4556 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
4557 }
4558 },
4559 "required": [
4560 "items"
4561 ],
4562 "type": "object",
4563 "x-kubernetes-group-version-kind": [
4564 {
4565 "group": "",
4566 "kind": "PersistentVolumeList",
4567 "version": "v1"
4568 }
4569 ]
4570 },
4571 "io.k8s.api.core.v1.PersistentVolumeSpec": {
4572 "description": "PersistentVolumeSpec is the specification of a persistent volume.",
4573 "properties": {
4574 "accessModes": {
4575 "description": "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
4576 "items": {
4577 "default": "",
4578 "type": "string"
4579 },
4580 "type": "array",
4581 "x-kubernetes-list-type": "atomic"
4582 },
4583 "awsElasticBlockStore": {
4584 "allOf": [
4585 {
4586 "$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
4587 }
4588 ],
4589 "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"
4590 },
4591 "azureDisk": {
4592 "allOf": [
4593 {
4594 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource"
4595 }
4596 ],
4597 "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
4598 },
4599 "azureFile": {
4600 "allOf": [
4601 {
4602 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFilePersistentVolumeSource"
4603 }
4604 ],
4605 "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
4606 },
4607 "capacity": {
4608 "additionalProperties": {
4609 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
4610 },
4611 "description": "capacity is the description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
4612 "type": "object"
4613 },
4614 "cephfs": {
4615 "allOf": [
4616 {
4617 "$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSPersistentVolumeSource"
4618 }
4619 ],
4620 "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
4621 },
4622 "cinder": {
4623 "allOf": [
4624 {
4625 "$ref": "#/components/schemas/io.k8s.api.core.v1.CinderPersistentVolumeSource"
4626 }
4627 ],
4628 "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
4629 },
4630 "claimRef": {
4631 "allOf": [
4632 {
4633 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
4634 }
4635 ],
4636 "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",
4637 "x-kubernetes-map-type": "granular"
4638 },
4639 "csi": {
4640 "allOf": [
4641 {
4642 "$ref": "#/components/schemas/io.k8s.api.core.v1.CSIPersistentVolumeSource"
4643 }
4644 ],
4645 "description": "csi represents storage that is handled by an external CSI driver (Beta feature)."
4646 },
4647 "fc": {
4648 "allOf": [
4649 {
4650 "$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource"
4651 }
4652 ],
4653 "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
4654 },
4655 "flexVolume": {
4656 "allOf": [
4657 {
4658 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlexPersistentVolumeSource"
4659 }
4660 ],
4661 "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
4662 },
4663 "flocker": {
4664 "allOf": [
4665 {
4666 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource"
4667 }
4668 ],
4669 "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"
4670 },
4671 "gcePersistentDisk": {
4672 "allOf": [
4673 {
4674 "$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource"
4675 }
4676 ],
4677 "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"
4678 },
4679 "glusterfs": {
4680 "allOf": [
4681 {
4682 "$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource"
4683 }
4684 ],
4685 "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"
4686 },
4687 "hostPath": {
4688 "allOf": [
4689 {
4690 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource"
4691 }
4692 ],
4693 "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"
4694 },
4695 "iscsi": {
4696 "allOf": [
4697 {
4698 "$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIPersistentVolumeSource"
4699 }
4700 ],
4701 "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."
4702 },
4703 "local": {
4704 "allOf": [
4705 {
4706 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalVolumeSource"
4707 }
4708 ],
4709 "description": "local represents directly-attached storage with node affinity"
4710 },
4711 "mountOptions": {
4712 "description": "mountOptions is the 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",
4713 "items": {
4714 "default": "",
4715 "type": "string"
4716 },
4717 "type": "array",
4718 "x-kubernetes-list-type": "atomic"
4719 },
4720 "nfs": {
4721 "allOf": [
4722 {
4723 "$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource"
4724 }
4725 ],
4726 "description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
4727 },
4728 "nodeAffinity": {
4729 "allOf": [
4730 {
4731 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeNodeAffinity"
4732 }
4733 ],
4734 "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."
4735 },
4736 "persistentVolumeReclaimPolicy": {
4737 "description": "persistentVolumeReclaimPolicy defines 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",
4738 "type": "string"
4739 },
4740 "photonPersistentDisk": {
4741 "allOf": [
4742 {
4743 "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource"
4744 }
4745 ],
4746 "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
4747 },
4748 "portworxVolume": {
4749 "allOf": [
4750 {
4751 "$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource"
4752 }
4753 ],
4754 "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
4755 },
4756 "quobyte": {
4757 "allOf": [
4758 {
4759 "$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource"
4760 }
4761 ],
4762 "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
4763 },
4764 "rbd": {
4765 "allOf": [
4766 {
4767 "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDPersistentVolumeSource"
4768 }
4769 ],
4770 "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"
4771 },
4772 "scaleIO": {
4773 "allOf": [
4774 {
4775 "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource"
4776 }
4777 ],
4778 "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
4779 },
4780 "storageClassName": {
4781 "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
4782 "type": "string"
4783 },
4784 "storageos": {
4785 "allOf": [
4786 {
4787 "$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSPersistentVolumeSource"
4788 }
4789 ],
4790 "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"
4791 },
4792 "volumeAttributesClassName": {
4793 "description": "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process. This is an alpha field and requires enabling VolumeAttributesClass feature.",
4794 "type": "string"
4795 },
4796 "volumeMode": {
4797 "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.",
4798 "type": "string"
4799 },
4800 "vsphereVolume": {
4801 "allOf": [
4802 {
4803 "$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource"
4804 }
4805 ],
4806 "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
4807 }
4808 },
4809 "type": "object"
4810 },
4811 "io.k8s.api.core.v1.PersistentVolumeStatus": {
4812 "description": "PersistentVolumeStatus is the current status of a persistent volume.",
4813 "properties": {
4814 "lastPhaseTransitionTime": {
4815 "allOf": [
4816 {
4817 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
4818 }
4819 ],
4820 "description": "lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions. This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default)."
4821 },
4822 "message": {
4823 "description": "message is a human-readable message indicating details about why the volume is in this state.",
4824 "type": "string"
4825 },
4826 "phase": {
4827 "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",
4828 "type": "string"
4829 },
4830 "reason": {
4831 "description": "reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
4832 "type": "string"
4833 }
4834 },
4835 "type": "object"
4836 },
4837 "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": {
4838 "description": "Represents a Photon Controller persistent disk resource.",
4839 "properties": {
4840 "fsType": {
4841 "description": "fsType is the 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.",
4842 "type": "string"
4843 },
4844 "pdID": {
4845 "default": "",
4846 "description": "pdID is the ID that identifies Photon Controller persistent disk",
4847 "type": "string"
4848 }
4849 },
4850 "required": [
4851 "pdID"
4852 ],
4853 "type": "object"
4854 },
4855 "io.k8s.api.core.v1.Pod": {
4856 "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
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 "kind": {
4863 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4864 "type": "string"
4865 },
4866 "metadata": {
4867 "allOf": [
4868 {
4869 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4870 }
4871 ],
4872 "default": {},
4873 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4874 },
4875 "spec": {
4876 "allOf": [
4877 {
4878 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSpec"
4879 }
4880 ],
4881 "default": {},
4882 "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"
4883 },
4884 "status": {
4885 "allOf": [
4886 {
4887 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodStatus"
4888 }
4889 ],
4890 "default": {},
4891 "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"
4892 }
4893 },
4894 "type": "object",
4895 "x-kubernetes-group-version-kind": [
4896 {
4897 "group": "",
4898 "kind": "Pod",
4899 "version": "v1"
4900 }
4901 ]
4902 },
4903 "io.k8s.api.core.v1.PodAffinity": {
4904 "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
4905 "properties": {
4906 "preferredDuringSchedulingIgnoredDuringExecution": {
4907 "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.",
4908 "items": {
4909 "allOf": [
4910 {
4911 "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm"
4912 }
4913 ],
4914 "default": {}
4915 },
4916 "type": "array",
4917 "x-kubernetes-list-type": "atomic"
4918 },
4919 "requiredDuringSchedulingIgnoredDuringExecution": {
4920 "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.",
4921 "items": {
4922 "allOf": [
4923 {
4924 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm"
4925 }
4926 ],
4927 "default": {}
4928 },
4929 "type": "array",
4930 "x-kubernetes-list-type": "atomic"
4931 }
4932 },
4933 "type": "object"
4934 },
4935 "io.k8s.api.core.v1.PodAffinityTerm": {
4936 "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",
4937 "properties": {
4938 "labelSelector": {
4939 "allOf": [
4940 {
4941 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
4942 }
4943 ],
4944 "description": "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods."
4945 },
4946 "matchLabelKeys": {
4947 "description": "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
4948 "items": {
4949 "default": "",
4950 "type": "string"
4951 },
4952 "type": "array",
4953 "x-kubernetes-list-type": "atomic"
4954 },
4955 "mismatchLabelKeys": {
4956 "description": "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.",
4957 "items": {
4958 "default": "",
4959 "type": "string"
4960 },
4961 "type": "array",
4962 "x-kubernetes-list-type": "atomic"
4963 },
4964 "namespaceSelector": {
4965 "allOf": [
4966 {
4967 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
4968 }
4969 ],
4970 "description": "A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \"this pod's namespace\". An empty selector ({}) matches all namespaces."
4971 },
4972 "namespaces": {
4973 "description": "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
4974 "items": {
4975 "default": "",
4976 "type": "string"
4977 },
4978 "type": "array",
4979 "x-kubernetes-list-type": "atomic"
4980 },
4981 "topologyKey": {
4982 "default": "",
4983 "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.",
4984 "type": "string"
4985 }
4986 },
4987 "required": [
4988 "topologyKey"
4989 ],
4990 "type": "object"
4991 },
4992 "io.k8s.api.core.v1.PodAntiAffinity": {
4993 "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
4994 "properties": {
4995 "preferredDuringSchedulingIgnoredDuringExecution": {
4996 "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.",
4997 "items": {
4998 "allOf": [
4999 {
5000 "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm"
5001 }
5002 ],
5003 "default": {}
5004 },
5005 "type": "array",
5006 "x-kubernetes-list-type": "atomic"
5007 },
5008 "requiredDuringSchedulingIgnoredDuringExecution": {
5009 "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.",
5010 "items": {
5011 "allOf": [
5012 {
5013 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm"
5014 }
5015 ],
5016 "default": {}
5017 },
5018 "type": "array",
5019 "x-kubernetes-list-type": "atomic"
5020 }
5021 },
5022 "type": "object"
5023 },
5024 "io.k8s.api.core.v1.PodCondition": {
5025 "description": "PodCondition contains details for the current condition of this pod.",
5026 "properties": {
5027 "lastProbeTime": {
5028 "allOf": [
5029 {
5030 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
5031 }
5032 ],
5033 "description": "Last time we probed the condition."
5034 },
5035 "lastTransitionTime": {
5036 "allOf": [
5037 {
5038 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
5039 }
5040 ],
5041 "description": "Last time the condition transitioned from one status to another."
5042 },
5043 "message": {
5044 "description": "Human-readable message indicating details about last transition.",
5045 "type": "string"
5046 },
5047 "reason": {
5048 "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
5049 "type": "string"
5050 },
5051 "status": {
5052 "default": "",
5053 "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",
5054 "type": "string"
5055 },
5056 "type": {
5057 "default": "",
5058 "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
5059 "type": "string"
5060 }
5061 },
5062 "required": [
5063 "type",
5064 "status"
5065 ],
5066 "type": "object"
5067 },
5068 "io.k8s.api.core.v1.PodDNSConfig": {
5069 "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
5070 "properties": {
5071 "nameservers": {
5072 "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.",
5073 "items": {
5074 "default": "",
5075 "type": "string"
5076 },
5077 "type": "array",
5078 "x-kubernetes-list-type": "atomic"
5079 },
5080 "options": {
5081 "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.",
5082 "items": {
5083 "allOf": [
5084 {
5085 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfigOption"
5086 }
5087 ],
5088 "default": {}
5089 },
5090 "type": "array",
5091 "x-kubernetes-list-type": "atomic"
5092 },
5093 "searches": {
5094 "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.",
5095 "items": {
5096 "default": "",
5097 "type": "string"
5098 },
5099 "type": "array",
5100 "x-kubernetes-list-type": "atomic"
5101 }
5102 },
5103 "type": "object"
5104 },
5105 "io.k8s.api.core.v1.PodDNSConfigOption": {
5106 "description": "PodDNSConfigOption defines DNS resolver options of a pod.",
5107 "properties": {
5108 "name": {
5109 "description": "Required.",
5110 "type": "string"
5111 },
5112 "value": {
5113 "type": "string"
5114 }
5115 },
5116 "type": "object"
5117 },
5118 "io.k8s.api.core.v1.PodIP": {
5119 "description": "PodIP represents a single IP address allocated to the pod.",
5120 "properties": {
5121 "ip": {
5122 "description": "IP is the IP address assigned to the pod",
5123 "type": "string"
5124 }
5125 },
5126 "type": "object"
5127 },
5128 "io.k8s.api.core.v1.PodList": {
5129 "description": "PodList is a list of Pods.",
5130 "properties": {
5131 "apiVersion": {
5132 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5133 "type": "string"
5134 },
5135 "items": {
5136 "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
5137 "items": {
5138 "allOf": [
5139 {
5140 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
5141 }
5142 ],
5143 "default": {}
5144 },
5145 "type": "array"
5146 },
5147 "kind": {
5148 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5149 "type": "string"
5150 },
5151 "metadata": {
5152 "allOf": [
5153 {
5154 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
5155 }
5156 ],
5157 "default": {},
5158 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5159 }
5160 },
5161 "required": [
5162 "items"
5163 ],
5164 "type": "object",
5165 "x-kubernetes-group-version-kind": [
5166 {
5167 "group": "",
5168 "kind": "PodList",
5169 "version": "v1"
5170 }
5171 ]
5172 },
5173 "io.k8s.api.core.v1.PodOS": {
5174 "description": "PodOS defines the OS parameters of a pod.",
5175 "properties": {
5176 "name": {
5177 "default": "",
5178 "description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null",
5179 "type": "string"
5180 }
5181 },
5182 "required": [
5183 "name"
5184 ],
5185 "type": "object"
5186 },
5187 "io.k8s.api.core.v1.PodReadinessGate": {
5188 "description": "PodReadinessGate contains the reference to a pod condition",
5189 "properties": {
5190 "conditionType": {
5191 "default": "",
5192 "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
5193 "type": "string"
5194 }
5195 },
5196 "required": [
5197 "conditionType"
5198 ],
5199 "type": "object"
5200 },
5201 "io.k8s.api.core.v1.PodResourceClaim": {
5202 "description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.",
5203 "properties": {
5204 "name": {
5205 "default": "",
5206 "description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.",
5207 "type": "string"
5208 },
5209 "source": {
5210 "allOf": [
5211 {
5212 "$ref": "#/components/schemas/io.k8s.api.core.v1.ClaimSource"
5213 }
5214 ],
5215 "default": {},
5216 "description": "Source describes where to find the ResourceClaim."
5217 }
5218 },
5219 "required": [
5220 "name"
5221 ],
5222 "type": "object"
5223 },
5224 "io.k8s.api.core.v1.PodResourceClaimStatus": {
5225 "description": "PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.",
5226 "properties": {
5227 "name": {
5228 "default": "",
5229 "description": "Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.",
5230 "type": "string"
5231 },
5232 "resourceClaimName": {
5233 "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. It this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case.",
5234 "type": "string"
5235 }
5236 },
5237 "required": [
5238 "name"
5239 ],
5240 "type": "object"
5241 },
5242 "io.k8s.api.core.v1.PodSchedulingGate": {
5243 "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.",
5244 "properties": {
5245 "name": {
5246 "default": "",
5247 "description": "Name of the scheduling gate. Each scheduling gate must have a unique name field.",
5248 "type": "string"
5249 }
5250 },
5251 "required": [
5252 "name"
5253 ],
5254 "type": "object"
5255 },
5256 "io.k8s.api.core.v1.PodSecurityContext": {
5257 "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.",
5258 "properties": {
5259 "appArmorProfile": {
5260 "allOf": [
5261 {
5262 "$ref": "#/components/schemas/io.k8s.api.core.v1.AppArmorProfile"
5263 }
5264 ],
5265 "description": "appArmorProfile is the AppArmor options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows."
5266 },
5267 "fsGroup": {
5268 "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. Note that this field cannot be set when spec.os.name is windows.",
5269 "format": "int64",
5270 "type": "integer"
5271 },
5272 "fsGroupChangePolicy": {
5273 "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. Note that this field cannot be set when spec.os.name is windows.",
5274 "type": "string"
5275 },
5276 "runAsGroup": {
5277 "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. Note that this field cannot be set when spec.os.name is windows.",
5278 "format": "int64",
5279 "type": "integer"
5280 },
5281 "runAsNonRoot": {
5282 "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.",
5283 "type": "boolean"
5284 },
5285 "runAsUser": {
5286 "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. Note that this field cannot be set when spec.os.name is windows.",
5287 "format": "int64",
5288 "type": "integer"
5289 },
5290 "seLinuxOptions": {
5291 "allOf": [
5292 {
5293 "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions"
5294 }
5295 ],
5296 "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. Note that this field cannot be set when spec.os.name is windows."
5297 },
5298 "seccompProfile": {
5299 "allOf": [
5300 {
5301 "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile"
5302 }
5303 ],
5304 "description": "The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows."
5305 },
5306 "supplementalGroups": {
5307 "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.",
5308 "items": {
5309 "default": 0,
5310 "format": "int64",
5311 "type": "integer"
5312 },
5313 "type": "array",
5314 "x-kubernetes-list-type": "atomic"
5315 },
5316 "sysctls": {
5317 "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.",
5318 "items": {
5319 "allOf": [
5320 {
5321 "$ref": "#/components/schemas/io.k8s.api.core.v1.Sysctl"
5322 }
5323 ],
5324 "default": {}
5325 },
5326 "type": "array",
5327 "x-kubernetes-list-type": "atomic"
5328 },
5329 "windowsOptions": {
5330 "allOf": [
5331 {
5332 "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions"
5333 }
5334 ],
5335 "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. Note that this field cannot be set when spec.os.name is linux."
5336 }
5337 },
5338 "type": "object"
5339 },
5340 "io.k8s.api.core.v1.PodSpec": {
5341 "description": "PodSpec is a description of a pod.",
5342 "properties": {
5343 "activeDeadlineSeconds": {
5344 "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.",
5345 "format": "int64",
5346 "type": "integer"
5347 },
5348 "affinity": {
5349 "allOf": [
5350 {
5351 "$ref": "#/components/schemas/io.k8s.api.core.v1.Affinity"
5352 }
5353 ],
5354 "description": "If specified, the pod's scheduling constraints"
5355 },
5356 "automountServiceAccountToken": {
5357 "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
5358 "type": "boolean"
5359 },
5360 "containers": {
5361 "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.",
5362 "items": {
5363 "allOf": [
5364 {
5365 "$ref": "#/components/schemas/io.k8s.api.core.v1.Container"
5366 }
5367 ],
5368 "default": {}
5369 },
5370 "type": "array",
5371 "x-kubernetes-list-map-keys": [
5372 "name"
5373 ],
5374 "x-kubernetes-list-type": "map",
5375 "x-kubernetes-patch-merge-key": "name",
5376 "x-kubernetes-patch-strategy": "merge"
5377 },
5378 "dnsConfig": {
5379 "allOf": [
5380 {
5381 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfig"
5382 }
5383 ],
5384 "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
5385 },
5386 "dnsPolicy": {
5387 "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'.",
5388 "type": "string"
5389 },
5390 "enableServiceLinks": {
5391 "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.",
5392 "type": "boolean"
5393 },
5394 "ephemeralContainers": {
5395 "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.",
5396 "items": {
5397 "allOf": [
5398 {
5399 "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralContainer"
5400 }
5401 ],
5402 "default": {}
5403 },
5404 "type": "array",
5405 "x-kubernetes-list-map-keys": [
5406 "name"
5407 ],
5408 "x-kubernetes-list-type": "map",
5409 "x-kubernetes-patch-merge-key": "name",
5410 "x-kubernetes-patch-strategy": "merge"
5411 },
5412 "hostAliases": {
5413 "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified.",
5414 "items": {
5415 "allOf": [
5416 {
5417 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostAlias"
5418 }
5419 ],
5420 "default": {}
5421 },
5422 "type": "array",
5423 "x-kubernetes-list-map-keys": [
5424 "ip"
5425 ],
5426 "x-kubernetes-list-type": "map",
5427 "x-kubernetes-patch-merge-key": "ip",
5428 "x-kubernetes-patch-strategy": "merge"
5429 },
5430 "hostIPC": {
5431 "description": "Use the host's ipc namespace. Optional: Default to false.",
5432 "type": "boolean"
5433 },
5434 "hostNetwork": {
5435 "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.",
5436 "type": "boolean"
5437 },
5438 "hostPID": {
5439 "description": "Use the host's pid namespace. Optional: Default to false.",
5440 "type": "boolean"
5441 },
5442 "hostUsers": {
5443 "description": "Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.",
5444 "type": "boolean"
5445 },
5446 "hostname": {
5447 "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
5448 "type": "string"
5449 },
5450 "imagePullSecrets": {
5451 "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. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
5452 "items": {
5453 "allOf": [
5454 {
5455 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
5456 }
5457 ],
5458 "default": {}
5459 },
5460 "type": "array",
5461 "x-kubernetes-list-map-keys": [
5462 "name"
5463 ],
5464 "x-kubernetes-list-type": "map",
5465 "x-kubernetes-patch-merge-key": "name",
5466 "x-kubernetes-patch-strategy": "merge"
5467 },
5468 "initContainers": {
5469 "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/",
5470 "items": {
5471 "allOf": [
5472 {
5473 "$ref": "#/components/schemas/io.k8s.api.core.v1.Container"
5474 }
5475 ],
5476 "default": {}
5477 },
5478 "type": "array",
5479 "x-kubernetes-list-map-keys": [
5480 "name"
5481 ],
5482 "x-kubernetes-list-type": "map",
5483 "x-kubernetes-patch-merge-key": "name",
5484 "x-kubernetes-patch-strategy": "merge"
5485 },
5486 "nodeName": {
5487 "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.",
5488 "type": "string"
5489 },
5490 "nodeSelector": {
5491 "additionalProperties": {
5492 "default": "",
5493 "type": "string"
5494 },
5495 "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/",
5496 "type": "object",
5497 "x-kubernetes-map-type": "atomic"
5498 },
5499 "os": {
5500 "allOf": [
5501 {
5502 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodOS"
5503 }
5504 ],
5505 "description": "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.appArmorProfile - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.appArmorProfile - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup"
5506 },
5507 "overhead": {
5508 "additionalProperties": {
5509 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
5510 },
5511 "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md",
5512 "type": "object"
5513 },
5514 "preemptionPolicy": {
5515 "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
5516 "type": "string"
5517 },
5518 "priority": {
5519 "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.",
5520 "format": "int32",
5521 "type": "integer"
5522 },
5523 "priorityClassName": {
5524 "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.",
5525 "type": "string"
5526 },
5527 "readinessGates": {
5528 "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",
5529 "items": {
5530 "allOf": [
5531 {
5532 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodReadinessGate"
5533 }
5534 ],
5535 "default": {}
5536 },
5537 "type": "array",
5538 "x-kubernetes-list-type": "atomic"
5539 },
5540 "resourceClaims": {
5541 "description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.",
5542 "items": {
5543 "allOf": [
5544 {
5545 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaim"
5546 }
5547 ],
5548 "default": {}
5549 },
5550 "type": "array",
5551 "x-kubernetes-list-map-keys": [
5552 "name"
5553 ],
5554 "x-kubernetes-list-type": "map",
5555 "x-kubernetes-patch-merge-key": "name",
5556 "x-kubernetes-patch-strategy": "merge,retainKeys"
5557 },
5558 "restartPolicy": {
5559 "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
5560 "type": "string"
5561 },
5562 "runtimeClassName": {
5563 "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",
5564 "type": "string"
5565 },
5566 "schedulerName": {
5567 "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
5568 "type": "string"
5569 },
5570 "schedulingGates": {
5571 "description": "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.",
5572 "items": {
5573 "allOf": [
5574 {
5575 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSchedulingGate"
5576 }
5577 ],
5578 "default": {}
5579 },
5580 "type": "array",
5581 "x-kubernetes-list-map-keys": [
5582 "name"
5583 ],
5584 "x-kubernetes-list-type": "map",
5585 "x-kubernetes-patch-merge-key": "name",
5586 "x-kubernetes-patch-strategy": "merge"
5587 },
5588 "securityContext": {
5589 "allOf": [
5590 {
5591 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSecurityContext"
5592 }
5593 ],
5594 "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
5595 },
5596 "serviceAccount": {
5597 "description": "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
5598 "type": "string"
5599 },
5600 "serviceAccountName": {
5601 "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/",
5602 "type": "string"
5603 },
5604 "setHostnameAsFQDN": {
5605 "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.",
5606 "type": "boolean"
5607 },
5608 "shareProcessNamespace": {
5609 "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.",
5610 "type": "boolean"
5611 },
5612 "subdomain": {
5613 "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.",
5614 "type": "string"
5615 },
5616 "terminationGracePeriodSeconds": {
5617 "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
5618 "format": "int64",
5619 "type": "integer"
5620 },
5621 "tolerations": {
5622 "description": "If specified, the pod's tolerations.",
5623 "items": {
5624 "allOf": [
5625 {
5626 "$ref": "#/components/schemas/io.k8s.api.core.v1.Toleration"
5627 }
5628 ],
5629 "default": {}
5630 },
5631 "type": "array",
5632 "x-kubernetes-list-type": "atomic"
5633 },
5634 "topologySpreadConstraints": {
5635 "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.",
5636 "items": {
5637 "allOf": [
5638 {
5639 "$ref": "#/components/schemas/io.k8s.api.core.v1.TopologySpreadConstraint"
5640 }
5641 ],
5642 "default": {}
5643 },
5644 "type": "array",
5645 "x-kubernetes-list-map-keys": [
5646 "topologyKey",
5647 "whenUnsatisfiable"
5648 ],
5649 "x-kubernetes-list-type": "map",
5650 "x-kubernetes-patch-merge-key": "topologyKey",
5651 "x-kubernetes-patch-strategy": "merge"
5652 },
5653 "volumes": {
5654 "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
5655 "items": {
5656 "allOf": [
5657 {
5658 "$ref": "#/components/schemas/io.k8s.api.core.v1.Volume"
5659 }
5660 ],
5661 "default": {}
5662 },
5663 "type": "array",
5664 "x-kubernetes-list-map-keys": [
5665 "name"
5666 ],
5667 "x-kubernetes-list-type": "map",
5668 "x-kubernetes-patch-merge-key": "name",
5669 "x-kubernetes-patch-strategy": "merge,retainKeys"
5670 }
5671 },
5672 "required": [
5673 "containers"
5674 ],
5675 "type": "object"
5676 },
5677 "io.k8s.api.core.v1.PodStatus": {
5678 "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.",
5679 "properties": {
5680 "conditions": {
5681 "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
5682 "items": {
5683 "allOf": [
5684 {
5685 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodCondition"
5686 }
5687 ],
5688 "default": {}
5689 },
5690 "type": "array",
5691 "x-kubernetes-list-map-keys": [
5692 "type"
5693 ],
5694 "x-kubernetes-list-type": "map",
5695 "x-kubernetes-patch-merge-key": "type",
5696 "x-kubernetes-patch-strategy": "merge"
5697 },
5698 "containerStatuses": {
5699 "description": "The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
5700 "items": {
5701 "allOf": [
5702 {
5703 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus"
5704 }
5705 ],
5706 "default": {}
5707 },
5708 "type": "array",
5709 "x-kubernetes-list-type": "atomic"
5710 },
5711 "ephemeralContainerStatuses": {
5712 "description": "Status for any ephemeral containers that have run in this pod.",
5713 "items": {
5714 "allOf": [
5715 {
5716 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus"
5717 }
5718 ],
5719 "default": {}
5720 },
5721 "type": "array",
5722 "x-kubernetes-list-type": "atomic"
5723 },
5724 "hostIP": {
5725 "description": "hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod",
5726 "type": "string"
5727 },
5728 "hostIPs": {
5729 "description": "hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod.",
5730 "items": {
5731 "allOf": [
5732 {
5733 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostIP"
5734 }
5735 ],
5736 "default": {}
5737 },
5738 "type": "array",
5739 "x-kubernetes-list-type": "atomic",
5740 "x-kubernetes-patch-merge-key": "ip",
5741 "x-kubernetes-patch-strategy": "merge"
5742 },
5743 "initContainerStatuses": {
5744 "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",
5745 "items": {
5746 "allOf": [
5747 {
5748 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus"
5749 }
5750 ],
5751 "default": {}
5752 },
5753 "type": "array",
5754 "x-kubernetes-list-type": "atomic"
5755 },
5756 "message": {
5757 "description": "A human readable message indicating details about why the pod is in this condition.",
5758 "type": "string"
5759 },
5760 "nominatedNodeName": {
5761 "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.",
5762 "type": "string"
5763 },
5764 "phase": {
5765 "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",
5766 "type": "string"
5767 },
5768 "podIP": {
5769 "description": "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
5770 "type": "string"
5771 },
5772 "podIPs": {
5773 "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.",
5774 "items": {
5775 "allOf": [
5776 {
5777 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodIP"
5778 }
5779 ],
5780 "default": {}
5781 },
5782 "type": "array",
5783 "x-kubernetes-list-map-keys": [
5784 "ip"
5785 ],
5786 "x-kubernetes-list-type": "map",
5787 "x-kubernetes-patch-merge-key": "ip",
5788 "x-kubernetes-patch-strategy": "merge"
5789 },
5790 "qosClass": {
5791 "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://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes",
5792 "type": "string"
5793 },
5794 "reason": {
5795 "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'",
5796 "type": "string"
5797 },
5798 "resize": {
5799 "description": "Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"",
5800 "type": "string"
5801 },
5802 "resourceClaimStatuses": {
5803 "description": "Status of resource claims.",
5804 "items": {
5805 "allOf": [
5806 {
5807 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaimStatus"
5808 }
5809 ],
5810 "default": {}
5811 },
5812 "type": "array",
5813 "x-kubernetes-list-map-keys": [
5814 "name"
5815 ],
5816 "x-kubernetes-list-type": "map",
5817 "x-kubernetes-patch-merge-key": "name",
5818 "x-kubernetes-patch-strategy": "merge,retainKeys"
5819 },
5820 "startTime": {
5821 "allOf": [
5822 {
5823 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
5824 }
5825 ],
5826 "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."
5827 }
5828 },
5829 "type": "object"
5830 },
5831 "io.k8s.api.core.v1.PodTemplate": {
5832 "description": "PodTemplate describes a template for creating copies of a predefined pod.",
5833 "properties": {
5834 "apiVersion": {
5835 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5836 "type": "string"
5837 },
5838 "kind": {
5839 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5840 "type": "string"
5841 },
5842 "metadata": {
5843 "allOf": [
5844 {
5845 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
5846 }
5847 ],
5848 "default": {},
5849 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5850 },
5851 "template": {
5852 "allOf": [
5853 {
5854 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec"
5855 }
5856 ],
5857 "default": {},
5858 "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"
5859 }
5860 },
5861 "type": "object",
5862 "x-kubernetes-group-version-kind": [
5863 {
5864 "group": "",
5865 "kind": "PodTemplate",
5866 "version": "v1"
5867 }
5868 ]
5869 },
5870 "io.k8s.api.core.v1.PodTemplateList": {
5871 "description": "PodTemplateList is a list of PodTemplates.",
5872 "properties": {
5873 "apiVersion": {
5874 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5875 "type": "string"
5876 },
5877 "items": {
5878 "description": "List of pod templates",
5879 "items": {
5880 "allOf": [
5881 {
5882 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
5883 }
5884 ],
5885 "default": {}
5886 },
5887 "type": "array"
5888 },
5889 "kind": {
5890 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5891 "type": "string"
5892 },
5893 "metadata": {
5894 "allOf": [
5895 {
5896 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
5897 }
5898 ],
5899 "default": {},
5900 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5901 }
5902 },
5903 "required": [
5904 "items"
5905 ],
5906 "type": "object",
5907 "x-kubernetes-group-version-kind": [
5908 {
5909 "group": "",
5910 "kind": "PodTemplateList",
5911 "version": "v1"
5912 }
5913 ]
5914 },
5915 "io.k8s.api.core.v1.PodTemplateSpec": {
5916 "description": "PodTemplateSpec describes the data a pod should have when created from a template",
5917 "properties": {
5918 "metadata": {
5919 "allOf": [
5920 {
5921 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
5922 }
5923 ],
5924 "default": {},
5925 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5926 },
5927 "spec": {
5928 "allOf": [
5929 {
5930 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSpec"
5931 }
5932 ],
5933 "default": {},
5934 "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"
5935 }
5936 },
5937 "type": "object"
5938 },
5939 "io.k8s.api.core.v1.PortStatus": {
5940 "properties": {
5941 "error": {
5942 "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.",
5943 "type": "string"
5944 },
5945 "port": {
5946 "default": 0,
5947 "description": "Port is the port number of the service port of which status is recorded here",
5948 "format": "int32",
5949 "type": "integer"
5950 },
5951 "protocol": {
5952 "default": "",
5953 "description": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
5954 "type": "string"
5955 }
5956 },
5957 "required": [
5958 "port",
5959 "protocol"
5960 ],
5961 "type": "object"
5962 },
5963 "io.k8s.api.core.v1.PortworxVolumeSource": {
5964 "description": "PortworxVolumeSource represents a Portworx volume resource.",
5965 "properties": {
5966 "fsType": {
5967 "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.",
5968 "type": "string"
5969 },
5970 "readOnly": {
5971 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5972 "type": "boolean"
5973 },
5974 "volumeID": {
5975 "default": "",
5976 "description": "volumeID uniquely identifies a Portworx volume",
5977 "type": "string"
5978 }
5979 },
5980 "required": [
5981 "volumeID"
5982 ],
5983 "type": "object"
5984 },
5985 "io.k8s.api.core.v1.PreferredSchedulingTerm": {
5986 "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).",
5987 "properties": {
5988 "preference": {
5989 "allOf": [
5990 {
5991 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm"
5992 }
5993 ],
5994 "default": {},
5995 "description": "A node selector term, associated with the corresponding weight."
5996 },
5997 "weight": {
5998 "default": 0,
5999 "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
6000 "format": "int32",
6001 "type": "integer"
6002 }
6003 },
6004 "required": [
6005 "weight",
6006 "preference"
6007 ],
6008 "type": "object"
6009 },
6010 "io.k8s.api.core.v1.Probe": {
6011 "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
6012 "properties": {
6013 "exec": {
6014 "allOf": [
6015 {
6016 "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction"
6017 }
6018 ],
6019 "description": "Exec specifies the action to take."
6020 },
6021 "failureThreshold": {
6022 "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
6023 "format": "int32",
6024 "type": "integer"
6025 },
6026 "grpc": {
6027 "allOf": [
6028 {
6029 "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
6030 }
6031 ],
6032 "description": "GRPC specifies an action involving a GRPC port."
6033 },
6034 "httpGet": {
6035 "allOf": [
6036 {
6037 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
6038 }
6039 ],
6040 "description": "HTTPGet specifies the http request to perform."
6041 },
6042 "initialDelaySeconds": {
6043 "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",
6044 "format": "int32",
6045 "type": "integer"
6046 },
6047 "periodSeconds": {
6048 "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
6049 "format": "int32",
6050 "type": "integer"
6051 },
6052 "successThreshold": {
6053 "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.",
6054 "format": "int32",
6055 "type": "integer"
6056 },
6057 "tcpSocket": {
6058 "allOf": [
6059 {
6060 "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction"
6061 }
6062 ],
6063 "description": "TCPSocket specifies an action involving a TCP port."
6064 },
6065 "terminationGracePeriodSeconds": {
6066 "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
6067 "format": "int64",
6068 "type": "integer"
6069 },
6070 "timeoutSeconds": {
6071 "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",
6072 "format": "int32",
6073 "type": "integer"
6074 }
6075 },
6076 "type": "object"
6077 },
6078 "io.k8s.api.core.v1.ProjectedVolumeSource": {
6079 "description": "Represents a projected volume source",
6080 "properties": {
6081 "defaultMode": {
6082 "description": "defaultMode are the 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.",
6083 "format": "int32",
6084 "type": "integer"
6085 },
6086 "sources": {
6087 "description": "sources is the list of volume projections",
6088 "items": {
6089 "allOf": [
6090 {
6091 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeProjection"
6092 }
6093 ],
6094 "default": {}
6095 },
6096 "type": "array",
6097 "x-kubernetes-list-type": "atomic"
6098 }
6099 },
6100 "type": "object"
6101 },
6102 "io.k8s.api.core.v1.QuobyteVolumeSource": {
6103 "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
6104 "properties": {
6105 "group": {
6106 "description": "group to map volume access to Default is no group",
6107 "type": "string"
6108 },
6109 "readOnly": {
6110 "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
6111 "type": "boolean"
6112 },
6113 "registry": {
6114 "default": "",
6115 "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",
6116 "type": "string"
6117 },
6118 "tenant": {
6119 "description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
6120 "type": "string"
6121 },
6122 "user": {
6123 "description": "user to map volume access to Defaults to serivceaccount user",
6124 "type": "string"
6125 },
6126 "volume": {
6127 "default": "",
6128 "description": "volume is a string that references an already created Quobyte volume by name.",
6129 "type": "string"
6130 }
6131 },
6132 "required": [
6133 "registry",
6134 "volume"
6135 ],
6136 "type": "object"
6137 },
6138 "io.k8s.api.core.v1.RBDPersistentVolumeSource": {
6139 "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
6140 "properties": {
6141 "fsType": {
6142 "description": "fsType is the 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",
6143 "type": "string"
6144 },
6145 "image": {
6146 "default": "",
6147 "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6148 "type": "string"
6149 },
6150 "keyring": {
6151 "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",
6152 "type": "string"
6153 },
6154 "monitors": {
6155 "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6156 "items": {
6157 "default": "",
6158 "type": "string"
6159 },
6160 "type": "array",
6161 "x-kubernetes-list-type": "atomic"
6162 },
6163 "pool": {
6164 "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6165 "type": "string"
6166 },
6167 "readOnly": {
6168 "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",
6169 "type": "boolean"
6170 },
6171 "secretRef": {
6172 "allOf": [
6173 {
6174 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
6175 }
6176 ],
6177 "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"
6178 },
6179 "user": {
6180 "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6181 "type": "string"
6182 }
6183 },
6184 "required": [
6185 "monitors",
6186 "image"
6187 ],
6188 "type": "object"
6189 },
6190 "io.k8s.api.core.v1.RBDVolumeSource": {
6191 "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
6192 "properties": {
6193 "fsType": {
6194 "description": "fsType is the 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",
6195 "type": "string"
6196 },
6197 "image": {
6198 "default": "",
6199 "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6200 "type": "string"
6201 },
6202 "keyring": {
6203 "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",
6204 "type": "string"
6205 },
6206 "monitors": {
6207 "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6208 "items": {
6209 "default": "",
6210 "type": "string"
6211 },
6212 "type": "array",
6213 "x-kubernetes-list-type": "atomic"
6214 },
6215 "pool": {
6216 "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6217 "type": "string"
6218 },
6219 "readOnly": {
6220 "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",
6221 "type": "boolean"
6222 },
6223 "secretRef": {
6224 "allOf": [
6225 {
6226 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
6227 }
6228 ],
6229 "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"
6230 },
6231 "user": {
6232 "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
6233 "type": "string"
6234 }
6235 },
6236 "required": [
6237 "monitors",
6238 "image"
6239 ],
6240 "type": "object"
6241 },
6242 "io.k8s.api.core.v1.ReplicationController": {
6243 "description": "ReplicationController represents the configuration of a replication controller.",
6244 "properties": {
6245 "apiVersion": {
6246 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6247 "type": "string"
6248 },
6249 "kind": {
6250 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6251 "type": "string"
6252 },
6253 "metadata": {
6254 "allOf": [
6255 {
6256 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6257 }
6258 ],
6259 "default": {},
6260 "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"
6261 },
6262 "spec": {
6263 "allOf": [
6264 {
6265 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerSpec"
6266 }
6267 ],
6268 "default": {},
6269 "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"
6270 },
6271 "status": {
6272 "allOf": [
6273 {
6274 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerStatus"
6275 }
6276 ],
6277 "default": {},
6278 "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"
6279 }
6280 },
6281 "type": "object",
6282 "x-kubernetes-group-version-kind": [
6283 {
6284 "group": "",
6285 "kind": "ReplicationController",
6286 "version": "v1"
6287 }
6288 ]
6289 },
6290 "io.k8s.api.core.v1.ReplicationControllerCondition": {
6291 "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
6292 "properties": {
6293 "lastTransitionTime": {
6294 "allOf": [
6295 {
6296 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
6297 }
6298 ],
6299 "description": "The last time the condition transitioned from one status to another."
6300 },
6301 "message": {
6302 "description": "A human readable message indicating details about the transition.",
6303 "type": "string"
6304 },
6305 "reason": {
6306 "description": "The reason for the condition's last transition.",
6307 "type": "string"
6308 },
6309 "status": {
6310 "default": "",
6311 "description": "Status of the condition, one of True, False, Unknown.",
6312 "type": "string"
6313 },
6314 "type": {
6315 "default": "",
6316 "description": "Type of replication controller condition.",
6317 "type": "string"
6318 }
6319 },
6320 "required": [
6321 "type",
6322 "status"
6323 ],
6324 "type": "object"
6325 },
6326 "io.k8s.api.core.v1.ReplicationControllerList": {
6327 "description": "ReplicationControllerList is a collection of replication controllers.",
6328 "properties": {
6329 "apiVersion": {
6330 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6331 "type": "string"
6332 },
6333 "items": {
6334 "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
6335 "items": {
6336 "allOf": [
6337 {
6338 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
6339 }
6340 ],
6341 "default": {}
6342 },
6343 "type": "array"
6344 },
6345 "kind": {
6346 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6347 "type": "string"
6348 },
6349 "metadata": {
6350 "allOf": [
6351 {
6352 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
6353 }
6354 ],
6355 "default": {},
6356 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6357 }
6358 },
6359 "required": [
6360 "items"
6361 ],
6362 "type": "object",
6363 "x-kubernetes-group-version-kind": [
6364 {
6365 "group": "",
6366 "kind": "ReplicationControllerList",
6367 "version": "v1"
6368 }
6369 ]
6370 },
6371 "io.k8s.api.core.v1.ReplicationControllerSpec": {
6372 "description": "ReplicationControllerSpec is the specification of a replication controller.",
6373 "properties": {
6374 "minReadySeconds": {
6375 "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)",
6376 "format": "int32",
6377 "type": "integer"
6378 },
6379 "replicas": {
6380 "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",
6381 "format": "int32",
6382 "type": "integer"
6383 },
6384 "selector": {
6385 "additionalProperties": {
6386 "default": "",
6387 "type": "string"
6388 },
6389 "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",
6390 "type": "object",
6391 "x-kubernetes-map-type": "atomic"
6392 },
6393 "template": {
6394 "allOf": [
6395 {
6396 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec"
6397 }
6398 ],
6399 "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
6400 }
6401 },
6402 "type": "object"
6403 },
6404 "io.k8s.api.core.v1.ReplicationControllerStatus": {
6405 "description": "ReplicationControllerStatus represents the current status of a replication controller.",
6406 "properties": {
6407 "availableReplicas": {
6408 "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
6409 "format": "int32",
6410 "type": "integer"
6411 },
6412 "conditions": {
6413 "description": "Represents the latest available observations of a replication controller's current state.",
6414 "items": {
6415 "allOf": [
6416 {
6417 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerCondition"
6418 }
6419 ],
6420 "default": {}
6421 },
6422 "type": "array",
6423 "x-kubernetes-list-map-keys": [
6424 "type"
6425 ],
6426 "x-kubernetes-list-type": "map",
6427 "x-kubernetes-patch-merge-key": "type",
6428 "x-kubernetes-patch-strategy": "merge"
6429 },
6430 "fullyLabeledReplicas": {
6431 "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
6432 "format": "int32",
6433 "type": "integer"
6434 },
6435 "observedGeneration": {
6436 "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
6437 "format": "int64",
6438 "type": "integer"
6439 },
6440 "readyReplicas": {
6441 "description": "The number of ready replicas for this replication controller.",
6442 "format": "int32",
6443 "type": "integer"
6444 },
6445 "replicas": {
6446 "default": 0,
6447 "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
6448 "format": "int32",
6449 "type": "integer"
6450 }
6451 },
6452 "required": [
6453 "replicas"
6454 ],
6455 "type": "object"
6456 },
6457 "io.k8s.api.core.v1.ResourceClaim": {
6458 "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
6459 "properties": {
6460 "name": {
6461 "default": "",
6462 "description": "Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.",
6463 "type": "string"
6464 }
6465 },
6466 "required": [
6467 "name"
6468 ],
6469 "type": "object"
6470 },
6471 "io.k8s.api.core.v1.ResourceFieldSelector": {
6472 "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
6473 "properties": {
6474 "containerName": {
6475 "description": "Container name: required for volumes, optional for env vars",
6476 "type": "string"
6477 },
6478 "divisor": {
6479 "allOf": [
6480 {
6481 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6482 }
6483 ],
6484 "description": "Specifies the output format of the exposed resources, defaults to \"1\""
6485 },
6486 "resource": {
6487 "default": "",
6488 "description": "Required: resource to select",
6489 "type": "string"
6490 }
6491 },
6492 "required": [
6493 "resource"
6494 ],
6495 "type": "object",
6496 "x-kubernetes-map-type": "atomic"
6497 },
6498 "io.k8s.api.core.v1.ResourceQuota": {
6499 "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
6500 "properties": {
6501 "apiVersion": {
6502 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6503 "type": "string"
6504 },
6505 "kind": {
6506 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6507 "type": "string"
6508 },
6509 "metadata": {
6510 "allOf": [
6511 {
6512 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6513 }
6514 ],
6515 "default": {},
6516 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6517 },
6518 "spec": {
6519 "allOf": [
6520 {
6521 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaSpec"
6522 }
6523 ],
6524 "default": {},
6525 "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6526 },
6527 "status": {
6528 "allOf": [
6529 {
6530 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaStatus"
6531 }
6532 ],
6533 "default": {},
6534 "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"
6535 }
6536 },
6537 "type": "object",
6538 "x-kubernetes-group-version-kind": [
6539 {
6540 "group": "",
6541 "kind": "ResourceQuota",
6542 "version": "v1"
6543 }
6544 ]
6545 },
6546 "io.k8s.api.core.v1.ResourceQuotaList": {
6547 "description": "ResourceQuotaList is a list of ResourceQuota items.",
6548 "properties": {
6549 "apiVersion": {
6550 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6551 "type": "string"
6552 },
6553 "items": {
6554 "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
6555 "items": {
6556 "allOf": [
6557 {
6558 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
6559 }
6560 ],
6561 "default": {}
6562 },
6563 "type": "array"
6564 },
6565 "kind": {
6566 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6567 "type": "string"
6568 },
6569 "metadata": {
6570 "allOf": [
6571 {
6572 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
6573 }
6574 ],
6575 "default": {},
6576 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6577 }
6578 },
6579 "required": [
6580 "items"
6581 ],
6582 "type": "object",
6583 "x-kubernetes-group-version-kind": [
6584 {
6585 "group": "",
6586 "kind": "ResourceQuotaList",
6587 "version": "v1"
6588 }
6589 ]
6590 },
6591 "io.k8s.api.core.v1.ResourceQuotaSpec": {
6592 "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
6593 "properties": {
6594 "hard": {
6595 "additionalProperties": {
6596 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6597 },
6598 "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
6599 "type": "object"
6600 },
6601 "scopeSelector": {
6602 "allOf": [
6603 {
6604 "$ref": "#/components/schemas/io.k8s.api.core.v1.ScopeSelector"
6605 }
6606 ],
6607 "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."
6608 },
6609 "scopes": {
6610 "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
6611 "items": {
6612 "default": "",
6613 "type": "string"
6614 },
6615 "type": "array",
6616 "x-kubernetes-list-type": "atomic"
6617 }
6618 },
6619 "type": "object"
6620 },
6621 "io.k8s.api.core.v1.ResourceQuotaStatus": {
6622 "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
6623 "properties": {
6624 "hard": {
6625 "additionalProperties": {
6626 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6627 },
6628 "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
6629 "type": "object"
6630 },
6631 "used": {
6632 "additionalProperties": {
6633 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6634 },
6635 "description": "Used is the current observed total usage of the resource in the namespace.",
6636 "type": "object"
6637 }
6638 },
6639 "type": "object"
6640 },
6641 "io.k8s.api.core.v1.ResourceRequirements": {
6642 "description": "ResourceRequirements describes the compute resource requirements.",
6643 "properties": {
6644 "claims": {
6645 "description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
6646 "items": {
6647 "allOf": [
6648 {
6649 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceClaim"
6650 }
6651 ],
6652 "default": {}
6653 },
6654 "type": "array",
6655 "x-kubernetes-list-map-keys": [
6656 "name"
6657 ],
6658 "x-kubernetes-list-type": "map"
6659 },
6660 "limits": {
6661 "additionalProperties": {
6662 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6663 },
6664 "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
6665 "type": "object"
6666 },
6667 "requests": {
6668 "additionalProperties": {
6669 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
6670 },
6671 "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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
6672 "type": "object"
6673 }
6674 },
6675 "type": "object"
6676 },
6677 "io.k8s.api.core.v1.SELinuxOptions": {
6678 "description": "SELinuxOptions are the labels to be applied to the container",
6679 "properties": {
6680 "level": {
6681 "description": "Level is SELinux level label that applies to the container.",
6682 "type": "string"
6683 },
6684 "role": {
6685 "description": "Role is a SELinux role label that applies to the container.",
6686 "type": "string"
6687 },
6688 "type": {
6689 "description": "Type is a SELinux type label that applies to the container.",
6690 "type": "string"
6691 },
6692 "user": {
6693 "description": "User is a SELinux user label that applies to the container.",
6694 "type": "string"
6695 }
6696 },
6697 "type": "object"
6698 },
6699 "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": {
6700 "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
6701 "properties": {
6702 "fsType": {
6703 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
6704 "type": "string"
6705 },
6706 "gateway": {
6707 "default": "",
6708 "description": "gateway is the host address of the ScaleIO API Gateway.",
6709 "type": "string"
6710 },
6711 "protectionDomain": {
6712 "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.",
6713 "type": "string"
6714 },
6715 "readOnly": {
6716 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6717 "type": "boolean"
6718 },
6719 "secretRef": {
6720 "allOf": [
6721 {
6722 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
6723 }
6724 ],
6725 "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
6726 },
6727 "sslEnabled": {
6728 "description": "sslEnabled is the flag to enable/disable SSL communication with Gateway, default false",
6729 "type": "boolean"
6730 },
6731 "storageMode": {
6732 "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
6733 "type": "string"
6734 },
6735 "storagePool": {
6736 "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.",
6737 "type": "string"
6738 },
6739 "system": {
6740 "default": "",
6741 "description": "system is the name of the storage system as configured in ScaleIO.",
6742 "type": "string"
6743 },
6744 "volumeName": {
6745 "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.",
6746 "type": "string"
6747 }
6748 },
6749 "required": [
6750 "gateway",
6751 "system",
6752 "secretRef"
6753 ],
6754 "type": "object"
6755 },
6756 "io.k8s.api.core.v1.ScaleIOVolumeSource": {
6757 "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
6758 "properties": {
6759 "fsType": {
6760 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
6761 "type": "string"
6762 },
6763 "gateway": {
6764 "default": "",
6765 "description": "gateway is the host address of the ScaleIO API Gateway.",
6766 "type": "string"
6767 },
6768 "protectionDomain": {
6769 "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.",
6770 "type": "string"
6771 },
6772 "readOnly": {
6773 "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6774 "type": "boolean"
6775 },
6776 "secretRef": {
6777 "allOf": [
6778 {
6779 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
6780 }
6781 ],
6782 "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
6783 },
6784 "sslEnabled": {
6785 "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false",
6786 "type": "boolean"
6787 },
6788 "storageMode": {
6789 "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
6790 "type": "string"
6791 },
6792 "storagePool": {
6793 "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.",
6794 "type": "string"
6795 },
6796 "system": {
6797 "default": "",
6798 "description": "system is the name of the storage system as configured in ScaleIO.",
6799 "type": "string"
6800 },
6801 "volumeName": {
6802 "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.",
6803 "type": "string"
6804 }
6805 },
6806 "required": [
6807 "gateway",
6808 "system",
6809 "secretRef"
6810 ],
6811 "type": "object"
6812 },
6813 "io.k8s.api.core.v1.ScopeSelector": {
6814 "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
6815 "properties": {
6816 "matchExpressions": {
6817 "description": "A list of scope selector requirements by scope of the resources.",
6818 "items": {
6819 "allOf": [
6820 {
6821 "$ref": "#/components/schemas/io.k8s.api.core.v1.ScopedResourceSelectorRequirement"
6822 }
6823 ],
6824 "default": {}
6825 },
6826 "type": "array",
6827 "x-kubernetes-list-type": "atomic"
6828 }
6829 },
6830 "type": "object",
6831 "x-kubernetes-map-type": "atomic"
6832 },
6833 "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": {
6834 "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.",
6835 "properties": {
6836 "operator": {
6837 "default": "",
6838 "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
6839 "type": "string"
6840 },
6841 "scopeName": {
6842 "default": "",
6843 "description": "The name of the scope that the selector applies to.",
6844 "type": "string"
6845 },
6846 "values": {
6847 "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.",
6848 "items": {
6849 "default": "",
6850 "type": "string"
6851 },
6852 "type": "array",
6853 "x-kubernetes-list-type": "atomic"
6854 }
6855 },
6856 "required": [
6857 "scopeName",
6858 "operator"
6859 ],
6860 "type": "object"
6861 },
6862 "io.k8s.api.core.v1.SeccompProfile": {
6863 "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.",
6864 "properties": {
6865 "localhostProfile": {
6866 "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 be set if type is \"Localhost\". Must NOT be set for any other type.",
6867 "type": "string"
6868 },
6869 "type": {
6870 "default": "",
6871 "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.",
6872 "type": "string"
6873 }
6874 },
6875 "required": [
6876 "type"
6877 ],
6878 "type": "object",
6879 "x-kubernetes-unions": [
6880 {
6881 "discriminator": "type",
6882 "fields-to-discriminateBy": {
6883 "localhostProfile": "LocalhostProfile"
6884 }
6885 }
6886 ]
6887 },
6888 "io.k8s.api.core.v1.Secret": {
6889 "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.",
6890 "properties": {
6891 "apiVersion": {
6892 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6893 "type": "string"
6894 },
6895 "data": {
6896 "additionalProperties": {
6897 "format": "byte",
6898 "type": "string"
6899 },
6900 "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",
6901 "type": "object"
6902 },
6903 "immutable": {
6904 "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.",
6905 "type": "boolean"
6906 },
6907 "kind": {
6908 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6909 "type": "string"
6910 },
6911 "metadata": {
6912 "allOf": [
6913 {
6914 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6915 }
6916 ],
6917 "default": {},
6918 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6919 },
6920 "stringData": {
6921 "additionalProperties": {
6922 "default": "",
6923 "type": "string"
6924 },
6925 "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.",
6926 "type": "object"
6927 },
6928 "type": {
6929 "description": "Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types",
6930 "type": "string"
6931 }
6932 },
6933 "type": "object",
6934 "x-kubernetes-group-version-kind": [
6935 {
6936 "group": "",
6937 "kind": "Secret",
6938 "version": "v1"
6939 }
6940 ]
6941 },
6942 "io.k8s.api.core.v1.SecretEnvSource": {
6943 "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.",
6944 "properties": {
6945 "name": {
6946 "default": "",
6947 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6948 "type": "string"
6949 },
6950 "optional": {
6951 "description": "Specify whether the Secret must be defined",
6952 "type": "boolean"
6953 }
6954 },
6955 "type": "object"
6956 },
6957 "io.k8s.api.core.v1.SecretKeySelector": {
6958 "description": "SecretKeySelector selects a key of a Secret.",
6959 "properties": {
6960 "key": {
6961 "default": "",
6962 "description": "The key of the secret to select from. Must be a valid secret key.",
6963 "type": "string"
6964 },
6965 "name": {
6966 "default": "",
6967 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6968 "type": "string"
6969 },
6970 "optional": {
6971 "description": "Specify whether the Secret or its key must be defined",
6972 "type": "boolean"
6973 }
6974 },
6975 "required": [
6976 "key"
6977 ],
6978 "type": "object",
6979 "x-kubernetes-map-type": "atomic"
6980 },
6981 "io.k8s.api.core.v1.SecretList": {
6982 "description": "SecretList is a list of Secret.",
6983 "properties": {
6984 "apiVersion": {
6985 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6986 "type": "string"
6987 },
6988 "items": {
6989 "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret",
6990 "items": {
6991 "allOf": [
6992 {
6993 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
6994 }
6995 ],
6996 "default": {}
6997 },
6998 "type": "array"
6999 },
7000 "kind": {
7001 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7002 "type": "string"
7003 },
7004 "metadata": {
7005 "allOf": [
7006 {
7007 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
7008 }
7009 ],
7010 "default": {},
7011 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7012 }
7013 },
7014 "required": [
7015 "items"
7016 ],
7017 "type": "object",
7018 "x-kubernetes-group-version-kind": [
7019 {
7020 "group": "",
7021 "kind": "SecretList",
7022 "version": "v1"
7023 }
7024 ]
7025 },
7026 "io.k8s.api.core.v1.SecretProjection": {
7027 "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.",
7028 "properties": {
7029 "items": {
7030 "description": "items 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 '..'.",
7031 "items": {
7032 "allOf": [
7033 {
7034 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath"
7035 }
7036 ],
7037 "default": {}
7038 },
7039 "type": "array",
7040 "x-kubernetes-list-type": "atomic"
7041 },
7042 "name": {
7043 "default": "",
7044 "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
7045 "type": "string"
7046 },
7047 "optional": {
7048 "description": "optional field specify whether the Secret or its key must be defined",
7049 "type": "boolean"
7050 }
7051 },
7052 "type": "object"
7053 },
7054 "io.k8s.api.core.v1.SecretReference": {
7055 "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
7056 "properties": {
7057 "name": {
7058 "description": "name is unique within a namespace to reference a secret resource.",
7059 "type": "string"
7060 },
7061 "namespace": {
7062 "description": "namespace defines the space within which the secret name must be unique.",
7063 "type": "string"
7064 }
7065 },
7066 "type": "object",
7067 "x-kubernetes-map-type": "atomic"
7068 },
7069 "io.k8s.api.core.v1.SecretVolumeSource": {
7070 "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.",
7071 "properties": {
7072 "defaultMode": {
7073 "description": "defaultMode is 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.",
7074 "format": "int32",
7075 "type": "integer"
7076 },
7077 "items": {
7078 "description": "items 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 '..'.",
7079 "items": {
7080 "allOf": [
7081 {
7082 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath"
7083 }
7084 ],
7085 "default": {}
7086 },
7087 "type": "array",
7088 "x-kubernetes-list-type": "atomic"
7089 },
7090 "optional": {
7091 "description": "optional field specify whether the Secret or its keys must be defined",
7092 "type": "boolean"
7093 },
7094 "secretName": {
7095 "description": "secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
7096 "type": "string"
7097 }
7098 },
7099 "type": "object"
7100 },
7101 "io.k8s.api.core.v1.SecurityContext": {
7102 "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.",
7103 "properties": {
7104 "allowPrivilegeEscalation": {
7105 "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 Note that this field cannot be set when spec.os.name is windows.",
7106 "type": "boolean"
7107 },
7108 "appArmorProfile": {
7109 "allOf": [
7110 {
7111 "$ref": "#/components/schemas/io.k8s.api.core.v1.AppArmorProfile"
7112 }
7113 ],
7114 "description": "appArmorProfile is the AppArmor options to use by this container. If set, this profile overrides the pod's appArmorProfile. Note that this field cannot be set when spec.os.name is windows."
7115 },
7116 "capabilities": {
7117 "allOf": [
7118 {
7119 "$ref": "#/components/schemas/io.k8s.api.core.v1.Capabilities"
7120 }
7121 ],
7122 "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows."
7123 },
7124 "privileged": {
7125 "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.",
7126 "type": "boolean"
7127 },
7128 "procMount": {
7129 "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. Note that this field cannot be set when spec.os.name is windows.",
7130 "type": "string"
7131 },
7132 "readOnlyRootFilesystem": {
7133 "description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.",
7134 "type": "boolean"
7135 },
7136 "runAsGroup": {
7137 "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. Note that this field cannot be set when spec.os.name is windows.",
7138 "format": "int64",
7139 "type": "integer"
7140 },
7141 "runAsNonRoot": {
7142 "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.",
7143 "type": "boolean"
7144 },
7145 "runAsUser": {
7146 "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. Note that this field cannot be set when spec.os.name is windows.",
7147 "format": "int64",
7148 "type": "integer"
7149 },
7150 "seLinuxOptions": {
7151 "allOf": [
7152 {
7153 "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions"
7154 }
7155 ],
7156 "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. Note that this field cannot be set when spec.os.name is windows."
7157 },
7158 "seccompProfile": {
7159 "allOf": [
7160 {
7161 "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile"
7162 }
7163 ],
7164 "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. Note that this field cannot be set when spec.os.name is windows."
7165 },
7166 "windowsOptions": {
7167 "allOf": [
7168 {
7169 "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions"
7170 }
7171 ],
7172 "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. Note that this field cannot be set when spec.os.name is linux."
7173 }
7174 },
7175 "type": "object"
7176 },
7177 "io.k8s.api.core.v1.Service": {
7178 "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.",
7179 "properties": {
7180 "apiVersion": {
7181 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7182 "type": "string"
7183 },
7184 "kind": {
7185 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7186 "type": "string"
7187 },
7188 "metadata": {
7189 "allOf": [
7190 {
7191 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
7192 }
7193 ],
7194 "default": {},
7195 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7196 },
7197 "spec": {
7198 "allOf": [
7199 {
7200 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceSpec"
7201 }
7202 ],
7203 "default": {},
7204 "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7205 },
7206 "status": {
7207 "allOf": [
7208 {
7209 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceStatus"
7210 }
7211 ],
7212 "default": {},
7213 "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"
7214 }
7215 },
7216 "type": "object",
7217 "x-kubernetes-group-version-kind": [
7218 {
7219 "group": "",
7220 "kind": "Service",
7221 "version": "v1"
7222 }
7223 ]
7224 },
7225 "io.k8s.api.core.v1.ServiceAccount": {
7226 "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",
7227 "properties": {
7228 "apiVersion": {
7229 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7230 "type": "string"
7231 },
7232 "automountServiceAccountToken": {
7233 "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.",
7234 "type": "boolean"
7235 },
7236 "imagePullSecrets": {
7237 "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",
7238 "items": {
7239 "allOf": [
7240 {
7241 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
7242 }
7243 ],
7244 "default": {}
7245 },
7246 "type": "array",
7247 "x-kubernetes-list-type": "atomic"
7248 },
7249 "kind": {
7250 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7251 "type": "string"
7252 },
7253 "metadata": {
7254 "allOf": [
7255 {
7256 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
7257 }
7258 ],
7259 "default": {},
7260 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7261 },
7262 "secrets": {
7263 "description": "Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use. Pods are only limited to this list if this service account has a \"kubernetes.io/enforce-mountable-secrets\" annotation set to \"true\". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret",
7264 "items": {
7265 "allOf": [
7266 {
7267 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
7268 }
7269 ],
7270 "default": {}
7271 },
7272 "type": "array",
7273 "x-kubernetes-list-map-keys": [
7274 "name"
7275 ],
7276 "x-kubernetes-list-type": "map",
7277 "x-kubernetes-patch-merge-key": "name",
7278 "x-kubernetes-patch-strategy": "merge"
7279 }
7280 },
7281 "type": "object",
7282 "x-kubernetes-group-version-kind": [
7283 {
7284 "group": "",
7285 "kind": "ServiceAccount",
7286 "version": "v1"
7287 }
7288 ]
7289 },
7290 "io.k8s.api.core.v1.ServiceAccountList": {
7291 "description": "ServiceAccountList is a list of ServiceAccount objects",
7292 "properties": {
7293 "apiVersion": {
7294 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7295 "type": "string"
7296 },
7297 "items": {
7298 "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
7299 "items": {
7300 "allOf": [
7301 {
7302 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
7303 }
7304 ],
7305 "default": {}
7306 },
7307 "type": "array"
7308 },
7309 "kind": {
7310 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7311 "type": "string"
7312 },
7313 "metadata": {
7314 "allOf": [
7315 {
7316 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
7317 }
7318 ],
7319 "default": {},
7320 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7321 }
7322 },
7323 "required": [
7324 "items"
7325 ],
7326 "type": "object",
7327 "x-kubernetes-group-version-kind": [
7328 {
7329 "group": "",
7330 "kind": "ServiceAccountList",
7331 "version": "v1"
7332 }
7333 ]
7334 },
7335 "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
7336 "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).",
7337 "properties": {
7338 "audience": {
7339 "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.",
7340 "type": "string"
7341 },
7342 "expirationSeconds": {
7343 "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.",
7344 "format": "int64",
7345 "type": "integer"
7346 },
7347 "path": {
7348 "default": "",
7349 "description": "path is the path relative to the mount point of the file to project the token into.",
7350 "type": "string"
7351 }
7352 },
7353 "required": [
7354 "path"
7355 ],
7356 "type": "object"
7357 },
7358 "io.k8s.api.core.v1.ServiceList": {
7359 "description": "ServiceList holds a list of services.",
7360 "properties": {
7361 "apiVersion": {
7362 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7363 "type": "string"
7364 },
7365 "items": {
7366 "description": "List of services",
7367 "items": {
7368 "allOf": [
7369 {
7370 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
7371 }
7372 ],
7373 "default": {}
7374 },
7375 "type": "array"
7376 },
7377 "kind": {
7378 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7379 "type": "string"
7380 },
7381 "metadata": {
7382 "allOf": [
7383 {
7384 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
7385 }
7386 ],
7387 "default": {},
7388 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7389 }
7390 },
7391 "required": [
7392 "items"
7393 ],
7394 "type": "object",
7395 "x-kubernetes-group-version-kind": [
7396 {
7397 "group": "",
7398 "kind": "ServiceList",
7399 "version": "v1"
7400 }
7401 ]
7402 },
7403 "io.k8s.api.core.v1.ServicePort": {
7404 "description": "ServicePort contains information on service's port.",
7405 "properties": {
7406 "appProtocol": {
7407 "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.",
7408 "type": "string"
7409 },
7410 "name": {
7411 "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.",
7412 "type": "string"
7413 },
7414 "nodePort": {
7415 "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",
7416 "format": "int32",
7417 "type": "integer"
7418 },
7419 "port": {
7420 "default": 0,
7421 "description": "The port that will be exposed by this service.",
7422 "format": "int32",
7423 "type": "integer"
7424 },
7425 "protocol": {
7426 "default": "TCP",
7427 "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
7428 "type": "string"
7429 },
7430 "targetPort": {
7431 "allOf": [
7432 {
7433 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
7434 }
7435 ],
7436 "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"
7437 }
7438 },
7439 "required": [
7440 "port"
7441 ],
7442 "type": "object"
7443 },
7444 "io.k8s.api.core.v1.ServiceSpec": {
7445 "description": "ServiceSpec describes the attributes that a user creates on a service.",
7446 "properties": {
7447 "allocateLoadBalancerNodePorts": {
7448 "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.",
7449 "type": "boolean"
7450 },
7451 "clusterIP": {
7452 "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",
7453 "type": "string"
7454 },
7455 "clusterIPs": {
7456 "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\nThis 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",
7457 "items": {
7458 "default": "",
7459 "type": "string"
7460 },
7461 "type": "array",
7462 "x-kubernetes-list-type": "atomic"
7463 },
7464 "externalIPs": {
7465 "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.",
7466 "items": {
7467 "default": "",
7468 "type": "string"
7469 },
7470 "type": "array",
7471 "x-kubernetes-list-type": "atomic"
7472 },
7473 "externalName": {
7474 "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\".",
7475 "type": "string"
7476 },
7477 "externalTrafficPolicy": {
7478 "description": "externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \"externally-facing\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \"Local\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \"Cluster\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.",
7479 "type": "string"
7480 },
7481 "healthCheckNodePort": {
7482 "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). This field cannot be updated once set.",
7483 "format": "int32",
7484 "type": "integer"
7485 },
7486 "internalTrafficPolicy": {
7487 "description": "InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \"Local\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).",
7488 "type": "string"
7489 },
7490 "ipFamilies": {
7491 "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. 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.",
7492 "items": {
7493 "default": "",
7494 "type": "string"
7495 },
7496 "type": "array",
7497 "x-kubernetes-list-type": "atomic"
7498 },
7499 "ipFamilyPolicy": {
7500 "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. 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.",
7501 "type": "string"
7502 },
7503 "loadBalancerClass": {
7504 "description": "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.",
7505 "type": "string"
7506 },
7507 "loadBalancerIP": {
7508 "description": "Only applies to Service Type: LoadBalancer. 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. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.",
7509 "type": "string"
7510 },
7511 "loadBalancerSourceRanges": {
7512 "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/",
7513 "items": {
7514 "default": "",
7515 "type": "string"
7516 },
7517 "type": "array",
7518 "x-kubernetes-list-type": "atomic"
7519 },
7520 "ports": {
7521 "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",
7522 "items": {
7523 "allOf": [
7524 {
7525 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServicePort"
7526 }
7527 ],
7528 "default": {}
7529 },
7530 "type": "array",
7531 "x-kubernetes-list-map-keys": [
7532 "port",
7533 "protocol"
7534 ],
7535 "x-kubernetes-list-type": "map",
7536 "x-kubernetes-patch-merge-key": "port",
7537 "x-kubernetes-patch-strategy": "merge"
7538 },
7539 "publishNotReadyAddresses": {
7540 "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.",
7541 "type": "boolean"
7542 },
7543 "selector": {
7544 "additionalProperties": {
7545 "default": "",
7546 "type": "string"
7547 },
7548 "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/",
7549 "type": "object",
7550 "x-kubernetes-map-type": "atomic"
7551 },
7552 "sessionAffinity": {
7553 "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",
7554 "type": "string"
7555 },
7556 "sessionAffinityConfig": {
7557 "allOf": [
7558 {
7559 "$ref": "#/components/schemas/io.k8s.api.core.v1.SessionAffinityConfig"
7560 }
7561 ],
7562 "description": "sessionAffinityConfig contains the configurations of session affinity."
7563 },
7564 "trafficDistribution": {
7565 "description": "TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints. Implementations can use this field as a hint, but are not required to guarantee strict adherence. If the field is not set, the implementation will apply its default routing strategy. If set to \"PreferClose\", implementations should prioritize endpoints that are topologically close (e.g., same zone). This is an alpha field and requires enabling ServiceTrafficDistribution feature.",
7566 "type": "string"
7567 },
7568 "type": {
7569 "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",
7570 "type": "string"
7571 }
7572 },
7573 "type": "object"
7574 },
7575 "io.k8s.api.core.v1.ServiceStatus": {
7576 "description": "ServiceStatus represents the current status of a service.",
7577 "properties": {
7578 "conditions": {
7579 "description": "Current service state",
7580 "items": {
7581 "allOf": [
7582 {
7583 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
7584 }
7585 ],
7586 "default": {}
7587 },
7588 "type": "array",
7589 "x-kubernetes-list-map-keys": [
7590 "type"
7591 ],
7592 "x-kubernetes-list-type": "map",
7593 "x-kubernetes-patch-merge-key": "type",
7594 "x-kubernetes-patch-strategy": "merge"
7595 },
7596 "loadBalancer": {
7597 "allOf": [
7598 {
7599 "$ref": "#/components/schemas/io.k8s.api.core.v1.LoadBalancerStatus"
7600 }
7601 ],
7602 "default": {},
7603 "description": "LoadBalancer contains the current status of the load-balancer, if one is present."
7604 }
7605 },
7606 "type": "object"
7607 },
7608 "io.k8s.api.core.v1.SessionAffinityConfig": {
7609 "description": "SessionAffinityConfig represents the configurations of session affinity.",
7610 "properties": {
7611 "clientIP": {
7612 "allOf": [
7613 {
7614 "$ref": "#/components/schemas/io.k8s.api.core.v1.ClientIPConfig"
7615 }
7616 ],
7617 "description": "clientIP contains the configurations of Client IP based session affinity."
7618 }
7619 },
7620 "type": "object"
7621 },
7622 "io.k8s.api.core.v1.SleepAction": {
7623 "description": "SleepAction describes a \"sleep\" action.",
7624 "properties": {
7625 "seconds": {
7626 "default": 0,
7627 "description": "Seconds is the number of seconds to sleep.",
7628 "format": "int64",
7629 "type": "integer"
7630 }
7631 },
7632 "required": [
7633 "seconds"
7634 ],
7635 "type": "object"
7636 },
7637 "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
7638 "description": "Represents a StorageOS persistent volume resource.",
7639 "properties": {
7640 "fsType": {
7641 "description": "fsType is the 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.",
7642 "type": "string"
7643 },
7644 "readOnly": {
7645 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
7646 "type": "boolean"
7647 },
7648 "secretRef": {
7649 "allOf": [
7650 {
7651 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
7652 }
7653 ],
7654 "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
7655 },
7656 "volumeName": {
7657 "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
7658 "type": "string"
7659 },
7660 "volumeNamespace": {
7661 "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.",
7662 "type": "string"
7663 }
7664 },
7665 "type": "object"
7666 },
7667 "io.k8s.api.core.v1.StorageOSVolumeSource": {
7668 "description": "Represents a StorageOS persistent volume resource.",
7669 "properties": {
7670 "fsType": {
7671 "description": "fsType is the 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.",
7672 "type": "string"
7673 },
7674 "readOnly": {
7675 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
7676 "type": "boolean"
7677 },
7678 "secretRef": {
7679 "allOf": [
7680 {
7681 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
7682 }
7683 ],
7684 "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
7685 },
7686 "volumeName": {
7687 "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
7688 "type": "string"
7689 },
7690 "volumeNamespace": {
7691 "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.",
7692 "type": "string"
7693 }
7694 },
7695 "type": "object"
7696 },
7697 "io.k8s.api.core.v1.Sysctl": {
7698 "description": "Sysctl defines a kernel parameter to be set",
7699 "properties": {
7700 "name": {
7701 "default": "",
7702 "description": "Name of a property to set",
7703 "type": "string"
7704 },
7705 "value": {
7706 "default": "",
7707 "description": "Value of a property to set",
7708 "type": "string"
7709 }
7710 },
7711 "required": [
7712 "name",
7713 "value"
7714 ],
7715 "type": "object"
7716 },
7717 "io.k8s.api.core.v1.TCPSocketAction": {
7718 "description": "TCPSocketAction describes an action based on opening a socket",
7719 "properties": {
7720 "host": {
7721 "description": "Optional: Host name to connect to, defaults to the pod IP.",
7722 "type": "string"
7723 },
7724 "port": {
7725 "allOf": [
7726 {
7727 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString"
7728 }
7729 ],
7730 "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."
7731 }
7732 },
7733 "required": [
7734 "port"
7735 ],
7736 "type": "object"
7737 },
7738 "io.k8s.api.core.v1.Taint": {
7739 "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
7740 "properties": {
7741 "effect": {
7742 "default": "",
7743 "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
7744 "type": "string"
7745 },
7746 "key": {
7747 "default": "",
7748 "description": "Required. The taint key to be applied to a node.",
7749 "type": "string"
7750 },
7751 "timeAdded": {
7752 "allOf": [
7753 {
7754 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
7755 }
7756 ],
7757 "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
7758 },
7759 "value": {
7760 "description": "The taint value corresponding to the taint key.",
7761 "type": "string"
7762 }
7763 },
7764 "required": [
7765 "key",
7766 "effect"
7767 ],
7768 "type": "object"
7769 },
7770 "io.k8s.api.core.v1.Toleration": {
7771 "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
7772 "properties": {
7773 "effect": {
7774 "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
7775 "type": "string"
7776 },
7777 "key": {
7778 "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.",
7779 "type": "string"
7780 },
7781 "operator": {
7782 "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.",
7783 "type": "string"
7784 },
7785 "tolerationSeconds": {
7786 "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.",
7787 "format": "int64",
7788 "type": "integer"
7789 },
7790 "value": {
7791 "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.",
7792 "type": "string"
7793 }
7794 },
7795 "type": "object"
7796 },
7797 "io.k8s.api.core.v1.TopologySpreadConstraint": {
7798 "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
7799 "properties": {
7800 "labelSelector": {
7801 "allOf": [
7802 {
7803 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
7804 }
7805 ],
7806 "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."
7807 },
7808 "matchLabelKeys": {
7809 "description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.\n\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).",
7810 "items": {
7811 "default": "",
7812 "type": "string"
7813 },
7814 "type": "array",
7815 "x-kubernetes-list-type": "atomic"
7816 },
7817 "maxSkew": {
7818 "default": 0,
7819 "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. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) 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.",
7820 "format": "int32",
7821 "type": "integer"
7822 },
7823 "minDomains": {
7824 "description": "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.",
7825 "format": "int32",
7826 "type": "integer"
7827 },
7828 "nodeAffinityPolicy": {
7829 "description": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\n\nIf this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.",
7830 "type": "string"
7831 },
7832 "nodeTaintsPolicy": {
7833 "description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.",
7834 "type": "string"
7835 },
7836 "topologyKey": {
7837 "default": "",
7838 "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. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \"kubernetes.io/hostname\", each Node is a domain of that topology. And, if TopologyKey is \"topology.kubernetes.io/zone\", each zone is a domain of that topology. It's a required field.",
7839 "type": "string"
7840 },
7841 "whenUnsatisfiable": {
7842 "default": "",
7843 "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 assignment 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.",
7844 "type": "string"
7845 }
7846 },
7847 "required": [
7848 "maxSkew",
7849 "topologyKey",
7850 "whenUnsatisfiable"
7851 ],
7852 "type": "object"
7853 },
7854 "io.k8s.api.core.v1.TypedLocalObjectReference": {
7855 "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
7856 "properties": {
7857 "apiGroup": {
7858 "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.",
7859 "type": "string"
7860 },
7861 "kind": {
7862 "default": "",
7863 "description": "Kind is the type of resource being referenced",
7864 "type": "string"
7865 },
7866 "name": {
7867 "default": "",
7868 "description": "Name is the name of resource being referenced",
7869 "type": "string"
7870 }
7871 },
7872 "required": [
7873 "kind",
7874 "name"
7875 ],
7876 "type": "object",
7877 "x-kubernetes-map-type": "atomic"
7878 },
7879 "io.k8s.api.core.v1.TypedObjectReference": {
7880 "properties": {
7881 "apiGroup": {
7882 "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.",
7883 "type": "string"
7884 },
7885 "kind": {
7886 "default": "",
7887 "description": "Kind is the type of resource being referenced",
7888 "type": "string"
7889 },
7890 "name": {
7891 "default": "",
7892 "description": "Name is the name of resource being referenced",
7893 "type": "string"
7894 },
7895 "namespace": {
7896 "description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.",
7897 "type": "string"
7898 }
7899 },
7900 "required": [
7901 "kind",
7902 "name"
7903 ],
7904 "type": "object"
7905 },
7906 "io.k8s.api.core.v1.Volume": {
7907 "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
7908 "properties": {
7909 "awsElasticBlockStore": {
7910 "allOf": [
7911 {
7912 "$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
7913 }
7914 ],
7915 "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"
7916 },
7917 "azureDisk": {
7918 "allOf": [
7919 {
7920 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource"
7921 }
7922 ],
7923 "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
7924 },
7925 "azureFile": {
7926 "allOf": [
7927 {
7928 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource"
7929 }
7930 ],
7931 "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
7932 },
7933 "cephfs": {
7934 "allOf": [
7935 {
7936 "$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource"
7937 }
7938 ],
7939 "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
7940 },
7941 "cinder": {
7942 "allOf": [
7943 {
7944 "$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource"
7945 }
7946 ],
7947 "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
7948 },
7949 "configMap": {
7950 "allOf": [
7951 {
7952 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource"
7953 }
7954 ],
7955 "description": "configMap represents a configMap that should populate this volume"
7956 },
7957 "csi": {
7958 "allOf": [
7959 {
7960 "$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource"
7961 }
7962 ],
7963 "description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
7964 },
7965 "downwardAPI": {
7966 "allOf": [
7967 {
7968 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource"
7969 }
7970 ],
7971 "description": "downwardAPI represents downward API about the pod that should populate this volume"
7972 },
7973 "emptyDir": {
7974 "allOf": [
7975 {
7976 "$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource"
7977 }
7978 ],
7979 "description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
7980 },
7981 "ephemeral": {
7982 "allOf": [
7983 {
7984 "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource"
7985 }
7986 ],
7987 "description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
7988 },
7989 "fc": {
7990 "allOf": [
7991 {
7992 "$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource"
7993 }
7994 ],
7995 "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
7996 },
7997 "flexVolume": {
7998 "allOf": [
7999 {
8000 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource"
8001 }
8002 ],
8003 "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
8004 },
8005 "flocker": {
8006 "allOf": [
8007 {
8008 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource"
8009 }
8010 ],
8011 "description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
8012 },
8013 "gcePersistentDisk": {
8014 "allOf": [
8015 {
8016 "$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource"
8017 }
8018 ],
8019 "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"
8020 },
8021 "gitRepo": {
8022 "allOf": [
8023 {
8024 "$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource"
8025 }
8026 ],
8027 "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."
8028 },
8029 "glusterfs": {
8030 "allOf": [
8031 {
8032 "$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource"
8033 }
8034 ],
8035 "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"
8036 },
8037 "hostPath": {
8038 "allOf": [
8039 {
8040 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource"
8041 }
8042 ],
8043 "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"
8044 },
8045 "iscsi": {
8046 "allOf": [
8047 {
8048 "$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource"
8049 }
8050 ],
8051 "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"
8052 },
8053 "name": {
8054 "default": "",
8055 "description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8056 "type": "string"
8057 },
8058 "nfs": {
8059 "allOf": [
8060 {
8061 "$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource"
8062 }
8063 ],
8064 "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"
8065 },
8066 "persistentVolumeClaim": {
8067 "allOf": [
8068 {
8069 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource"
8070 }
8071 ],
8072 "description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
8073 },
8074 "photonPersistentDisk": {
8075 "allOf": [
8076 {
8077 "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource"
8078 }
8079 ],
8080 "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
8081 },
8082 "portworxVolume": {
8083 "allOf": [
8084 {
8085 "$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource"
8086 }
8087 ],
8088 "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
8089 },
8090 "projected": {
8091 "allOf": [
8092 {
8093 "$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource"
8094 }
8095 ],
8096 "description": "projected items for all in one resources secrets, configmaps, and downward API"
8097 },
8098 "quobyte": {
8099 "allOf": [
8100 {
8101 "$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource"
8102 }
8103 ],
8104 "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
8105 },
8106 "rbd": {
8107 "allOf": [
8108 {
8109 "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource"
8110 }
8111 ],
8112 "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"
8113 },
8114 "scaleIO": {
8115 "allOf": [
8116 {
8117 "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource"
8118 }
8119 ],
8120 "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
8121 },
8122 "secret": {
8123 "allOf": [
8124 {
8125 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource"
8126 }
8127 ],
8128 "description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
8129 },
8130 "storageos": {
8131 "allOf": [
8132 {
8133 "$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource"
8134 }
8135 ],
8136 "description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
8137 },
8138 "vsphereVolume": {
8139 "allOf": [
8140 {
8141 "$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource"
8142 }
8143 ],
8144 "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
8145 }
8146 },
8147 "required": [
8148 "name"
8149 ],
8150 "type": "object"
8151 },
8152 "io.k8s.api.core.v1.VolumeDevice": {
8153 "description": "volumeDevice describes a mapping of a raw block device within a container.",
8154 "properties": {
8155 "devicePath": {
8156 "default": "",
8157 "description": "devicePath is the path inside of the container that the device will be mapped to.",
8158 "type": "string"
8159 },
8160 "name": {
8161 "default": "",
8162 "description": "name must match the name of a persistentVolumeClaim in the pod",
8163 "type": "string"
8164 }
8165 },
8166 "required": [
8167 "name",
8168 "devicePath"
8169 ],
8170 "type": "object"
8171 },
8172 "io.k8s.api.core.v1.VolumeMount": {
8173 "description": "VolumeMount describes a mounting of a Volume within a container.",
8174 "properties": {
8175 "mountPath": {
8176 "default": "",
8177 "description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
8178 "type": "string"
8179 },
8180 "mountPropagation": {
8181 "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. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None).",
8182 "type": "string"
8183 },
8184 "name": {
8185 "default": "",
8186 "description": "This must match the Name of a Volume.",
8187 "type": "string"
8188 },
8189 "readOnly": {
8190 "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
8191 "type": "boolean"
8192 },
8193 "recursiveReadOnly": {
8194 "description": "RecursiveReadOnly specifies whether read-only mounts should be handled recursively.\n\nIf ReadOnly is false, this field has no meaning and must be unspecified.\n\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason.\n\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None).\n\nIf this field is not specified, it is treated as an equivalent of Disabled.",
8195 "type": "string"
8196 },
8197 "subPath": {
8198 "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
8199 "type": "string"
8200 },
8201 "subPathExpr": {
8202 "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.",
8203 "type": "string"
8204 }
8205 },
8206 "required": [
8207 "name",
8208 "mountPath"
8209 ],
8210 "type": "object"
8211 },
8212 "io.k8s.api.core.v1.VolumeMountStatus": {
8213 "description": "VolumeMountStatus shows status of volume mounts.",
8214 "properties": {
8215 "mountPath": {
8216 "default": "",
8217 "description": "MountPath corresponds to the original VolumeMount.",
8218 "type": "string"
8219 },
8220 "name": {
8221 "default": "",
8222 "description": "Name corresponds to the name of the original VolumeMount.",
8223 "type": "string"
8224 },
8225 "readOnly": {
8226 "description": "ReadOnly corresponds to the original VolumeMount.",
8227 "type": "boolean"
8228 },
8229 "recursiveReadOnly": {
8230 "description": "RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.",
8231 "type": "string"
8232 }
8233 },
8234 "required": [
8235 "name",
8236 "mountPath"
8237 ],
8238 "type": "object"
8239 },
8240 "io.k8s.api.core.v1.VolumeNodeAffinity": {
8241 "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
8242 "properties": {
8243 "required": {
8244 "allOf": [
8245 {
8246 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
8247 }
8248 ],
8249 "description": "required specifies hard node constraints that must be met."
8250 }
8251 },
8252 "type": "object"
8253 },
8254 "io.k8s.api.core.v1.VolumeProjection": {
8255 "description": "Projection that may be projected along with other supported volume types",
8256 "properties": {
8257 "clusterTrustBundle": {
8258 "allOf": [
8259 {
8260 "$ref": "#/components/schemas/io.k8s.api.core.v1.ClusterTrustBundleProjection"
8261 }
8262 ],
8263 "description": "ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file.\n\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\n\nClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector.\n\nKubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time."
8264 },
8265 "configMap": {
8266 "allOf": [
8267 {
8268 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapProjection"
8269 }
8270 ],
8271 "description": "configMap information about the configMap data to project"
8272 },
8273 "downwardAPI": {
8274 "allOf": [
8275 {
8276 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIProjection"
8277 }
8278 ],
8279 "description": "downwardAPI information about the downwardAPI data to project"
8280 },
8281 "secret": {
8282 "allOf": [
8283 {
8284 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretProjection"
8285 }
8286 ],
8287 "description": "secret information about the secret data to project"
8288 },
8289 "serviceAccountToken": {
8290 "allOf": [
8291 {
8292 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountTokenProjection"
8293 }
8294 ],
8295 "description": "serviceAccountToken is information about the serviceAccountToken data to project"
8296 }
8297 },
8298 "type": "object"
8299 },
8300 "io.k8s.api.core.v1.VolumeResourceRequirements": {
8301 "description": "VolumeResourceRequirements describes the storage resource requirements for a volume.",
8302 "properties": {
8303 "limits": {
8304 "additionalProperties": {
8305 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
8306 },
8307 "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
8308 "type": "object"
8309 },
8310 "requests": {
8311 "additionalProperties": {
8312 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
8313 },
8314 "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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
8315 "type": "object"
8316 }
8317 },
8318 "type": "object"
8319 },
8320 "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
8321 "description": "Represents a vSphere volume resource.",
8322 "properties": {
8323 "fsType": {
8324 "description": "fsType is 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.",
8325 "type": "string"
8326 },
8327 "storagePolicyID": {
8328 "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
8329 "type": "string"
8330 },
8331 "storagePolicyName": {
8332 "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.",
8333 "type": "string"
8334 },
8335 "volumePath": {
8336 "default": "",
8337 "description": "volumePath is the path that identifies vSphere volume vmdk",
8338 "type": "string"
8339 }
8340 },
8341 "required": [
8342 "volumePath"
8343 ],
8344 "type": "object"
8345 },
8346 "io.k8s.api.core.v1.WeightedPodAffinityTerm": {
8347 "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
8348 "properties": {
8349 "podAffinityTerm": {
8350 "allOf": [
8351 {
8352 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm"
8353 }
8354 ],
8355 "default": {},
8356 "description": "Required. A pod affinity term, associated with the corresponding weight."
8357 },
8358 "weight": {
8359 "default": 0,
8360 "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
8361 "format": "int32",
8362 "type": "integer"
8363 }
8364 },
8365 "required": [
8366 "weight",
8367 "podAffinityTerm"
8368 ],
8369 "type": "object"
8370 },
8371 "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
8372 "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
8373 "properties": {
8374 "gmsaCredentialSpec": {
8375 "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.",
8376 "type": "string"
8377 },
8378 "gmsaCredentialSpecName": {
8379 "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
8380 "type": "string"
8381 },
8382 "hostProcess": {
8383 "description": "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.",
8384 "type": "boolean"
8385 },
8386 "runAsUserName": {
8387 "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.",
8388 "type": "string"
8389 }
8390 },
8391 "type": "object"
8392 },
8393 "io.k8s.api.policy.v1.Eviction": {
8394 "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.",
8395 "properties": {
8396 "apiVersion": {
8397 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8398 "type": "string"
8399 },
8400 "deleteOptions": {
8401 "allOf": [
8402 {
8403 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
8404 }
8405 ],
8406 "description": "DeleteOptions may be provided"
8407 },
8408 "kind": {
8409 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8410 "type": "string"
8411 },
8412 "metadata": {
8413 "allOf": [
8414 {
8415 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
8416 }
8417 ],
8418 "default": {},
8419 "description": "ObjectMeta describes the pod that is being evicted."
8420 }
8421 },
8422 "type": "object",
8423 "x-kubernetes-group-version-kind": [
8424 {
8425 "group": "policy",
8426 "kind": "Eviction",
8427 "version": "v1"
8428 }
8429 ]
8430 },
8431 "io.k8s.apimachinery.pkg.api.resource.Quantity": {
8432 "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\n\t(Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n\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\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\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\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 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.",
8433 "oneOf": [
8434 {
8435 "type": "string"
8436 },
8437 {
8438 "type": "number"
8439 }
8440 ]
8441 },
8442 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
8443 "description": "APIResource specifies the name of a resource and whether it is namespaced.",
8444 "properties": {
8445 "categories": {
8446 "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
8447 "items": {
8448 "default": "",
8449 "type": "string"
8450 },
8451 "type": "array",
8452 "x-kubernetes-list-type": "atomic"
8453 },
8454 "group": {
8455 "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\".",
8456 "type": "string"
8457 },
8458 "kind": {
8459 "default": "",
8460 "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
8461 "type": "string"
8462 },
8463 "name": {
8464 "default": "",
8465 "description": "name is the plural name of the resource.",
8466 "type": "string"
8467 },
8468 "namespaced": {
8469 "default": false,
8470 "description": "namespaced indicates if a resource is namespaced or not.",
8471 "type": "boolean"
8472 },
8473 "shortNames": {
8474 "description": "shortNames is a list of suggested short names of the resource.",
8475 "items": {
8476 "default": "",
8477 "type": "string"
8478 },
8479 "type": "array",
8480 "x-kubernetes-list-type": "atomic"
8481 },
8482 "singularName": {
8483 "default": "",
8484 "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.",
8485 "type": "string"
8486 },
8487 "storageVersionHash": {
8488 "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.",
8489 "type": "string"
8490 },
8491 "verbs": {
8492 "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
8493 "items": {
8494 "default": "",
8495 "type": "string"
8496 },
8497 "type": "array"
8498 },
8499 "version": {
8500 "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)\".",
8501 "type": "string"
8502 }
8503 },
8504 "required": [
8505 "name",
8506 "singularName",
8507 "namespaced",
8508 "kind",
8509 "verbs"
8510 ],
8511 "type": "object"
8512 },
8513 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
8514 "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.",
8515 "properties": {
8516 "apiVersion": {
8517 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8518 "type": "string"
8519 },
8520 "groupVersion": {
8521 "default": "",
8522 "description": "groupVersion is the group and version this APIResourceList is for.",
8523 "type": "string"
8524 },
8525 "kind": {
8526 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8527 "type": "string"
8528 },
8529 "resources": {
8530 "description": "resources contains the name of the resources and if they are namespaced.",
8531 "items": {
8532 "allOf": [
8533 {
8534 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
8535 }
8536 ],
8537 "default": {}
8538 },
8539 "type": "array",
8540 "x-kubernetes-list-type": "atomic"
8541 }
8542 },
8543 "required": [
8544 "groupVersion",
8545 "resources"
8546 ],
8547 "type": "object",
8548 "x-kubernetes-group-version-kind": [
8549 {
8550 "group": "",
8551 "kind": "APIResourceList",
8552 "version": "v1"
8553 }
8554 ]
8555 },
8556 "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": {
8557 "description": "Condition contains details for one aspect of the current state of this API Resource.",
8558 "properties": {
8559 "lastTransitionTime": {
8560 "allOf": [
8561 {
8562 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
8563 }
8564 ],
8565 "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."
8566 },
8567 "message": {
8568 "default": "",
8569 "description": "message is a human readable message indicating details about the transition. This may be an empty string.",
8570 "type": "string"
8571 },
8572 "observedGeneration": {
8573 "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.",
8574 "format": "int64",
8575 "type": "integer"
8576 },
8577 "reason": {
8578 "default": "",
8579 "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.",
8580 "type": "string"
8581 },
8582 "status": {
8583 "default": "",
8584 "description": "status of the condition, one of True, False, Unknown.",
8585 "type": "string"
8586 },
8587 "type": {
8588 "default": "",
8589 "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
8590 "type": "string"
8591 }
8592 },
8593 "required": [
8594 "type",
8595 "status",
8596 "lastTransitionTime",
8597 "reason",
8598 "message"
8599 ],
8600 "type": "object"
8601 },
8602 "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
8603 "description": "DeleteOptions may be provided when deleting an API object.",
8604 "properties": {
8605 "apiVersion": {
8606 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8607 "type": "string"
8608 },
8609 "dryRun": {
8610 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8611 "items": {
8612 "default": "",
8613 "type": "string"
8614 },
8615 "type": "array",
8616 "x-kubernetes-list-type": "atomic"
8617 },
8618 "gracePeriodSeconds": {
8619 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
8620 "format": "int64",
8621 "type": "integer"
8622 },
8623 "kind": {
8624 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8625 "type": "string"
8626 },
8627 "orphanDependents": {
8628 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
8629 "type": "boolean"
8630 },
8631 "preconditions": {
8632 "allOf": [
8633 {
8634 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
8635 }
8636 ],
8637 "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
8638 },
8639 "propagationPolicy": {
8640 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
8641 "type": "string"
8642 }
8643 },
8644 "type": "object",
8645 "x-kubernetes-group-version-kind": [
8646 {
8647 "group": "",
8648 "kind": "DeleteOptions",
8649 "version": "v1"
8650 },
8651 {
8652 "group": "admission.k8s.io",
8653 "kind": "DeleteOptions",
8654 "version": "v1"
8655 },
8656 {
8657 "group": "admission.k8s.io",
8658 "kind": "DeleteOptions",
8659 "version": "v1beta1"
8660 },
8661 {
8662 "group": "admissionregistration.k8s.io",
8663 "kind": "DeleteOptions",
8664 "version": "v1"
8665 },
8666 {
8667 "group": "admissionregistration.k8s.io",
8668 "kind": "DeleteOptions",
8669 "version": "v1alpha1"
8670 },
8671 {
8672 "group": "admissionregistration.k8s.io",
8673 "kind": "DeleteOptions",
8674 "version": "v1beta1"
8675 },
8676 {
8677 "group": "apiextensions.k8s.io",
8678 "kind": "DeleteOptions",
8679 "version": "v1"
8680 },
8681 {
8682 "group": "apiextensions.k8s.io",
8683 "kind": "DeleteOptions",
8684 "version": "v1beta1"
8685 },
8686 {
8687 "group": "apiregistration.k8s.io",
8688 "kind": "DeleteOptions",
8689 "version": "v1"
8690 },
8691 {
8692 "group": "apiregistration.k8s.io",
8693 "kind": "DeleteOptions",
8694 "version": "v1beta1"
8695 },
8696 {
8697 "group": "apps",
8698 "kind": "DeleteOptions",
8699 "version": "v1"
8700 },
8701 {
8702 "group": "apps",
8703 "kind": "DeleteOptions",
8704 "version": "v1beta1"
8705 },
8706 {
8707 "group": "apps",
8708 "kind": "DeleteOptions",
8709 "version": "v1beta2"
8710 },
8711 {
8712 "group": "authentication.k8s.io",
8713 "kind": "DeleteOptions",
8714 "version": "v1"
8715 },
8716 {
8717 "group": "authentication.k8s.io",
8718 "kind": "DeleteOptions",
8719 "version": "v1alpha1"
8720 },
8721 {
8722 "group": "authentication.k8s.io",
8723 "kind": "DeleteOptions",
8724 "version": "v1beta1"
8725 },
8726 {
8727 "group": "authorization.k8s.io",
8728 "kind": "DeleteOptions",
8729 "version": "v1"
8730 },
8731 {
8732 "group": "authorization.k8s.io",
8733 "kind": "DeleteOptions",
8734 "version": "v1beta1"
8735 },
8736 {
8737 "group": "autoscaling",
8738 "kind": "DeleteOptions",
8739 "version": "v1"
8740 },
8741 {
8742 "group": "autoscaling",
8743 "kind": "DeleteOptions",
8744 "version": "v2"
8745 },
8746 {
8747 "group": "autoscaling",
8748 "kind": "DeleteOptions",
8749 "version": "v2beta1"
8750 },
8751 {
8752 "group": "autoscaling",
8753 "kind": "DeleteOptions",
8754 "version": "v2beta2"
8755 },
8756 {
8757 "group": "batch",
8758 "kind": "DeleteOptions",
8759 "version": "v1"
8760 },
8761 {
8762 "group": "batch",
8763 "kind": "DeleteOptions",
8764 "version": "v1beta1"
8765 },
8766 {
8767 "group": "certificates.k8s.io",
8768 "kind": "DeleteOptions",
8769 "version": "v1"
8770 },
8771 {
8772 "group": "certificates.k8s.io",
8773 "kind": "DeleteOptions",
8774 "version": "v1alpha1"
8775 },
8776 {
8777 "group": "certificates.k8s.io",
8778 "kind": "DeleteOptions",
8779 "version": "v1beta1"
8780 },
8781 {
8782 "group": "coordination.k8s.io",
8783 "kind": "DeleteOptions",
8784 "version": "v1"
8785 },
8786 {
8787 "group": "coordination.k8s.io",
8788 "kind": "DeleteOptions",
8789 "version": "v1beta1"
8790 },
8791 {
8792 "group": "discovery.k8s.io",
8793 "kind": "DeleteOptions",
8794 "version": "v1"
8795 },
8796 {
8797 "group": "discovery.k8s.io",
8798 "kind": "DeleteOptions",
8799 "version": "v1beta1"
8800 },
8801 {
8802 "group": "events.k8s.io",
8803 "kind": "DeleteOptions",
8804 "version": "v1"
8805 },
8806 {
8807 "group": "events.k8s.io",
8808 "kind": "DeleteOptions",
8809 "version": "v1beta1"
8810 },
8811 {
8812 "group": "extensions",
8813 "kind": "DeleteOptions",
8814 "version": "v1beta1"
8815 },
8816 {
8817 "group": "flowcontrol.apiserver.k8s.io",
8818 "kind": "DeleteOptions",
8819 "version": "v1"
8820 },
8821 {
8822 "group": "flowcontrol.apiserver.k8s.io",
8823 "kind": "DeleteOptions",
8824 "version": "v1beta1"
8825 },
8826 {
8827 "group": "flowcontrol.apiserver.k8s.io",
8828 "kind": "DeleteOptions",
8829 "version": "v1beta2"
8830 },
8831 {
8832 "group": "flowcontrol.apiserver.k8s.io",
8833 "kind": "DeleteOptions",
8834 "version": "v1beta3"
8835 },
8836 {
8837 "group": "imagepolicy.k8s.io",
8838 "kind": "DeleteOptions",
8839 "version": "v1alpha1"
8840 },
8841 {
8842 "group": "internal.apiserver.k8s.io",
8843 "kind": "DeleteOptions",
8844 "version": "v1alpha1"
8845 },
8846 {
8847 "group": "networking.k8s.io",
8848 "kind": "DeleteOptions",
8849 "version": "v1"
8850 },
8851 {
8852 "group": "networking.k8s.io",
8853 "kind": "DeleteOptions",
8854 "version": "v1alpha1"
8855 },
8856 {
8857 "group": "networking.k8s.io",
8858 "kind": "DeleteOptions",
8859 "version": "v1beta1"
8860 },
8861 {
8862 "group": "node.k8s.io",
8863 "kind": "DeleteOptions",
8864 "version": "v1"
8865 },
8866 {
8867 "group": "node.k8s.io",
8868 "kind": "DeleteOptions",
8869 "version": "v1alpha1"
8870 },
8871 {
8872 "group": "node.k8s.io",
8873 "kind": "DeleteOptions",
8874 "version": "v1beta1"
8875 },
8876 {
8877 "group": "policy",
8878 "kind": "DeleteOptions",
8879 "version": "v1"
8880 },
8881 {
8882 "group": "policy",
8883 "kind": "DeleteOptions",
8884 "version": "v1beta1"
8885 },
8886 {
8887 "group": "rbac.authorization.k8s.io",
8888 "kind": "DeleteOptions",
8889 "version": "v1"
8890 },
8891 {
8892 "group": "rbac.authorization.k8s.io",
8893 "kind": "DeleteOptions",
8894 "version": "v1alpha1"
8895 },
8896 {
8897 "group": "rbac.authorization.k8s.io",
8898 "kind": "DeleteOptions",
8899 "version": "v1beta1"
8900 },
8901 {
8902 "group": "resource.k8s.io",
8903 "kind": "DeleteOptions",
8904 "version": "v1alpha2"
8905 },
8906 {
8907 "group": "scheduling.k8s.io",
8908 "kind": "DeleteOptions",
8909 "version": "v1"
8910 },
8911 {
8912 "group": "scheduling.k8s.io",
8913 "kind": "DeleteOptions",
8914 "version": "v1alpha1"
8915 },
8916 {
8917 "group": "scheduling.k8s.io",
8918 "kind": "DeleteOptions",
8919 "version": "v1beta1"
8920 },
8921 {
8922 "group": "storage.k8s.io",
8923 "kind": "DeleteOptions",
8924 "version": "v1"
8925 },
8926 {
8927 "group": "storage.k8s.io",
8928 "kind": "DeleteOptions",
8929 "version": "v1alpha1"
8930 },
8931 {
8932 "group": "storage.k8s.io",
8933 "kind": "DeleteOptions",
8934 "version": "v1beta1"
8935 },
8936 {
8937 "group": "storagemigration.k8s.io",
8938 "kind": "DeleteOptions",
8939 "version": "v1alpha1"
8940 }
8941 ]
8942 },
8943 "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
8944 "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",
8945 "type": "object"
8946 },
8947 "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
8948 "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.",
8949 "properties": {
8950 "matchExpressions": {
8951 "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
8952 "items": {
8953 "allOf": [
8954 {
8955 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
8956 }
8957 ],
8958 "default": {}
8959 },
8960 "type": "array",
8961 "x-kubernetes-list-type": "atomic"
8962 },
8963 "matchLabels": {
8964 "additionalProperties": {
8965 "default": "",
8966 "type": "string"
8967 },
8968 "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.",
8969 "type": "object"
8970 }
8971 },
8972 "type": "object",
8973 "x-kubernetes-map-type": "atomic"
8974 },
8975 "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
8976 "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
8977 "properties": {
8978 "key": {
8979 "default": "",
8980 "description": "key is the label key that the selector applies to.",
8981 "type": "string"
8982 },
8983 "operator": {
8984 "default": "",
8985 "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
8986 "type": "string"
8987 },
8988 "values": {
8989 "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.",
8990 "items": {
8991 "default": "",
8992 "type": "string"
8993 },
8994 "type": "array",
8995 "x-kubernetes-list-type": "atomic"
8996 }
8997 },
8998 "required": [
8999 "key",
9000 "operator"
9001 ],
9002 "type": "object"
9003 },
9004 "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
9005 "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
9006 "properties": {
9007 "continue": {
9008 "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.",
9009 "type": "string"
9010 },
9011 "remainingItemCount": {
9012 "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.",
9013 "format": "int64",
9014 "type": "integer"
9015 },
9016 "resourceVersion": {
9017 "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",
9018 "type": "string"
9019 },
9020 "selfLink": {
9021 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
9022 "type": "string"
9023 }
9024 },
9025 "type": "object"
9026 },
9027 "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
9028 "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
9029 "properties": {
9030 "apiVersion": {
9031 "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.",
9032 "type": "string"
9033 },
9034 "fieldsType": {
9035 "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
9036 "type": "string"
9037 },
9038 "fieldsV1": {
9039 "allOf": [
9040 {
9041 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
9042 }
9043 ],
9044 "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
9045 },
9046 "manager": {
9047 "description": "Manager is an identifier of the workflow managing these fields.",
9048 "type": "string"
9049 },
9050 "operation": {
9051 "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'.",
9052 "type": "string"
9053 },
9054 "subresource": {
9055 "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
9056 "type": "string"
9057 },
9058 "time": {
9059 "allOf": [
9060 {
9061 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
9062 }
9063 ],
9064 "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over."
9065 }
9066 },
9067 "type": "object"
9068 },
9069 "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": {
9070 "description": "MicroTime is version of Time with microsecond level precision.",
9071 "format": "date-time",
9072 "type": "string"
9073 },
9074 "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
9075 "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
9076 "properties": {
9077 "annotations": {
9078 "additionalProperties": {
9079 "default": "",
9080 "type": "string"
9081 },
9082 "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
9083 "type": "object"
9084 },
9085 "creationTimestamp": {
9086 "allOf": [
9087 {
9088 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
9089 }
9090 ],
9091 "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"
9092 },
9093 "deletionGracePeriodSeconds": {
9094 "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.",
9095 "format": "int64",
9096 "type": "integer"
9097 },
9098 "deletionTimestamp": {
9099 "allOf": [
9100 {
9101 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
9102 }
9103 ],
9104 "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"
9105 },
9106 "finalizers": {
9107 "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.",
9108 "items": {
9109 "default": "",
9110 "type": "string"
9111 },
9112 "type": "array",
9113 "x-kubernetes-list-type": "set",
9114 "x-kubernetes-patch-strategy": "merge"
9115 },
9116 "generateName": {
9117 "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 return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
9118 "type": "string"
9119 },
9120 "generation": {
9121 "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
9122 "format": "int64",
9123 "type": "integer"
9124 },
9125 "labels": {
9126 "additionalProperties": {
9127 "default": "",
9128 "type": "string"
9129 },
9130 "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
9131 "type": "object"
9132 },
9133 "managedFields": {
9134 "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.",
9135 "items": {
9136 "allOf": [
9137 {
9138 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
9139 }
9140 ],
9141 "default": {}
9142 },
9143 "type": "array",
9144 "x-kubernetes-list-type": "atomic"
9145 },
9146 "name": {
9147 "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
9148 "type": "string"
9149 },
9150 "namespace": {
9151 "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
9152 "type": "string"
9153 },
9154 "ownerReferences": {
9155 "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.",
9156 "items": {
9157 "allOf": [
9158 {
9159 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
9160 }
9161 ],
9162 "default": {}
9163 },
9164 "type": "array",
9165 "x-kubernetes-list-map-keys": [
9166 "uid"
9167 ],
9168 "x-kubernetes-list-type": "map",
9169 "x-kubernetes-patch-merge-key": "uid",
9170 "x-kubernetes-patch-strategy": "merge"
9171 },
9172 "resourceVersion": {
9173 "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",
9174 "type": "string"
9175 },
9176 "selfLink": {
9177 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
9178 "type": "string"
9179 },
9180 "uid": {
9181 "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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
9182 "type": "string"
9183 }
9184 },
9185 "type": "object"
9186 },
9187 "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
9188 "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.",
9189 "properties": {
9190 "apiVersion": {
9191 "default": "",
9192 "description": "API version of the referent.",
9193 "type": "string"
9194 },
9195 "blockOwnerDeletion": {
9196 "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. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
9197 "type": "boolean"
9198 },
9199 "controller": {
9200 "description": "If true, this reference points to the managing controller.",
9201 "type": "boolean"
9202 },
9203 "kind": {
9204 "default": "",
9205 "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9206 "type": "string"
9207 },
9208 "name": {
9209 "default": "",
9210 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
9211 "type": "string"
9212 },
9213 "uid": {
9214 "default": "",
9215 "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
9216 "type": "string"
9217 }
9218 },
9219 "required": [
9220 "apiVersion",
9221 "kind",
9222 "name",
9223 "uid"
9224 ],
9225 "type": "object",
9226 "x-kubernetes-map-type": "atomic"
9227 },
9228 "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
9229 "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
9230 "type": "object"
9231 },
9232 "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
9233 "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
9234 "properties": {
9235 "resourceVersion": {
9236 "description": "Specifies the target ResourceVersion",
9237 "type": "string"
9238 },
9239 "uid": {
9240 "description": "Specifies the target UID.",
9241 "type": "string"
9242 }
9243 },
9244 "type": "object"
9245 },
9246 "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
9247 "description": "Status is a return value for calls that don't return other objects.",
9248 "properties": {
9249 "apiVersion": {
9250 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9251 "type": "string"
9252 },
9253 "code": {
9254 "description": "Suggested HTTP return code for this status, 0 if not set.",
9255 "format": "int32",
9256 "type": "integer"
9257 },
9258 "details": {
9259 "allOf": [
9260 {
9261 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
9262 }
9263 ],
9264 "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.",
9265 "x-kubernetes-list-type": "atomic"
9266 },
9267 "kind": {
9268 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9269 "type": "string"
9270 },
9271 "message": {
9272 "description": "A human-readable description of the status of this operation.",
9273 "type": "string"
9274 },
9275 "metadata": {
9276 "allOf": [
9277 {
9278 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
9279 }
9280 ],
9281 "default": {},
9282 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9283 },
9284 "reason": {
9285 "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.",
9286 "type": "string"
9287 },
9288 "status": {
9289 "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",
9290 "type": "string"
9291 }
9292 },
9293 "type": "object",
9294 "x-kubernetes-group-version-kind": [
9295 {
9296 "group": "",
9297 "kind": "Status",
9298 "version": "v1"
9299 },
9300 {
9301 "group": "resource.k8s.io",
9302 "kind": "Status",
9303 "version": "v1alpha2"
9304 }
9305 ]
9306 },
9307 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
9308 "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
9309 "properties": {
9310 "field": {
9311 "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\"",
9312 "type": "string"
9313 },
9314 "message": {
9315 "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.",
9316 "type": "string"
9317 },
9318 "reason": {
9319 "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
9320 "type": "string"
9321 }
9322 },
9323 "type": "object"
9324 },
9325 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
9326 "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.",
9327 "properties": {
9328 "causes": {
9329 "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
9330 "items": {
9331 "allOf": [
9332 {
9333 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
9334 }
9335 ],
9336 "default": {}
9337 },
9338 "type": "array",
9339 "x-kubernetes-list-type": "atomic"
9340 },
9341 "group": {
9342 "description": "The group attribute of the resource associated with the status StatusReason.",
9343 "type": "string"
9344 },
9345 "kind": {
9346 "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",
9347 "type": "string"
9348 },
9349 "name": {
9350 "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
9351 "type": "string"
9352 },
9353 "retryAfterSeconds": {
9354 "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.",
9355 "format": "int32",
9356 "type": "integer"
9357 },
9358 "uid": {
9359 "description": "UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
9360 "type": "string"
9361 }
9362 },
9363 "type": "object"
9364 },
9365 "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
9366 "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.",
9367 "format": "date-time",
9368 "type": "string"
9369 },
9370 "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
9371 "description": "Event represents a single event to a watched resource.",
9372 "properties": {
9373 "object": {
9374 "allOf": [
9375 {
9376 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
9377 }
9378 ],
9379 "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."
9380 },
9381 "type": {
9382 "default": "",
9383 "type": "string"
9384 }
9385 },
9386 "required": [
9387 "type",
9388 "object"
9389 ],
9390 "type": "object",
9391 "x-kubernetes-group-version-kind": [
9392 {
9393 "group": "",
9394 "kind": "WatchEvent",
9395 "version": "v1"
9396 },
9397 {
9398 "group": "admission.k8s.io",
9399 "kind": "WatchEvent",
9400 "version": "v1"
9401 },
9402 {
9403 "group": "admission.k8s.io",
9404 "kind": "WatchEvent",
9405 "version": "v1beta1"
9406 },
9407 {
9408 "group": "admissionregistration.k8s.io",
9409 "kind": "WatchEvent",
9410 "version": "v1"
9411 },
9412 {
9413 "group": "admissionregistration.k8s.io",
9414 "kind": "WatchEvent",
9415 "version": "v1alpha1"
9416 },
9417 {
9418 "group": "admissionregistration.k8s.io",
9419 "kind": "WatchEvent",
9420 "version": "v1beta1"
9421 },
9422 {
9423 "group": "apiextensions.k8s.io",
9424 "kind": "WatchEvent",
9425 "version": "v1"
9426 },
9427 {
9428 "group": "apiextensions.k8s.io",
9429 "kind": "WatchEvent",
9430 "version": "v1beta1"
9431 },
9432 {
9433 "group": "apiregistration.k8s.io",
9434 "kind": "WatchEvent",
9435 "version": "v1"
9436 },
9437 {
9438 "group": "apiregistration.k8s.io",
9439 "kind": "WatchEvent",
9440 "version": "v1beta1"
9441 },
9442 {
9443 "group": "apps",
9444 "kind": "WatchEvent",
9445 "version": "v1"
9446 },
9447 {
9448 "group": "apps",
9449 "kind": "WatchEvent",
9450 "version": "v1beta1"
9451 },
9452 {
9453 "group": "apps",
9454 "kind": "WatchEvent",
9455 "version": "v1beta2"
9456 },
9457 {
9458 "group": "authentication.k8s.io",
9459 "kind": "WatchEvent",
9460 "version": "v1"
9461 },
9462 {
9463 "group": "authentication.k8s.io",
9464 "kind": "WatchEvent",
9465 "version": "v1alpha1"
9466 },
9467 {
9468 "group": "authentication.k8s.io",
9469 "kind": "WatchEvent",
9470 "version": "v1beta1"
9471 },
9472 {
9473 "group": "authorization.k8s.io",
9474 "kind": "WatchEvent",
9475 "version": "v1"
9476 },
9477 {
9478 "group": "authorization.k8s.io",
9479 "kind": "WatchEvent",
9480 "version": "v1beta1"
9481 },
9482 {
9483 "group": "autoscaling",
9484 "kind": "WatchEvent",
9485 "version": "v1"
9486 },
9487 {
9488 "group": "autoscaling",
9489 "kind": "WatchEvent",
9490 "version": "v2"
9491 },
9492 {
9493 "group": "autoscaling",
9494 "kind": "WatchEvent",
9495 "version": "v2beta1"
9496 },
9497 {
9498 "group": "autoscaling",
9499 "kind": "WatchEvent",
9500 "version": "v2beta2"
9501 },
9502 {
9503 "group": "batch",
9504 "kind": "WatchEvent",
9505 "version": "v1"
9506 },
9507 {
9508 "group": "batch",
9509 "kind": "WatchEvent",
9510 "version": "v1beta1"
9511 },
9512 {
9513 "group": "certificates.k8s.io",
9514 "kind": "WatchEvent",
9515 "version": "v1"
9516 },
9517 {
9518 "group": "certificates.k8s.io",
9519 "kind": "WatchEvent",
9520 "version": "v1alpha1"
9521 },
9522 {
9523 "group": "certificates.k8s.io",
9524 "kind": "WatchEvent",
9525 "version": "v1beta1"
9526 },
9527 {
9528 "group": "coordination.k8s.io",
9529 "kind": "WatchEvent",
9530 "version": "v1"
9531 },
9532 {
9533 "group": "coordination.k8s.io",
9534 "kind": "WatchEvent",
9535 "version": "v1beta1"
9536 },
9537 {
9538 "group": "discovery.k8s.io",
9539 "kind": "WatchEvent",
9540 "version": "v1"
9541 },
9542 {
9543 "group": "discovery.k8s.io",
9544 "kind": "WatchEvent",
9545 "version": "v1beta1"
9546 },
9547 {
9548 "group": "events.k8s.io",
9549 "kind": "WatchEvent",
9550 "version": "v1"
9551 },
9552 {
9553 "group": "events.k8s.io",
9554 "kind": "WatchEvent",
9555 "version": "v1beta1"
9556 },
9557 {
9558 "group": "extensions",
9559 "kind": "WatchEvent",
9560 "version": "v1beta1"
9561 },
9562 {
9563 "group": "flowcontrol.apiserver.k8s.io",
9564 "kind": "WatchEvent",
9565 "version": "v1"
9566 },
9567 {
9568 "group": "flowcontrol.apiserver.k8s.io",
9569 "kind": "WatchEvent",
9570 "version": "v1beta1"
9571 },
9572 {
9573 "group": "flowcontrol.apiserver.k8s.io",
9574 "kind": "WatchEvent",
9575 "version": "v1beta2"
9576 },
9577 {
9578 "group": "flowcontrol.apiserver.k8s.io",
9579 "kind": "WatchEvent",
9580 "version": "v1beta3"
9581 },
9582 {
9583 "group": "imagepolicy.k8s.io",
9584 "kind": "WatchEvent",
9585 "version": "v1alpha1"
9586 },
9587 {
9588 "group": "internal.apiserver.k8s.io",
9589 "kind": "WatchEvent",
9590 "version": "v1alpha1"
9591 },
9592 {
9593 "group": "networking.k8s.io",
9594 "kind": "WatchEvent",
9595 "version": "v1"
9596 },
9597 {
9598 "group": "networking.k8s.io",
9599 "kind": "WatchEvent",
9600 "version": "v1alpha1"
9601 },
9602 {
9603 "group": "networking.k8s.io",
9604 "kind": "WatchEvent",
9605 "version": "v1beta1"
9606 },
9607 {
9608 "group": "node.k8s.io",
9609 "kind": "WatchEvent",
9610 "version": "v1"
9611 },
9612 {
9613 "group": "node.k8s.io",
9614 "kind": "WatchEvent",
9615 "version": "v1alpha1"
9616 },
9617 {
9618 "group": "node.k8s.io",
9619 "kind": "WatchEvent",
9620 "version": "v1beta1"
9621 },
9622 {
9623 "group": "policy",
9624 "kind": "WatchEvent",
9625 "version": "v1"
9626 },
9627 {
9628 "group": "policy",
9629 "kind": "WatchEvent",
9630 "version": "v1beta1"
9631 },
9632 {
9633 "group": "rbac.authorization.k8s.io",
9634 "kind": "WatchEvent",
9635 "version": "v1"
9636 },
9637 {
9638 "group": "rbac.authorization.k8s.io",
9639 "kind": "WatchEvent",
9640 "version": "v1alpha1"
9641 },
9642 {
9643 "group": "rbac.authorization.k8s.io",
9644 "kind": "WatchEvent",
9645 "version": "v1beta1"
9646 },
9647 {
9648 "group": "resource.k8s.io",
9649 "kind": "WatchEvent",
9650 "version": "v1alpha2"
9651 },
9652 {
9653 "group": "scheduling.k8s.io",
9654 "kind": "WatchEvent",
9655 "version": "v1"
9656 },
9657 {
9658 "group": "scheduling.k8s.io",
9659 "kind": "WatchEvent",
9660 "version": "v1alpha1"
9661 },
9662 {
9663 "group": "scheduling.k8s.io",
9664 "kind": "WatchEvent",
9665 "version": "v1beta1"
9666 },
9667 {
9668 "group": "storage.k8s.io",
9669 "kind": "WatchEvent",
9670 "version": "v1"
9671 },
9672 {
9673 "group": "storage.k8s.io",
9674 "kind": "WatchEvent",
9675 "version": "v1alpha1"
9676 },
9677 {
9678 "group": "storage.k8s.io",
9679 "kind": "WatchEvent",
9680 "version": "v1beta1"
9681 },
9682 {
9683 "group": "storagemigration.k8s.io",
9684 "kind": "WatchEvent",
9685 "version": "v1alpha1"
9686 }
9687 ]
9688 },
9689 "io.k8s.apimachinery.pkg.runtime.RawExtension": {
9690 "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:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\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.)",
9691 "type": "object"
9692 },
9693 "io.k8s.apimachinery.pkg.util.intstr.IntOrString": {
9694 "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.",
9695 "format": "int-or-string",
9696 "oneOf": [
9697 {
9698 "type": "integer"
9699 },
9700 {
9701 "type": "string"
9702 }
9703 ]
9704 }
9705 },
9706 "securitySchemes": {
9707 "BearerToken": {
9708 "description": "Bearer Token authentication",
9709 "in": "header",
9710 "name": "authorization",
9711 "type": "apiKey"
9712 }
9713 }
9714 },
9715 "info": {
9716 "title": "Kubernetes",
9717 "version": "unversioned"
9718 },
9719 "openapi": "3.0.0",
9720 "paths": {
9721 "/api/v1/": {
9722 "get": {
9723 "description": "get available resources",
9724 "operationId": "getCoreV1APIResources",
9725 "responses": {
9726 "200": {
9727 "content": {
9728 "application/json": {
9729 "schema": {
9730 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
9731 }
9732 },
9733 "application/vnd.kubernetes.protobuf": {
9734 "schema": {
9735 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
9736 }
9737 },
9738 "application/yaml": {
9739 "schema": {
9740 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
9741 }
9742 }
9743 },
9744 "description": "OK"
9745 },
9746 "401": {
9747 "description": "Unauthorized"
9748 }
9749 },
9750 "tags": [
9751 "core_v1"
9752 ]
9753 }
9754 },
9755 "/api/v1/componentstatuses": {
9756 "get": {
9757 "description": "list objects of kind ComponentStatus",
9758 "operationId": "listCoreV1ComponentStatus",
9759 "responses": {
9760 "200": {
9761 "content": {
9762 "application/json": {
9763 "schema": {
9764 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList"
9765 }
9766 },
9767 "application/json;stream=watch": {
9768 "schema": {
9769 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList"
9770 }
9771 },
9772 "application/vnd.kubernetes.protobuf": {
9773 "schema": {
9774 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList"
9775 }
9776 },
9777 "application/vnd.kubernetes.protobuf;stream=watch": {
9778 "schema": {
9779 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList"
9780 }
9781 },
9782 "application/yaml": {
9783 "schema": {
9784 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList"
9785 }
9786 }
9787 },
9788 "description": "OK"
9789 },
9790 "401": {
9791 "description": "Unauthorized"
9792 }
9793 },
9794 "tags": [
9795 "core_v1"
9796 ],
9797 "x-kubernetes-action": "list",
9798 "x-kubernetes-group-version-kind": {
9799 "group": "",
9800 "kind": "ComponentStatus",
9801 "version": "v1"
9802 }
9803 },
9804 "parameters": [
9805 {
9806 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
9807 "in": "query",
9808 "name": "allowWatchBookmarks",
9809 "schema": {
9810 "type": "boolean",
9811 "uniqueItems": true
9812 }
9813 },
9814 {
9815 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
9816 "in": "query",
9817 "name": "continue",
9818 "schema": {
9819 "type": "string",
9820 "uniqueItems": true
9821 }
9822 },
9823 {
9824 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
9825 "in": "query",
9826 "name": "fieldSelector",
9827 "schema": {
9828 "type": "string",
9829 "uniqueItems": true
9830 }
9831 },
9832 {
9833 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
9834 "in": "query",
9835 "name": "labelSelector",
9836 "schema": {
9837 "type": "string",
9838 "uniqueItems": true
9839 }
9840 },
9841 {
9842 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
9843 "in": "query",
9844 "name": "limit",
9845 "schema": {
9846 "type": "integer",
9847 "uniqueItems": true
9848 }
9849 },
9850 {
9851 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
9852 "in": "query",
9853 "name": "pretty",
9854 "schema": {
9855 "type": "string",
9856 "uniqueItems": true
9857 }
9858 },
9859 {
9860 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9861 "in": "query",
9862 "name": "resourceVersion",
9863 "schema": {
9864 "type": "string",
9865 "uniqueItems": true
9866 }
9867 },
9868 {
9869 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9870 "in": "query",
9871 "name": "resourceVersionMatch",
9872 "schema": {
9873 "type": "string",
9874 "uniqueItems": true
9875 }
9876 },
9877 {
9878 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
9879 "in": "query",
9880 "name": "sendInitialEvents",
9881 "schema": {
9882 "type": "boolean",
9883 "uniqueItems": true
9884 }
9885 },
9886 {
9887 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
9888 "in": "query",
9889 "name": "timeoutSeconds",
9890 "schema": {
9891 "type": "integer",
9892 "uniqueItems": true
9893 }
9894 },
9895 {
9896 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
9897 "in": "query",
9898 "name": "watch",
9899 "schema": {
9900 "type": "boolean",
9901 "uniqueItems": true
9902 }
9903 }
9904 ]
9905 },
9906 "/api/v1/componentstatuses/{name}": {
9907 "get": {
9908 "description": "read the specified ComponentStatus",
9909 "operationId": "readCoreV1ComponentStatus",
9910 "responses": {
9911 "200": {
9912 "content": {
9913 "application/json": {
9914 "schema": {
9915 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus"
9916 }
9917 },
9918 "application/vnd.kubernetes.protobuf": {
9919 "schema": {
9920 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus"
9921 }
9922 },
9923 "application/yaml": {
9924 "schema": {
9925 "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus"
9926 }
9927 }
9928 },
9929 "description": "OK"
9930 },
9931 "401": {
9932 "description": "Unauthorized"
9933 }
9934 },
9935 "tags": [
9936 "core_v1"
9937 ],
9938 "x-kubernetes-action": "get",
9939 "x-kubernetes-group-version-kind": {
9940 "group": "",
9941 "kind": "ComponentStatus",
9942 "version": "v1"
9943 }
9944 },
9945 "parameters": [
9946 {
9947 "description": "name of the ComponentStatus",
9948 "in": "path",
9949 "name": "name",
9950 "required": true,
9951 "schema": {
9952 "type": "string",
9953 "uniqueItems": true
9954 }
9955 },
9956 {
9957 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
9958 "in": "query",
9959 "name": "pretty",
9960 "schema": {
9961 "type": "string",
9962 "uniqueItems": true
9963 }
9964 }
9965 ]
9966 },
9967 "/api/v1/configmaps": {
9968 "get": {
9969 "description": "list or watch objects of kind ConfigMap",
9970 "operationId": "listCoreV1ConfigMapForAllNamespaces",
9971 "responses": {
9972 "200": {
9973 "content": {
9974 "application/json": {
9975 "schema": {
9976 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
9977 }
9978 },
9979 "application/json;stream=watch": {
9980 "schema": {
9981 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
9982 }
9983 },
9984 "application/vnd.kubernetes.protobuf": {
9985 "schema": {
9986 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
9987 }
9988 },
9989 "application/vnd.kubernetes.protobuf;stream=watch": {
9990 "schema": {
9991 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
9992 }
9993 },
9994 "application/yaml": {
9995 "schema": {
9996 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
9997 }
9998 }
9999 },
10000 "description": "OK"
10001 },
10002 "401": {
10003 "description": "Unauthorized"
10004 }
10005 },
10006 "tags": [
10007 "core_v1"
10008 ],
10009 "x-kubernetes-action": "list",
10010 "x-kubernetes-group-version-kind": {
10011 "group": "",
10012 "kind": "ConfigMap",
10013 "version": "v1"
10014 }
10015 },
10016 "parameters": [
10017 {
10018 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10019 "in": "query",
10020 "name": "allowWatchBookmarks",
10021 "schema": {
10022 "type": "boolean",
10023 "uniqueItems": true
10024 }
10025 },
10026 {
10027 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10028 "in": "query",
10029 "name": "continue",
10030 "schema": {
10031 "type": "string",
10032 "uniqueItems": true
10033 }
10034 },
10035 {
10036 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10037 "in": "query",
10038 "name": "fieldSelector",
10039 "schema": {
10040 "type": "string",
10041 "uniqueItems": true
10042 }
10043 },
10044 {
10045 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10046 "in": "query",
10047 "name": "labelSelector",
10048 "schema": {
10049 "type": "string",
10050 "uniqueItems": true
10051 }
10052 },
10053 {
10054 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10055 "in": "query",
10056 "name": "limit",
10057 "schema": {
10058 "type": "integer",
10059 "uniqueItems": true
10060 }
10061 },
10062 {
10063 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10064 "in": "query",
10065 "name": "pretty",
10066 "schema": {
10067 "type": "string",
10068 "uniqueItems": true
10069 }
10070 },
10071 {
10072 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10073 "in": "query",
10074 "name": "resourceVersion",
10075 "schema": {
10076 "type": "string",
10077 "uniqueItems": true
10078 }
10079 },
10080 {
10081 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10082 "in": "query",
10083 "name": "resourceVersionMatch",
10084 "schema": {
10085 "type": "string",
10086 "uniqueItems": true
10087 }
10088 },
10089 {
10090 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
10091 "in": "query",
10092 "name": "sendInitialEvents",
10093 "schema": {
10094 "type": "boolean",
10095 "uniqueItems": true
10096 }
10097 },
10098 {
10099 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10100 "in": "query",
10101 "name": "timeoutSeconds",
10102 "schema": {
10103 "type": "integer",
10104 "uniqueItems": true
10105 }
10106 },
10107 {
10108 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10109 "in": "query",
10110 "name": "watch",
10111 "schema": {
10112 "type": "boolean",
10113 "uniqueItems": true
10114 }
10115 }
10116 ]
10117 },
10118 "/api/v1/endpoints": {
10119 "get": {
10120 "description": "list or watch objects of kind Endpoints",
10121 "operationId": "listCoreV1EndpointsForAllNamespaces",
10122 "responses": {
10123 "200": {
10124 "content": {
10125 "application/json": {
10126 "schema": {
10127 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
10128 }
10129 },
10130 "application/json;stream=watch": {
10131 "schema": {
10132 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
10133 }
10134 },
10135 "application/vnd.kubernetes.protobuf": {
10136 "schema": {
10137 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
10138 }
10139 },
10140 "application/vnd.kubernetes.protobuf;stream=watch": {
10141 "schema": {
10142 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
10143 }
10144 },
10145 "application/yaml": {
10146 "schema": {
10147 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
10148 }
10149 }
10150 },
10151 "description": "OK"
10152 },
10153 "401": {
10154 "description": "Unauthorized"
10155 }
10156 },
10157 "tags": [
10158 "core_v1"
10159 ],
10160 "x-kubernetes-action": "list",
10161 "x-kubernetes-group-version-kind": {
10162 "group": "",
10163 "kind": "Endpoints",
10164 "version": "v1"
10165 }
10166 },
10167 "parameters": [
10168 {
10169 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10170 "in": "query",
10171 "name": "allowWatchBookmarks",
10172 "schema": {
10173 "type": "boolean",
10174 "uniqueItems": true
10175 }
10176 },
10177 {
10178 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10179 "in": "query",
10180 "name": "continue",
10181 "schema": {
10182 "type": "string",
10183 "uniqueItems": true
10184 }
10185 },
10186 {
10187 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10188 "in": "query",
10189 "name": "fieldSelector",
10190 "schema": {
10191 "type": "string",
10192 "uniqueItems": true
10193 }
10194 },
10195 {
10196 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10197 "in": "query",
10198 "name": "labelSelector",
10199 "schema": {
10200 "type": "string",
10201 "uniqueItems": true
10202 }
10203 },
10204 {
10205 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10206 "in": "query",
10207 "name": "limit",
10208 "schema": {
10209 "type": "integer",
10210 "uniqueItems": true
10211 }
10212 },
10213 {
10214 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10215 "in": "query",
10216 "name": "pretty",
10217 "schema": {
10218 "type": "string",
10219 "uniqueItems": true
10220 }
10221 },
10222 {
10223 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10224 "in": "query",
10225 "name": "resourceVersion",
10226 "schema": {
10227 "type": "string",
10228 "uniqueItems": true
10229 }
10230 },
10231 {
10232 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10233 "in": "query",
10234 "name": "resourceVersionMatch",
10235 "schema": {
10236 "type": "string",
10237 "uniqueItems": true
10238 }
10239 },
10240 {
10241 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
10242 "in": "query",
10243 "name": "sendInitialEvents",
10244 "schema": {
10245 "type": "boolean",
10246 "uniqueItems": true
10247 }
10248 },
10249 {
10250 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10251 "in": "query",
10252 "name": "timeoutSeconds",
10253 "schema": {
10254 "type": "integer",
10255 "uniqueItems": true
10256 }
10257 },
10258 {
10259 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10260 "in": "query",
10261 "name": "watch",
10262 "schema": {
10263 "type": "boolean",
10264 "uniqueItems": true
10265 }
10266 }
10267 ]
10268 },
10269 "/api/v1/events": {
10270 "get": {
10271 "description": "list or watch objects of kind Event",
10272 "operationId": "listCoreV1EventForAllNamespaces",
10273 "responses": {
10274 "200": {
10275 "content": {
10276 "application/json": {
10277 "schema": {
10278 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
10279 }
10280 },
10281 "application/json;stream=watch": {
10282 "schema": {
10283 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
10284 }
10285 },
10286 "application/vnd.kubernetes.protobuf": {
10287 "schema": {
10288 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
10289 }
10290 },
10291 "application/vnd.kubernetes.protobuf;stream=watch": {
10292 "schema": {
10293 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
10294 }
10295 },
10296 "application/yaml": {
10297 "schema": {
10298 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
10299 }
10300 }
10301 },
10302 "description": "OK"
10303 },
10304 "401": {
10305 "description": "Unauthorized"
10306 }
10307 },
10308 "tags": [
10309 "core_v1"
10310 ],
10311 "x-kubernetes-action": "list",
10312 "x-kubernetes-group-version-kind": {
10313 "group": "",
10314 "kind": "Event",
10315 "version": "v1"
10316 }
10317 },
10318 "parameters": [
10319 {
10320 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10321 "in": "query",
10322 "name": "allowWatchBookmarks",
10323 "schema": {
10324 "type": "boolean",
10325 "uniqueItems": true
10326 }
10327 },
10328 {
10329 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10330 "in": "query",
10331 "name": "continue",
10332 "schema": {
10333 "type": "string",
10334 "uniqueItems": true
10335 }
10336 },
10337 {
10338 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10339 "in": "query",
10340 "name": "fieldSelector",
10341 "schema": {
10342 "type": "string",
10343 "uniqueItems": true
10344 }
10345 },
10346 {
10347 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10348 "in": "query",
10349 "name": "labelSelector",
10350 "schema": {
10351 "type": "string",
10352 "uniqueItems": true
10353 }
10354 },
10355 {
10356 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10357 "in": "query",
10358 "name": "limit",
10359 "schema": {
10360 "type": "integer",
10361 "uniqueItems": true
10362 }
10363 },
10364 {
10365 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10366 "in": "query",
10367 "name": "pretty",
10368 "schema": {
10369 "type": "string",
10370 "uniqueItems": true
10371 }
10372 },
10373 {
10374 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10375 "in": "query",
10376 "name": "resourceVersion",
10377 "schema": {
10378 "type": "string",
10379 "uniqueItems": true
10380 }
10381 },
10382 {
10383 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10384 "in": "query",
10385 "name": "resourceVersionMatch",
10386 "schema": {
10387 "type": "string",
10388 "uniqueItems": true
10389 }
10390 },
10391 {
10392 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
10393 "in": "query",
10394 "name": "sendInitialEvents",
10395 "schema": {
10396 "type": "boolean",
10397 "uniqueItems": true
10398 }
10399 },
10400 {
10401 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10402 "in": "query",
10403 "name": "timeoutSeconds",
10404 "schema": {
10405 "type": "integer",
10406 "uniqueItems": true
10407 }
10408 },
10409 {
10410 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10411 "in": "query",
10412 "name": "watch",
10413 "schema": {
10414 "type": "boolean",
10415 "uniqueItems": true
10416 }
10417 }
10418 ]
10419 },
10420 "/api/v1/limitranges": {
10421 "get": {
10422 "description": "list or watch objects of kind LimitRange",
10423 "operationId": "listCoreV1LimitRangeForAllNamespaces",
10424 "responses": {
10425 "200": {
10426 "content": {
10427 "application/json": {
10428 "schema": {
10429 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
10430 }
10431 },
10432 "application/json;stream=watch": {
10433 "schema": {
10434 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
10435 }
10436 },
10437 "application/vnd.kubernetes.protobuf": {
10438 "schema": {
10439 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
10440 }
10441 },
10442 "application/vnd.kubernetes.protobuf;stream=watch": {
10443 "schema": {
10444 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
10445 }
10446 },
10447 "application/yaml": {
10448 "schema": {
10449 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
10450 }
10451 }
10452 },
10453 "description": "OK"
10454 },
10455 "401": {
10456 "description": "Unauthorized"
10457 }
10458 },
10459 "tags": [
10460 "core_v1"
10461 ],
10462 "x-kubernetes-action": "list",
10463 "x-kubernetes-group-version-kind": {
10464 "group": "",
10465 "kind": "LimitRange",
10466 "version": "v1"
10467 }
10468 },
10469 "parameters": [
10470 {
10471 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10472 "in": "query",
10473 "name": "allowWatchBookmarks",
10474 "schema": {
10475 "type": "boolean",
10476 "uniqueItems": true
10477 }
10478 },
10479 {
10480 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10481 "in": "query",
10482 "name": "continue",
10483 "schema": {
10484 "type": "string",
10485 "uniqueItems": true
10486 }
10487 },
10488 {
10489 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10490 "in": "query",
10491 "name": "fieldSelector",
10492 "schema": {
10493 "type": "string",
10494 "uniqueItems": true
10495 }
10496 },
10497 {
10498 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10499 "in": "query",
10500 "name": "labelSelector",
10501 "schema": {
10502 "type": "string",
10503 "uniqueItems": true
10504 }
10505 },
10506 {
10507 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10508 "in": "query",
10509 "name": "limit",
10510 "schema": {
10511 "type": "integer",
10512 "uniqueItems": true
10513 }
10514 },
10515 {
10516 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10517 "in": "query",
10518 "name": "pretty",
10519 "schema": {
10520 "type": "string",
10521 "uniqueItems": true
10522 }
10523 },
10524 {
10525 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10526 "in": "query",
10527 "name": "resourceVersion",
10528 "schema": {
10529 "type": "string",
10530 "uniqueItems": true
10531 }
10532 },
10533 {
10534 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10535 "in": "query",
10536 "name": "resourceVersionMatch",
10537 "schema": {
10538 "type": "string",
10539 "uniqueItems": true
10540 }
10541 },
10542 {
10543 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
10544 "in": "query",
10545 "name": "sendInitialEvents",
10546 "schema": {
10547 "type": "boolean",
10548 "uniqueItems": true
10549 }
10550 },
10551 {
10552 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10553 "in": "query",
10554 "name": "timeoutSeconds",
10555 "schema": {
10556 "type": "integer",
10557 "uniqueItems": true
10558 }
10559 },
10560 {
10561 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10562 "in": "query",
10563 "name": "watch",
10564 "schema": {
10565 "type": "boolean",
10566 "uniqueItems": true
10567 }
10568 }
10569 ]
10570 },
10571 "/api/v1/namespaces": {
10572 "get": {
10573 "description": "list or watch objects of kind Namespace",
10574 "operationId": "listCoreV1Namespace",
10575 "parameters": [
10576 {
10577 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10578 "in": "query",
10579 "name": "allowWatchBookmarks",
10580 "schema": {
10581 "type": "boolean",
10582 "uniqueItems": true
10583 }
10584 },
10585 {
10586 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10587 "in": "query",
10588 "name": "continue",
10589 "schema": {
10590 "type": "string",
10591 "uniqueItems": true
10592 }
10593 },
10594 {
10595 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10596 "in": "query",
10597 "name": "fieldSelector",
10598 "schema": {
10599 "type": "string",
10600 "uniqueItems": true
10601 }
10602 },
10603 {
10604 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10605 "in": "query",
10606 "name": "labelSelector",
10607 "schema": {
10608 "type": "string",
10609 "uniqueItems": true
10610 }
10611 },
10612 {
10613 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10614 "in": "query",
10615 "name": "limit",
10616 "schema": {
10617 "type": "integer",
10618 "uniqueItems": true
10619 }
10620 },
10621 {
10622 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10623 "in": "query",
10624 "name": "resourceVersion",
10625 "schema": {
10626 "type": "string",
10627 "uniqueItems": true
10628 }
10629 },
10630 {
10631 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10632 "in": "query",
10633 "name": "resourceVersionMatch",
10634 "schema": {
10635 "type": "string",
10636 "uniqueItems": true
10637 }
10638 },
10639 {
10640 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
10641 "in": "query",
10642 "name": "sendInitialEvents",
10643 "schema": {
10644 "type": "boolean",
10645 "uniqueItems": true
10646 }
10647 },
10648 {
10649 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10650 "in": "query",
10651 "name": "timeoutSeconds",
10652 "schema": {
10653 "type": "integer",
10654 "uniqueItems": true
10655 }
10656 },
10657 {
10658 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10659 "in": "query",
10660 "name": "watch",
10661 "schema": {
10662 "type": "boolean",
10663 "uniqueItems": true
10664 }
10665 }
10666 ],
10667 "responses": {
10668 "200": {
10669 "content": {
10670 "application/json": {
10671 "schema": {
10672 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList"
10673 }
10674 },
10675 "application/json;stream=watch": {
10676 "schema": {
10677 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList"
10678 }
10679 },
10680 "application/vnd.kubernetes.protobuf": {
10681 "schema": {
10682 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList"
10683 }
10684 },
10685 "application/vnd.kubernetes.protobuf;stream=watch": {
10686 "schema": {
10687 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList"
10688 }
10689 },
10690 "application/yaml": {
10691 "schema": {
10692 "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList"
10693 }
10694 }
10695 },
10696 "description": "OK"
10697 },
10698 "401": {
10699 "description": "Unauthorized"
10700 }
10701 },
10702 "tags": [
10703 "core_v1"
10704 ],
10705 "x-kubernetes-action": "list",
10706 "x-kubernetes-group-version-kind": {
10707 "group": "",
10708 "kind": "Namespace",
10709 "version": "v1"
10710 }
10711 },
10712 "parameters": [
10713 {
10714 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10715 "in": "query",
10716 "name": "pretty",
10717 "schema": {
10718 "type": "string",
10719 "uniqueItems": true
10720 }
10721 }
10722 ],
10723 "post": {
10724 "description": "create a Namespace",
10725 "operationId": "createCoreV1Namespace",
10726 "parameters": [
10727 {
10728 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
10729 "in": "query",
10730 "name": "dryRun",
10731 "schema": {
10732 "type": "string",
10733 "uniqueItems": true
10734 }
10735 },
10736 {
10737 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
10738 "in": "query",
10739 "name": "fieldManager",
10740 "schema": {
10741 "type": "string",
10742 "uniqueItems": true
10743 }
10744 },
10745 {
10746 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
10747 "in": "query",
10748 "name": "fieldValidation",
10749 "schema": {
10750 "type": "string",
10751 "uniqueItems": true
10752 }
10753 }
10754 ],
10755 "requestBody": {
10756 "content": {
10757 "*/*": {
10758 "schema": {
10759 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10760 }
10761 }
10762 },
10763 "required": true
10764 },
10765 "responses": {
10766 "200": {
10767 "content": {
10768 "application/json": {
10769 "schema": {
10770 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10771 }
10772 },
10773 "application/vnd.kubernetes.protobuf": {
10774 "schema": {
10775 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10776 }
10777 },
10778 "application/yaml": {
10779 "schema": {
10780 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10781 }
10782 }
10783 },
10784 "description": "OK"
10785 },
10786 "201": {
10787 "content": {
10788 "application/json": {
10789 "schema": {
10790 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10791 }
10792 },
10793 "application/vnd.kubernetes.protobuf": {
10794 "schema": {
10795 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10796 }
10797 },
10798 "application/yaml": {
10799 "schema": {
10800 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10801 }
10802 }
10803 },
10804 "description": "Created"
10805 },
10806 "202": {
10807 "content": {
10808 "application/json": {
10809 "schema": {
10810 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10811 }
10812 },
10813 "application/vnd.kubernetes.protobuf": {
10814 "schema": {
10815 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10816 }
10817 },
10818 "application/yaml": {
10819 "schema": {
10820 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
10821 }
10822 }
10823 },
10824 "description": "Accepted"
10825 },
10826 "401": {
10827 "description": "Unauthorized"
10828 }
10829 },
10830 "tags": [
10831 "core_v1"
10832 ],
10833 "x-kubernetes-action": "post",
10834 "x-kubernetes-group-version-kind": {
10835 "group": "",
10836 "kind": "Namespace",
10837 "version": "v1"
10838 }
10839 }
10840 },
10841 "/api/v1/namespaces/{namespace}/bindings": {
10842 "parameters": [
10843 {
10844 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
10845 "in": "query",
10846 "name": "dryRun",
10847 "schema": {
10848 "type": "string",
10849 "uniqueItems": true
10850 }
10851 },
10852 {
10853 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
10854 "in": "query",
10855 "name": "fieldManager",
10856 "schema": {
10857 "type": "string",
10858 "uniqueItems": true
10859 }
10860 },
10861 {
10862 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
10863 "in": "query",
10864 "name": "fieldValidation",
10865 "schema": {
10866 "type": "string",
10867 "uniqueItems": true
10868 }
10869 },
10870 {
10871 "description": "object name and auth scope, such as for teams and projects",
10872 "in": "path",
10873 "name": "namespace",
10874 "required": true,
10875 "schema": {
10876 "type": "string",
10877 "uniqueItems": true
10878 }
10879 },
10880 {
10881 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
10882 "in": "query",
10883 "name": "pretty",
10884 "schema": {
10885 "type": "string",
10886 "uniqueItems": true
10887 }
10888 }
10889 ],
10890 "post": {
10891 "description": "create a Binding",
10892 "operationId": "createCoreV1NamespacedBinding",
10893 "requestBody": {
10894 "content": {
10895 "*/*": {
10896 "schema": {
10897 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10898 }
10899 }
10900 },
10901 "required": true
10902 },
10903 "responses": {
10904 "200": {
10905 "content": {
10906 "application/json": {
10907 "schema": {
10908 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10909 }
10910 },
10911 "application/vnd.kubernetes.protobuf": {
10912 "schema": {
10913 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10914 }
10915 },
10916 "application/yaml": {
10917 "schema": {
10918 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10919 }
10920 }
10921 },
10922 "description": "OK"
10923 },
10924 "201": {
10925 "content": {
10926 "application/json": {
10927 "schema": {
10928 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10929 }
10930 },
10931 "application/vnd.kubernetes.protobuf": {
10932 "schema": {
10933 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10934 }
10935 },
10936 "application/yaml": {
10937 "schema": {
10938 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10939 }
10940 }
10941 },
10942 "description": "Created"
10943 },
10944 "202": {
10945 "content": {
10946 "application/json": {
10947 "schema": {
10948 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10949 }
10950 },
10951 "application/vnd.kubernetes.protobuf": {
10952 "schema": {
10953 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10954 }
10955 },
10956 "application/yaml": {
10957 "schema": {
10958 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
10959 }
10960 }
10961 },
10962 "description": "Accepted"
10963 },
10964 "401": {
10965 "description": "Unauthorized"
10966 }
10967 },
10968 "tags": [
10969 "core_v1"
10970 ],
10971 "x-kubernetes-action": "post",
10972 "x-kubernetes-group-version-kind": {
10973 "group": "",
10974 "kind": "Binding",
10975 "version": "v1"
10976 }
10977 }
10978 },
10979 "/api/v1/namespaces/{namespace}/configmaps": {
10980 "delete": {
10981 "description": "delete collection of ConfigMap",
10982 "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
10983 "parameters": [
10984 {
10985 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10986 "in": "query",
10987 "name": "continue",
10988 "schema": {
10989 "type": "string",
10990 "uniqueItems": true
10991 }
10992 },
10993 {
10994 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
10995 "in": "query",
10996 "name": "dryRun",
10997 "schema": {
10998 "type": "string",
10999 "uniqueItems": true
11000 }
11001 },
11002 {
11003 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11004 "in": "query",
11005 "name": "fieldSelector",
11006 "schema": {
11007 "type": "string",
11008 "uniqueItems": true
11009 }
11010 },
11011 {
11012 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
11013 "in": "query",
11014 "name": "gracePeriodSeconds",
11015 "schema": {
11016 "type": "integer",
11017 "uniqueItems": true
11018 }
11019 },
11020 {
11021 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11022 "in": "query",
11023 "name": "labelSelector",
11024 "schema": {
11025 "type": "string",
11026 "uniqueItems": true
11027 }
11028 },
11029 {
11030 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11031 "in": "query",
11032 "name": "limit",
11033 "schema": {
11034 "type": "integer",
11035 "uniqueItems": true
11036 }
11037 },
11038 {
11039 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
11040 "in": "query",
11041 "name": "orphanDependents",
11042 "schema": {
11043 "type": "boolean",
11044 "uniqueItems": true
11045 }
11046 },
11047 {
11048 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
11049 "in": "query",
11050 "name": "propagationPolicy",
11051 "schema": {
11052 "type": "string",
11053 "uniqueItems": true
11054 }
11055 },
11056 {
11057 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11058 "in": "query",
11059 "name": "resourceVersion",
11060 "schema": {
11061 "type": "string",
11062 "uniqueItems": true
11063 }
11064 },
11065 {
11066 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11067 "in": "query",
11068 "name": "resourceVersionMatch",
11069 "schema": {
11070 "type": "string",
11071 "uniqueItems": true
11072 }
11073 },
11074 {
11075 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
11076 "in": "query",
11077 "name": "sendInitialEvents",
11078 "schema": {
11079 "type": "boolean",
11080 "uniqueItems": true
11081 }
11082 },
11083 {
11084 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11085 "in": "query",
11086 "name": "timeoutSeconds",
11087 "schema": {
11088 "type": "integer",
11089 "uniqueItems": true
11090 }
11091 }
11092 ],
11093 "requestBody": {
11094 "content": {
11095 "*/*": {
11096 "schema": {
11097 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
11098 }
11099 }
11100 }
11101 },
11102 "responses": {
11103 "200": {
11104 "content": {
11105 "application/json": {
11106 "schema": {
11107 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11108 }
11109 },
11110 "application/vnd.kubernetes.protobuf": {
11111 "schema": {
11112 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11113 }
11114 },
11115 "application/yaml": {
11116 "schema": {
11117 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11118 }
11119 }
11120 },
11121 "description": "OK"
11122 },
11123 "401": {
11124 "description": "Unauthorized"
11125 }
11126 },
11127 "tags": [
11128 "core_v1"
11129 ],
11130 "x-kubernetes-action": "deletecollection",
11131 "x-kubernetes-group-version-kind": {
11132 "group": "",
11133 "kind": "ConfigMap",
11134 "version": "v1"
11135 }
11136 },
11137 "get": {
11138 "description": "list or watch objects of kind ConfigMap",
11139 "operationId": "listCoreV1NamespacedConfigMap",
11140 "parameters": [
11141 {
11142 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11143 "in": "query",
11144 "name": "allowWatchBookmarks",
11145 "schema": {
11146 "type": "boolean",
11147 "uniqueItems": true
11148 }
11149 },
11150 {
11151 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11152 "in": "query",
11153 "name": "continue",
11154 "schema": {
11155 "type": "string",
11156 "uniqueItems": true
11157 }
11158 },
11159 {
11160 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11161 "in": "query",
11162 "name": "fieldSelector",
11163 "schema": {
11164 "type": "string",
11165 "uniqueItems": true
11166 }
11167 },
11168 {
11169 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11170 "in": "query",
11171 "name": "labelSelector",
11172 "schema": {
11173 "type": "string",
11174 "uniqueItems": true
11175 }
11176 },
11177 {
11178 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11179 "in": "query",
11180 "name": "limit",
11181 "schema": {
11182 "type": "integer",
11183 "uniqueItems": true
11184 }
11185 },
11186 {
11187 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11188 "in": "query",
11189 "name": "resourceVersion",
11190 "schema": {
11191 "type": "string",
11192 "uniqueItems": true
11193 }
11194 },
11195 {
11196 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11197 "in": "query",
11198 "name": "resourceVersionMatch",
11199 "schema": {
11200 "type": "string",
11201 "uniqueItems": true
11202 }
11203 },
11204 {
11205 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
11206 "in": "query",
11207 "name": "sendInitialEvents",
11208 "schema": {
11209 "type": "boolean",
11210 "uniqueItems": true
11211 }
11212 },
11213 {
11214 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11215 "in": "query",
11216 "name": "timeoutSeconds",
11217 "schema": {
11218 "type": "integer",
11219 "uniqueItems": true
11220 }
11221 },
11222 {
11223 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11224 "in": "query",
11225 "name": "watch",
11226 "schema": {
11227 "type": "boolean",
11228 "uniqueItems": true
11229 }
11230 }
11231 ],
11232 "responses": {
11233 "200": {
11234 "content": {
11235 "application/json": {
11236 "schema": {
11237 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
11238 }
11239 },
11240 "application/json;stream=watch": {
11241 "schema": {
11242 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
11243 }
11244 },
11245 "application/vnd.kubernetes.protobuf": {
11246 "schema": {
11247 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
11248 }
11249 },
11250 "application/vnd.kubernetes.protobuf;stream=watch": {
11251 "schema": {
11252 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
11253 }
11254 },
11255 "application/yaml": {
11256 "schema": {
11257 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList"
11258 }
11259 }
11260 },
11261 "description": "OK"
11262 },
11263 "401": {
11264 "description": "Unauthorized"
11265 }
11266 },
11267 "tags": [
11268 "core_v1"
11269 ],
11270 "x-kubernetes-action": "list",
11271 "x-kubernetes-group-version-kind": {
11272 "group": "",
11273 "kind": "ConfigMap",
11274 "version": "v1"
11275 }
11276 },
11277 "parameters": [
11278 {
11279 "description": "object name and auth scope, such as for teams and projects",
11280 "in": "path",
11281 "name": "namespace",
11282 "required": true,
11283 "schema": {
11284 "type": "string",
11285 "uniqueItems": true
11286 }
11287 },
11288 {
11289 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
11290 "in": "query",
11291 "name": "pretty",
11292 "schema": {
11293 "type": "string",
11294 "uniqueItems": true
11295 }
11296 }
11297 ],
11298 "post": {
11299 "description": "create a ConfigMap",
11300 "operationId": "createCoreV1NamespacedConfigMap",
11301 "parameters": [
11302 {
11303 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
11304 "in": "query",
11305 "name": "dryRun",
11306 "schema": {
11307 "type": "string",
11308 "uniqueItems": true
11309 }
11310 },
11311 {
11312 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
11313 "in": "query",
11314 "name": "fieldManager",
11315 "schema": {
11316 "type": "string",
11317 "uniqueItems": true
11318 }
11319 },
11320 {
11321 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
11322 "in": "query",
11323 "name": "fieldValidation",
11324 "schema": {
11325 "type": "string",
11326 "uniqueItems": true
11327 }
11328 }
11329 ],
11330 "requestBody": {
11331 "content": {
11332 "*/*": {
11333 "schema": {
11334 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11335 }
11336 }
11337 },
11338 "required": true
11339 },
11340 "responses": {
11341 "200": {
11342 "content": {
11343 "application/json": {
11344 "schema": {
11345 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11346 }
11347 },
11348 "application/vnd.kubernetes.protobuf": {
11349 "schema": {
11350 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11351 }
11352 },
11353 "application/yaml": {
11354 "schema": {
11355 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11356 }
11357 }
11358 },
11359 "description": "OK"
11360 },
11361 "201": {
11362 "content": {
11363 "application/json": {
11364 "schema": {
11365 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11366 }
11367 },
11368 "application/vnd.kubernetes.protobuf": {
11369 "schema": {
11370 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11371 }
11372 },
11373 "application/yaml": {
11374 "schema": {
11375 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11376 }
11377 }
11378 },
11379 "description": "Created"
11380 },
11381 "202": {
11382 "content": {
11383 "application/json": {
11384 "schema": {
11385 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11386 }
11387 },
11388 "application/vnd.kubernetes.protobuf": {
11389 "schema": {
11390 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11391 }
11392 },
11393 "application/yaml": {
11394 "schema": {
11395 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11396 }
11397 }
11398 },
11399 "description": "Accepted"
11400 },
11401 "401": {
11402 "description": "Unauthorized"
11403 }
11404 },
11405 "tags": [
11406 "core_v1"
11407 ],
11408 "x-kubernetes-action": "post",
11409 "x-kubernetes-group-version-kind": {
11410 "group": "",
11411 "kind": "ConfigMap",
11412 "version": "v1"
11413 }
11414 }
11415 },
11416 "/api/v1/namespaces/{namespace}/configmaps/{name}": {
11417 "delete": {
11418 "description": "delete a ConfigMap",
11419 "operationId": "deleteCoreV1NamespacedConfigMap",
11420 "parameters": [
11421 {
11422 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
11423 "in": "query",
11424 "name": "dryRun",
11425 "schema": {
11426 "type": "string",
11427 "uniqueItems": true
11428 }
11429 },
11430 {
11431 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
11432 "in": "query",
11433 "name": "gracePeriodSeconds",
11434 "schema": {
11435 "type": "integer",
11436 "uniqueItems": true
11437 }
11438 },
11439 {
11440 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
11441 "in": "query",
11442 "name": "orphanDependents",
11443 "schema": {
11444 "type": "boolean",
11445 "uniqueItems": true
11446 }
11447 },
11448 {
11449 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
11450 "in": "query",
11451 "name": "propagationPolicy",
11452 "schema": {
11453 "type": "string",
11454 "uniqueItems": true
11455 }
11456 }
11457 ],
11458 "requestBody": {
11459 "content": {
11460 "*/*": {
11461 "schema": {
11462 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
11463 }
11464 }
11465 }
11466 },
11467 "responses": {
11468 "200": {
11469 "content": {
11470 "application/json": {
11471 "schema": {
11472 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11473 }
11474 },
11475 "application/vnd.kubernetes.protobuf": {
11476 "schema": {
11477 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11478 }
11479 },
11480 "application/yaml": {
11481 "schema": {
11482 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11483 }
11484 }
11485 },
11486 "description": "OK"
11487 },
11488 "202": {
11489 "content": {
11490 "application/json": {
11491 "schema": {
11492 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11493 }
11494 },
11495 "application/vnd.kubernetes.protobuf": {
11496 "schema": {
11497 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11498 }
11499 },
11500 "application/yaml": {
11501 "schema": {
11502 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11503 }
11504 }
11505 },
11506 "description": "Accepted"
11507 },
11508 "401": {
11509 "description": "Unauthorized"
11510 }
11511 },
11512 "tags": [
11513 "core_v1"
11514 ],
11515 "x-kubernetes-action": "delete",
11516 "x-kubernetes-group-version-kind": {
11517 "group": "",
11518 "kind": "ConfigMap",
11519 "version": "v1"
11520 }
11521 },
11522 "get": {
11523 "description": "read the specified ConfigMap",
11524 "operationId": "readCoreV1NamespacedConfigMap",
11525 "responses": {
11526 "200": {
11527 "content": {
11528 "application/json": {
11529 "schema": {
11530 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11531 }
11532 },
11533 "application/vnd.kubernetes.protobuf": {
11534 "schema": {
11535 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11536 }
11537 },
11538 "application/yaml": {
11539 "schema": {
11540 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11541 }
11542 }
11543 },
11544 "description": "OK"
11545 },
11546 "401": {
11547 "description": "Unauthorized"
11548 }
11549 },
11550 "tags": [
11551 "core_v1"
11552 ],
11553 "x-kubernetes-action": "get",
11554 "x-kubernetes-group-version-kind": {
11555 "group": "",
11556 "kind": "ConfigMap",
11557 "version": "v1"
11558 }
11559 },
11560 "parameters": [
11561 {
11562 "description": "name of the ConfigMap",
11563 "in": "path",
11564 "name": "name",
11565 "required": true,
11566 "schema": {
11567 "type": "string",
11568 "uniqueItems": true
11569 }
11570 },
11571 {
11572 "description": "object name and auth scope, such as for teams and projects",
11573 "in": "path",
11574 "name": "namespace",
11575 "required": true,
11576 "schema": {
11577 "type": "string",
11578 "uniqueItems": true
11579 }
11580 },
11581 {
11582 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
11583 "in": "query",
11584 "name": "pretty",
11585 "schema": {
11586 "type": "string",
11587 "uniqueItems": true
11588 }
11589 }
11590 ],
11591 "patch": {
11592 "description": "partially update the specified ConfigMap",
11593 "operationId": "patchCoreV1NamespacedConfigMap",
11594 "parameters": [
11595 {
11596 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
11597 "in": "query",
11598 "name": "dryRun",
11599 "schema": {
11600 "type": "string",
11601 "uniqueItems": true
11602 }
11603 },
11604 {
11605 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
11606 "in": "query",
11607 "name": "fieldManager",
11608 "schema": {
11609 "type": "string",
11610 "uniqueItems": true
11611 }
11612 },
11613 {
11614 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
11615 "in": "query",
11616 "name": "fieldValidation",
11617 "schema": {
11618 "type": "string",
11619 "uniqueItems": true
11620 }
11621 },
11622 {
11623 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
11624 "in": "query",
11625 "name": "force",
11626 "schema": {
11627 "type": "boolean",
11628 "uniqueItems": true
11629 }
11630 }
11631 ],
11632 "requestBody": {
11633 "content": {
11634 "application/apply-patch+yaml": {
11635 "schema": {
11636 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
11637 }
11638 },
11639 "application/json-patch+json": {
11640 "schema": {
11641 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
11642 }
11643 },
11644 "application/merge-patch+json": {
11645 "schema": {
11646 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
11647 }
11648 },
11649 "application/strategic-merge-patch+json": {
11650 "schema": {
11651 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
11652 }
11653 }
11654 },
11655 "required": true
11656 },
11657 "responses": {
11658 "200": {
11659 "content": {
11660 "application/json": {
11661 "schema": {
11662 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11663 }
11664 },
11665 "application/vnd.kubernetes.protobuf": {
11666 "schema": {
11667 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11668 }
11669 },
11670 "application/yaml": {
11671 "schema": {
11672 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11673 }
11674 }
11675 },
11676 "description": "OK"
11677 },
11678 "201": {
11679 "content": {
11680 "application/json": {
11681 "schema": {
11682 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11683 }
11684 },
11685 "application/vnd.kubernetes.protobuf": {
11686 "schema": {
11687 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11688 }
11689 },
11690 "application/yaml": {
11691 "schema": {
11692 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11693 }
11694 }
11695 },
11696 "description": "Created"
11697 },
11698 "401": {
11699 "description": "Unauthorized"
11700 }
11701 },
11702 "tags": [
11703 "core_v1"
11704 ],
11705 "x-kubernetes-action": "patch",
11706 "x-kubernetes-group-version-kind": {
11707 "group": "",
11708 "kind": "ConfigMap",
11709 "version": "v1"
11710 }
11711 },
11712 "put": {
11713 "description": "replace the specified ConfigMap",
11714 "operationId": "replaceCoreV1NamespacedConfigMap",
11715 "parameters": [
11716 {
11717 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
11718 "in": "query",
11719 "name": "dryRun",
11720 "schema": {
11721 "type": "string",
11722 "uniqueItems": true
11723 }
11724 },
11725 {
11726 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
11727 "in": "query",
11728 "name": "fieldManager",
11729 "schema": {
11730 "type": "string",
11731 "uniqueItems": true
11732 }
11733 },
11734 {
11735 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
11736 "in": "query",
11737 "name": "fieldValidation",
11738 "schema": {
11739 "type": "string",
11740 "uniqueItems": true
11741 }
11742 }
11743 ],
11744 "requestBody": {
11745 "content": {
11746 "*/*": {
11747 "schema": {
11748 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11749 }
11750 }
11751 },
11752 "required": true
11753 },
11754 "responses": {
11755 "200": {
11756 "content": {
11757 "application/json": {
11758 "schema": {
11759 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11760 }
11761 },
11762 "application/vnd.kubernetes.protobuf": {
11763 "schema": {
11764 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11765 }
11766 },
11767 "application/yaml": {
11768 "schema": {
11769 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11770 }
11771 }
11772 },
11773 "description": "OK"
11774 },
11775 "201": {
11776 "content": {
11777 "application/json": {
11778 "schema": {
11779 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11780 }
11781 },
11782 "application/vnd.kubernetes.protobuf": {
11783 "schema": {
11784 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11785 }
11786 },
11787 "application/yaml": {
11788 "schema": {
11789 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap"
11790 }
11791 }
11792 },
11793 "description": "Created"
11794 },
11795 "401": {
11796 "description": "Unauthorized"
11797 }
11798 },
11799 "tags": [
11800 "core_v1"
11801 ],
11802 "x-kubernetes-action": "put",
11803 "x-kubernetes-group-version-kind": {
11804 "group": "",
11805 "kind": "ConfigMap",
11806 "version": "v1"
11807 }
11808 }
11809 },
11810 "/api/v1/namespaces/{namespace}/endpoints": {
11811 "delete": {
11812 "description": "delete collection of Endpoints",
11813 "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
11814 "parameters": [
11815 {
11816 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11817 "in": "query",
11818 "name": "continue",
11819 "schema": {
11820 "type": "string",
11821 "uniqueItems": true
11822 }
11823 },
11824 {
11825 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
11826 "in": "query",
11827 "name": "dryRun",
11828 "schema": {
11829 "type": "string",
11830 "uniqueItems": true
11831 }
11832 },
11833 {
11834 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11835 "in": "query",
11836 "name": "fieldSelector",
11837 "schema": {
11838 "type": "string",
11839 "uniqueItems": true
11840 }
11841 },
11842 {
11843 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
11844 "in": "query",
11845 "name": "gracePeriodSeconds",
11846 "schema": {
11847 "type": "integer",
11848 "uniqueItems": true
11849 }
11850 },
11851 {
11852 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11853 "in": "query",
11854 "name": "labelSelector",
11855 "schema": {
11856 "type": "string",
11857 "uniqueItems": true
11858 }
11859 },
11860 {
11861 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11862 "in": "query",
11863 "name": "limit",
11864 "schema": {
11865 "type": "integer",
11866 "uniqueItems": true
11867 }
11868 },
11869 {
11870 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
11871 "in": "query",
11872 "name": "orphanDependents",
11873 "schema": {
11874 "type": "boolean",
11875 "uniqueItems": true
11876 }
11877 },
11878 {
11879 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
11880 "in": "query",
11881 "name": "propagationPolicy",
11882 "schema": {
11883 "type": "string",
11884 "uniqueItems": true
11885 }
11886 },
11887 {
11888 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11889 "in": "query",
11890 "name": "resourceVersion",
11891 "schema": {
11892 "type": "string",
11893 "uniqueItems": true
11894 }
11895 },
11896 {
11897 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11898 "in": "query",
11899 "name": "resourceVersionMatch",
11900 "schema": {
11901 "type": "string",
11902 "uniqueItems": true
11903 }
11904 },
11905 {
11906 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
11907 "in": "query",
11908 "name": "sendInitialEvents",
11909 "schema": {
11910 "type": "boolean",
11911 "uniqueItems": true
11912 }
11913 },
11914 {
11915 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11916 "in": "query",
11917 "name": "timeoutSeconds",
11918 "schema": {
11919 "type": "integer",
11920 "uniqueItems": true
11921 }
11922 }
11923 ],
11924 "requestBody": {
11925 "content": {
11926 "*/*": {
11927 "schema": {
11928 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
11929 }
11930 }
11931 }
11932 },
11933 "responses": {
11934 "200": {
11935 "content": {
11936 "application/json": {
11937 "schema": {
11938 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11939 }
11940 },
11941 "application/vnd.kubernetes.protobuf": {
11942 "schema": {
11943 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11944 }
11945 },
11946 "application/yaml": {
11947 "schema": {
11948 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
11949 }
11950 }
11951 },
11952 "description": "OK"
11953 },
11954 "401": {
11955 "description": "Unauthorized"
11956 }
11957 },
11958 "tags": [
11959 "core_v1"
11960 ],
11961 "x-kubernetes-action": "deletecollection",
11962 "x-kubernetes-group-version-kind": {
11963 "group": "",
11964 "kind": "Endpoints",
11965 "version": "v1"
11966 }
11967 },
11968 "get": {
11969 "description": "list or watch objects of kind Endpoints",
11970 "operationId": "listCoreV1NamespacedEndpoints",
11971 "parameters": [
11972 {
11973 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11974 "in": "query",
11975 "name": "allowWatchBookmarks",
11976 "schema": {
11977 "type": "boolean",
11978 "uniqueItems": true
11979 }
11980 },
11981 {
11982 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11983 "in": "query",
11984 "name": "continue",
11985 "schema": {
11986 "type": "string",
11987 "uniqueItems": true
11988 }
11989 },
11990 {
11991 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11992 "in": "query",
11993 "name": "fieldSelector",
11994 "schema": {
11995 "type": "string",
11996 "uniqueItems": true
11997 }
11998 },
11999 {
12000 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12001 "in": "query",
12002 "name": "labelSelector",
12003 "schema": {
12004 "type": "string",
12005 "uniqueItems": true
12006 }
12007 },
12008 {
12009 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12010 "in": "query",
12011 "name": "limit",
12012 "schema": {
12013 "type": "integer",
12014 "uniqueItems": true
12015 }
12016 },
12017 {
12018 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12019 "in": "query",
12020 "name": "resourceVersion",
12021 "schema": {
12022 "type": "string",
12023 "uniqueItems": true
12024 }
12025 },
12026 {
12027 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12028 "in": "query",
12029 "name": "resourceVersionMatch",
12030 "schema": {
12031 "type": "string",
12032 "uniqueItems": true
12033 }
12034 },
12035 {
12036 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
12037 "in": "query",
12038 "name": "sendInitialEvents",
12039 "schema": {
12040 "type": "boolean",
12041 "uniqueItems": true
12042 }
12043 },
12044 {
12045 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12046 "in": "query",
12047 "name": "timeoutSeconds",
12048 "schema": {
12049 "type": "integer",
12050 "uniqueItems": true
12051 }
12052 },
12053 {
12054 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12055 "in": "query",
12056 "name": "watch",
12057 "schema": {
12058 "type": "boolean",
12059 "uniqueItems": true
12060 }
12061 }
12062 ],
12063 "responses": {
12064 "200": {
12065 "content": {
12066 "application/json": {
12067 "schema": {
12068 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
12069 }
12070 },
12071 "application/json;stream=watch": {
12072 "schema": {
12073 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
12074 }
12075 },
12076 "application/vnd.kubernetes.protobuf": {
12077 "schema": {
12078 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
12079 }
12080 },
12081 "application/vnd.kubernetes.protobuf;stream=watch": {
12082 "schema": {
12083 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
12084 }
12085 },
12086 "application/yaml": {
12087 "schema": {
12088 "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList"
12089 }
12090 }
12091 },
12092 "description": "OK"
12093 },
12094 "401": {
12095 "description": "Unauthorized"
12096 }
12097 },
12098 "tags": [
12099 "core_v1"
12100 ],
12101 "x-kubernetes-action": "list",
12102 "x-kubernetes-group-version-kind": {
12103 "group": "",
12104 "kind": "Endpoints",
12105 "version": "v1"
12106 }
12107 },
12108 "parameters": [
12109 {
12110 "description": "object name and auth scope, such as for teams and projects",
12111 "in": "path",
12112 "name": "namespace",
12113 "required": true,
12114 "schema": {
12115 "type": "string",
12116 "uniqueItems": true
12117 }
12118 },
12119 {
12120 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
12121 "in": "query",
12122 "name": "pretty",
12123 "schema": {
12124 "type": "string",
12125 "uniqueItems": true
12126 }
12127 }
12128 ],
12129 "post": {
12130 "description": "create Endpoints",
12131 "operationId": "createCoreV1NamespacedEndpoints",
12132 "parameters": [
12133 {
12134 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12135 "in": "query",
12136 "name": "dryRun",
12137 "schema": {
12138 "type": "string",
12139 "uniqueItems": true
12140 }
12141 },
12142 {
12143 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
12144 "in": "query",
12145 "name": "fieldManager",
12146 "schema": {
12147 "type": "string",
12148 "uniqueItems": true
12149 }
12150 },
12151 {
12152 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
12153 "in": "query",
12154 "name": "fieldValidation",
12155 "schema": {
12156 "type": "string",
12157 "uniqueItems": true
12158 }
12159 }
12160 ],
12161 "requestBody": {
12162 "content": {
12163 "*/*": {
12164 "schema": {
12165 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12166 }
12167 }
12168 },
12169 "required": true
12170 },
12171 "responses": {
12172 "200": {
12173 "content": {
12174 "application/json": {
12175 "schema": {
12176 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12177 }
12178 },
12179 "application/vnd.kubernetes.protobuf": {
12180 "schema": {
12181 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12182 }
12183 },
12184 "application/yaml": {
12185 "schema": {
12186 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12187 }
12188 }
12189 },
12190 "description": "OK"
12191 },
12192 "201": {
12193 "content": {
12194 "application/json": {
12195 "schema": {
12196 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12197 }
12198 },
12199 "application/vnd.kubernetes.protobuf": {
12200 "schema": {
12201 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12202 }
12203 },
12204 "application/yaml": {
12205 "schema": {
12206 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12207 }
12208 }
12209 },
12210 "description": "Created"
12211 },
12212 "202": {
12213 "content": {
12214 "application/json": {
12215 "schema": {
12216 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12217 }
12218 },
12219 "application/vnd.kubernetes.protobuf": {
12220 "schema": {
12221 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12222 }
12223 },
12224 "application/yaml": {
12225 "schema": {
12226 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12227 }
12228 }
12229 },
12230 "description": "Accepted"
12231 },
12232 "401": {
12233 "description": "Unauthorized"
12234 }
12235 },
12236 "tags": [
12237 "core_v1"
12238 ],
12239 "x-kubernetes-action": "post",
12240 "x-kubernetes-group-version-kind": {
12241 "group": "",
12242 "kind": "Endpoints",
12243 "version": "v1"
12244 }
12245 }
12246 },
12247 "/api/v1/namespaces/{namespace}/endpoints/{name}": {
12248 "delete": {
12249 "description": "delete Endpoints",
12250 "operationId": "deleteCoreV1NamespacedEndpoints",
12251 "parameters": [
12252 {
12253 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12254 "in": "query",
12255 "name": "dryRun",
12256 "schema": {
12257 "type": "string",
12258 "uniqueItems": true
12259 }
12260 },
12261 {
12262 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
12263 "in": "query",
12264 "name": "gracePeriodSeconds",
12265 "schema": {
12266 "type": "integer",
12267 "uniqueItems": true
12268 }
12269 },
12270 {
12271 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
12272 "in": "query",
12273 "name": "orphanDependents",
12274 "schema": {
12275 "type": "boolean",
12276 "uniqueItems": true
12277 }
12278 },
12279 {
12280 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
12281 "in": "query",
12282 "name": "propagationPolicy",
12283 "schema": {
12284 "type": "string",
12285 "uniqueItems": true
12286 }
12287 }
12288 ],
12289 "requestBody": {
12290 "content": {
12291 "*/*": {
12292 "schema": {
12293 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
12294 }
12295 }
12296 }
12297 },
12298 "responses": {
12299 "200": {
12300 "content": {
12301 "application/json": {
12302 "schema": {
12303 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12304 }
12305 },
12306 "application/vnd.kubernetes.protobuf": {
12307 "schema": {
12308 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12309 }
12310 },
12311 "application/yaml": {
12312 "schema": {
12313 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12314 }
12315 }
12316 },
12317 "description": "OK"
12318 },
12319 "202": {
12320 "content": {
12321 "application/json": {
12322 "schema": {
12323 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12324 }
12325 },
12326 "application/vnd.kubernetes.protobuf": {
12327 "schema": {
12328 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12329 }
12330 },
12331 "application/yaml": {
12332 "schema": {
12333 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12334 }
12335 }
12336 },
12337 "description": "Accepted"
12338 },
12339 "401": {
12340 "description": "Unauthorized"
12341 }
12342 },
12343 "tags": [
12344 "core_v1"
12345 ],
12346 "x-kubernetes-action": "delete",
12347 "x-kubernetes-group-version-kind": {
12348 "group": "",
12349 "kind": "Endpoints",
12350 "version": "v1"
12351 }
12352 },
12353 "get": {
12354 "description": "read the specified Endpoints",
12355 "operationId": "readCoreV1NamespacedEndpoints",
12356 "responses": {
12357 "200": {
12358 "content": {
12359 "application/json": {
12360 "schema": {
12361 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12362 }
12363 },
12364 "application/vnd.kubernetes.protobuf": {
12365 "schema": {
12366 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12367 }
12368 },
12369 "application/yaml": {
12370 "schema": {
12371 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12372 }
12373 }
12374 },
12375 "description": "OK"
12376 },
12377 "401": {
12378 "description": "Unauthorized"
12379 }
12380 },
12381 "tags": [
12382 "core_v1"
12383 ],
12384 "x-kubernetes-action": "get",
12385 "x-kubernetes-group-version-kind": {
12386 "group": "",
12387 "kind": "Endpoints",
12388 "version": "v1"
12389 }
12390 },
12391 "parameters": [
12392 {
12393 "description": "name of the Endpoints",
12394 "in": "path",
12395 "name": "name",
12396 "required": true,
12397 "schema": {
12398 "type": "string",
12399 "uniqueItems": true
12400 }
12401 },
12402 {
12403 "description": "object name and auth scope, such as for teams and projects",
12404 "in": "path",
12405 "name": "namespace",
12406 "required": true,
12407 "schema": {
12408 "type": "string",
12409 "uniqueItems": true
12410 }
12411 },
12412 {
12413 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
12414 "in": "query",
12415 "name": "pretty",
12416 "schema": {
12417 "type": "string",
12418 "uniqueItems": true
12419 }
12420 }
12421 ],
12422 "patch": {
12423 "description": "partially update the specified Endpoints",
12424 "operationId": "patchCoreV1NamespacedEndpoints",
12425 "parameters": [
12426 {
12427 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12428 "in": "query",
12429 "name": "dryRun",
12430 "schema": {
12431 "type": "string",
12432 "uniqueItems": true
12433 }
12434 },
12435 {
12436 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
12437 "in": "query",
12438 "name": "fieldManager",
12439 "schema": {
12440 "type": "string",
12441 "uniqueItems": true
12442 }
12443 },
12444 {
12445 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
12446 "in": "query",
12447 "name": "fieldValidation",
12448 "schema": {
12449 "type": "string",
12450 "uniqueItems": true
12451 }
12452 },
12453 {
12454 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
12455 "in": "query",
12456 "name": "force",
12457 "schema": {
12458 "type": "boolean",
12459 "uniqueItems": true
12460 }
12461 }
12462 ],
12463 "requestBody": {
12464 "content": {
12465 "application/apply-patch+yaml": {
12466 "schema": {
12467 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
12468 }
12469 },
12470 "application/json-patch+json": {
12471 "schema": {
12472 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
12473 }
12474 },
12475 "application/merge-patch+json": {
12476 "schema": {
12477 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
12478 }
12479 },
12480 "application/strategic-merge-patch+json": {
12481 "schema": {
12482 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
12483 }
12484 }
12485 },
12486 "required": true
12487 },
12488 "responses": {
12489 "200": {
12490 "content": {
12491 "application/json": {
12492 "schema": {
12493 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12494 }
12495 },
12496 "application/vnd.kubernetes.protobuf": {
12497 "schema": {
12498 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12499 }
12500 },
12501 "application/yaml": {
12502 "schema": {
12503 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12504 }
12505 }
12506 },
12507 "description": "OK"
12508 },
12509 "201": {
12510 "content": {
12511 "application/json": {
12512 "schema": {
12513 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12514 }
12515 },
12516 "application/vnd.kubernetes.protobuf": {
12517 "schema": {
12518 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12519 }
12520 },
12521 "application/yaml": {
12522 "schema": {
12523 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12524 }
12525 }
12526 },
12527 "description": "Created"
12528 },
12529 "401": {
12530 "description": "Unauthorized"
12531 }
12532 },
12533 "tags": [
12534 "core_v1"
12535 ],
12536 "x-kubernetes-action": "patch",
12537 "x-kubernetes-group-version-kind": {
12538 "group": "",
12539 "kind": "Endpoints",
12540 "version": "v1"
12541 }
12542 },
12543 "put": {
12544 "description": "replace the specified Endpoints",
12545 "operationId": "replaceCoreV1NamespacedEndpoints",
12546 "parameters": [
12547 {
12548 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12549 "in": "query",
12550 "name": "dryRun",
12551 "schema": {
12552 "type": "string",
12553 "uniqueItems": true
12554 }
12555 },
12556 {
12557 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
12558 "in": "query",
12559 "name": "fieldManager",
12560 "schema": {
12561 "type": "string",
12562 "uniqueItems": true
12563 }
12564 },
12565 {
12566 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
12567 "in": "query",
12568 "name": "fieldValidation",
12569 "schema": {
12570 "type": "string",
12571 "uniqueItems": true
12572 }
12573 }
12574 ],
12575 "requestBody": {
12576 "content": {
12577 "*/*": {
12578 "schema": {
12579 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12580 }
12581 }
12582 },
12583 "required": true
12584 },
12585 "responses": {
12586 "200": {
12587 "content": {
12588 "application/json": {
12589 "schema": {
12590 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12591 }
12592 },
12593 "application/vnd.kubernetes.protobuf": {
12594 "schema": {
12595 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12596 }
12597 },
12598 "application/yaml": {
12599 "schema": {
12600 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12601 }
12602 }
12603 },
12604 "description": "OK"
12605 },
12606 "201": {
12607 "content": {
12608 "application/json": {
12609 "schema": {
12610 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12611 }
12612 },
12613 "application/vnd.kubernetes.protobuf": {
12614 "schema": {
12615 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12616 }
12617 },
12618 "application/yaml": {
12619 "schema": {
12620 "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints"
12621 }
12622 }
12623 },
12624 "description": "Created"
12625 },
12626 "401": {
12627 "description": "Unauthorized"
12628 }
12629 },
12630 "tags": [
12631 "core_v1"
12632 ],
12633 "x-kubernetes-action": "put",
12634 "x-kubernetes-group-version-kind": {
12635 "group": "",
12636 "kind": "Endpoints",
12637 "version": "v1"
12638 }
12639 }
12640 },
12641 "/api/v1/namespaces/{namespace}/events": {
12642 "delete": {
12643 "description": "delete collection of Event",
12644 "operationId": "deleteCoreV1CollectionNamespacedEvent",
12645 "parameters": [
12646 {
12647 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12648 "in": "query",
12649 "name": "continue",
12650 "schema": {
12651 "type": "string",
12652 "uniqueItems": true
12653 }
12654 },
12655 {
12656 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12657 "in": "query",
12658 "name": "dryRun",
12659 "schema": {
12660 "type": "string",
12661 "uniqueItems": true
12662 }
12663 },
12664 {
12665 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12666 "in": "query",
12667 "name": "fieldSelector",
12668 "schema": {
12669 "type": "string",
12670 "uniqueItems": true
12671 }
12672 },
12673 {
12674 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
12675 "in": "query",
12676 "name": "gracePeriodSeconds",
12677 "schema": {
12678 "type": "integer",
12679 "uniqueItems": true
12680 }
12681 },
12682 {
12683 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12684 "in": "query",
12685 "name": "labelSelector",
12686 "schema": {
12687 "type": "string",
12688 "uniqueItems": true
12689 }
12690 },
12691 {
12692 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12693 "in": "query",
12694 "name": "limit",
12695 "schema": {
12696 "type": "integer",
12697 "uniqueItems": true
12698 }
12699 },
12700 {
12701 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
12702 "in": "query",
12703 "name": "orphanDependents",
12704 "schema": {
12705 "type": "boolean",
12706 "uniqueItems": true
12707 }
12708 },
12709 {
12710 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
12711 "in": "query",
12712 "name": "propagationPolicy",
12713 "schema": {
12714 "type": "string",
12715 "uniqueItems": true
12716 }
12717 },
12718 {
12719 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12720 "in": "query",
12721 "name": "resourceVersion",
12722 "schema": {
12723 "type": "string",
12724 "uniqueItems": true
12725 }
12726 },
12727 {
12728 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12729 "in": "query",
12730 "name": "resourceVersionMatch",
12731 "schema": {
12732 "type": "string",
12733 "uniqueItems": true
12734 }
12735 },
12736 {
12737 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
12738 "in": "query",
12739 "name": "sendInitialEvents",
12740 "schema": {
12741 "type": "boolean",
12742 "uniqueItems": true
12743 }
12744 },
12745 {
12746 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12747 "in": "query",
12748 "name": "timeoutSeconds",
12749 "schema": {
12750 "type": "integer",
12751 "uniqueItems": true
12752 }
12753 }
12754 ],
12755 "requestBody": {
12756 "content": {
12757 "*/*": {
12758 "schema": {
12759 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
12760 }
12761 }
12762 }
12763 },
12764 "responses": {
12765 "200": {
12766 "content": {
12767 "application/json": {
12768 "schema": {
12769 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12770 }
12771 },
12772 "application/vnd.kubernetes.protobuf": {
12773 "schema": {
12774 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12775 }
12776 },
12777 "application/yaml": {
12778 "schema": {
12779 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
12780 }
12781 }
12782 },
12783 "description": "OK"
12784 },
12785 "401": {
12786 "description": "Unauthorized"
12787 }
12788 },
12789 "tags": [
12790 "core_v1"
12791 ],
12792 "x-kubernetes-action": "deletecollection",
12793 "x-kubernetes-group-version-kind": {
12794 "group": "",
12795 "kind": "Event",
12796 "version": "v1"
12797 }
12798 },
12799 "get": {
12800 "description": "list or watch objects of kind Event",
12801 "operationId": "listCoreV1NamespacedEvent",
12802 "parameters": [
12803 {
12804 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12805 "in": "query",
12806 "name": "allowWatchBookmarks",
12807 "schema": {
12808 "type": "boolean",
12809 "uniqueItems": true
12810 }
12811 },
12812 {
12813 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12814 "in": "query",
12815 "name": "continue",
12816 "schema": {
12817 "type": "string",
12818 "uniqueItems": true
12819 }
12820 },
12821 {
12822 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12823 "in": "query",
12824 "name": "fieldSelector",
12825 "schema": {
12826 "type": "string",
12827 "uniqueItems": true
12828 }
12829 },
12830 {
12831 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12832 "in": "query",
12833 "name": "labelSelector",
12834 "schema": {
12835 "type": "string",
12836 "uniqueItems": true
12837 }
12838 },
12839 {
12840 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12841 "in": "query",
12842 "name": "limit",
12843 "schema": {
12844 "type": "integer",
12845 "uniqueItems": true
12846 }
12847 },
12848 {
12849 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12850 "in": "query",
12851 "name": "resourceVersion",
12852 "schema": {
12853 "type": "string",
12854 "uniqueItems": true
12855 }
12856 },
12857 {
12858 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12859 "in": "query",
12860 "name": "resourceVersionMatch",
12861 "schema": {
12862 "type": "string",
12863 "uniqueItems": true
12864 }
12865 },
12866 {
12867 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
12868 "in": "query",
12869 "name": "sendInitialEvents",
12870 "schema": {
12871 "type": "boolean",
12872 "uniqueItems": true
12873 }
12874 },
12875 {
12876 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12877 "in": "query",
12878 "name": "timeoutSeconds",
12879 "schema": {
12880 "type": "integer",
12881 "uniqueItems": true
12882 }
12883 },
12884 {
12885 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12886 "in": "query",
12887 "name": "watch",
12888 "schema": {
12889 "type": "boolean",
12890 "uniqueItems": true
12891 }
12892 }
12893 ],
12894 "responses": {
12895 "200": {
12896 "content": {
12897 "application/json": {
12898 "schema": {
12899 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
12900 }
12901 },
12902 "application/json;stream=watch": {
12903 "schema": {
12904 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
12905 }
12906 },
12907 "application/vnd.kubernetes.protobuf": {
12908 "schema": {
12909 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
12910 }
12911 },
12912 "application/vnd.kubernetes.protobuf;stream=watch": {
12913 "schema": {
12914 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
12915 }
12916 },
12917 "application/yaml": {
12918 "schema": {
12919 "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList"
12920 }
12921 }
12922 },
12923 "description": "OK"
12924 },
12925 "401": {
12926 "description": "Unauthorized"
12927 }
12928 },
12929 "tags": [
12930 "core_v1"
12931 ],
12932 "x-kubernetes-action": "list",
12933 "x-kubernetes-group-version-kind": {
12934 "group": "",
12935 "kind": "Event",
12936 "version": "v1"
12937 }
12938 },
12939 "parameters": [
12940 {
12941 "description": "object name and auth scope, such as for teams and projects",
12942 "in": "path",
12943 "name": "namespace",
12944 "required": true,
12945 "schema": {
12946 "type": "string",
12947 "uniqueItems": true
12948 }
12949 },
12950 {
12951 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
12952 "in": "query",
12953 "name": "pretty",
12954 "schema": {
12955 "type": "string",
12956 "uniqueItems": true
12957 }
12958 }
12959 ],
12960 "post": {
12961 "description": "create an Event",
12962 "operationId": "createCoreV1NamespacedEvent",
12963 "parameters": [
12964 {
12965 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
12966 "in": "query",
12967 "name": "dryRun",
12968 "schema": {
12969 "type": "string",
12970 "uniqueItems": true
12971 }
12972 },
12973 {
12974 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
12975 "in": "query",
12976 "name": "fieldManager",
12977 "schema": {
12978 "type": "string",
12979 "uniqueItems": true
12980 }
12981 },
12982 {
12983 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
12984 "in": "query",
12985 "name": "fieldValidation",
12986 "schema": {
12987 "type": "string",
12988 "uniqueItems": true
12989 }
12990 }
12991 ],
12992 "requestBody": {
12993 "content": {
12994 "*/*": {
12995 "schema": {
12996 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
12997 }
12998 }
12999 },
13000 "required": true
13001 },
13002 "responses": {
13003 "200": {
13004 "content": {
13005 "application/json": {
13006 "schema": {
13007 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13008 }
13009 },
13010 "application/vnd.kubernetes.protobuf": {
13011 "schema": {
13012 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13013 }
13014 },
13015 "application/yaml": {
13016 "schema": {
13017 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13018 }
13019 }
13020 },
13021 "description": "OK"
13022 },
13023 "201": {
13024 "content": {
13025 "application/json": {
13026 "schema": {
13027 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13028 }
13029 },
13030 "application/vnd.kubernetes.protobuf": {
13031 "schema": {
13032 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13033 }
13034 },
13035 "application/yaml": {
13036 "schema": {
13037 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13038 }
13039 }
13040 },
13041 "description": "Created"
13042 },
13043 "202": {
13044 "content": {
13045 "application/json": {
13046 "schema": {
13047 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13048 }
13049 },
13050 "application/vnd.kubernetes.protobuf": {
13051 "schema": {
13052 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13053 }
13054 },
13055 "application/yaml": {
13056 "schema": {
13057 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13058 }
13059 }
13060 },
13061 "description": "Accepted"
13062 },
13063 "401": {
13064 "description": "Unauthorized"
13065 }
13066 },
13067 "tags": [
13068 "core_v1"
13069 ],
13070 "x-kubernetes-action": "post",
13071 "x-kubernetes-group-version-kind": {
13072 "group": "",
13073 "kind": "Event",
13074 "version": "v1"
13075 }
13076 }
13077 },
13078 "/api/v1/namespaces/{namespace}/events/{name}": {
13079 "delete": {
13080 "description": "delete an Event",
13081 "operationId": "deleteCoreV1NamespacedEvent",
13082 "parameters": [
13083 {
13084 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13085 "in": "query",
13086 "name": "dryRun",
13087 "schema": {
13088 "type": "string",
13089 "uniqueItems": true
13090 }
13091 },
13092 {
13093 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
13094 "in": "query",
13095 "name": "gracePeriodSeconds",
13096 "schema": {
13097 "type": "integer",
13098 "uniqueItems": true
13099 }
13100 },
13101 {
13102 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
13103 "in": "query",
13104 "name": "orphanDependents",
13105 "schema": {
13106 "type": "boolean",
13107 "uniqueItems": true
13108 }
13109 },
13110 {
13111 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
13112 "in": "query",
13113 "name": "propagationPolicy",
13114 "schema": {
13115 "type": "string",
13116 "uniqueItems": true
13117 }
13118 }
13119 ],
13120 "requestBody": {
13121 "content": {
13122 "*/*": {
13123 "schema": {
13124 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
13125 }
13126 }
13127 }
13128 },
13129 "responses": {
13130 "200": {
13131 "content": {
13132 "application/json": {
13133 "schema": {
13134 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13135 }
13136 },
13137 "application/vnd.kubernetes.protobuf": {
13138 "schema": {
13139 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13140 }
13141 },
13142 "application/yaml": {
13143 "schema": {
13144 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13145 }
13146 }
13147 },
13148 "description": "OK"
13149 },
13150 "202": {
13151 "content": {
13152 "application/json": {
13153 "schema": {
13154 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13155 }
13156 },
13157 "application/vnd.kubernetes.protobuf": {
13158 "schema": {
13159 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13160 }
13161 },
13162 "application/yaml": {
13163 "schema": {
13164 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13165 }
13166 }
13167 },
13168 "description": "Accepted"
13169 },
13170 "401": {
13171 "description": "Unauthorized"
13172 }
13173 },
13174 "tags": [
13175 "core_v1"
13176 ],
13177 "x-kubernetes-action": "delete",
13178 "x-kubernetes-group-version-kind": {
13179 "group": "",
13180 "kind": "Event",
13181 "version": "v1"
13182 }
13183 },
13184 "get": {
13185 "description": "read the specified Event",
13186 "operationId": "readCoreV1NamespacedEvent",
13187 "responses": {
13188 "200": {
13189 "content": {
13190 "application/json": {
13191 "schema": {
13192 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13193 }
13194 },
13195 "application/vnd.kubernetes.protobuf": {
13196 "schema": {
13197 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13198 }
13199 },
13200 "application/yaml": {
13201 "schema": {
13202 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13203 }
13204 }
13205 },
13206 "description": "OK"
13207 },
13208 "401": {
13209 "description": "Unauthorized"
13210 }
13211 },
13212 "tags": [
13213 "core_v1"
13214 ],
13215 "x-kubernetes-action": "get",
13216 "x-kubernetes-group-version-kind": {
13217 "group": "",
13218 "kind": "Event",
13219 "version": "v1"
13220 }
13221 },
13222 "parameters": [
13223 {
13224 "description": "name of the Event",
13225 "in": "path",
13226 "name": "name",
13227 "required": true,
13228 "schema": {
13229 "type": "string",
13230 "uniqueItems": true
13231 }
13232 },
13233 {
13234 "description": "object name and auth scope, such as for teams and projects",
13235 "in": "path",
13236 "name": "namespace",
13237 "required": true,
13238 "schema": {
13239 "type": "string",
13240 "uniqueItems": true
13241 }
13242 },
13243 {
13244 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
13245 "in": "query",
13246 "name": "pretty",
13247 "schema": {
13248 "type": "string",
13249 "uniqueItems": true
13250 }
13251 }
13252 ],
13253 "patch": {
13254 "description": "partially update the specified Event",
13255 "operationId": "patchCoreV1NamespacedEvent",
13256 "parameters": [
13257 {
13258 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13259 "in": "query",
13260 "name": "dryRun",
13261 "schema": {
13262 "type": "string",
13263 "uniqueItems": true
13264 }
13265 },
13266 {
13267 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
13268 "in": "query",
13269 "name": "fieldManager",
13270 "schema": {
13271 "type": "string",
13272 "uniqueItems": true
13273 }
13274 },
13275 {
13276 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
13277 "in": "query",
13278 "name": "fieldValidation",
13279 "schema": {
13280 "type": "string",
13281 "uniqueItems": true
13282 }
13283 },
13284 {
13285 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
13286 "in": "query",
13287 "name": "force",
13288 "schema": {
13289 "type": "boolean",
13290 "uniqueItems": true
13291 }
13292 }
13293 ],
13294 "requestBody": {
13295 "content": {
13296 "application/apply-patch+yaml": {
13297 "schema": {
13298 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
13299 }
13300 },
13301 "application/json-patch+json": {
13302 "schema": {
13303 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
13304 }
13305 },
13306 "application/merge-patch+json": {
13307 "schema": {
13308 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
13309 }
13310 },
13311 "application/strategic-merge-patch+json": {
13312 "schema": {
13313 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
13314 }
13315 }
13316 },
13317 "required": true
13318 },
13319 "responses": {
13320 "200": {
13321 "content": {
13322 "application/json": {
13323 "schema": {
13324 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13325 }
13326 },
13327 "application/vnd.kubernetes.protobuf": {
13328 "schema": {
13329 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13330 }
13331 },
13332 "application/yaml": {
13333 "schema": {
13334 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13335 }
13336 }
13337 },
13338 "description": "OK"
13339 },
13340 "201": {
13341 "content": {
13342 "application/json": {
13343 "schema": {
13344 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13345 }
13346 },
13347 "application/vnd.kubernetes.protobuf": {
13348 "schema": {
13349 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13350 }
13351 },
13352 "application/yaml": {
13353 "schema": {
13354 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13355 }
13356 }
13357 },
13358 "description": "Created"
13359 },
13360 "401": {
13361 "description": "Unauthorized"
13362 }
13363 },
13364 "tags": [
13365 "core_v1"
13366 ],
13367 "x-kubernetes-action": "patch",
13368 "x-kubernetes-group-version-kind": {
13369 "group": "",
13370 "kind": "Event",
13371 "version": "v1"
13372 }
13373 },
13374 "put": {
13375 "description": "replace the specified Event",
13376 "operationId": "replaceCoreV1NamespacedEvent",
13377 "parameters": [
13378 {
13379 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13380 "in": "query",
13381 "name": "dryRun",
13382 "schema": {
13383 "type": "string",
13384 "uniqueItems": true
13385 }
13386 },
13387 {
13388 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
13389 "in": "query",
13390 "name": "fieldManager",
13391 "schema": {
13392 "type": "string",
13393 "uniqueItems": true
13394 }
13395 },
13396 {
13397 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
13398 "in": "query",
13399 "name": "fieldValidation",
13400 "schema": {
13401 "type": "string",
13402 "uniqueItems": true
13403 }
13404 }
13405 ],
13406 "requestBody": {
13407 "content": {
13408 "*/*": {
13409 "schema": {
13410 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13411 }
13412 }
13413 },
13414 "required": true
13415 },
13416 "responses": {
13417 "200": {
13418 "content": {
13419 "application/json": {
13420 "schema": {
13421 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13422 }
13423 },
13424 "application/vnd.kubernetes.protobuf": {
13425 "schema": {
13426 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13427 }
13428 },
13429 "application/yaml": {
13430 "schema": {
13431 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13432 }
13433 }
13434 },
13435 "description": "OK"
13436 },
13437 "201": {
13438 "content": {
13439 "application/json": {
13440 "schema": {
13441 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13442 }
13443 },
13444 "application/vnd.kubernetes.protobuf": {
13445 "schema": {
13446 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13447 }
13448 },
13449 "application/yaml": {
13450 "schema": {
13451 "$ref": "#/components/schemas/io.k8s.api.core.v1.Event"
13452 }
13453 }
13454 },
13455 "description": "Created"
13456 },
13457 "401": {
13458 "description": "Unauthorized"
13459 }
13460 },
13461 "tags": [
13462 "core_v1"
13463 ],
13464 "x-kubernetes-action": "put",
13465 "x-kubernetes-group-version-kind": {
13466 "group": "",
13467 "kind": "Event",
13468 "version": "v1"
13469 }
13470 }
13471 },
13472 "/api/v1/namespaces/{namespace}/limitranges": {
13473 "delete": {
13474 "description": "delete collection of LimitRange",
13475 "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
13476 "parameters": [
13477 {
13478 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
13479 "in": "query",
13480 "name": "continue",
13481 "schema": {
13482 "type": "string",
13483 "uniqueItems": true
13484 }
13485 },
13486 {
13487 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13488 "in": "query",
13489 "name": "dryRun",
13490 "schema": {
13491 "type": "string",
13492 "uniqueItems": true
13493 }
13494 },
13495 {
13496 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
13497 "in": "query",
13498 "name": "fieldSelector",
13499 "schema": {
13500 "type": "string",
13501 "uniqueItems": true
13502 }
13503 },
13504 {
13505 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
13506 "in": "query",
13507 "name": "gracePeriodSeconds",
13508 "schema": {
13509 "type": "integer",
13510 "uniqueItems": true
13511 }
13512 },
13513 {
13514 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
13515 "in": "query",
13516 "name": "labelSelector",
13517 "schema": {
13518 "type": "string",
13519 "uniqueItems": true
13520 }
13521 },
13522 {
13523 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
13524 "in": "query",
13525 "name": "limit",
13526 "schema": {
13527 "type": "integer",
13528 "uniqueItems": true
13529 }
13530 },
13531 {
13532 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
13533 "in": "query",
13534 "name": "orphanDependents",
13535 "schema": {
13536 "type": "boolean",
13537 "uniqueItems": true
13538 }
13539 },
13540 {
13541 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
13542 "in": "query",
13543 "name": "propagationPolicy",
13544 "schema": {
13545 "type": "string",
13546 "uniqueItems": true
13547 }
13548 },
13549 {
13550 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
13551 "in": "query",
13552 "name": "resourceVersion",
13553 "schema": {
13554 "type": "string",
13555 "uniqueItems": true
13556 }
13557 },
13558 {
13559 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
13560 "in": "query",
13561 "name": "resourceVersionMatch",
13562 "schema": {
13563 "type": "string",
13564 "uniqueItems": true
13565 }
13566 },
13567 {
13568 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
13569 "in": "query",
13570 "name": "sendInitialEvents",
13571 "schema": {
13572 "type": "boolean",
13573 "uniqueItems": true
13574 }
13575 },
13576 {
13577 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
13578 "in": "query",
13579 "name": "timeoutSeconds",
13580 "schema": {
13581 "type": "integer",
13582 "uniqueItems": true
13583 }
13584 }
13585 ],
13586 "requestBody": {
13587 "content": {
13588 "*/*": {
13589 "schema": {
13590 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
13591 }
13592 }
13593 }
13594 },
13595 "responses": {
13596 "200": {
13597 "content": {
13598 "application/json": {
13599 "schema": {
13600 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13601 }
13602 },
13603 "application/vnd.kubernetes.protobuf": {
13604 "schema": {
13605 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13606 }
13607 },
13608 "application/yaml": {
13609 "schema": {
13610 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13611 }
13612 }
13613 },
13614 "description": "OK"
13615 },
13616 "401": {
13617 "description": "Unauthorized"
13618 }
13619 },
13620 "tags": [
13621 "core_v1"
13622 ],
13623 "x-kubernetes-action": "deletecollection",
13624 "x-kubernetes-group-version-kind": {
13625 "group": "",
13626 "kind": "LimitRange",
13627 "version": "v1"
13628 }
13629 },
13630 "get": {
13631 "description": "list or watch objects of kind LimitRange",
13632 "operationId": "listCoreV1NamespacedLimitRange",
13633 "parameters": [
13634 {
13635 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
13636 "in": "query",
13637 "name": "allowWatchBookmarks",
13638 "schema": {
13639 "type": "boolean",
13640 "uniqueItems": true
13641 }
13642 },
13643 {
13644 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
13645 "in": "query",
13646 "name": "continue",
13647 "schema": {
13648 "type": "string",
13649 "uniqueItems": true
13650 }
13651 },
13652 {
13653 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
13654 "in": "query",
13655 "name": "fieldSelector",
13656 "schema": {
13657 "type": "string",
13658 "uniqueItems": true
13659 }
13660 },
13661 {
13662 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
13663 "in": "query",
13664 "name": "labelSelector",
13665 "schema": {
13666 "type": "string",
13667 "uniqueItems": true
13668 }
13669 },
13670 {
13671 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
13672 "in": "query",
13673 "name": "limit",
13674 "schema": {
13675 "type": "integer",
13676 "uniqueItems": true
13677 }
13678 },
13679 {
13680 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
13681 "in": "query",
13682 "name": "resourceVersion",
13683 "schema": {
13684 "type": "string",
13685 "uniqueItems": true
13686 }
13687 },
13688 {
13689 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
13690 "in": "query",
13691 "name": "resourceVersionMatch",
13692 "schema": {
13693 "type": "string",
13694 "uniqueItems": true
13695 }
13696 },
13697 {
13698 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
13699 "in": "query",
13700 "name": "sendInitialEvents",
13701 "schema": {
13702 "type": "boolean",
13703 "uniqueItems": true
13704 }
13705 },
13706 {
13707 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
13708 "in": "query",
13709 "name": "timeoutSeconds",
13710 "schema": {
13711 "type": "integer",
13712 "uniqueItems": true
13713 }
13714 },
13715 {
13716 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
13717 "in": "query",
13718 "name": "watch",
13719 "schema": {
13720 "type": "boolean",
13721 "uniqueItems": true
13722 }
13723 }
13724 ],
13725 "responses": {
13726 "200": {
13727 "content": {
13728 "application/json": {
13729 "schema": {
13730 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
13731 }
13732 },
13733 "application/json;stream=watch": {
13734 "schema": {
13735 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
13736 }
13737 },
13738 "application/vnd.kubernetes.protobuf": {
13739 "schema": {
13740 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
13741 }
13742 },
13743 "application/vnd.kubernetes.protobuf;stream=watch": {
13744 "schema": {
13745 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
13746 }
13747 },
13748 "application/yaml": {
13749 "schema": {
13750 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList"
13751 }
13752 }
13753 },
13754 "description": "OK"
13755 },
13756 "401": {
13757 "description": "Unauthorized"
13758 }
13759 },
13760 "tags": [
13761 "core_v1"
13762 ],
13763 "x-kubernetes-action": "list",
13764 "x-kubernetes-group-version-kind": {
13765 "group": "",
13766 "kind": "LimitRange",
13767 "version": "v1"
13768 }
13769 },
13770 "parameters": [
13771 {
13772 "description": "object name and auth scope, such as for teams and projects",
13773 "in": "path",
13774 "name": "namespace",
13775 "required": true,
13776 "schema": {
13777 "type": "string",
13778 "uniqueItems": true
13779 }
13780 },
13781 {
13782 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
13783 "in": "query",
13784 "name": "pretty",
13785 "schema": {
13786 "type": "string",
13787 "uniqueItems": true
13788 }
13789 }
13790 ],
13791 "post": {
13792 "description": "create a LimitRange",
13793 "operationId": "createCoreV1NamespacedLimitRange",
13794 "parameters": [
13795 {
13796 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13797 "in": "query",
13798 "name": "dryRun",
13799 "schema": {
13800 "type": "string",
13801 "uniqueItems": true
13802 }
13803 },
13804 {
13805 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
13806 "in": "query",
13807 "name": "fieldManager",
13808 "schema": {
13809 "type": "string",
13810 "uniqueItems": true
13811 }
13812 },
13813 {
13814 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
13815 "in": "query",
13816 "name": "fieldValidation",
13817 "schema": {
13818 "type": "string",
13819 "uniqueItems": true
13820 }
13821 }
13822 ],
13823 "requestBody": {
13824 "content": {
13825 "*/*": {
13826 "schema": {
13827 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13828 }
13829 }
13830 },
13831 "required": true
13832 },
13833 "responses": {
13834 "200": {
13835 "content": {
13836 "application/json": {
13837 "schema": {
13838 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13839 }
13840 },
13841 "application/vnd.kubernetes.protobuf": {
13842 "schema": {
13843 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13844 }
13845 },
13846 "application/yaml": {
13847 "schema": {
13848 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13849 }
13850 }
13851 },
13852 "description": "OK"
13853 },
13854 "201": {
13855 "content": {
13856 "application/json": {
13857 "schema": {
13858 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13859 }
13860 },
13861 "application/vnd.kubernetes.protobuf": {
13862 "schema": {
13863 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13864 }
13865 },
13866 "application/yaml": {
13867 "schema": {
13868 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13869 }
13870 }
13871 },
13872 "description": "Created"
13873 },
13874 "202": {
13875 "content": {
13876 "application/json": {
13877 "schema": {
13878 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13879 }
13880 },
13881 "application/vnd.kubernetes.protobuf": {
13882 "schema": {
13883 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13884 }
13885 },
13886 "application/yaml": {
13887 "schema": {
13888 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
13889 }
13890 }
13891 },
13892 "description": "Accepted"
13893 },
13894 "401": {
13895 "description": "Unauthorized"
13896 }
13897 },
13898 "tags": [
13899 "core_v1"
13900 ],
13901 "x-kubernetes-action": "post",
13902 "x-kubernetes-group-version-kind": {
13903 "group": "",
13904 "kind": "LimitRange",
13905 "version": "v1"
13906 }
13907 }
13908 },
13909 "/api/v1/namespaces/{namespace}/limitranges/{name}": {
13910 "delete": {
13911 "description": "delete a LimitRange",
13912 "operationId": "deleteCoreV1NamespacedLimitRange",
13913 "parameters": [
13914 {
13915 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
13916 "in": "query",
13917 "name": "dryRun",
13918 "schema": {
13919 "type": "string",
13920 "uniqueItems": true
13921 }
13922 },
13923 {
13924 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
13925 "in": "query",
13926 "name": "gracePeriodSeconds",
13927 "schema": {
13928 "type": "integer",
13929 "uniqueItems": true
13930 }
13931 },
13932 {
13933 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
13934 "in": "query",
13935 "name": "orphanDependents",
13936 "schema": {
13937 "type": "boolean",
13938 "uniqueItems": true
13939 }
13940 },
13941 {
13942 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
13943 "in": "query",
13944 "name": "propagationPolicy",
13945 "schema": {
13946 "type": "string",
13947 "uniqueItems": true
13948 }
13949 }
13950 ],
13951 "requestBody": {
13952 "content": {
13953 "*/*": {
13954 "schema": {
13955 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
13956 }
13957 }
13958 }
13959 },
13960 "responses": {
13961 "200": {
13962 "content": {
13963 "application/json": {
13964 "schema": {
13965 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13966 }
13967 },
13968 "application/vnd.kubernetes.protobuf": {
13969 "schema": {
13970 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13971 }
13972 },
13973 "application/yaml": {
13974 "schema": {
13975 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13976 }
13977 }
13978 },
13979 "description": "OK"
13980 },
13981 "202": {
13982 "content": {
13983 "application/json": {
13984 "schema": {
13985 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13986 }
13987 },
13988 "application/vnd.kubernetes.protobuf": {
13989 "schema": {
13990 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13991 }
13992 },
13993 "application/yaml": {
13994 "schema": {
13995 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
13996 }
13997 }
13998 },
13999 "description": "Accepted"
14000 },
14001 "401": {
14002 "description": "Unauthorized"
14003 }
14004 },
14005 "tags": [
14006 "core_v1"
14007 ],
14008 "x-kubernetes-action": "delete",
14009 "x-kubernetes-group-version-kind": {
14010 "group": "",
14011 "kind": "LimitRange",
14012 "version": "v1"
14013 }
14014 },
14015 "get": {
14016 "description": "read the specified LimitRange",
14017 "operationId": "readCoreV1NamespacedLimitRange",
14018 "responses": {
14019 "200": {
14020 "content": {
14021 "application/json": {
14022 "schema": {
14023 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14024 }
14025 },
14026 "application/vnd.kubernetes.protobuf": {
14027 "schema": {
14028 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14029 }
14030 },
14031 "application/yaml": {
14032 "schema": {
14033 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14034 }
14035 }
14036 },
14037 "description": "OK"
14038 },
14039 "401": {
14040 "description": "Unauthorized"
14041 }
14042 },
14043 "tags": [
14044 "core_v1"
14045 ],
14046 "x-kubernetes-action": "get",
14047 "x-kubernetes-group-version-kind": {
14048 "group": "",
14049 "kind": "LimitRange",
14050 "version": "v1"
14051 }
14052 },
14053 "parameters": [
14054 {
14055 "description": "name of the LimitRange",
14056 "in": "path",
14057 "name": "name",
14058 "required": true,
14059 "schema": {
14060 "type": "string",
14061 "uniqueItems": true
14062 }
14063 },
14064 {
14065 "description": "object name and auth scope, such as for teams and projects",
14066 "in": "path",
14067 "name": "namespace",
14068 "required": true,
14069 "schema": {
14070 "type": "string",
14071 "uniqueItems": true
14072 }
14073 },
14074 {
14075 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
14076 "in": "query",
14077 "name": "pretty",
14078 "schema": {
14079 "type": "string",
14080 "uniqueItems": true
14081 }
14082 }
14083 ],
14084 "patch": {
14085 "description": "partially update the specified LimitRange",
14086 "operationId": "patchCoreV1NamespacedLimitRange",
14087 "parameters": [
14088 {
14089 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14090 "in": "query",
14091 "name": "dryRun",
14092 "schema": {
14093 "type": "string",
14094 "uniqueItems": true
14095 }
14096 },
14097 {
14098 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
14099 "in": "query",
14100 "name": "fieldManager",
14101 "schema": {
14102 "type": "string",
14103 "uniqueItems": true
14104 }
14105 },
14106 {
14107 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
14108 "in": "query",
14109 "name": "fieldValidation",
14110 "schema": {
14111 "type": "string",
14112 "uniqueItems": true
14113 }
14114 },
14115 {
14116 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
14117 "in": "query",
14118 "name": "force",
14119 "schema": {
14120 "type": "boolean",
14121 "uniqueItems": true
14122 }
14123 }
14124 ],
14125 "requestBody": {
14126 "content": {
14127 "application/apply-patch+yaml": {
14128 "schema": {
14129 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14130 }
14131 },
14132 "application/json-patch+json": {
14133 "schema": {
14134 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14135 }
14136 },
14137 "application/merge-patch+json": {
14138 "schema": {
14139 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14140 }
14141 },
14142 "application/strategic-merge-patch+json": {
14143 "schema": {
14144 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14145 }
14146 }
14147 },
14148 "required": true
14149 },
14150 "responses": {
14151 "200": {
14152 "content": {
14153 "application/json": {
14154 "schema": {
14155 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14156 }
14157 },
14158 "application/vnd.kubernetes.protobuf": {
14159 "schema": {
14160 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14161 }
14162 },
14163 "application/yaml": {
14164 "schema": {
14165 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14166 }
14167 }
14168 },
14169 "description": "OK"
14170 },
14171 "201": {
14172 "content": {
14173 "application/json": {
14174 "schema": {
14175 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14176 }
14177 },
14178 "application/vnd.kubernetes.protobuf": {
14179 "schema": {
14180 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14181 }
14182 },
14183 "application/yaml": {
14184 "schema": {
14185 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14186 }
14187 }
14188 },
14189 "description": "Created"
14190 },
14191 "401": {
14192 "description": "Unauthorized"
14193 }
14194 },
14195 "tags": [
14196 "core_v1"
14197 ],
14198 "x-kubernetes-action": "patch",
14199 "x-kubernetes-group-version-kind": {
14200 "group": "",
14201 "kind": "LimitRange",
14202 "version": "v1"
14203 }
14204 },
14205 "put": {
14206 "description": "replace the specified LimitRange",
14207 "operationId": "replaceCoreV1NamespacedLimitRange",
14208 "parameters": [
14209 {
14210 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14211 "in": "query",
14212 "name": "dryRun",
14213 "schema": {
14214 "type": "string",
14215 "uniqueItems": true
14216 }
14217 },
14218 {
14219 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
14220 "in": "query",
14221 "name": "fieldManager",
14222 "schema": {
14223 "type": "string",
14224 "uniqueItems": true
14225 }
14226 },
14227 {
14228 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
14229 "in": "query",
14230 "name": "fieldValidation",
14231 "schema": {
14232 "type": "string",
14233 "uniqueItems": true
14234 }
14235 }
14236 ],
14237 "requestBody": {
14238 "content": {
14239 "*/*": {
14240 "schema": {
14241 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14242 }
14243 }
14244 },
14245 "required": true
14246 },
14247 "responses": {
14248 "200": {
14249 "content": {
14250 "application/json": {
14251 "schema": {
14252 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14253 }
14254 },
14255 "application/vnd.kubernetes.protobuf": {
14256 "schema": {
14257 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14258 }
14259 },
14260 "application/yaml": {
14261 "schema": {
14262 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14263 }
14264 }
14265 },
14266 "description": "OK"
14267 },
14268 "201": {
14269 "content": {
14270 "application/json": {
14271 "schema": {
14272 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14273 }
14274 },
14275 "application/vnd.kubernetes.protobuf": {
14276 "schema": {
14277 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14278 }
14279 },
14280 "application/yaml": {
14281 "schema": {
14282 "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange"
14283 }
14284 }
14285 },
14286 "description": "Created"
14287 },
14288 "401": {
14289 "description": "Unauthorized"
14290 }
14291 },
14292 "tags": [
14293 "core_v1"
14294 ],
14295 "x-kubernetes-action": "put",
14296 "x-kubernetes-group-version-kind": {
14297 "group": "",
14298 "kind": "LimitRange",
14299 "version": "v1"
14300 }
14301 }
14302 },
14303 "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
14304 "delete": {
14305 "description": "delete collection of PersistentVolumeClaim",
14306 "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
14307 "parameters": [
14308 {
14309 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
14310 "in": "query",
14311 "name": "continue",
14312 "schema": {
14313 "type": "string",
14314 "uniqueItems": true
14315 }
14316 },
14317 {
14318 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14319 "in": "query",
14320 "name": "dryRun",
14321 "schema": {
14322 "type": "string",
14323 "uniqueItems": true
14324 }
14325 },
14326 {
14327 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
14328 "in": "query",
14329 "name": "fieldSelector",
14330 "schema": {
14331 "type": "string",
14332 "uniqueItems": true
14333 }
14334 },
14335 {
14336 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
14337 "in": "query",
14338 "name": "gracePeriodSeconds",
14339 "schema": {
14340 "type": "integer",
14341 "uniqueItems": true
14342 }
14343 },
14344 {
14345 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
14346 "in": "query",
14347 "name": "labelSelector",
14348 "schema": {
14349 "type": "string",
14350 "uniqueItems": true
14351 }
14352 },
14353 {
14354 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
14355 "in": "query",
14356 "name": "limit",
14357 "schema": {
14358 "type": "integer",
14359 "uniqueItems": true
14360 }
14361 },
14362 {
14363 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
14364 "in": "query",
14365 "name": "orphanDependents",
14366 "schema": {
14367 "type": "boolean",
14368 "uniqueItems": true
14369 }
14370 },
14371 {
14372 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
14373 "in": "query",
14374 "name": "propagationPolicy",
14375 "schema": {
14376 "type": "string",
14377 "uniqueItems": true
14378 }
14379 },
14380 {
14381 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
14382 "in": "query",
14383 "name": "resourceVersion",
14384 "schema": {
14385 "type": "string",
14386 "uniqueItems": true
14387 }
14388 },
14389 {
14390 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
14391 "in": "query",
14392 "name": "resourceVersionMatch",
14393 "schema": {
14394 "type": "string",
14395 "uniqueItems": true
14396 }
14397 },
14398 {
14399 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
14400 "in": "query",
14401 "name": "sendInitialEvents",
14402 "schema": {
14403 "type": "boolean",
14404 "uniqueItems": true
14405 }
14406 },
14407 {
14408 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
14409 "in": "query",
14410 "name": "timeoutSeconds",
14411 "schema": {
14412 "type": "integer",
14413 "uniqueItems": true
14414 }
14415 }
14416 ],
14417 "requestBody": {
14418 "content": {
14419 "*/*": {
14420 "schema": {
14421 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
14422 }
14423 }
14424 }
14425 },
14426 "responses": {
14427 "200": {
14428 "content": {
14429 "application/json": {
14430 "schema": {
14431 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
14432 }
14433 },
14434 "application/vnd.kubernetes.protobuf": {
14435 "schema": {
14436 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
14437 }
14438 },
14439 "application/yaml": {
14440 "schema": {
14441 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
14442 }
14443 }
14444 },
14445 "description": "OK"
14446 },
14447 "401": {
14448 "description": "Unauthorized"
14449 }
14450 },
14451 "tags": [
14452 "core_v1"
14453 ],
14454 "x-kubernetes-action": "deletecollection",
14455 "x-kubernetes-group-version-kind": {
14456 "group": "",
14457 "kind": "PersistentVolumeClaim",
14458 "version": "v1"
14459 }
14460 },
14461 "get": {
14462 "description": "list or watch objects of kind PersistentVolumeClaim",
14463 "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
14464 "parameters": [
14465 {
14466 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
14467 "in": "query",
14468 "name": "allowWatchBookmarks",
14469 "schema": {
14470 "type": "boolean",
14471 "uniqueItems": true
14472 }
14473 },
14474 {
14475 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
14476 "in": "query",
14477 "name": "continue",
14478 "schema": {
14479 "type": "string",
14480 "uniqueItems": true
14481 }
14482 },
14483 {
14484 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
14485 "in": "query",
14486 "name": "fieldSelector",
14487 "schema": {
14488 "type": "string",
14489 "uniqueItems": true
14490 }
14491 },
14492 {
14493 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
14494 "in": "query",
14495 "name": "labelSelector",
14496 "schema": {
14497 "type": "string",
14498 "uniqueItems": true
14499 }
14500 },
14501 {
14502 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
14503 "in": "query",
14504 "name": "limit",
14505 "schema": {
14506 "type": "integer",
14507 "uniqueItems": true
14508 }
14509 },
14510 {
14511 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
14512 "in": "query",
14513 "name": "resourceVersion",
14514 "schema": {
14515 "type": "string",
14516 "uniqueItems": true
14517 }
14518 },
14519 {
14520 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
14521 "in": "query",
14522 "name": "resourceVersionMatch",
14523 "schema": {
14524 "type": "string",
14525 "uniqueItems": true
14526 }
14527 },
14528 {
14529 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
14530 "in": "query",
14531 "name": "sendInitialEvents",
14532 "schema": {
14533 "type": "boolean",
14534 "uniqueItems": true
14535 }
14536 },
14537 {
14538 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
14539 "in": "query",
14540 "name": "timeoutSeconds",
14541 "schema": {
14542 "type": "integer",
14543 "uniqueItems": true
14544 }
14545 },
14546 {
14547 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
14548 "in": "query",
14549 "name": "watch",
14550 "schema": {
14551 "type": "boolean",
14552 "uniqueItems": true
14553 }
14554 }
14555 ],
14556 "responses": {
14557 "200": {
14558 "content": {
14559 "application/json": {
14560 "schema": {
14561 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
14562 }
14563 },
14564 "application/json;stream=watch": {
14565 "schema": {
14566 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
14567 }
14568 },
14569 "application/vnd.kubernetes.protobuf": {
14570 "schema": {
14571 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
14572 }
14573 },
14574 "application/vnd.kubernetes.protobuf;stream=watch": {
14575 "schema": {
14576 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
14577 }
14578 },
14579 "application/yaml": {
14580 "schema": {
14581 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
14582 }
14583 }
14584 },
14585 "description": "OK"
14586 },
14587 "401": {
14588 "description": "Unauthorized"
14589 }
14590 },
14591 "tags": [
14592 "core_v1"
14593 ],
14594 "x-kubernetes-action": "list",
14595 "x-kubernetes-group-version-kind": {
14596 "group": "",
14597 "kind": "PersistentVolumeClaim",
14598 "version": "v1"
14599 }
14600 },
14601 "parameters": [
14602 {
14603 "description": "object name and auth scope, such as for teams and projects",
14604 "in": "path",
14605 "name": "namespace",
14606 "required": true,
14607 "schema": {
14608 "type": "string",
14609 "uniqueItems": true
14610 }
14611 },
14612 {
14613 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
14614 "in": "query",
14615 "name": "pretty",
14616 "schema": {
14617 "type": "string",
14618 "uniqueItems": true
14619 }
14620 }
14621 ],
14622 "post": {
14623 "description": "create a PersistentVolumeClaim",
14624 "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
14625 "parameters": [
14626 {
14627 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14628 "in": "query",
14629 "name": "dryRun",
14630 "schema": {
14631 "type": "string",
14632 "uniqueItems": true
14633 }
14634 },
14635 {
14636 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
14637 "in": "query",
14638 "name": "fieldManager",
14639 "schema": {
14640 "type": "string",
14641 "uniqueItems": true
14642 }
14643 },
14644 {
14645 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
14646 "in": "query",
14647 "name": "fieldValidation",
14648 "schema": {
14649 "type": "string",
14650 "uniqueItems": true
14651 }
14652 }
14653 ],
14654 "requestBody": {
14655 "content": {
14656 "*/*": {
14657 "schema": {
14658 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14659 }
14660 }
14661 },
14662 "required": true
14663 },
14664 "responses": {
14665 "200": {
14666 "content": {
14667 "application/json": {
14668 "schema": {
14669 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14670 }
14671 },
14672 "application/vnd.kubernetes.protobuf": {
14673 "schema": {
14674 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14675 }
14676 },
14677 "application/yaml": {
14678 "schema": {
14679 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14680 }
14681 }
14682 },
14683 "description": "OK"
14684 },
14685 "201": {
14686 "content": {
14687 "application/json": {
14688 "schema": {
14689 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14690 }
14691 },
14692 "application/vnd.kubernetes.protobuf": {
14693 "schema": {
14694 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14695 }
14696 },
14697 "application/yaml": {
14698 "schema": {
14699 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14700 }
14701 }
14702 },
14703 "description": "Created"
14704 },
14705 "202": {
14706 "content": {
14707 "application/json": {
14708 "schema": {
14709 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14710 }
14711 },
14712 "application/vnd.kubernetes.protobuf": {
14713 "schema": {
14714 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14715 }
14716 },
14717 "application/yaml": {
14718 "schema": {
14719 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14720 }
14721 }
14722 },
14723 "description": "Accepted"
14724 },
14725 "401": {
14726 "description": "Unauthorized"
14727 }
14728 },
14729 "tags": [
14730 "core_v1"
14731 ],
14732 "x-kubernetes-action": "post",
14733 "x-kubernetes-group-version-kind": {
14734 "group": "",
14735 "kind": "PersistentVolumeClaim",
14736 "version": "v1"
14737 }
14738 }
14739 },
14740 "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
14741 "delete": {
14742 "description": "delete a PersistentVolumeClaim",
14743 "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
14744 "parameters": [
14745 {
14746 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14747 "in": "query",
14748 "name": "dryRun",
14749 "schema": {
14750 "type": "string",
14751 "uniqueItems": true
14752 }
14753 },
14754 {
14755 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
14756 "in": "query",
14757 "name": "gracePeriodSeconds",
14758 "schema": {
14759 "type": "integer",
14760 "uniqueItems": true
14761 }
14762 },
14763 {
14764 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
14765 "in": "query",
14766 "name": "orphanDependents",
14767 "schema": {
14768 "type": "boolean",
14769 "uniqueItems": true
14770 }
14771 },
14772 {
14773 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
14774 "in": "query",
14775 "name": "propagationPolicy",
14776 "schema": {
14777 "type": "string",
14778 "uniqueItems": true
14779 }
14780 }
14781 ],
14782 "requestBody": {
14783 "content": {
14784 "*/*": {
14785 "schema": {
14786 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
14787 }
14788 }
14789 }
14790 },
14791 "responses": {
14792 "200": {
14793 "content": {
14794 "application/json": {
14795 "schema": {
14796 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14797 }
14798 },
14799 "application/vnd.kubernetes.protobuf": {
14800 "schema": {
14801 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14802 }
14803 },
14804 "application/yaml": {
14805 "schema": {
14806 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14807 }
14808 }
14809 },
14810 "description": "OK"
14811 },
14812 "202": {
14813 "content": {
14814 "application/json": {
14815 "schema": {
14816 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14817 }
14818 },
14819 "application/vnd.kubernetes.protobuf": {
14820 "schema": {
14821 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14822 }
14823 },
14824 "application/yaml": {
14825 "schema": {
14826 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14827 }
14828 }
14829 },
14830 "description": "Accepted"
14831 },
14832 "401": {
14833 "description": "Unauthorized"
14834 }
14835 },
14836 "tags": [
14837 "core_v1"
14838 ],
14839 "x-kubernetes-action": "delete",
14840 "x-kubernetes-group-version-kind": {
14841 "group": "",
14842 "kind": "PersistentVolumeClaim",
14843 "version": "v1"
14844 }
14845 },
14846 "get": {
14847 "description": "read the specified PersistentVolumeClaim",
14848 "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
14849 "responses": {
14850 "200": {
14851 "content": {
14852 "application/json": {
14853 "schema": {
14854 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14855 }
14856 },
14857 "application/vnd.kubernetes.protobuf": {
14858 "schema": {
14859 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14860 }
14861 },
14862 "application/yaml": {
14863 "schema": {
14864 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14865 }
14866 }
14867 },
14868 "description": "OK"
14869 },
14870 "401": {
14871 "description": "Unauthorized"
14872 }
14873 },
14874 "tags": [
14875 "core_v1"
14876 ],
14877 "x-kubernetes-action": "get",
14878 "x-kubernetes-group-version-kind": {
14879 "group": "",
14880 "kind": "PersistentVolumeClaim",
14881 "version": "v1"
14882 }
14883 },
14884 "parameters": [
14885 {
14886 "description": "name of the PersistentVolumeClaim",
14887 "in": "path",
14888 "name": "name",
14889 "required": true,
14890 "schema": {
14891 "type": "string",
14892 "uniqueItems": true
14893 }
14894 },
14895 {
14896 "description": "object name and auth scope, such as for teams and projects",
14897 "in": "path",
14898 "name": "namespace",
14899 "required": true,
14900 "schema": {
14901 "type": "string",
14902 "uniqueItems": true
14903 }
14904 },
14905 {
14906 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
14907 "in": "query",
14908 "name": "pretty",
14909 "schema": {
14910 "type": "string",
14911 "uniqueItems": true
14912 }
14913 }
14914 ],
14915 "patch": {
14916 "description": "partially update the specified PersistentVolumeClaim",
14917 "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
14918 "parameters": [
14919 {
14920 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
14921 "in": "query",
14922 "name": "dryRun",
14923 "schema": {
14924 "type": "string",
14925 "uniqueItems": true
14926 }
14927 },
14928 {
14929 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
14930 "in": "query",
14931 "name": "fieldManager",
14932 "schema": {
14933 "type": "string",
14934 "uniqueItems": true
14935 }
14936 },
14937 {
14938 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
14939 "in": "query",
14940 "name": "fieldValidation",
14941 "schema": {
14942 "type": "string",
14943 "uniqueItems": true
14944 }
14945 },
14946 {
14947 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
14948 "in": "query",
14949 "name": "force",
14950 "schema": {
14951 "type": "boolean",
14952 "uniqueItems": true
14953 }
14954 }
14955 ],
14956 "requestBody": {
14957 "content": {
14958 "application/apply-patch+yaml": {
14959 "schema": {
14960 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14961 }
14962 },
14963 "application/json-patch+json": {
14964 "schema": {
14965 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14966 }
14967 },
14968 "application/merge-patch+json": {
14969 "schema": {
14970 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14971 }
14972 },
14973 "application/strategic-merge-patch+json": {
14974 "schema": {
14975 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
14976 }
14977 }
14978 },
14979 "required": true
14980 },
14981 "responses": {
14982 "200": {
14983 "content": {
14984 "application/json": {
14985 "schema": {
14986 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14987 }
14988 },
14989 "application/vnd.kubernetes.protobuf": {
14990 "schema": {
14991 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14992 }
14993 },
14994 "application/yaml": {
14995 "schema": {
14996 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
14997 }
14998 }
14999 },
15000 "description": "OK"
15001 },
15002 "201": {
15003 "content": {
15004 "application/json": {
15005 "schema": {
15006 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15007 }
15008 },
15009 "application/vnd.kubernetes.protobuf": {
15010 "schema": {
15011 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15012 }
15013 },
15014 "application/yaml": {
15015 "schema": {
15016 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15017 }
15018 }
15019 },
15020 "description": "Created"
15021 },
15022 "401": {
15023 "description": "Unauthorized"
15024 }
15025 },
15026 "tags": [
15027 "core_v1"
15028 ],
15029 "x-kubernetes-action": "patch",
15030 "x-kubernetes-group-version-kind": {
15031 "group": "",
15032 "kind": "PersistentVolumeClaim",
15033 "version": "v1"
15034 }
15035 },
15036 "put": {
15037 "description": "replace the specified PersistentVolumeClaim",
15038 "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
15039 "parameters": [
15040 {
15041 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15042 "in": "query",
15043 "name": "dryRun",
15044 "schema": {
15045 "type": "string",
15046 "uniqueItems": true
15047 }
15048 },
15049 {
15050 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
15051 "in": "query",
15052 "name": "fieldManager",
15053 "schema": {
15054 "type": "string",
15055 "uniqueItems": true
15056 }
15057 },
15058 {
15059 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
15060 "in": "query",
15061 "name": "fieldValidation",
15062 "schema": {
15063 "type": "string",
15064 "uniqueItems": true
15065 }
15066 }
15067 ],
15068 "requestBody": {
15069 "content": {
15070 "*/*": {
15071 "schema": {
15072 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15073 }
15074 }
15075 },
15076 "required": true
15077 },
15078 "responses": {
15079 "200": {
15080 "content": {
15081 "application/json": {
15082 "schema": {
15083 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15084 }
15085 },
15086 "application/vnd.kubernetes.protobuf": {
15087 "schema": {
15088 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15089 }
15090 },
15091 "application/yaml": {
15092 "schema": {
15093 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15094 }
15095 }
15096 },
15097 "description": "OK"
15098 },
15099 "201": {
15100 "content": {
15101 "application/json": {
15102 "schema": {
15103 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15104 }
15105 },
15106 "application/vnd.kubernetes.protobuf": {
15107 "schema": {
15108 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15109 }
15110 },
15111 "application/yaml": {
15112 "schema": {
15113 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15114 }
15115 }
15116 },
15117 "description": "Created"
15118 },
15119 "401": {
15120 "description": "Unauthorized"
15121 }
15122 },
15123 "tags": [
15124 "core_v1"
15125 ],
15126 "x-kubernetes-action": "put",
15127 "x-kubernetes-group-version-kind": {
15128 "group": "",
15129 "kind": "PersistentVolumeClaim",
15130 "version": "v1"
15131 }
15132 }
15133 },
15134 "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
15135 "get": {
15136 "description": "read status of the specified PersistentVolumeClaim",
15137 "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
15138 "responses": {
15139 "200": {
15140 "content": {
15141 "application/json": {
15142 "schema": {
15143 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15144 }
15145 },
15146 "application/vnd.kubernetes.protobuf": {
15147 "schema": {
15148 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15149 }
15150 },
15151 "application/yaml": {
15152 "schema": {
15153 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15154 }
15155 }
15156 },
15157 "description": "OK"
15158 },
15159 "401": {
15160 "description": "Unauthorized"
15161 }
15162 },
15163 "tags": [
15164 "core_v1"
15165 ],
15166 "x-kubernetes-action": "get",
15167 "x-kubernetes-group-version-kind": {
15168 "group": "",
15169 "kind": "PersistentVolumeClaim",
15170 "version": "v1"
15171 }
15172 },
15173 "parameters": [
15174 {
15175 "description": "name of the PersistentVolumeClaim",
15176 "in": "path",
15177 "name": "name",
15178 "required": true,
15179 "schema": {
15180 "type": "string",
15181 "uniqueItems": true
15182 }
15183 },
15184 {
15185 "description": "object name and auth scope, such as for teams and projects",
15186 "in": "path",
15187 "name": "namespace",
15188 "required": true,
15189 "schema": {
15190 "type": "string",
15191 "uniqueItems": true
15192 }
15193 },
15194 {
15195 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
15196 "in": "query",
15197 "name": "pretty",
15198 "schema": {
15199 "type": "string",
15200 "uniqueItems": true
15201 }
15202 }
15203 ],
15204 "patch": {
15205 "description": "partially update status of the specified PersistentVolumeClaim",
15206 "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
15207 "parameters": [
15208 {
15209 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15210 "in": "query",
15211 "name": "dryRun",
15212 "schema": {
15213 "type": "string",
15214 "uniqueItems": true
15215 }
15216 },
15217 {
15218 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
15219 "in": "query",
15220 "name": "fieldManager",
15221 "schema": {
15222 "type": "string",
15223 "uniqueItems": true
15224 }
15225 },
15226 {
15227 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
15228 "in": "query",
15229 "name": "fieldValidation",
15230 "schema": {
15231 "type": "string",
15232 "uniqueItems": true
15233 }
15234 },
15235 {
15236 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
15237 "in": "query",
15238 "name": "force",
15239 "schema": {
15240 "type": "boolean",
15241 "uniqueItems": true
15242 }
15243 }
15244 ],
15245 "requestBody": {
15246 "content": {
15247 "application/apply-patch+yaml": {
15248 "schema": {
15249 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
15250 }
15251 },
15252 "application/json-patch+json": {
15253 "schema": {
15254 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
15255 }
15256 },
15257 "application/merge-patch+json": {
15258 "schema": {
15259 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
15260 }
15261 },
15262 "application/strategic-merge-patch+json": {
15263 "schema": {
15264 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
15265 }
15266 }
15267 },
15268 "required": true
15269 },
15270 "responses": {
15271 "200": {
15272 "content": {
15273 "application/json": {
15274 "schema": {
15275 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15276 }
15277 },
15278 "application/vnd.kubernetes.protobuf": {
15279 "schema": {
15280 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15281 }
15282 },
15283 "application/yaml": {
15284 "schema": {
15285 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15286 }
15287 }
15288 },
15289 "description": "OK"
15290 },
15291 "201": {
15292 "content": {
15293 "application/json": {
15294 "schema": {
15295 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15296 }
15297 },
15298 "application/vnd.kubernetes.protobuf": {
15299 "schema": {
15300 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15301 }
15302 },
15303 "application/yaml": {
15304 "schema": {
15305 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15306 }
15307 }
15308 },
15309 "description": "Created"
15310 },
15311 "401": {
15312 "description": "Unauthorized"
15313 }
15314 },
15315 "tags": [
15316 "core_v1"
15317 ],
15318 "x-kubernetes-action": "patch",
15319 "x-kubernetes-group-version-kind": {
15320 "group": "",
15321 "kind": "PersistentVolumeClaim",
15322 "version": "v1"
15323 }
15324 },
15325 "put": {
15326 "description": "replace status of the specified PersistentVolumeClaim",
15327 "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
15328 "parameters": [
15329 {
15330 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15331 "in": "query",
15332 "name": "dryRun",
15333 "schema": {
15334 "type": "string",
15335 "uniqueItems": true
15336 }
15337 },
15338 {
15339 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
15340 "in": "query",
15341 "name": "fieldManager",
15342 "schema": {
15343 "type": "string",
15344 "uniqueItems": true
15345 }
15346 },
15347 {
15348 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
15349 "in": "query",
15350 "name": "fieldValidation",
15351 "schema": {
15352 "type": "string",
15353 "uniqueItems": true
15354 }
15355 }
15356 ],
15357 "requestBody": {
15358 "content": {
15359 "*/*": {
15360 "schema": {
15361 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15362 }
15363 }
15364 },
15365 "required": true
15366 },
15367 "responses": {
15368 "200": {
15369 "content": {
15370 "application/json": {
15371 "schema": {
15372 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15373 }
15374 },
15375 "application/vnd.kubernetes.protobuf": {
15376 "schema": {
15377 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15378 }
15379 },
15380 "application/yaml": {
15381 "schema": {
15382 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15383 }
15384 }
15385 },
15386 "description": "OK"
15387 },
15388 "201": {
15389 "content": {
15390 "application/json": {
15391 "schema": {
15392 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15393 }
15394 },
15395 "application/vnd.kubernetes.protobuf": {
15396 "schema": {
15397 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15398 }
15399 },
15400 "application/yaml": {
15401 "schema": {
15402 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim"
15403 }
15404 }
15405 },
15406 "description": "Created"
15407 },
15408 "401": {
15409 "description": "Unauthorized"
15410 }
15411 },
15412 "tags": [
15413 "core_v1"
15414 ],
15415 "x-kubernetes-action": "put",
15416 "x-kubernetes-group-version-kind": {
15417 "group": "",
15418 "kind": "PersistentVolumeClaim",
15419 "version": "v1"
15420 }
15421 }
15422 },
15423 "/api/v1/namespaces/{namespace}/pods": {
15424 "delete": {
15425 "description": "delete collection of Pod",
15426 "operationId": "deleteCoreV1CollectionNamespacedPod",
15427 "parameters": [
15428 {
15429 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
15430 "in": "query",
15431 "name": "continue",
15432 "schema": {
15433 "type": "string",
15434 "uniqueItems": true
15435 }
15436 },
15437 {
15438 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15439 "in": "query",
15440 "name": "dryRun",
15441 "schema": {
15442 "type": "string",
15443 "uniqueItems": true
15444 }
15445 },
15446 {
15447 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
15448 "in": "query",
15449 "name": "fieldSelector",
15450 "schema": {
15451 "type": "string",
15452 "uniqueItems": true
15453 }
15454 },
15455 {
15456 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
15457 "in": "query",
15458 "name": "gracePeriodSeconds",
15459 "schema": {
15460 "type": "integer",
15461 "uniqueItems": true
15462 }
15463 },
15464 {
15465 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
15466 "in": "query",
15467 "name": "labelSelector",
15468 "schema": {
15469 "type": "string",
15470 "uniqueItems": true
15471 }
15472 },
15473 {
15474 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
15475 "in": "query",
15476 "name": "limit",
15477 "schema": {
15478 "type": "integer",
15479 "uniqueItems": true
15480 }
15481 },
15482 {
15483 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
15484 "in": "query",
15485 "name": "orphanDependents",
15486 "schema": {
15487 "type": "boolean",
15488 "uniqueItems": true
15489 }
15490 },
15491 {
15492 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
15493 "in": "query",
15494 "name": "propagationPolicy",
15495 "schema": {
15496 "type": "string",
15497 "uniqueItems": true
15498 }
15499 },
15500 {
15501 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
15502 "in": "query",
15503 "name": "resourceVersion",
15504 "schema": {
15505 "type": "string",
15506 "uniqueItems": true
15507 }
15508 },
15509 {
15510 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
15511 "in": "query",
15512 "name": "resourceVersionMatch",
15513 "schema": {
15514 "type": "string",
15515 "uniqueItems": true
15516 }
15517 },
15518 {
15519 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
15520 "in": "query",
15521 "name": "sendInitialEvents",
15522 "schema": {
15523 "type": "boolean",
15524 "uniqueItems": true
15525 }
15526 },
15527 {
15528 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
15529 "in": "query",
15530 "name": "timeoutSeconds",
15531 "schema": {
15532 "type": "integer",
15533 "uniqueItems": true
15534 }
15535 }
15536 ],
15537 "requestBody": {
15538 "content": {
15539 "*/*": {
15540 "schema": {
15541 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
15542 }
15543 }
15544 }
15545 },
15546 "responses": {
15547 "200": {
15548 "content": {
15549 "application/json": {
15550 "schema": {
15551 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
15552 }
15553 },
15554 "application/vnd.kubernetes.protobuf": {
15555 "schema": {
15556 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
15557 }
15558 },
15559 "application/yaml": {
15560 "schema": {
15561 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
15562 }
15563 }
15564 },
15565 "description": "OK"
15566 },
15567 "401": {
15568 "description": "Unauthorized"
15569 }
15570 },
15571 "tags": [
15572 "core_v1"
15573 ],
15574 "x-kubernetes-action": "deletecollection",
15575 "x-kubernetes-group-version-kind": {
15576 "group": "",
15577 "kind": "Pod",
15578 "version": "v1"
15579 }
15580 },
15581 "get": {
15582 "description": "list or watch objects of kind Pod",
15583 "operationId": "listCoreV1NamespacedPod",
15584 "parameters": [
15585 {
15586 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
15587 "in": "query",
15588 "name": "allowWatchBookmarks",
15589 "schema": {
15590 "type": "boolean",
15591 "uniqueItems": true
15592 }
15593 },
15594 {
15595 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
15596 "in": "query",
15597 "name": "continue",
15598 "schema": {
15599 "type": "string",
15600 "uniqueItems": true
15601 }
15602 },
15603 {
15604 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
15605 "in": "query",
15606 "name": "fieldSelector",
15607 "schema": {
15608 "type": "string",
15609 "uniqueItems": true
15610 }
15611 },
15612 {
15613 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
15614 "in": "query",
15615 "name": "labelSelector",
15616 "schema": {
15617 "type": "string",
15618 "uniqueItems": true
15619 }
15620 },
15621 {
15622 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
15623 "in": "query",
15624 "name": "limit",
15625 "schema": {
15626 "type": "integer",
15627 "uniqueItems": true
15628 }
15629 },
15630 {
15631 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
15632 "in": "query",
15633 "name": "resourceVersion",
15634 "schema": {
15635 "type": "string",
15636 "uniqueItems": true
15637 }
15638 },
15639 {
15640 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
15641 "in": "query",
15642 "name": "resourceVersionMatch",
15643 "schema": {
15644 "type": "string",
15645 "uniqueItems": true
15646 }
15647 },
15648 {
15649 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
15650 "in": "query",
15651 "name": "sendInitialEvents",
15652 "schema": {
15653 "type": "boolean",
15654 "uniqueItems": true
15655 }
15656 },
15657 {
15658 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
15659 "in": "query",
15660 "name": "timeoutSeconds",
15661 "schema": {
15662 "type": "integer",
15663 "uniqueItems": true
15664 }
15665 },
15666 {
15667 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
15668 "in": "query",
15669 "name": "watch",
15670 "schema": {
15671 "type": "boolean",
15672 "uniqueItems": true
15673 }
15674 }
15675 ],
15676 "responses": {
15677 "200": {
15678 "content": {
15679 "application/json": {
15680 "schema": {
15681 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
15682 }
15683 },
15684 "application/json;stream=watch": {
15685 "schema": {
15686 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
15687 }
15688 },
15689 "application/vnd.kubernetes.protobuf": {
15690 "schema": {
15691 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
15692 }
15693 },
15694 "application/vnd.kubernetes.protobuf;stream=watch": {
15695 "schema": {
15696 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
15697 }
15698 },
15699 "application/yaml": {
15700 "schema": {
15701 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
15702 }
15703 }
15704 },
15705 "description": "OK"
15706 },
15707 "401": {
15708 "description": "Unauthorized"
15709 }
15710 },
15711 "tags": [
15712 "core_v1"
15713 ],
15714 "x-kubernetes-action": "list",
15715 "x-kubernetes-group-version-kind": {
15716 "group": "",
15717 "kind": "Pod",
15718 "version": "v1"
15719 }
15720 },
15721 "parameters": [
15722 {
15723 "description": "object name and auth scope, such as for teams and projects",
15724 "in": "path",
15725 "name": "namespace",
15726 "required": true,
15727 "schema": {
15728 "type": "string",
15729 "uniqueItems": true
15730 }
15731 },
15732 {
15733 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
15734 "in": "query",
15735 "name": "pretty",
15736 "schema": {
15737 "type": "string",
15738 "uniqueItems": true
15739 }
15740 }
15741 ],
15742 "post": {
15743 "description": "create a Pod",
15744 "operationId": "createCoreV1NamespacedPod",
15745 "parameters": [
15746 {
15747 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15748 "in": "query",
15749 "name": "dryRun",
15750 "schema": {
15751 "type": "string",
15752 "uniqueItems": true
15753 }
15754 },
15755 {
15756 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
15757 "in": "query",
15758 "name": "fieldManager",
15759 "schema": {
15760 "type": "string",
15761 "uniqueItems": true
15762 }
15763 },
15764 {
15765 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
15766 "in": "query",
15767 "name": "fieldValidation",
15768 "schema": {
15769 "type": "string",
15770 "uniqueItems": true
15771 }
15772 }
15773 ],
15774 "requestBody": {
15775 "content": {
15776 "*/*": {
15777 "schema": {
15778 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15779 }
15780 }
15781 },
15782 "required": true
15783 },
15784 "responses": {
15785 "200": {
15786 "content": {
15787 "application/json": {
15788 "schema": {
15789 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15790 }
15791 },
15792 "application/vnd.kubernetes.protobuf": {
15793 "schema": {
15794 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15795 }
15796 },
15797 "application/yaml": {
15798 "schema": {
15799 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15800 }
15801 }
15802 },
15803 "description": "OK"
15804 },
15805 "201": {
15806 "content": {
15807 "application/json": {
15808 "schema": {
15809 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15810 }
15811 },
15812 "application/vnd.kubernetes.protobuf": {
15813 "schema": {
15814 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15815 }
15816 },
15817 "application/yaml": {
15818 "schema": {
15819 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15820 }
15821 }
15822 },
15823 "description": "Created"
15824 },
15825 "202": {
15826 "content": {
15827 "application/json": {
15828 "schema": {
15829 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15830 }
15831 },
15832 "application/vnd.kubernetes.protobuf": {
15833 "schema": {
15834 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15835 }
15836 },
15837 "application/yaml": {
15838 "schema": {
15839 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15840 }
15841 }
15842 },
15843 "description": "Accepted"
15844 },
15845 "401": {
15846 "description": "Unauthorized"
15847 }
15848 },
15849 "tags": [
15850 "core_v1"
15851 ],
15852 "x-kubernetes-action": "post",
15853 "x-kubernetes-group-version-kind": {
15854 "group": "",
15855 "kind": "Pod",
15856 "version": "v1"
15857 }
15858 }
15859 },
15860 "/api/v1/namespaces/{namespace}/pods/{name}": {
15861 "delete": {
15862 "description": "delete a Pod",
15863 "operationId": "deleteCoreV1NamespacedPod",
15864 "parameters": [
15865 {
15866 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15867 "in": "query",
15868 "name": "dryRun",
15869 "schema": {
15870 "type": "string",
15871 "uniqueItems": true
15872 }
15873 },
15874 {
15875 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
15876 "in": "query",
15877 "name": "gracePeriodSeconds",
15878 "schema": {
15879 "type": "integer",
15880 "uniqueItems": true
15881 }
15882 },
15883 {
15884 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
15885 "in": "query",
15886 "name": "orphanDependents",
15887 "schema": {
15888 "type": "boolean",
15889 "uniqueItems": true
15890 }
15891 },
15892 {
15893 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
15894 "in": "query",
15895 "name": "propagationPolicy",
15896 "schema": {
15897 "type": "string",
15898 "uniqueItems": true
15899 }
15900 }
15901 ],
15902 "requestBody": {
15903 "content": {
15904 "*/*": {
15905 "schema": {
15906 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
15907 }
15908 }
15909 }
15910 },
15911 "responses": {
15912 "200": {
15913 "content": {
15914 "application/json": {
15915 "schema": {
15916 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15917 }
15918 },
15919 "application/vnd.kubernetes.protobuf": {
15920 "schema": {
15921 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15922 }
15923 },
15924 "application/yaml": {
15925 "schema": {
15926 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15927 }
15928 }
15929 },
15930 "description": "OK"
15931 },
15932 "202": {
15933 "content": {
15934 "application/json": {
15935 "schema": {
15936 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15937 }
15938 },
15939 "application/vnd.kubernetes.protobuf": {
15940 "schema": {
15941 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15942 }
15943 },
15944 "application/yaml": {
15945 "schema": {
15946 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15947 }
15948 }
15949 },
15950 "description": "Accepted"
15951 },
15952 "401": {
15953 "description": "Unauthorized"
15954 }
15955 },
15956 "tags": [
15957 "core_v1"
15958 ],
15959 "x-kubernetes-action": "delete",
15960 "x-kubernetes-group-version-kind": {
15961 "group": "",
15962 "kind": "Pod",
15963 "version": "v1"
15964 }
15965 },
15966 "get": {
15967 "description": "read the specified Pod",
15968 "operationId": "readCoreV1NamespacedPod",
15969 "responses": {
15970 "200": {
15971 "content": {
15972 "application/json": {
15973 "schema": {
15974 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15975 }
15976 },
15977 "application/vnd.kubernetes.protobuf": {
15978 "schema": {
15979 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15980 }
15981 },
15982 "application/yaml": {
15983 "schema": {
15984 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
15985 }
15986 }
15987 },
15988 "description": "OK"
15989 },
15990 "401": {
15991 "description": "Unauthorized"
15992 }
15993 },
15994 "tags": [
15995 "core_v1"
15996 ],
15997 "x-kubernetes-action": "get",
15998 "x-kubernetes-group-version-kind": {
15999 "group": "",
16000 "kind": "Pod",
16001 "version": "v1"
16002 }
16003 },
16004 "parameters": [
16005 {
16006 "description": "name of the Pod",
16007 "in": "path",
16008 "name": "name",
16009 "required": true,
16010 "schema": {
16011 "type": "string",
16012 "uniqueItems": true
16013 }
16014 },
16015 {
16016 "description": "object name and auth scope, such as for teams and projects",
16017 "in": "path",
16018 "name": "namespace",
16019 "required": true,
16020 "schema": {
16021 "type": "string",
16022 "uniqueItems": true
16023 }
16024 },
16025 {
16026 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
16027 "in": "query",
16028 "name": "pretty",
16029 "schema": {
16030 "type": "string",
16031 "uniqueItems": true
16032 }
16033 }
16034 ],
16035 "patch": {
16036 "description": "partially update the specified Pod",
16037 "operationId": "patchCoreV1NamespacedPod",
16038 "parameters": [
16039 {
16040 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16041 "in": "query",
16042 "name": "dryRun",
16043 "schema": {
16044 "type": "string",
16045 "uniqueItems": true
16046 }
16047 },
16048 {
16049 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
16050 "in": "query",
16051 "name": "fieldManager",
16052 "schema": {
16053 "type": "string",
16054 "uniqueItems": true
16055 }
16056 },
16057 {
16058 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16059 "in": "query",
16060 "name": "fieldValidation",
16061 "schema": {
16062 "type": "string",
16063 "uniqueItems": true
16064 }
16065 },
16066 {
16067 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
16068 "in": "query",
16069 "name": "force",
16070 "schema": {
16071 "type": "boolean",
16072 "uniqueItems": true
16073 }
16074 }
16075 ],
16076 "requestBody": {
16077 "content": {
16078 "application/apply-patch+yaml": {
16079 "schema": {
16080 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16081 }
16082 },
16083 "application/json-patch+json": {
16084 "schema": {
16085 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16086 }
16087 },
16088 "application/merge-patch+json": {
16089 "schema": {
16090 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16091 }
16092 },
16093 "application/strategic-merge-patch+json": {
16094 "schema": {
16095 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16096 }
16097 }
16098 },
16099 "required": true
16100 },
16101 "responses": {
16102 "200": {
16103 "content": {
16104 "application/json": {
16105 "schema": {
16106 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16107 }
16108 },
16109 "application/vnd.kubernetes.protobuf": {
16110 "schema": {
16111 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16112 }
16113 },
16114 "application/yaml": {
16115 "schema": {
16116 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16117 }
16118 }
16119 },
16120 "description": "OK"
16121 },
16122 "201": {
16123 "content": {
16124 "application/json": {
16125 "schema": {
16126 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16127 }
16128 },
16129 "application/vnd.kubernetes.protobuf": {
16130 "schema": {
16131 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16132 }
16133 },
16134 "application/yaml": {
16135 "schema": {
16136 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16137 }
16138 }
16139 },
16140 "description": "Created"
16141 },
16142 "401": {
16143 "description": "Unauthorized"
16144 }
16145 },
16146 "tags": [
16147 "core_v1"
16148 ],
16149 "x-kubernetes-action": "patch",
16150 "x-kubernetes-group-version-kind": {
16151 "group": "",
16152 "kind": "Pod",
16153 "version": "v1"
16154 }
16155 },
16156 "put": {
16157 "description": "replace the specified Pod",
16158 "operationId": "replaceCoreV1NamespacedPod",
16159 "parameters": [
16160 {
16161 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16162 "in": "query",
16163 "name": "dryRun",
16164 "schema": {
16165 "type": "string",
16166 "uniqueItems": true
16167 }
16168 },
16169 {
16170 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
16171 "in": "query",
16172 "name": "fieldManager",
16173 "schema": {
16174 "type": "string",
16175 "uniqueItems": true
16176 }
16177 },
16178 {
16179 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16180 "in": "query",
16181 "name": "fieldValidation",
16182 "schema": {
16183 "type": "string",
16184 "uniqueItems": true
16185 }
16186 }
16187 ],
16188 "requestBody": {
16189 "content": {
16190 "*/*": {
16191 "schema": {
16192 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16193 }
16194 }
16195 },
16196 "required": true
16197 },
16198 "responses": {
16199 "200": {
16200 "content": {
16201 "application/json": {
16202 "schema": {
16203 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16204 }
16205 },
16206 "application/vnd.kubernetes.protobuf": {
16207 "schema": {
16208 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16209 }
16210 },
16211 "application/yaml": {
16212 "schema": {
16213 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16214 }
16215 }
16216 },
16217 "description": "OK"
16218 },
16219 "201": {
16220 "content": {
16221 "application/json": {
16222 "schema": {
16223 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16224 }
16225 },
16226 "application/vnd.kubernetes.protobuf": {
16227 "schema": {
16228 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16229 }
16230 },
16231 "application/yaml": {
16232 "schema": {
16233 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16234 }
16235 }
16236 },
16237 "description": "Created"
16238 },
16239 "401": {
16240 "description": "Unauthorized"
16241 }
16242 },
16243 "tags": [
16244 "core_v1"
16245 ],
16246 "x-kubernetes-action": "put",
16247 "x-kubernetes-group-version-kind": {
16248 "group": "",
16249 "kind": "Pod",
16250 "version": "v1"
16251 }
16252 }
16253 },
16254 "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
16255 "get": {
16256 "description": "connect GET requests to attach of Pod",
16257 "operationId": "connectCoreV1GetNamespacedPodAttach",
16258 "responses": {
16259 "200": {
16260 "content": {
16261 "*/*": {
16262 "schema": {
16263 "type": "string"
16264 }
16265 }
16266 },
16267 "description": "OK"
16268 },
16269 "401": {
16270 "description": "Unauthorized"
16271 }
16272 },
16273 "tags": [
16274 "core_v1"
16275 ],
16276 "x-kubernetes-action": "connect",
16277 "x-kubernetes-group-version-kind": {
16278 "group": "",
16279 "kind": "PodAttachOptions",
16280 "version": "v1"
16281 }
16282 },
16283 "parameters": [
16284 {
16285 "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
16286 "in": "query",
16287 "name": "container",
16288 "schema": {
16289 "type": "string",
16290 "uniqueItems": true
16291 }
16292 },
16293 {
16294 "description": "name of the PodAttachOptions",
16295 "in": "path",
16296 "name": "name",
16297 "required": true,
16298 "schema": {
16299 "type": "string",
16300 "uniqueItems": true
16301 }
16302 },
16303 {
16304 "description": "object name and auth scope, such as for teams and projects",
16305 "in": "path",
16306 "name": "namespace",
16307 "required": true,
16308 "schema": {
16309 "type": "string",
16310 "uniqueItems": true
16311 }
16312 },
16313 {
16314 "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
16315 "in": "query",
16316 "name": "stderr",
16317 "schema": {
16318 "type": "boolean",
16319 "uniqueItems": true
16320 }
16321 },
16322 {
16323 "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
16324 "in": "query",
16325 "name": "stdin",
16326 "schema": {
16327 "type": "boolean",
16328 "uniqueItems": true
16329 }
16330 },
16331 {
16332 "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
16333 "in": "query",
16334 "name": "stdout",
16335 "schema": {
16336 "type": "boolean",
16337 "uniqueItems": true
16338 }
16339 },
16340 {
16341 "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.",
16342 "in": "query",
16343 "name": "tty",
16344 "schema": {
16345 "type": "boolean",
16346 "uniqueItems": true
16347 }
16348 }
16349 ],
16350 "post": {
16351 "description": "connect POST requests to attach of Pod",
16352 "operationId": "connectCoreV1PostNamespacedPodAttach",
16353 "responses": {
16354 "200": {
16355 "content": {
16356 "*/*": {
16357 "schema": {
16358 "type": "string"
16359 }
16360 }
16361 },
16362 "description": "OK"
16363 },
16364 "401": {
16365 "description": "Unauthorized"
16366 }
16367 },
16368 "tags": [
16369 "core_v1"
16370 ],
16371 "x-kubernetes-action": "connect",
16372 "x-kubernetes-group-version-kind": {
16373 "group": "",
16374 "kind": "PodAttachOptions",
16375 "version": "v1"
16376 }
16377 }
16378 },
16379 "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
16380 "parameters": [
16381 {
16382 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16383 "in": "query",
16384 "name": "dryRun",
16385 "schema": {
16386 "type": "string",
16387 "uniqueItems": true
16388 }
16389 },
16390 {
16391 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
16392 "in": "query",
16393 "name": "fieldManager",
16394 "schema": {
16395 "type": "string",
16396 "uniqueItems": true
16397 }
16398 },
16399 {
16400 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16401 "in": "query",
16402 "name": "fieldValidation",
16403 "schema": {
16404 "type": "string",
16405 "uniqueItems": true
16406 }
16407 },
16408 {
16409 "description": "name of the Binding",
16410 "in": "path",
16411 "name": "name",
16412 "required": true,
16413 "schema": {
16414 "type": "string",
16415 "uniqueItems": true
16416 }
16417 },
16418 {
16419 "description": "object name and auth scope, such as for teams and projects",
16420 "in": "path",
16421 "name": "namespace",
16422 "required": true,
16423 "schema": {
16424 "type": "string",
16425 "uniqueItems": true
16426 }
16427 },
16428 {
16429 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
16430 "in": "query",
16431 "name": "pretty",
16432 "schema": {
16433 "type": "string",
16434 "uniqueItems": true
16435 }
16436 }
16437 ],
16438 "post": {
16439 "description": "create binding of a Pod",
16440 "operationId": "createCoreV1NamespacedPodBinding",
16441 "requestBody": {
16442 "content": {
16443 "*/*": {
16444 "schema": {
16445 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16446 }
16447 }
16448 },
16449 "required": true
16450 },
16451 "responses": {
16452 "200": {
16453 "content": {
16454 "application/json": {
16455 "schema": {
16456 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16457 }
16458 },
16459 "application/vnd.kubernetes.protobuf": {
16460 "schema": {
16461 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16462 }
16463 },
16464 "application/yaml": {
16465 "schema": {
16466 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16467 }
16468 }
16469 },
16470 "description": "OK"
16471 },
16472 "201": {
16473 "content": {
16474 "application/json": {
16475 "schema": {
16476 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16477 }
16478 },
16479 "application/vnd.kubernetes.protobuf": {
16480 "schema": {
16481 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16482 }
16483 },
16484 "application/yaml": {
16485 "schema": {
16486 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16487 }
16488 }
16489 },
16490 "description": "Created"
16491 },
16492 "202": {
16493 "content": {
16494 "application/json": {
16495 "schema": {
16496 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16497 }
16498 },
16499 "application/vnd.kubernetes.protobuf": {
16500 "schema": {
16501 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16502 }
16503 },
16504 "application/yaml": {
16505 "schema": {
16506 "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding"
16507 }
16508 }
16509 },
16510 "description": "Accepted"
16511 },
16512 "401": {
16513 "description": "Unauthorized"
16514 }
16515 },
16516 "tags": [
16517 "core_v1"
16518 ],
16519 "x-kubernetes-action": "post",
16520 "x-kubernetes-group-version-kind": {
16521 "group": "",
16522 "kind": "Binding",
16523 "version": "v1"
16524 }
16525 }
16526 },
16527 "/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers": {
16528 "get": {
16529 "description": "read ephemeralcontainers of the specified Pod",
16530 "operationId": "readCoreV1NamespacedPodEphemeralcontainers",
16531 "responses": {
16532 "200": {
16533 "content": {
16534 "application/json": {
16535 "schema": {
16536 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16537 }
16538 },
16539 "application/vnd.kubernetes.protobuf": {
16540 "schema": {
16541 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16542 }
16543 },
16544 "application/yaml": {
16545 "schema": {
16546 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16547 }
16548 }
16549 },
16550 "description": "OK"
16551 },
16552 "401": {
16553 "description": "Unauthorized"
16554 }
16555 },
16556 "tags": [
16557 "core_v1"
16558 ],
16559 "x-kubernetes-action": "get",
16560 "x-kubernetes-group-version-kind": {
16561 "group": "",
16562 "kind": "Pod",
16563 "version": "v1"
16564 }
16565 },
16566 "parameters": [
16567 {
16568 "description": "name of the Pod",
16569 "in": "path",
16570 "name": "name",
16571 "required": true,
16572 "schema": {
16573 "type": "string",
16574 "uniqueItems": true
16575 }
16576 },
16577 {
16578 "description": "object name and auth scope, such as for teams and projects",
16579 "in": "path",
16580 "name": "namespace",
16581 "required": true,
16582 "schema": {
16583 "type": "string",
16584 "uniqueItems": true
16585 }
16586 },
16587 {
16588 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
16589 "in": "query",
16590 "name": "pretty",
16591 "schema": {
16592 "type": "string",
16593 "uniqueItems": true
16594 }
16595 }
16596 ],
16597 "patch": {
16598 "description": "partially update ephemeralcontainers of the specified Pod",
16599 "operationId": "patchCoreV1NamespacedPodEphemeralcontainers",
16600 "parameters": [
16601 {
16602 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16603 "in": "query",
16604 "name": "dryRun",
16605 "schema": {
16606 "type": "string",
16607 "uniqueItems": true
16608 }
16609 },
16610 {
16611 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
16612 "in": "query",
16613 "name": "fieldManager",
16614 "schema": {
16615 "type": "string",
16616 "uniqueItems": true
16617 }
16618 },
16619 {
16620 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16621 "in": "query",
16622 "name": "fieldValidation",
16623 "schema": {
16624 "type": "string",
16625 "uniqueItems": true
16626 }
16627 },
16628 {
16629 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
16630 "in": "query",
16631 "name": "force",
16632 "schema": {
16633 "type": "boolean",
16634 "uniqueItems": true
16635 }
16636 }
16637 ],
16638 "requestBody": {
16639 "content": {
16640 "application/apply-patch+yaml": {
16641 "schema": {
16642 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16643 }
16644 },
16645 "application/json-patch+json": {
16646 "schema": {
16647 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16648 }
16649 },
16650 "application/merge-patch+json": {
16651 "schema": {
16652 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16653 }
16654 },
16655 "application/strategic-merge-patch+json": {
16656 "schema": {
16657 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
16658 }
16659 }
16660 },
16661 "required": true
16662 },
16663 "responses": {
16664 "200": {
16665 "content": {
16666 "application/json": {
16667 "schema": {
16668 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16669 }
16670 },
16671 "application/vnd.kubernetes.protobuf": {
16672 "schema": {
16673 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16674 }
16675 },
16676 "application/yaml": {
16677 "schema": {
16678 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16679 }
16680 }
16681 },
16682 "description": "OK"
16683 },
16684 "201": {
16685 "content": {
16686 "application/json": {
16687 "schema": {
16688 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16689 }
16690 },
16691 "application/vnd.kubernetes.protobuf": {
16692 "schema": {
16693 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16694 }
16695 },
16696 "application/yaml": {
16697 "schema": {
16698 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16699 }
16700 }
16701 },
16702 "description": "Created"
16703 },
16704 "401": {
16705 "description": "Unauthorized"
16706 }
16707 },
16708 "tags": [
16709 "core_v1"
16710 ],
16711 "x-kubernetes-action": "patch",
16712 "x-kubernetes-group-version-kind": {
16713 "group": "",
16714 "kind": "Pod",
16715 "version": "v1"
16716 }
16717 },
16718 "put": {
16719 "description": "replace ephemeralcontainers of the specified Pod",
16720 "operationId": "replaceCoreV1NamespacedPodEphemeralcontainers",
16721 "parameters": [
16722 {
16723 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16724 "in": "query",
16725 "name": "dryRun",
16726 "schema": {
16727 "type": "string",
16728 "uniqueItems": true
16729 }
16730 },
16731 {
16732 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
16733 "in": "query",
16734 "name": "fieldManager",
16735 "schema": {
16736 "type": "string",
16737 "uniqueItems": true
16738 }
16739 },
16740 {
16741 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16742 "in": "query",
16743 "name": "fieldValidation",
16744 "schema": {
16745 "type": "string",
16746 "uniqueItems": true
16747 }
16748 }
16749 ],
16750 "requestBody": {
16751 "content": {
16752 "*/*": {
16753 "schema": {
16754 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16755 }
16756 }
16757 },
16758 "required": true
16759 },
16760 "responses": {
16761 "200": {
16762 "content": {
16763 "application/json": {
16764 "schema": {
16765 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16766 }
16767 },
16768 "application/vnd.kubernetes.protobuf": {
16769 "schema": {
16770 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16771 }
16772 },
16773 "application/yaml": {
16774 "schema": {
16775 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16776 }
16777 }
16778 },
16779 "description": "OK"
16780 },
16781 "201": {
16782 "content": {
16783 "application/json": {
16784 "schema": {
16785 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16786 }
16787 },
16788 "application/vnd.kubernetes.protobuf": {
16789 "schema": {
16790 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16791 }
16792 },
16793 "application/yaml": {
16794 "schema": {
16795 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
16796 }
16797 }
16798 },
16799 "description": "Created"
16800 },
16801 "401": {
16802 "description": "Unauthorized"
16803 }
16804 },
16805 "tags": [
16806 "core_v1"
16807 ],
16808 "x-kubernetes-action": "put",
16809 "x-kubernetes-group-version-kind": {
16810 "group": "",
16811 "kind": "Pod",
16812 "version": "v1"
16813 }
16814 }
16815 },
16816 "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
16817 "parameters": [
16818 {
16819 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
16820 "in": "query",
16821 "name": "dryRun",
16822 "schema": {
16823 "type": "string",
16824 "uniqueItems": true
16825 }
16826 },
16827 {
16828 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
16829 "in": "query",
16830 "name": "fieldManager",
16831 "schema": {
16832 "type": "string",
16833 "uniqueItems": true
16834 }
16835 },
16836 {
16837 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
16838 "in": "query",
16839 "name": "fieldValidation",
16840 "schema": {
16841 "type": "string",
16842 "uniqueItems": true
16843 }
16844 },
16845 {
16846 "description": "name of the Eviction",
16847 "in": "path",
16848 "name": "name",
16849 "required": true,
16850 "schema": {
16851 "type": "string",
16852 "uniqueItems": true
16853 }
16854 },
16855 {
16856 "description": "object name and auth scope, such as for teams and projects",
16857 "in": "path",
16858 "name": "namespace",
16859 "required": true,
16860 "schema": {
16861 "type": "string",
16862 "uniqueItems": true
16863 }
16864 },
16865 {
16866 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
16867 "in": "query",
16868 "name": "pretty",
16869 "schema": {
16870 "type": "string",
16871 "uniqueItems": true
16872 }
16873 }
16874 ],
16875 "post": {
16876 "description": "create eviction of a Pod",
16877 "operationId": "createCoreV1NamespacedPodEviction",
16878 "requestBody": {
16879 "content": {
16880 "*/*": {
16881 "schema": {
16882 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16883 }
16884 }
16885 },
16886 "required": true
16887 },
16888 "responses": {
16889 "200": {
16890 "content": {
16891 "application/json": {
16892 "schema": {
16893 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16894 }
16895 },
16896 "application/vnd.kubernetes.protobuf": {
16897 "schema": {
16898 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16899 }
16900 },
16901 "application/yaml": {
16902 "schema": {
16903 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16904 }
16905 }
16906 },
16907 "description": "OK"
16908 },
16909 "201": {
16910 "content": {
16911 "application/json": {
16912 "schema": {
16913 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16914 }
16915 },
16916 "application/vnd.kubernetes.protobuf": {
16917 "schema": {
16918 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16919 }
16920 },
16921 "application/yaml": {
16922 "schema": {
16923 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16924 }
16925 }
16926 },
16927 "description": "Created"
16928 },
16929 "202": {
16930 "content": {
16931 "application/json": {
16932 "schema": {
16933 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16934 }
16935 },
16936 "application/vnd.kubernetes.protobuf": {
16937 "schema": {
16938 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16939 }
16940 },
16941 "application/yaml": {
16942 "schema": {
16943 "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction"
16944 }
16945 }
16946 },
16947 "description": "Accepted"
16948 },
16949 "401": {
16950 "description": "Unauthorized"
16951 }
16952 },
16953 "tags": [
16954 "core_v1"
16955 ],
16956 "x-kubernetes-action": "post",
16957 "x-kubernetes-group-version-kind": {
16958 "group": "policy",
16959 "kind": "Eviction",
16960 "version": "v1"
16961 }
16962 }
16963 },
16964 "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
16965 "get": {
16966 "description": "connect GET requests to exec of Pod",
16967 "operationId": "connectCoreV1GetNamespacedPodExec",
16968 "responses": {
16969 "200": {
16970 "content": {
16971 "*/*": {
16972 "schema": {
16973 "type": "string"
16974 }
16975 }
16976 },
16977 "description": "OK"
16978 },
16979 "401": {
16980 "description": "Unauthorized"
16981 }
16982 },
16983 "tags": [
16984 "core_v1"
16985 ],
16986 "x-kubernetes-action": "connect",
16987 "x-kubernetes-group-version-kind": {
16988 "group": "",
16989 "kind": "PodExecOptions",
16990 "version": "v1"
16991 }
16992 },
16993 "parameters": [
16994 {
16995 "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
16996 "in": "query",
16997 "name": "command",
16998 "schema": {
16999 "type": "string",
17000 "uniqueItems": true
17001 }
17002 },
17003 {
17004 "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
17005 "in": "query",
17006 "name": "container",
17007 "schema": {
17008 "type": "string",
17009 "uniqueItems": true
17010 }
17011 },
17012 {
17013 "description": "name of the PodExecOptions",
17014 "in": "path",
17015 "name": "name",
17016 "required": true,
17017 "schema": {
17018 "type": "string",
17019 "uniqueItems": true
17020 }
17021 },
17022 {
17023 "description": "object name and auth scope, such as for teams and projects",
17024 "in": "path",
17025 "name": "namespace",
17026 "required": true,
17027 "schema": {
17028 "type": "string",
17029 "uniqueItems": true
17030 }
17031 },
17032 {
17033 "description": "Redirect the standard error stream of the pod for this call.",
17034 "in": "query",
17035 "name": "stderr",
17036 "schema": {
17037 "type": "boolean",
17038 "uniqueItems": true
17039 }
17040 },
17041 {
17042 "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
17043 "in": "query",
17044 "name": "stdin",
17045 "schema": {
17046 "type": "boolean",
17047 "uniqueItems": true
17048 }
17049 },
17050 {
17051 "description": "Redirect the standard output stream of the pod for this call.",
17052 "in": "query",
17053 "name": "stdout",
17054 "schema": {
17055 "type": "boolean",
17056 "uniqueItems": true
17057 }
17058 },
17059 {
17060 "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
17061 "in": "query",
17062 "name": "tty",
17063 "schema": {
17064 "type": "boolean",
17065 "uniqueItems": true
17066 }
17067 }
17068 ],
17069 "post": {
17070 "description": "connect POST requests to exec of Pod",
17071 "operationId": "connectCoreV1PostNamespacedPodExec",
17072 "responses": {
17073 "200": {
17074 "content": {
17075 "*/*": {
17076 "schema": {
17077 "type": "string"
17078 }
17079 }
17080 },
17081 "description": "OK"
17082 },
17083 "401": {
17084 "description": "Unauthorized"
17085 }
17086 },
17087 "tags": [
17088 "core_v1"
17089 ],
17090 "x-kubernetes-action": "connect",
17091 "x-kubernetes-group-version-kind": {
17092 "group": "",
17093 "kind": "PodExecOptions",
17094 "version": "v1"
17095 }
17096 }
17097 },
17098 "/api/v1/namespaces/{namespace}/pods/{name}/log": {
17099 "get": {
17100 "description": "read log of the specified Pod",
17101 "operationId": "readCoreV1NamespacedPodLog",
17102 "responses": {
17103 "200": {
17104 "content": {
17105 "application/json": {
17106 "schema": {
17107 "type": "string"
17108 }
17109 },
17110 "application/vnd.kubernetes.protobuf": {
17111 "schema": {
17112 "type": "string"
17113 }
17114 },
17115 "application/yaml": {
17116 "schema": {
17117 "type": "string"
17118 }
17119 },
17120 "text/plain": {
17121 "schema": {
17122 "type": "string"
17123 }
17124 }
17125 },
17126 "description": "OK"
17127 },
17128 "401": {
17129 "description": "Unauthorized"
17130 }
17131 },
17132 "tags": [
17133 "core_v1"
17134 ],
17135 "x-kubernetes-action": "get",
17136 "x-kubernetes-group-version-kind": {
17137 "group": "",
17138 "kind": "Pod",
17139 "version": "v1"
17140 }
17141 },
17142 "parameters": [
17143 {
17144 "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
17145 "in": "query",
17146 "name": "container",
17147 "schema": {
17148 "type": "string",
17149 "uniqueItems": true
17150 }
17151 },
17152 {
17153 "description": "Follow the log stream of the pod. Defaults to false.",
17154 "in": "query",
17155 "name": "follow",
17156 "schema": {
17157 "type": "boolean",
17158 "uniqueItems": true
17159 }
17160 },
17161 {
17162 "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).",
17163 "in": "query",
17164 "name": "insecureSkipTLSVerifyBackend",
17165 "schema": {
17166 "type": "boolean",
17167 "uniqueItems": true
17168 }
17169 },
17170 {
17171 "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.",
17172 "in": "query",
17173 "name": "limitBytes",
17174 "schema": {
17175 "type": "integer",
17176 "uniqueItems": true
17177 }
17178 },
17179 {
17180 "description": "name of the Pod",
17181 "in": "path",
17182 "name": "name",
17183 "required": true,
17184 "schema": {
17185 "type": "string",
17186 "uniqueItems": true
17187 }
17188 },
17189 {
17190 "description": "object name and auth scope, such as for teams and projects",
17191 "in": "path",
17192 "name": "namespace",
17193 "required": true,
17194 "schema": {
17195 "type": "string",
17196 "uniqueItems": true
17197 }
17198 },
17199 {
17200 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
17201 "in": "query",
17202 "name": "pretty",
17203 "schema": {
17204 "type": "string",
17205 "uniqueItems": true
17206 }
17207 },
17208 {
17209 "description": "Return previous terminated container logs. Defaults to false.",
17210 "in": "query",
17211 "name": "previous",
17212 "schema": {
17213 "type": "boolean",
17214 "uniqueItems": true
17215 }
17216 },
17217 {
17218 "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.",
17219 "in": "query",
17220 "name": "sinceSeconds",
17221 "schema": {
17222 "type": "integer",
17223 "uniqueItems": true
17224 }
17225 },
17226 {
17227 "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",
17228 "in": "query",
17229 "name": "tailLines",
17230 "schema": {
17231 "type": "integer",
17232 "uniqueItems": true
17233 }
17234 },
17235 {
17236 "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
17237 "in": "query",
17238 "name": "timestamps",
17239 "schema": {
17240 "type": "boolean",
17241 "uniqueItems": true
17242 }
17243 }
17244 ]
17245 },
17246 "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
17247 "get": {
17248 "description": "connect GET requests to portforward of Pod",
17249 "operationId": "connectCoreV1GetNamespacedPodPortforward",
17250 "responses": {
17251 "200": {
17252 "content": {
17253 "*/*": {
17254 "schema": {
17255 "type": "string"
17256 }
17257 }
17258 },
17259 "description": "OK"
17260 },
17261 "401": {
17262 "description": "Unauthorized"
17263 }
17264 },
17265 "tags": [
17266 "core_v1"
17267 ],
17268 "x-kubernetes-action": "connect",
17269 "x-kubernetes-group-version-kind": {
17270 "group": "",
17271 "kind": "PodPortForwardOptions",
17272 "version": "v1"
17273 }
17274 },
17275 "parameters": [
17276 {
17277 "description": "name of the PodPortForwardOptions",
17278 "in": "path",
17279 "name": "name",
17280 "required": true,
17281 "schema": {
17282 "type": "string",
17283 "uniqueItems": true
17284 }
17285 },
17286 {
17287 "description": "object name and auth scope, such as for teams and projects",
17288 "in": "path",
17289 "name": "namespace",
17290 "required": true,
17291 "schema": {
17292 "type": "string",
17293 "uniqueItems": true
17294 }
17295 },
17296 {
17297 "description": "List of ports to forward Required when using WebSockets",
17298 "in": "query",
17299 "name": "ports",
17300 "schema": {
17301 "type": "integer",
17302 "uniqueItems": true
17303 }
17304 }
17305 ],
17306 "post": {
17307 "description": "connect POST requests to portforward of Pod",
17308 "operationId": "connectCoreV1PostNamespacedPodPortforward",
17309 "responses": {
17310 "200": {
17311 "content": {
17312 "*/*": {
17313 "schema": {
17314 "type": "string"
17315 }
17316 }
17317 },
17318 "description": "OK"
17319 },
17320 "401": {
17321 "description": "Unauthorized"
17322 }
17323 },
17324 "tags": [
17325 "core_v1"
17326 ],
17327 "x-kubernetes-action": "connect",
17328 "x-kubernetes-group-version-kind": {
17329 "group": "",
17330 "kind": "PodPortForwardOptions",
17331 "version": "v1"
17332 }
17333 }
17334 },
17335 "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
17336 "delete": {
17337 "description": "connect DELETE requests to proxy of Pod",
17338 "operationId": "connectCoreV1DeleteNamespacedPodProxy",
17339 "responses": {
17340 "200": {
17341 "content": {
17342 "*/*": {
17343 "schema": {
17344 "type": "string"
17345 }
17346 }
17347 },
17348 "description": "OK"
17349 },
17350 "401": {
17351 "description": "Unauthorized"
17352 }
17353 },
17354 "tags": [
17355 "core_v1"
17356 ],
17357 "x-kubernetes-action": "connect",
17358 "x-kubernetes-group-version-kind": {
17359 "group": "",
17360 "kind": "PodProxyOptions",
17361 "version": "v1"
17362 }
17363 },
17364 "get": {
17365 "description": "connect GET requests to proxy of Pod",
17366 "operationId": "connectCoreV1GetNamespacedPodProxy",
17367 "responses": {
17368 "200": {
17369 "content": {
17370 "*/*": {
17371 "schema": {
17372 "type": "string"
17373 }
17374 }
17375 },
17376 "description": "OK"
17377 },
17378 "401": {
17379 "description": "Unauthorized"
17380 }
17381 },
17382 "tags": [
17383 "core_v1"
17384 ],
17385 "x-kubernetes-action": "connect",
17386 "x-kubernetes-group-version-kind": {
17387 "group": "",
17388 "kind": "PodProxyOptions",
17389 "version": "v1"
17390 }
17391 },
17392 "head": {
17393 "description": "connect HEAD requests to proxy of Pod",
17394 "operationId": "connectCoreV1HeadNamespacedPodProxy",
17395 "responses": {
17396 "200": {
17397 "content": {
17398 "*/*": {
17399 "schema": {
17400 "type": "string"
17401 }
17402 }
17403 },
17404 "description": "OK"
17405 },
17406 "401": {
17407 "description": "Unauthorized"
17408 }
17409 },
17410 "tags": [
17411 "core_v1"
17412 ],
17413 "x-kubernetes-action": "connect",
17414 "x-kubernetes-group-version-kind": {
17415 "group": "",
17416 "kind": "PodProxyOptions",
17417 "version": "v1"
17418 }
17419 },
17420 "options": {
17421 "description": "connect OPTIONS requests to proxy of Pod",
17422 "operationId": "connectCoreV1OptionsNamespacedPodProxy",
17423 "responses": {
17424 "200": {
17425 "content": {
17426 "*/*": {
17427 "schema": {
17428 "type": "string"
17429 }
17430 }
17431 },
17432 "description": "OK"
17433 },
17434 "401": {
17435 "description": "Unauthorized"
17436 }
17437 },
17438 "tags": [
17439 "core_v1"
17440 ],
17441 "x-kubernetes-action": "connect",
17442 "x-kubernetes-group-version-kind": {
17443 "group": "",
17444 "kind": "PodProxyOptions",
17445 "version": "v1"
17446 }
17447 },
17448 "parameters": [
17449 {
17450 "description": "name of the PodProxyOptions",
17451 "in": "path",
17452 "name": "name",
17453 "required": true,
17454 "schema": {
17455 "type": "string",
17456 "uniqueItems": true
17457 }
17458 },
17459 {
17460 "description": "object name and auth scope, such as for teams and projects",
17461 "in": "path",
17462 "name": "namespace",
17463 "required": true,
17464 "schema": {
17465 "type": "string",
17466 "uniqueItems": true
17467 }
17468 },
17469 {
17470 "description": "Path is the URL path to use for the current proxy request to pod.",
17471 "in": "query",
17472 "name": "path",
17473 "schema": {
17474 "type": "string",
17475 "uniqueItems": true
17476 }
17477 }
17478 ],
17479 "patch": {
17480 "description": "connect PATCH requests to proxy of Pod",
17481 "operationId": "connectCoreV1PatchNamespacedPodProxy",
17482 "responses": {
17483 "200": {
17484 "content": {
17485 "*/*": {
17486 "schema": {
17487 "type": "string"
17488 }
17489 }
17490 },
17491 "description": "OK"
17492 },
17493 "401": {
17494 "description": "Unauthorized"
17495 }
17496 },
17497 "tags": [
17498 "core_v1"
17499 ],
17500 "x-kubernetes-action": "connect",
17501 "x-kubernetes-group-version-kind": {
17502 "group": "",
17503 "kind": "PodProxyOptions",
17504 "version": "v1"
17505 }
17506 },
17507 "post": {
17508 "description": "connect POST requests to proxy of Pod",
17509 "operationId": "connectCoreV1PostNamespacedPodProxy",
17510 "responses": {
17511 "200": {
17512 "content": {
17513 "*/*": {
17514 "schema": {
17515 "type": "string"
17516 }
17517 }
17518 },
17519 "description": "OK"
17520 },
17521 "401": {
17522 "description": "Unauthorized"
17523 }
17524 },
17525 "tags": [
17526 "core_v1"
17527 ],
17528 "x-kubernetes-action": "connect",
17529 "x-kubernetes-group-version-kind": {
17530 "group": "",
17531 "kind": "PodProxyOptions",
17532 "version": "v1"
17533 }
17534 },
17535 "put": {
17536 "description": "connect PUT requests to proxy of Pod",
17537 "operationId": "connectCoreV1PutNamespacedPodProxy",
17538 "responses": {
17539 "200": {
17540 "content": {
17541 "*/*": {
17542 "schema": {
17543 "type": "string"
17544 }
17545 }
17546 },
17547 "description": "OK"
17548 },
17549 "401": {
17550 "description": "Unauthorized"
17551 }
17552 },
17553 "tags": [
17554 "core_v1"
17555 ],
17556 "x-kubernetes-action": "connect",
17557 "x-kubernetes-group-version-kind": {
17558 "group": "",
17559 "kind": "PodProxyOptions",
17560 "version": "v1"
17561 }
17562 }
17563 },
17564 "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
17565 "delete": {
17566 "description": "connect DELETE requests to proxy of Pod",
17567 "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
17568 "responses": {
17569 "200": {
17570 "content": {
17571 "*/*": {
17572 "schema": {
17573 "type": "string"
17574 }
17575 }
17576 },
17577 "description": "OK"
17578 },
17579 "401": {
17580 "description": "Unauthorized"
17581 }
17582 },
17583 "tags": [
17584 "core_v1"
17585 ],
17586 "x-kubernetes-action": "connect",
17587 "x-kubernetes-group-version-kind": {
17588 "group": "",
17589 "kind": "PodProxyOptions",
17590 "version": "v1"
17591 }
17592 },
17593 "get": {
17594 "description": "connect GET requests to proxy of Pod",
17595 "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
17596 "responses": {
17597 "200": {
17598 "content": {
17599 "*/*": {
17600 "schema": {
17601 "type": "string"
17602 }
17603 }
17604 },
17605 "description": "OK"
17606 },
17607 "401": {
17608 "description": "Unauthorized"
17609 }
17610 },
17611 "tags": [
17612 "core_v1"
17613 ],
17614 "x-kubernetes-action": "connect",
17615 "x-kubernetes-group-version-kind": {
17616 "group": "",
17617 "kind": "PodProxyOptions",
17618 "version": "v1"
17619 }
17620 },
17621 "head": {
17622 "description": "connect HEAD requests to proxy of Pod",
17623 "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
17624 "responses": {
17625 "200": {
17626 "content": {
17627 "*/*": {
17628 "schema": {
17629 "type": "string"
17630 }
17631 }
17632 },
17633 "description": "OK"
17634 },
17635 "401": {
17636 "description": "Unauthorized"
17637 }
17638 },
17639 "tags": [
17640 "core_v1"
17641 ],
17642 "x-kubernetes-action": "connect",
17643 "x-kubernetes-group-version-kind": {
17644 "group": "",
17645 "kind": "PodProxyOptions",
17646 "version": "v1"
17647 }
17648 },
17649 "options": {
17650 "description": "connect OPTIONS requests to proxy of Pod",
17651 "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
17652 "responses": {
17653 "200": {
17654 "content": {
17655 "*/*": {
17656 "schema": {
17657 "type": "string"
17658 }
17659 }
17660 },
17661 "description": "OK"
17662 },
17663 "401": {
17664 "description": "Unauthorized"
17665 }
17666 },
17667 "tags": [
17668 "core_v1"
17669 ],
17670 "x-kubernetes-action": "connect",
17671 "x-kubernetes-group-version-kind": {
17672 "group": "",
17673 "kind": "PodProxyOptions",
17674 "version": "v1"
17675 }
17676 },
17677 "parameters": [
17678 {
17679 "description": "name of the PodProxyOptions",
17680 "in": "path",
17681 "name": "name",
17682 "required": true,
17683 "schema": {
17684 "type": "string",
17685 "uniqueItems": true
17686 }
17687 },
17688 {
17689 "description": "object name and auth scope, such as for teams and projects",
17690 "in": "path",
17691 "name": "namespace",
17692 "required": true,
17693 "schema": {
17694 "type": "string",
17695 "uniqueItems": true
17696 }
17697 },
17698 {
17699 "description": "path to the resource",
17700 "in": "path",
17701 "name": "path",
17702 "required": true,
17703 "schema": {
17704 "type": "string",
17705 "uniqueItems": true
17706 }
17707 },
17708 {
17709 "description": "Path is the URL path to use for the current proxy request to pod.",
17710 "in": "query",
17711 "name": "path",
17712 "schema": {
17713 "type": "string",
17714 "uniqueItems": true
17715 }
17716 }
17717 ],
17718 "patch": {
17719 "description": "connect PATCH requests to proxy of Pod",
17720 "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath",
17721 "responses": {
17722 "200": {
17723 "content": {
17724 "*/*": {
17725 "schema": {
17726 "type": "string"
17727 }
17728 }
17729 },
17730 "description": "OK"
17731 },
17732 "401": {
17733 "description": "Unauthorized"
17734 }
17735 },
17736 "tags": [
17737 "core_v1"
17738 ],
17739 "x-kubernetes-action": "connect",
17740 "x-kubernetes-group-version-kind": {
17741 "group": "",
17742 "kind": "PodProxyOptions",
17743 "version": "v1"
17744 }
17745 },
17746 "post": {
17747 "description": "connect POST requests to proxy of Pod",
17748 "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
17749 "responses": {
17750 "200": {
17751 "content": {
17752 "*/*": {
17753 "schema": {
17754 "type": "string"
17755 }
17756 }
17757 },
17758 "description": "OK"
17759 },
17760 "401": {
17761 "description": "Unauthorized"
17762 }
17763 },
17764 "tags": [
17765 "core_v1"
17766 ],
17767 "x-kubernetes-action": "connect",
17768 "x-kubernetes-group-version-kind": {
17769 "group": "",
17770 "kind": "PodProxyOptions",
17771 "version": "v1"
17772 }
17773 },
17774 "put": {
17775 "description": "connect PUT requests to proxy of Pod",
17776 "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
17777 "responses": {
17778 "200": {
17779 "content": {
17780 "*/*": {
17781 "schema": {
17782 "type": "string"
17783 }
17784 }
17785 },
17786 "description": "OK"
17787 },
17788 "401": {
17789 "description": "Unauthorized"
17790 }
17791 },
17792 "tags": [
17793 "core_v1"
17794 ],
17795 "x-kubernetes-action": "connect",
17796 "x-kubernetes-group-version-kind": {
17797 "group": "",
17798 "kind": "PodProxyOptions",
17799 "version": "v1"
17800 }
17801 }
17802 },
17803 "/api/v1/namespaces/{namespace}/pods/{name}/status": {
17804 "get": {
17805 "description": "read status of the specified Pod",
17806 "operationId": "readCoreV1NamespacedPodStatus",
17807 "responses": {
17808 "200": {
17809 "content": {
17810 "application/json": {
17811 "schema": {
17812 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17813 }
17814 },
17815 "application/vnd.kubernetes.protobuf": {
17816 "schema": {
17817 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17818 }
17819 },
17820 "application/yaml": {
17821 "schema": {
17822 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17823 }
17824 }
17825 },
17826 "description": "OK"
17827 },
17828 "401": {
17829 "description": "Unauthorized"
17830 }
17831 },
17832 "tags": [
17833 "core_v1"
17834 ],
17835 "x-kubernetes-action": "get",
17836 "x-kubernetes-group-version-kind": {
17837 "group": "",
17838 "kind": "Pod",
17839 "version": "v1"
17840 }
17841 },
17842 "parameters": [
17843 {
17844 "description": "name of the Pod",
17845 "in": "path",
17846 "name": "name",
17847 "required": true,
17848 "schema": {
17849 "type": "string",
17850 "uniqueItems": true
17851 }
17852 },
17853 {
17854 "description": "object name and auth scope, such as for teams and projects",
17855 "in": "path",
17856 "name": "namespace",
17857 "required": true,
17858 "schema": {
17859 "type": "string",
17860 "uniqueItems": true
17861 }
17862 },
17863 {
17864 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
17865 "in": "query",
17866 "name": "pretty",
17867 "schema": {
17868 "type": "string",
17869 "uniqueItems": true
17870 }
17871 }
17872 ],
17873 "patch": {
17874 "description": "partially update status of the specified Pod",
17875 "operationId": "patchCoreV1NamespacedPodStatus",
17876 "parameters": [
17877 {
17878 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17879 "in": "query",
17880 "name": "dryRun",
17881 "schema": {
17882 "type": "string",
17883 "uniqueItems": true
17884 }
17885 },
17886 {
17887 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
17888 "in": "query",
17889 "name": "fieldManager",
17890 "schema": {
17891 "type": "string",
17892 "uniqueItems": true
17893 }
17894 },
17895 {
17896 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
17897 "in": "query",
17898 "name": "fieldValidation",
17899 "schema": {
17900 "type": "string",
17901 "uniqueItems": true
17902 }
17903 },
17904 {
17905 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
17906 "in": "query",
17907 "name": "force",
17908 "schema": {
17909 "type": "boolean",
17910 "uniqueItems": true
17911 }
17912 }
17913 ],
17914 "requestBody": {
17915 "content": {
17916 "application/apply-patch+yaml": {
17917 "schema": {
17918 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
17919 }
17920 },
17921 "application/json-patch+json": {
17922 "schema": {
17923 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
17924 }
17925 },
17926 "application/merge-patch+json": {
17927 "schema": {
17928 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
17929 }
17930 },
17931 "application/strategic-merge-patch+json": {
17932 "schema": {
17933 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
17934 }
17935 }
17936 },
17937 "required": true
17938 },
17939 "responses": {
17940 "200": {
17941 "content": {
17942 "application/json": {
17943 "schema": {
17944 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17945 }
17946 },
17947 "application/vnd.kubernetes.protobuf": {
17948 "schema": {
17949 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17950 }
17951 },
17952 "application/yaml": {
17953 "schema": {
17954 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17955 }
17956 }
17957 },
17958 "description": "OK"
17959 },
17960 "201": {
17961 "content": {
17962 "application/json": {
17963 "schema": {
17964 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17965 }
17966 },
17967 "application/vnd.kubernetes.protobuf": {
17968 "schema": {
17969 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17970 }
17971 },
17972 "application/yaml": {
17973 "schema": {
17974 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
17975 }
17976 }
17977 },
17978 "description": "Created"
17979 },
17980 "401": {
17981 "description": "Unauthorized"
17982 }
17983 },
17984 "tags": [
17985 "core_v1"
17986 ],
17987 "x-kubernetes-action": "patch",
17988 "x-kubernetes-group-version-kind": {
17989 "group": "",
17990 "kind": "Pod",
17991 "version": "v1"
17992 }
17993 },
17994 "put": {
17995 "description": "replace status of the specified Pod",
17996 "operationId": "replaceCoreV1NamespacedPodStatus",
17997 "parameters": [
17998 {
17999 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18000 "in": "query",
18001 "name": "dryRun",
18002 "schema": {
18003 "type": "string",
18004 "uniqueItems": true
18005 }
18006 },
18007 {
18008 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18009 "in": "query",
18010 "name": "fieldManager",
18011 "schema": {
18012 "type": "string",
18013 "uniqueItems": true
18014 }
18015 },
18016 {
18017 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
18018 "in": "query",
18019 "name": "fieldValidation",
18020 "schema": {
18021 "type": "string",
18022 "uniqueItems": true
18023 }
18024 }
18025 ],
18026 "requestBody": {
18027 "content": {
18028 "*/*": {
18029 "schema": {
18030 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18031 }
18032 }
18033 },
18034 "required": true
18035 },
18036 "responses": {
18037 "200": {
18038 "content": {
18039 "application/json": {
18040 "schema": {
18041 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18042 }
18043 },
18044 "application/vnd.kubernetes.protobuf": {
18045 "schema": {
18046 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18047 }
18048 },
18049 "application/yaml": {
18050 "schema": {
18051 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18052 }
18053 }
18054 },
18055 "description": "OK"
18056 },
18057 "201": {
18058 "content": {
18059 "application/json": {
18060 "schema": {
18061 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18062 }
18063 },
18064 "application/vnd.kubernetes.protobuf": {
18065 "schema": {
18066 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18067 }
18068 },
18069 "application/yaml": {
18070 "schema": {
18071 "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod"
18072 }
18073 }
18074 },
18075 "description": "Created"
18076 },
18077 "401": {
18078 "description": "Unauthorized"
18079 }
18080 },
18081 "tags": [
18082 "core_v1"
18083 ],
18084 "x-kubernetes-action": "put",
18085 "x-kubernetes-group-version-kind": {
18086 "group": "",
18087 "kind": "Pod",
18088 "version": "v1"
18089 }
18090 }
18091 },
18092 "/api/v1/namespaces/{namespace}/podtemplates": {
18093 "delete": {
18094 "description": "delete collection of PodTemplate",
18095 "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
18096 "parameters": [
18097 {
18098 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18099 "in": "query",
18100 "name": "continue",
18101 "schema": {
18102 "type": "string",
18103 "uniqueItems": true
18104 }
18105 },
18106 {
18107 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18108 "in": "query",
18109 "name": "dryRun",
18110 "schema": {
18111 "type": "string",
18112 "uniqueItems": true
18113 }
18114 },
18115 {
18116 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18117 "in": "query",
18118 "name": "fieldSelector",
18119 "schema": {
18120 "type": "string",
18121 "uniqueItems": true
18122 }
18123 },
18124 {
18125 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18126 "in": "query",
18127 "name": "gracePeriodSeconds",
18128 "schema": {
18129 "type": "integer",
18130 "uniqueItems": true
18131 }
18132 },
18133 {
18134 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18135 "in": "query",
18136 "name": "labelSelector",
18137 "schema": {
18138 "type": "string",
18139 "uniqueItems": true
18140 }
18141 },
18142 {
18143 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18144 "in": "query",
18145 "name": "limit",
18146 "schema": {
18147 "type": "integer",
18148 "uniqueItems": true
18149 }
18150 },
18151 {
18152 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18153 "in": "query",
18154 "name": "orphanDependents",
18155 "schema": {
18156 "type": "boolean",
18157 "uniqueItems": true
18158 }
18159 },
18160 {
18161 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18162 "in": "query",
18163 "name": "propagationPolicy",
18164 "schema": {
18165 "type": "string",
18166 "uniqueItems": true
18167 }
18168 },
18169 {
18170 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18171 "in": "query",
18172 "name": "resourceVersion",
18173 "schema": {
18174 "type": "string",
18175 "uniqueItems": true
18176 }
18177 },
18178 {
18179 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18180 "in": "query",
18181 "name": "resourceVersionMatch",
18182 "schema": {
18183 "type": "string",
18184 "uniqueItems": true
18185 }
18186 },
18187 {
18188 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
18189 "in": "query",
18190 "name": "sendInitialEvents",
18191 "schema": {
18192 "type": "boolean",
18193 "uniqueItems": true
18194 }
18195 },
18196 {
18197 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18198 "in": "query",
18199 "name": "timeoutSeconds",
18200 "schema": {
18201 "type": "integer",
18202 "uniqueItems": true
18203 }
18204 }
18205 ],
18206 "requestBody": {
18207 "content": {
18208 "*/*": {
18209 "schema": {
18210 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
18211 }
18212 }
18213 }
18214 },
18215 "responses": {
18216 "200": {
18217 "content": {
18218 "application/json": {
18219 "schema": {
18220 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18221 }
18222 },
18223 "application/vnd.kubernetes.protobuf": {
18224 "schema": {
18225 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18226 }
18227 },
18228 "application/yaml": {
18229 "schema": {
18230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18231 }
18232 }
18233 },
18234 "description": "OK"
18235 },
18236 "401": {
18237 "description": "Unauthorized"
18238 }
18239 },
18240 "tags": [
18241 "core_v1"
18242 ],
18243 "x-kubernetes-action": "deletecollection",
18244 "x-kubernetes-group-version-kind": {
18245 "group": "",
18246 "kind": "PodTemplate",
18247 "version": "v1"
18248 }
18249 },
18250 "get": {
18251 "description": "list or watch objects of kind PodTemplate",
18252 "operationId": "listCoreV1NamespacedPodTemplate",
18253 "parameters": [
18254 {
18255 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
18256 "in": "query",
18257 "name": "allowWatchBookmarks",
18258 "schema": {
18259 "type": "boolean",
18260 "uniqueItems": true
18261 }
18262 },
18263 {
18264 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18265 "in": "query",
18266 "name": "continue",
18267 "schema": {
18268 "type": "string",
18269 "uniqueItems": true
18270 }
18271 },
18272 {
18273 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18274 "in": "query",
18275 "name": "fieldSelector",
18276 "schema": {
18277 "type": "string",
18278 "uniqueItems": true
18279 }
18280 },
18281 {
18282 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18283 "in": "query",
18284 "name": "labelSelector",
18285 "schema": {
18286 "type": "string",
18287 "uniqueItems": true
18288 }
18289 },
18290 {
18291 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18292 "in": "query",
18293 "name": "limit",
18294 "schema": {
18295 "type": "integer",
18296 "uniqueItems": true
18297 }
18298 },
18299 {
18300 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18301 "in": "query",
18302 "name": "resourceVersion",
18303 "schema": {
18304 "type": "string",
18305 "uniqueItems": true
18306 }
18307 },
18308 {
18309 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18310 "in": "query",
18311 "name": "resourceVersionMatch",
18312 "schema": {
18313 "type": "string",
18314 "uniqueItems": true
18315 }
18316 },
18317 {
18318 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
18319 "in": "query",
18320 "name": "sendInitialEvents",
18321 "schema": {
18322 "type": "boolean",
18323 "uniqueItems": true
18324 }
18325 },
18326 {
18327 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18328 "in": "query",
18329 "name": "timeoutSeconds",
18330 "schema": {
18331 "type": "integer",
18332 "uniqueItems": true
18333 }
18334 },
18335 {
18336 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
18337 "in": "query",
18338 "name": "watch",
18339 "schema": {
18340 "type": "boolean",
18341 "uniqueItems": true
18342 }
18343 }
18344 ],
18345 "responses": {
18346 "200": {
18347 "content": {
18348 "application/json": {
18349 "schema": {
18350 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
18351 }
18352 },
18353 "application/json;stream=watch": {
18354 "schema": {
18355 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
18356 }
18357 },
18358 "application/vnd.kubernetes.protobuf": {
18359 "schema": {
18360 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
18361 }
18362 },
18363 "application/vnd.kubernetes.protobuf;stream=watch": {
18364 "schema": {
18365 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
18366 }
18367 },
18368 "application/yaml": {
18369 "schema": {
18370 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
18371 }
18372 }
18373 },
18374 "description": "OK"
18375 },
18376 "401": {
18377 "description": "Unauthorized"
18378 }
18379 },
18380 "tags": [
18381 "core_v1"
18382 ],
18383 "x-kubernetes-action": "list",
18384 "x-kubernetes-group-version-kind": {
18385 "group": "",
18386 "kind": "PodTemplate",
18387 "version": "v1"
18388 }
18389 },
18390 "parameters": [
18391 {
18392 "description": "object name and auth scope, such as for teams and projects",
18393 "in": "path",
18394 "name": "namespace",
18395 "required": true,
18396 "schema": {
18397 "type": "string",
18398 "uniqueItems": true
18399 }
18400 },
18401 {
18402 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
18403 "in": "query",
18404 "name": "pretty",
18405 "schema": {
18406 "type": "string",
18407 "uniqueItems": true
18408 }
18409 }
18410 ],
18411 "post": {
18412 "description": "create a PodTemplate",
18413 "operationId": "createCoreV1NamespacedPodTemplate",
18414 "parameters": [
18415 {
18416 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18417 "in": "query",
18418 "name": "dryRun",
18419 "schema": {
18420 "type": "string",
18421 "uniqueItems": true
18422 }
18423 },
18424 {
18425 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18426 "in": "query",
18427 "name": "fieldManager",
18428 "schema": {
18429 "type": "string",
18430 "uniqueItems": true
18431 }
18432 },
18433 {
18434 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
18435 "in": "query",
18436 "name": "fieldValidation",
18437 "schema": {
18438 "type": "string",
18439 "uniqueItems": true
18440 }
18441 }
18442 ],
18443 "requestBody": {
18444 "content": {
18445 "*/*": {
18446 "schema": {
18447 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18448 }
18449 }
18450 },
18451 "required": true
18452 },
18453 "responses": {
18454 "200": {
18455 "content": {
18456 "application/json": {
18457 "schema": {
18458 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18459 }
18460 },
18461 "application/vnd.kubernetes.protobuf": {
18462 "schema": {
18463 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18464 }
18465 },
18466 "application/yaml": {
18467 "schema": {
18468 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18469 }
18470 }
18471 },
18472 "description": "OK"
18473 },
18474 "201": {
18475 "content": {
18476 "application/json": {
18477 "schema": {
18478 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18479 }
18480 },
18481 "application/vnd.kubernetes.protobuf": {
18482 "schema": {
18483 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18484 }
18485 },
18486 "application/yaml": {
18487 "schema": {
18488 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18489 }
18490 }
18491 },
18492 "description": "Created"
18493 },
18494 "202": {
18495 "content": {
18496 "application/json": {
18497 "schema": {
18498 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18499 }
18500 },
18501 "application/vnd.kubernetes.protobuf": {
18502 "schema": {
18503 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18504 }
18505 },
18506 "application/yaml": {
18507 "schema": {
18508 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18509 }
18510 }
18511 },
18512 "description": "Accepted"
18513 },
18514 "401": {
18515 "description": "Unauthorized"
18516 }
18517 },
18518 "tags": [
18519 "core_v1"
18520 ],
18521 "x-kubernetes-action": "post",
18522 "x-kubernetes-group-version-kind": {
18523 "group": "",
18524 "kind": "PodTemplate",
18525 "version": "v1"
18526 }
18527 }
18528 },
18529 "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
18530 "delete": {
18531 "description": "delete a PodTemplate",
18532 "operationId": "deleteCoreV1NamespacedPodTemplate",
18533 "parameters": [
18534 {
18535 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18536 "in": "query",
18537 "name": "dryRun",
18538 "schema": {
18539 "type": "string",
18540 "uniqueItems": true
18541 }
18542 },
18543 {
18544 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18545 "in": "query",
18546 "name": "gracePeriodSeconds",
18547 "schema": {
18548 "type": "integer",
18549 "uniqueItems": true
18550 }
18551 },
18552 {
18553 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18554 "in": "query",
18555 "name": "orphanDependents",
18556 "schema": {
18557 "type": "boolean",
18558 "uniqueItems": true
18559 }
18560 },
18561 {
18562 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18563 "in": "query",
18564 "name": "propagationPolicy",
18565 "schema": {
18566 "type": "string",
18567 "uniqueItems": true
18568 }
18569 }
18570 ],
18571 "requestBody": {
18572 "content": {
18573 "*/*": {
18574 "schema": {
18575 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
18576 }
18577 }
18578 }
18579 },
18580 "responses": {
18581 "200": {
18582 "content": {
18583 "application/json": {
18584 "schema": {
18585 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18586 }
18587 },
18588 "application/vnd.kubernetes.protobuf": {
18589 "schema": {
18590 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18591 }
18592 },
18593 "application/yaml": {
18594 "schema": {
18595 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18596 }
18597 }
18598 },
18599 "description": "OK"
18600 },
18601 "202": {
18602 "content": {
18603 "application/json": {
18604 "schema": {
18605 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18606 }
18607 },
18608 "application/vnd.kubernetes.protobuf": {
18609 "schema": {
18610 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18611 }
18612 },
18613 "application/yaml": {
18614 "schema": {
18615 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18616 }
18617 }
18618 },
18619 "description": "Accepted"
18620 },
18621 "401": {
18622 "description": "Unauthorized"
18623 }
18624 },
18625 "tags": [
18626 "core_v1"
18627 ],
18628 "x-kubernetes-action": "delete",
18629 "x-kubernetes-group-version-kind": {
18630 "group": "",
18631 "kind": "PodTemplate",
18632 "version": "v1"
18633 }
18634 },
18635 "get": {
18636 "description": "read the specified PodTemplate",
18637 "operationId": "readCoreV1NamespacedPodTemplate",
18638 "responses": {
18639 "200": {
18640 "content": {
18641 "application/json": {
18642 "schema": {
18643 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18644 }
18645 },
18646 "application/vnd.kubernetes.protobuf": {
18647 "schema": {
18648 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18649 }
18650 },
18651 "application/yaml": {
18652 "schema": {
18653 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18654 }
18655 }
18656 },
18657 "description": "OK"
18658 },
18659 "401": {
18660 "description": "Unauthorized"
18661 }
18662 },
18663 "tags": [
18664 "core_v1"
18665 ],
18666 "x-kubernetes-action": "get",
18667 "x-kubernetes-group-version-kind": {
18668 "group": "",
18669 "kind": "PodTemplate",
18670 "version": "v1"
18671 }
18672 },
18673 "parameters": [
18674 {
18675 "description": "name of the PodTemplate",
18676 "in": "path",
18677 "name": "name",
18678 "required": true,
18679 "schema": {
18680 "type": "string",
18681 "uniqueItems": true
18682 }
18683 },
18684 {
18685 "description": "object name and auth scope, such as for teams and projects",
18686 "in": "path",
18687 "name": "namespace",
18688 "required": true,
18689 "schema": {
18690 "type": "string",
18691 "uniqueItems": true
18692 }
18693 },
18694 {
18695 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
18696 "in": "query",
18697 "name": "pretty",
18698 "schema": {
18699 "type": "string",
18700 "uniqueItems": true
18701 }
18702 }
18703 ],
18704 "patch": {
18705 "description": "partially update the specified PodTemplate",
18706 "operationId": "patchCoreV1NamespacedPodTemplate",
18707 "parameters": [
18708 {
18709 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18710 "in": "query",
18711 "name": "dryRun",
18712 "schema": {
18713 "type": "string",
18714 "uniqueItems": true
18715 }
18716 },
18717 {
18718 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
18719 "in": "query",
18720 "name": "fieldManager",
18721 "schema": {
18722 "type": "string",
18723 "uniqueItems": true
18724 }
18725 },
18726 {
18727 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
18728 "in": "query",
18729 "name": "fieldValidation",
18730 "schema": {
18731 "type": "string",
18732 "uniqueItems": true
18733 }
18734 },
18735 {
18736 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
18737 "in": "query",
18738 "name": "force",
18739 "schema": {
18740 "type": "boolean",
18741 "uniqueItems": true
18742 }
18743 }
18744 ],
18745 "requestBody": {
18746 "content": {
18747 "application/apply-patch+yaml": {
18748 "schema": {
18749 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18750 }
18751 },
18752 "application/json-patch+json": {
18753 "schema": {
18754 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18755 }
18756 },
18757 "application/merge-patch+json": {
18758 "schema": {
18759 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18760 }
18761 },
18762 "application/strategic-merge-patch+json": {
18763 "schema": {
18764 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18765 }
18766 }
18767 },
18768 "required": true
18769 },
18770 "responses": {
18771 "200": {
18772 "content": {
18773 "application/json": {
18774 "schema": {
18775 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18776 }
18777 },
18778 "application/vnd.kubernetes.protobuf": {
18779 "schema": {
18780 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18781 }
18782 },
18783 "application/yaml": {
18784 "schema": {
18785 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18786 }
18787 }
18788 },
18789 "description": "OK"
18790 },
18791 "201": {
18792 "content": {
18793 "application/json": {
18794 "schema": {
18795 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18796 }
18797 },
18798 "application/vnd.kubernetes.protobuf": {
18799 "schema": {
18800 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18801 }
18802 },
18803 "application/yaml": {
18804 "schema": {
18805 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18806 }
18807 }
18808 },
18809 "description": "Created"
18810 },
18811 "401": {
18812 "description": "Unauthorized"
18813 }
18814 },
18815 "tags": [
18816 "core_v1"
18817 ],
18818 "x-kubernetes-action": "patch",
18819 "x-kubernetes-group-version-kind": {
18820 "group": "",
18821 "kind": "PodTemplate",
18822 "version": "v1"
18823 }
18824 },
18825 "put": {
18826 "description": "replace the specified PodTemplate",
18827 "operationId": "replaceCoreV1NamespacedPodTemplate",
18828 "parameters": [
18829 {
18830 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18831 "in": "query",
18832 "name": "dryRun",
18833 "schema": {
18834 "type": "string",
18835 "uniqueItems": true
18836 }
18837 },
18838 {
18839 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18840 "in": "query",
18841 "name": "fieldManager",
18842 "schema": {
18843 "type": "string",
18844 "uniqueItems": true
18845 }
18846 },
18847 {
18848 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
18849 "in": "query",
18850 "name": "fieldValidation",
18851 "schema": {
18852 "type": "string",
18853 "uniqueItems": true
18854 }
18855 }
18856 ],
18857 "requestBody": {
18858 "content": {
18859 "*/*": {
18860 "schema": {
18861 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18862 }
18863 }
18864 },
18865 "required": true
18866 },
18867 "responses": {
18868 "200": {
18869 "content": {
18870 "application/json": {
18871 "schema": {
18872 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18873 }
18874 },
18875 "application/vnd.kubernetes.protobuf": {
18876 "schema": {
18877 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18878 }
18879 },
18880 "application/yaml": {
18881 "schema": {
18882 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18883 }
18884 }
18885 },
18886 "description": "OK"
18887 },
18888 "201": {
18889 "content": {
18890 "application/json": {
18891 "schema": {
18892 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18893 }
18894 },
18895 "application/vnd.kubernetes.protobuf": {
18896 "schema": {
18897 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18898 }
18899 },
18900 "application/yaml": {
18901 "schema": {
18902 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate"
18903 }
18904 }
18905 },
18906 "description": "Created"
18907 },
18908 "401": {
18909 "description": "Unauthorized"
18910 }
18911 },
18912 "tags": [
18913 "core_v1"
18914 ],
18915 "x-kubernetes-action": "put",
18916 "x-kubernetes-group-version-kind": {
18917 "group": "",
18918 "kind": "PodTemplate",
18919 "version": "v1"
18920 }
18921 }
18922 },
18923 "/api/v1/namespaces/{namespace}/replicationcontrollers": {
18924 "delete": {
18925 "description": "delete collection of ReplicationController",
18926 "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
18927 "parameters": [
18928 {
18929 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18930 "in": "query",
18931 "name": "continue",
18932 "schema": {
18933 "type": "string",
18934 "uniqueItems": true
18935 }
18936 },
18937 {
18938 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18939 "in": "query",
18940 "name": "dryRun",
18941 "schema": {
18942 "type": "string",
18943 "uniqueItems": true
18944 }
18945 },
18946 {
18947 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18948 "in": "query",
18949 "name": "fieldSelector",
18950 "schema": {
18951 "type": "string",
18952 "uniqueItems": true
18953 }
18954 },
18955 {
18956 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18957 "in": "query",
18958 "name": "gracePeriodSeconds",
18959 "schema": {
18960 "type": "integer",
18961 "uniqueItems": true
18962 }
18963 },
18964 {
18965 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18966 "in": "query",
18967 "name": "labelSelector",
18968 "schema": {
18969 "type": "string",
18970 "uniqueItems": true
18971 }
18972 },
18973 {
18974 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18975 "in": "query",
18976 "name": "limit",
18977 "schema": {
18978 "type": "integer",
18979 "uniqueItems": true
18980 }
18981 },
18982 {
18983 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18984 "in": "query",
18985 "name": "orphanDependents",
18986 "schema": {
18987 "type": "boolean",
18988 "uniqueItems": true
18989 }
18990 },
18991 {
18992 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18993 "in": "query",
18994 "name": "propagationPolicy",
18995 "schema": {
18996 "type": "string",
18997 "uniqueItems": true
18998 }
18999 },
19000 {
19001 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19002 "in": "query",
19003 "name": "resourceVersion",
19004 "schema": {
19005 "type": "string",
19006 "uniqueItems": true
19007 }
19008 },
19009 {
19010 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19011 "in": "query",
19012 "name": "resourceVersionMatch",
19013 "schema": {
19014 "type": "string",
19015 "uniqueItems": true
19016 }
19017 },
19018 {
19019 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
19020 "in": "query",
19021 "name": "sendInitialEvents",
19022 "schema": {
19023 "type": "boolean",
19024 "uniqueItems": true
19025 }
19026 },
19027 {
19028 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19029 "in": "query",
19030 "name": "timeoutSeconds",
19031 "schema": {
19032 "type": "integer",
19033 "uniqueItems": true
19034 }
19035 }
19036 ],
19037 "requestBody": {
19038 "content": {
19039 "*/*": {
19040 "schema": {
19041 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19042 }
19043 }
19044 }
19045 },
19046 "responses": {
19047 "200": {
19048 "content": {
19049 "application/json": {
19050 "schema": {
19051 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19052 }
19053 },
19054 "application/vnd.kubernetes.protobuf": {
19055 "schema": {
19056 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19057 }
19058 },
19059 "application/yaml": {
19060 "schema": {
19061 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19062 }
19063 }
19064 },
19065 "description": "OK"
19066 },
19067 "401": {
19068 "description": "Unauthorized"
19069 }
19070 },
19071 "tags": [
19072 "core_v1"
19073 ],
19074 "x-kubernetes-action": "deletecollection",
19075 "x-kubernetes-group-version-kind": {
19076 "group": "",
19077 "kind": "ReplicationController",
19078 "version": "v1"
19079 }
19080 },
19081 "get": {
19082 "description": "list or watch objects of kind ReplicationController",
19083 "operationId": "listCoreV1NamespacedReplicationController",
19084 "parameters": [
19085 {
19086 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
19087 "in": "query",
19088 "name": "allowWatchBookmarks",
19089 "schema": {
19090 "type": "boolean",
19091 "uniqueItems": true
19092 }
19093 },
19094 {
19095 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19096 "in": "query",
19097 "name": "continue",
19098 "schema": {
19099 "type": "string",
19100 "uniqueItems": true
19101 }
19102 },
19103 {
19104 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19105 "in": "query",
19106 "name": "fieldSelector",
19107 "schema": {
19108 "type": "string",
19109 "uniqueItems": true
19110 }
19111 },
19112 {
19113 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19114 "in": "query",
19115 "name": "labelSelector",
19116 "schema": {
19117 "type": "string",
19118 "uniqueItems": true
19119 }
19120 },
19121 {
19122 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19123 "in": "query",
19124 "name": "limit",
19125 "schema": {
19126 "type": "integer",
19127 "uniqueItems": true
19128 }
19129 },
19130 {
19131 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19132 "in": "query",
19133 "name": "resourceVersion",
19134 "schema": {
19135 "type": "string",
19136 "uniqueItems": true
19137 }
19138 },
19139 {
19140 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19141 "in": "query",
19142 "name": "resourceVersionMatch",
19143 "schema": {
19144 "type": "string",
19145 "uniqueItems": true
19146 }
19147 },
19148 {
19149 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
19150 "in": "query",
19151 "name": "sendInitialEvents",
19152 "schema": {
19153 "type": "boolean",
19154 "uniqueItems": true
19155 }
19156 },
19157 {
19158 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19159 "in": "query",
19160 "name": "timeoutSeconds",
19161 "schema": {
19162 "type": "integer",
19163 "uniqueItems": true
19164 }
19165 },
19166 {
19167 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19168 "in": "query",
19169 "name": "watch",
19170 "schema": {
19171 "type": "boolean",
19172 "uniqueItems": true
19173 }
19174 }
19175 ],
19176 "responses": {
19177 "200": {
19178 "content": {
19179 "application/json": {
19180 "schema": {
19181 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
19182 }
19183 },
19184 "application/json;stream=watch": {
19185 "schema": {
19186 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
19187 }
19188 },
19189 "application/vnd.kubernetes.protobuf": {
19190 "schema": {
19191 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
19192 }
19193 },
19194 "application/vnd.kubernetes.protobuf;stream=watch": {
19195 "schema": {
19196 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
19197 }
19198 },
19199 "application/yaml": {
19200 "schema": {
19201 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
19202 }
19203 }
19204 },
19205 "description": "OK"
19206 },
19207 "401": {
19208 "description": "Unauthorized"
19209 }
19210 },
19211 "tags": [
19212 "core_v1"
19213 ],
19214 "x-kubernetes-action": "list",
19215 "x-kubernetes-group-version-kind": {
19216 "group": "",
19217 "kind": "ReplicationController",
19218 "version": "v1"
19219 }
19220 },
19221 "parameters": [
19222 {
19223 "description": "object name and auth scope, such as for teams and projects",
19224 "in": "path",
19225 "name": "namespace",
19226 "required": true,
19227 "schema": {
19228 "type": "string",
19229 "uniqueItems": true
19230 }
19231 },
19232 {
19233 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
19234 "in": "query",
19235 "name": "pretty",
19236 "schema": {
19237 "type": "string",
19238 "uniqueItems": true
19239 }
19240 }
19241 ],
19242 "post": {
19243 "description": "create a ReplicationController",
19244 "operationId": "createCoreV1NamespacedReplicationController",
19245 "parameters": [
19246 {
19247 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19248 "in": "query",
19249 "name": "dryRun",
19250 "schema": {
19251 "type": "string",
19252 "uniqueItems": true
19253 }
19254 },
19255 {
19256 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19257 "in": "query",
19258 "name": "fieldManager",
19259 "schema": {
19260 "type": "string",
19261 "uniqueItems": true
19262 }
19263 },
19264 {
19265 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
19266 "in": "query",
19267 "name": "fieldValidation",
19268 "schema": {
19269 "type": "string",
19270 "uniqueItems": true
19271 }
19272 }
19273 ],
19274 "requestBody": {
19275 "content": {
19276 "*/*": {
19277 "schema": {
19278 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19279 }
19280 }
19281 },
19282 "required": true
19283 },
19284 "responses": {
19285 "200": {
19286 "content": {
19287 "application/json": {
19288 "schema": {
19289 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19290 }
19291 },
19292 "application/vnd.kubernetes.protobuf": {
19293 "schema": {
19294 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19295 }
19296 },
19297 "application/yaml": {
19298 "schema": {
19299 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19300 }
19301 }
19302 },
19303 "description": "OK"
19304 },
19305 "201": {
19306 "content": {
19307 "application/json": {
19308 "schema": {
19309 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19310 }
19311 },
19312 "application/vnd.kubernetes.protobuf": {
19313 "schema": {
19314 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19315 }
19316 },
19317 "application/yaml": {
19318 "schema": {
19319 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19320 }
19321 }
19322 },
19323 "description": "Created"
19324 },
19325 "202": {
19326 "content": {
19327 "application/json": {
19328 "schema": {
19329 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19330 }
19331 },
19332 "application/vnd.kubernetes.protobuf": {
19333 "schema": {
19334 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19335 }
19336 },
19337 "application/yaml": {
19338 "schema": {
19339 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19340 }
19341 }
19342 },
19343 "description": "Accepted"
19344 },
19345 "401": {
19346 "description": "Unauthorized"
19347 }
19348 },
19349 "tags": [
19350 "core_v1"
19351 ],
19352 "x-kubernetes-action": "post",
19353 "x-kubernetes-group-version-kind": {
19354 "group": "",
19355 "kind": "ReplicationController",
19356 "version": "v1"
19357 }
19358 }
19359 },
19360 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
19361 "delete": {
19362 "description": "delete a ReplicationController",
19363 "operationId": "deleteCoreV1NamespacedReplicationController",
19364 "parameters": [
19365 {
19366 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19367 "in": "query",
19368 "name": "dryRun",
19369 "schema": {
19370 "type": "string",
19371 "uniqueItems": true
19372 }
19373 },
19374 {
19375 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
19376 "in": "query",
19377 "name": "gracePeriodSeconds",
19378 "schema": {
19379 "type": "integer",
19380 "uniqueItems": true
19381 }
19382 },
19383 {
19384 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
19385 "in": "query",
19386 "name": "orphanDependents",
19387 "schema": {
19388 "type": "boolean",
19389 "uniqueItems": true
19390 }
19391 },
19392 {
19393 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
19394 "in": "query",
19395 "name": "propagationPolicy",
19396 "schema": {
19397 "type": "string",
19398 "uniqueItems": true
19399 }
19400 }
19401 ],
19402 "requestBody": {
19403 "content": {
19404 "*/*": {
19405 "schema": {
19406 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19407 }
19408 }
19409 }
19410 },
19411 "responses": {
19412 "200": {
19413 "content": {
19414 "application/json": {
19415 "schema": {
19416 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19417 }
19418 },
19419 "application/vnd.kubernetes.protobuf": {
19420 "schema": {
19421 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19422 }
19423 },
19424 "application/yaml": {
19425 "schema": {
19426 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19427 }
19428 }
19429 },
19430 "description": "OK"
19431 },
19432 "202": {
19433 "content": {
19434 "application/json": {
19435 "schema": {
19436 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19437 }
19438 },
19439 "application/vnd.kubernetes.protobuf": {
19440 "schema": {
19441 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19442 }
19443 },
19444 "application/yaml": {
19445 "schema": {
19446 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19447 }
19448 }
19449 },
19450 "description": "Accepted"
19451 },
19452 "401": {
19453 "description": "Unauthorized"
19454 }
19455 },
19456 "tags": [
19457 "core_v1"
19458 ],
19459 "x-kubernetes-action": "delete",
19460 "x-kubernetes-group-version-kind": {
19461 "group": "",
19462 "kind": "ReplicationController",
19463 "version": "v1"
19464 }
19465 },
19466 "get": {
19467 "description": "read the specified ReplicationController",
19468 "operationId": "readCoreV1NamespacedReplicationController",
19469 "responses": {
19470 "200": {
19471 "content": {
19472 "application/json": {
19473 "schema": {
19474 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19475 }
19476 },
19477 "application/vnd.kubernetes.protobuf": {
19478 "schema": {
19479 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19480 }
19481 },
19482 "application/yaml": {
19483 "schema": {
19484 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19485 }
19486 }
19487 },
19488 "description": "OK"
19489 },
19490 "401": {
19491 "description": "Unauthorized"
19492 }
19493 },
19494 "tags": [
19495 "core_v1"
19496 ],
19497 "x-kubernetes-action": "get",
19498 "x-kubernetes-group-version-kind": {
19499 "group": "",
19500 "kind": "ReplicationController",
19501 "version": "v1"
19502 }
19503 },
19504 "parameters": [
19505 {
19506 "description": "name of the ReplicationController",
19507 "in": "path",
19508 "name": "name",
19509 "required": true,
19510 "schema": {
19511 "type": "string",
19512 "uniqueItems": true
19513 }
19514 },
19515 {
19516 "description": "object name and auth scope, such as for teams and projects",
19517 "in": "path",
19518 "name": "namespace",
19519 "required": true,
19520 "schema": {
19521 "type": "string",
19522 "uniqueItems": true
19523 }
19524 },
19525 {
19526 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
19527 "in": "query",
19528 "name": "pretty",
19529 "schema": {
19530 "type": "string",
19531 "uniqueItems": true
19532 }
19533 }
19534 ],
19535 "patch": {
19536 "description": "partially update the specified ReplicationController",
19537 "operationId": "patchCoreV1NamespacedReplicationController",
19538 "parameters": [
19539 {
19540 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19541 "in": "query",
19542 "name": "dryRun",
19543 "schema": {
19544 "type": "string",
19545 "uniqueItems": true
19546 }
19547 },
19548 {
19549 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
19550 "in": "query",
19551 "name": "fieldManager",
19552 "schema": {
19553 "type": "string",
19554 "uniqueItems": true
19555 }
19556 },
19557 {
19558 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
19559 "in": "query",
19560 "name": "fieldValidation",
19561 "schema": {
19562 "type": "string",
19563 "uniqueItems": true
19564 }
19565 },
19566 {
19567 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
19568 "in": "query",
19569 "name": "force",
19570 "schema": {
19571 "type": "boolean",
19572 "uniqueItems": true
19573 }
19574 }
19575 ],
19576 "requestBody": {
19577 "content": {
19578 "application/apply-patch+yaml": {
19579 "schema": {
19580 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19581 }
19582 },
19583 "application/json-patch+json": {
19584 "schema": {
19585 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19586 }
19587 },
19588 "application/merge-patch+json": {
19589 "schema": {
19590 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19591 }
19592 },
19593 "application/strategic-merge-patch+json": {
19594 "schema": {
19595 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19596 }
19597 }
19598 },
19599 "required": true
19600 },
19601 "responses": {
19602 "200": {
19603 "content": {
19604 "application/json": {
19605 "schema": {
19606 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19607 }
19608 },
19609 "application/vnd.kubernetes.protobuf": {
19610 "schema": {
19611 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19612 }
19613 },
19614 "application/yaml": {
19615 "schema": {
19616 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19617 }
19618 }
19619 },
19620 "description": "OK"
19621 },
19622 "201": {
19623 "content": {
19624 "application/json": {
19625 "schema": {
19626 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19627 }
19628 },
19629 "application/vnd.kubernetes.protobuf": {
19630 "schema": {
19631 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19632 }
19633 },
19634 "application/yaml": {
19635 "schema": {
19636 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19637 }
19638 }
19639 },
19640 "description": "Created"
19641 },
19642 "401": {
19643 "description": "Unauthorized"
19644 }
19645 },
19646 "tags": [
19647 "core_v1"
19648 ],
19649 "x-kubernetes-action": "patch",
19650 "x-kubernetes-group-version-kind": {
19651 "group": "",
19652 "kind": "ReplicationController",
19653 "version": "v1"
19654 }
19655 },
19656 "put": {
19657 "description": "replace the specified ReplicationController",
19658 "operationId": "replaceCoreV1NamespacedReplicationController",
19659 "parameters": [
19660 {
19661 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19662 "in": "query",
19663 "name": "dryRun",
19664 "schema": {
19665 "type": "string",
19666 "uniqueItems": true
19667 }
19668 },
19669 {
19670 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19671 "in": "query",
19672 "name": "fieldManager",
19673 "schema": {
19674 "type": "string",
19675 "uniqueItems": true
19676 }
19677 },
19678 {
19679 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
19680 "in": "query",
19681 "name": "fieldValidation",
19682 "schema": {
19683 "type": "string",
19684 "uniqueItems": true
19685 }
19686 }
19687 ],
19688 "requestBody": {
19689 "content": {
19690 "*/*": {
19691 "schema": {
19692 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19693 }
19694 }
19695 },
19696 "required": true
19697 },
19698 "responses": {
19699 "200": {
19700 "content": {
19701 "application/json": {
19702 "schema": {
19703 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19704 }
19705 },
19706 "application/vnd.kubernetes.protobuf": {
19707 "schema": {
19708 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19709 }
19710 },
19711 "application/yaml": {
19712 "schema": {
19713 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19714 }
19715 }
19716 },
19717 "description": "OK"
19718 },
19719 "201": {
19720 "content": {
19721 "application/json": {
19722 "schema": {
19723 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19724 }
19725 },
19726 "application/vnd.kubernetes.protobuf": {
19727 "schema": {
19728 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19729 }
19730 },
19731 "application/yaml": {
19732 "schema": {
19733 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
19734 }
19735 }
19736 },
19737 "description": "Created"
19738 },
19739 "401": {
19740 "description": "Unauthorized"
19741 }
19742 },
19743 "tags": [
19744 "core_v1"
19745 ],
19746 "x-kubernetes-action": "put",
19747 "x-kubernetes-group-version-kind": {
19748 "group": "",
19749 "kind": "ReplicationController",
19750 "version": "v1"
19751 }
19752 }
19753 },
19754 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
19755 "get": {
19756 "description": "read scale of the specified ReplicationController",
19757 "operationId": "readCoreV1NamespacedReplicationControllerScale",
19758 "responses": {
19759 "200": {
19760 "content": {
19761 "application/json": {
19762 "schema": {
19763 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19764 }
19765 },
19766 "application/vnd.kubernetes.protobuf": {
19767 "schema": {
19768 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19769 }
19770 },
19771 "application/yaml": {
19772 "schema": {
19773 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19774 }
19775 }
19776 },
19777 "description": "OK"
19778 },
19779 "401": {
19780 "description": "Unauthorized"
19781 }
19782 },
19783 "tags": [
19784 "core_v1"
19785 ],
19786 "x-kubernetes-action": "get",
19787 "x-kubernetes-group-version-kind": {
19788 "group": "autoscaling",
19789 "kind": "Scale",
19790 "version": "v1"
19791 }
19792 },
19793 "parameters": [
19794 {
19795 "description": "name of the Scale",
19796 "in": "path",
19797 "name": "name",
19798 "required": true,
19799 "schema": {
19800 "type": "string",
19801 "uniqueItems": true
19802 }
19803 },
19804 {
19805 "description": "object name and auth scope, such as for teams and projects",
19806 "in": "path",
19807 "name": "namespace",
19808 "required": true,
19809 "schema": {
19810 "type": "string",
19811 "uniqueItems": true
19812 }
19813 },
19814 {
19815 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
19816 "in": "query",
19817 "name": "pretty",
19818 "schema": {
19819 "type": "string",
19820 "uniqueItems": true
19821 }
19822 }
19823 ],
19824 "patch": {
19825 "description": "partially update scale of the specified ReplicationController",
19826 "operationId": "patchCoreV1NamespacedReplicationControllerScale",
19827 "parameters": [
19828 {
19829 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19830 "in": "query",
19831 "name": "dryRun",
19832 "schema": {
19833 "type": "string",
19834 "uniqueItems": true
19835 }
19836 },
19837 {
19838 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
19839 "in": "query",
19840 "name": "fieldManager",
19841 "schema": {
19842 "type": "string",
19843 "uniqueItems": true
19844 }
19845 },
19846 {
19847 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
19848 "in": "query",
19849 "name": "fieldValidation",
19850 "schema": {
19851 "type": "string",
19852 "uniqueItems": true
19853 }
19854 },
19855 {
19856 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
19857 "in": "query",
19858 "name": "force",
19859 "schema": {
19860 "type": "boolean",
19861 "uniqueItems": true
19862 }
19863 }
19864 ],
19865 "requestBody": {
19866 "content": {
19867 "application/apply-patch+yaml": {
19868 "schema": {
19869 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19870 }
19871 },
19872 "application/json-patch+json": {
19873 "schema": {
19874 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19875 }
19876 },
19877 "application/merge-patch+json": {
19878 "schema": {
19879 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19880 }
19881 },
19882 "application/strategic-merge-patch+json": {
19883 "schema": {
19884 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19885 }
19886 }
19887 },
19888 "required": true
19889 },
19890 "responses": {
19891 "200": {
19892 "content": {
19893 "application/json": {
19894 "schema": {
19895 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19896 }
19897 },
19898 "application/vnd.kubernetes.protobuf": {
19899 "schema": {
19900 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19901 }
19902 },
19903 "application/yaml": {
19904 "schema": {
19905 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19906 }
19907 }
19908 },
19909 "description": "OK"
19910 },
19911 "201": {
19912 "content": {
19913 "application/json": {
19914 "schema": {
19915 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19916 }
19917 },
19918 "application/vnd.kubernetes.protobuf": {
19919 "schema": {
19920 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19921 }
19922 },
19923 "application/yaml": {
19924 "schema": {
19925 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19926 }
19927 }
19928 },
19929 "description": "Created"
19930 },
19931 "401": {
19932 "description": "Unauthorized"
19933 }
19934 },
19935 "tags": [
19936 "core_v1"
19937 ],
19938 "x-kubernetes-action": "patch",
19939 "x-kubernetes-group-version-kind": {
19940 "group": "autoscaling",
19941 "kind": "Scale",
19942 "version": "v1"
19943 }
19944 },
19945 "put": {
19946 "description": "replace scale of the specified ReplicationController",
19947 "operationId": "replaceCoreV1NamespacedReplicationControllerScale",
19948 "parameters": [
19949 {
19950 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19951 "in": "query",
19952 "name": "dryRun",
19953 "schema": {
19954 "type": "string",
19955 "uniqueItems": true
19956 }
19957 },
19958 {
19959 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19960 "in": "query",
19961 "name": "fieldManager",
19962 "schema": {
19963 "type": "string",
19964 "uniqueItems": true
19965 }
19966 },
19967 {
19968 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
19969 "in": "query",
19970 "name": "fieldValidation",
19971 "schema": {
19972 "type": "string",
19973 "uniqueItems": true
19974 }
19975 }
19976 ],
19977 "requestBody": {
19978 "content": {
19979 "*/*": {
19980 "schema": {
19981 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19982 }
19983 }
19984 },
19985 "required": true
19986 },
19987 "responses": {
19988 "200": {
19989 "content": {
19990 "application/json": {
19991 "schema": {
19992 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19993 }
19994 },
19995 "application/vnd.kubernetes.protobuf": {
19996 "schema": {
19997 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
19998 }
19999 },
20000 "application/yaml": {
20001 "schema": {
20002 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
20003 }
20004 }
20005 },
20006 "description": "OK"
20007 },
20008 "201": {
20009 "content": {
20010 "application/json": {
20011 "schema": {
20012 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
20013 }
20014 },
20015 "application/vnd.kubernetes.protobuf": {
20016 "schema": {
20017 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
20018 }
20019 },
20020 "application/yaml": {
20021 "schema": {
20022 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale"
20023 }
20024 }
20025 },
20026 "description": "Created"
20027 },
20028 "401": {
20029 "description": "Unauthorized"
20030 }
20031 },
20032 "tags": [
20033 "core_v1"
20034 ],
20035 "x-kubernetes-action": "put",
20036 "x-kubernetes-group-version-kind": {
20037 "group": "autoscaling",
20038 "kind": "Scale",
20039 "version": "v1"
20040 }
20041 }
20042 },
20043 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
20044 "get": {
20045 "description": "read status of the specified ReplicationController",
20046 "operationId": "readCoreV1NamespacedReplicationControllerStatus",
20047 "responses": {
20048 "200": {
20049 "content": {
20050 "application/json": {
20051 "schema": {
20052 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20053 }
20054 },
20055 "application/vnd.kubernetes.protobuf": {
20056 "schema": {
20057 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20058 }
20059 },
20060 "application/yaml": {
20061 "schema": {
20062 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20063 }
20064 }
20065 },
20066 "description": "OK"
20067 },
20068 "401": {
20069 "description": "Unauthorized"
20070 }
20071 },
20072 "tags": [
20073 "core_v1"
20074 ],
20075 "x-kubernetes-action": "get",
20076 "x-kubernetes-group-version-kind": {
20077 "group": "",
20078 "kind": "ReplicationController",
20079 "version": "v1"
20080 }
20081 },
20082 "parameters": [
20083 {
20084 "description": "name of the ReplicationController",
20085 "in": "path",
20086 "name": "name",
20087 "required": true,
20088 "schema": {
20089 "type": "string",
20090 "uniqueItems": true
20091 }
20092 },
20093 {
20094 "description": "object name and auth scope, such as for teams and projects",
20095 "in": "path",
20096 "name": "namespace",
20097 "required": true,
20098 "schema": {
20099 "type": "string",
20100 "uniqueItems": true
20101 }
20102 },
20103 {
20104 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
20105 "in": "query",
20106 "name": "pretty",
20107 "schema": {
20108 "type": "string",
20109 "uniqueItems": true
20110 }
20111 }
20112 ],
20113 "patch": {
20114 "description": "partially update status of the specified ReplicationController",
20115 "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
20116 "parameters": [
20117 {
20118 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20119 "in": "query",
20120 "name": "dryRun",
20121 "schema": {
20122 "type": "string",
20123 "uniqueItems": true
20124 }
20125 },
20126 {
20127 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
20128 "in": "query",
20129 "name": "fieldManager",
20130 "schema": {
20131 "type": "string",
20132 "uniqueItems": true
20133 }
20134 },
20135 {
20136 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
20137 "in": "query",
20138 "name": "fieldValidation",
20139 "schema": {
20140 "type": "string",
20141 "uniqueItems": true
20142 }
20143 },
20144 {
20145 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
20146 "in": "query",
20147 "name": "force",
20148 "schema": {
20149 "type": "boolean",
20150 "uniqueItems": true
20151 }
20152 }
20153 ],
20154 "requestBody": {
20155 "content": {
20156 "application/apply-patch+yaml": {
20157 "schema": {
20158 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20159 }
20160 },
20161 "application/json-patch+json": {
20162 "schema": {
20163 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20164 }
20165 },
20166 "application/merge-patch+json": {
20167 "schema": {
20168 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20169 }
20170 },
20171 "application/strategic-merge-patch+json": {
20172 "schema": {
20173 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20174 }
20175 }
20176 },
20177 "required": true
20178 },
20179 "responses": {
20180 "200": {
20181 "content": {
20182 "application/json": {
20183 "schema": {
20184 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20185 }
20186 },
20187 "application/vnd.kubernetes.protobuf": {
20188 "schema": {
20189 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20190 }
20191 },
20192 "application/yaml": {
20193 "schema": {
20194 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20195 }
20196 }
20197 },
20198 "description": "OK"
20199 },
20200 "201": {
20201 "content": {
20202 "application/json": {
20203 "schema": {
20204 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20205 }
20206 },
20207 "application/vnd.kubernetes.protobuf": {
20208 "schema": {
20209 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20210 }
20211 },
20212 "application/yaml": {
20213 "schema": {
20214 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20215 }
20216 }
20217 },
20218 "description": "Created"
20219 },
20220 "401": {
20221 "description": "Unauthorized"
20222 }
20223 },
20224 "tags": [
20225 "core_v1"
20226 ],
20227 "x-kubernetes-action": "patch",
20228 "x-kubernetes-group-version-kind": {
20229 "group": "",
20230 "kind": "ReplicationController",
20231 "version": "v1"
20232 }
20233 },
20234 "put": {
20235 "description": "replace status of the specified ReplicationController",
20236 "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
20237 "parameters": [
20238 {
20239 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20240 "in": "query",
20241 "name": "dryRun",
20242 "schema": {
20243 "type": "string",
20244 "uniqueItems": true
20245 }
20246 },
20247 {
20248 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20249 "in": "query",
20250 "name": "fieldManager",
20251 "schema": {
20252 "type": "string",
20253 "uniqueItems": true
20254 }
20255 },
20256 {
20257 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
20258 "in": "query",
20259 "name": "fieldValidation",
20260 "schema": {
20261 "type": "string",
20262 "uniqueItems": true
20263 }
20264 }
20265 ],
20266 "requestBody": {
20267 "content": {
20268 "*/*": {
20269 "schema": {
20270 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20271 }
20272 }
20273 },
20274 "required": true
20275 },
20276 "responses": {
20277 "200": {
20278 "content": {
20279 "application/json": {
20280 "schema": {
20281 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20282 }
20283 },
20284 "application/vnd.kubernetes.protobuf": {
20285 "schema": {
20286 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20287 }
20288 },
20289 "application/yaml": {
20290 "schema": {
20291 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20292 }
20293 }
20294 },
20295 "description": "OK"
20296 },
20297 "201": {
20298 "content": {
20299 "application/json": {
20300 "schema": {
20301 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20302 }
20303 },
20304 "application/vnd.kubernetes.protobuf": {
20305 "schema": {
20306 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20307 }
20308 },
20309 "application/yaml": {
20310 "schema": {
20311 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController"
20312 }
20313 }
20314 },
20315 "description": "Created"
20316 },
20317 "401": {
20318 "description": "Unauthorized"
20319 }
20320 },
20321 "tags": [
20322 "core_v1"
20323 ],
20324 "x-kubernetes-action": "put",
20325 "x-kubernetes-group-version-kind": {
20326 "group": "",
20327 "kind": "ReplicationController",
20328 "version": "v1"
20329 }
20330 }
20331 },
20332 "/api/v1/namespaces/{namespace}/resourcequotas": {
20333 "delete": {
20334 "description": "delete collection of ResourceQuota",
20335 "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
20336 "parameters": [
20337 {
20338 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20339 "in": "query",
20340 "name": "continue",
20341 "schema": {
20342 "type": "string",
20343 "uniqueItems": true
20344 }
20345 },
20346 {
20347 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20348 "in": "query",
20349 "name": "dryRun",
20350 "schema": {
20351 "type": "string",
20352 "uniqueItems": true
20353 }
20354 },
20355 {
20356 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20357 "in": "query",
20358 "name": "fieldSelector",
20359 "schema": {
20360 "type": "string",
20361 "uniqueItems": true
20362 }
20363 },
20364 {
20365 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20366 "in": "query",
20367 "name": "gracePeriodSeconds",
20368 "schema": {
20369 "type": "integer",
20370 "uniqueItems": true
20371 }
20372 },
20373 {
20374 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20375 "in": "query",
20376 "name": "labelSelector",
20377 "schema": {
20378 "type": "string",
20379 "uniqueItems": true
20380 }
20381 },
20382 {
20383 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20384 "in": "query",
20385 "name": "limit",
20386 "schema": {
20387 "type": "integer",
20388 "uniqueItems": true
20389 }
20390 },
20391 {
20392 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20393 "in": "query",
20394 "name": "orphanDependents",
20395 "schema": {
20396 "type": "boolean",
20397 "uniqueItems": true
20398 }
20399 },
20400 {
20401 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20402 "in": "query",
20403 "name": "propagationPolicy",
20404 "schema": {
20405 "type": "string",
20406 "uniqueItems": true
20407 }
20408 },
20409 {
20410 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20411 "in": "query",
20412 "name": "resourceVersion",
20413 "schema": {
20414 "type": "string",
20415 "uniqueItems": true
20416 }
20417 },
20418 {
20419 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20420 "in": "query",
20421 "name": "resourceVersionMatch",
20422 "schema": {
20423 "type": "string",
20424 "uniqueItems": true
20425 }
20426 },
20427 {
20428 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
20429 "in": "query",
20430 "name": "sendInitialEvents",
20431 "schema": {
20432 "type": "boolean",
20433 "uniqueItems": true
20434 }
20435 },
20436 {
20437 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20438 "in": "query",
20439 "name": "timeoutSeconds",
20440 "schema": {
20441 "type": "integer",
20442 "uniqueItems": true
20443 }
20444 }
20445 ],
20446 "requestBody": {
20447 "content": {
20448 "*/*": {
20449 "schema": {
20450 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20451 }
20452 }
20453 }
20454 },
20455 "responses": {
20456 "200": {
20457 "content": {
20458 "application/json": {
20459 "schema": {
20460 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20461 }
20462 },
20463 "application/vnd.kubernetes.protobuf": {
20464 "schema": {
20465 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20466 }
20467 },
20468 "application/yaml": {
20469 "schema": {
20470 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20471 }
20472 }
20473 },
20474 "description": "OK"
20475 },
20476 "401": {
20477 "description": "Unauthorized"
20478 }
20479 },
20480 "tags": [
20481 "core_v1"
20482 ],
20483 "x-kubernetes-action": "deletecollection",
20484 "x-kubernetes-group-version-kind": {
20485 "group": "",
20486 "kind": "ResourceQuota",
20487 "version": "v1"
20488 }
20489 },
20490 "get": {
20491 "description": "list or watch objects of kind ResourceQuota",
20492 "operationId": "listCoreV1NamespacedResourceQuota",
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.",
20496 "in": "query",
20497 "name": "allowWatchBookmarks",
20498 "schema": {
20499 "type": "boolean",
20500 "uniqueItems": true
20501 }
20502 },
20503 {
20504 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20505 "in": "query",
20506 "name": "continue",
20507 "schema": {
20508 "type": "string",
20509 "uniqueItems": true
20510 }
20511 },
20512 {
20513 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20514 "in": "query",
20515 "name": "fieldSelector",
20516 "schema": {
20517 "type": "string",
20518 "uniqueItems": true
20519 }
20520 },
20521 {
20522 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20523 "in": "query",
20524 "name": "labelSelector",
20525 "schema": {
20526 "type": "string",
20527 "uniqueItems": true
20528 }
20529 },
20530 {
20531 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20532 "in": "query",
20533 "name": "limit",
20534 "schema": {
20535 "type": "integer",
20536 "uniqueItems": true
20537 }
20538 },
20539 {
20540 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20541 "in": "query",
20542 "name": "resourceVersion",
20543 "schema": {
20544 "type": "string",
20545 "uniqueItems": true
20546 }
20547 },
20548 {
20549 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20550 "in": "query",
20551 "name": "resourceVersionMatch",
20552 "schema": {
20553 "type": "string",
20554 "uniqueItems": true
20555 }
20556 },
20557 {
20558 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
20559 "in": "query",
20560 "name": "sendInitialEvents",
20561 "schema": {
20562 "type": "boolean",
20563 "uniqueItems": true
20564 }
20565 },
20566 {
20567 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20568 "in": "query",
20569 "name": "timeoutSeconds",
20570 "schema": {
20571 "type": "integer",
20572 "uniqueItems": true
20573 }
20574 },
20575 {
20576 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20577 "in": "query",
20578 "name": "watch",
20579 "schema": {
20580 "type": "boolean",
20581 "uniqueItems": true
20582 }
20583 }
20584 ],
20585 "responses": {
20586 "200": {
20587 "content": {
20588 "application/json": {
20589 "schema": {
20590 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
20591 }
20592 },
20593 "application/json;stream=watch": {
20594 "schema": {
20595 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
20596 }
20597 },
20598 "application/vnd.kubernetes.protobuf": {
20599 "schema": {
20600 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
20601 }
20602 },
20603 "application/vnd.kubernetes.protobuf;stream=watch": {
20604 "schema": {
20605 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
20606 }
20607 },
20608 "application/yaml": {
20609 "schema": {
20610 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
20611 }
20612 }
20613 },
20614 "description": "OK"
20615 },
20616 "401": {
20617 "description": "Unauthorized"
20618 }
20619 },
20620 "tags": [
20621 "core_v1"
20622 ],
20623 "x-kubernetes-action": "list",
20624 "x-kubernetes-group-version-kind": {
20625 "group": "",
20626 "kind": "ResourceQuota",
20627 "version": "v1"
20628 }
20629 },
20630 "parameters": [
20631 {
20632 "description": "object name and auth scope, such as for teams and projects",
20633 "in": "path",
20634 "name": "namespace",
20635 "required": true,
20636 "schema": {
20637 "type": "string",
20638 "uniqueItems": true
20639 }
20640 },
20641 {
20642 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
20643 "in": "query",
20644 "name": "pretty",
20645 "schema": {
20646 "type": "string",
20647 "uniqueItems": true
20648 }
20649 }
20650 ],
20651 "post": {
20652 "description": "create a ResourceQuota",
20653 "operationId": "createCoreV1NamespacedResourceQuota",
20654 "parameters": [
20655 {
20656 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20657 "in": "query",
20658 "name": "dryRun",
20659 "schema": {
20660 "type": "string",
20661 "uniqueItems": true
20662 }
20663 },
20664 {
20665 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20666 "in": "query",
20667 "name": "fieldManager",
20668 "schema": {
20669 "type": "string",
20670 "uniqueItems": true
20671 }
20672 },
20673 {
20674 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
20675 "in": "query",
20676 "name": "fieldValidation",
20677 "schema": {
20678 "type": "string",
20679 "uniqueItems": true
20680 }
20681 }
20682 ],
20683 "requestBody": {
20684 "content": {
20685 "*/*": {
20686 "schema": {
20687 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20688 }
20689 }
20690 },
20691 "required": true
20692 },
20693 "responses": {
20694 "200": {
20695 "content": {
20696 "application/json": {
20697 "schema": {
20698 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20699 }
20700 },
20701 "application/vnd.kubernetes.protobuf": {
20702 "schema": {
20703 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20704 }
20705 },
20706 "application/yaml": {
20707 "schema": {
20708 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20709 }
20710 }
20711 },
20712 "description": "OK"
20713 },
20714 "201": {
20715 "content": {
20716 "application/json": {
20717 "schema": {
20718 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20719 }
20720 },
20721 "application/vnd.kubernetes.protobuf": {
20722 "schema": {
20723 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20724 }
20725 },
20726 "application/yaml": {
20727 "schema": {
20728 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20729 }
20730 }
20731 },
20732 "description": "Created"
20733 },
20734 "202": {
20735 "content": {
20736 "application/json": {
20737 "schema": {
20738 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20739 }
20740 },
20741 "application/vnd.kubernetes.protobuf": {
20742 "schema": {
20743 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20744 }
20745 },
20746 "application/yaml": {
20747 "schema": {
20748 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20749 }
20750 }
20751 },
20752 "description": "Accepted"
20753 },
20754 "401": {
20755 "description": "Unauthorized"
20756 }
20757 },
20758 "tags": [
20759 "core_v1"
20760 ],
20761 "x-kubernetes-action": "post",
20762 "x-kubernetes-group-version-kind": {
20763 "group": "",
20764 "kind": "ResourceQuota",
20765 "version": "v1"
20766 }
20767 }
20768 },
20769 "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
20770 "delete": {
20771 "description": "delete a ResourceQuota",
20772 "operationId": "deleteCoreV1NamespacedResourceQuota",
20773 "parameters": [
20774 {
20775 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20776 "in": "query",
20777 "name": "dryRun",
20778 "schema": {
20779 "type": "string",
20780 "uniqueItems": true
20781 }
20782 },
20783 {
20784 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20785 "in": "query",
20786 "name": "gracePeriodSeconds",
20787 "schema": {
20788 "type": "integer",
20789 "uniqueItems": true
20790 }
20791 },
20792 {
20793 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20794 "in": "query",
20795 "name": "orphanDependents",
20796 "schema": {
20797 "type": "boolean",
20798 "uniqueItems": true
20799 }
20800 },
20801 {
20802 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20803 "in": "query",
20804 "name": "propagationPolicy",
20805 "schema": {
20806 "type": "string",
20807 "uniqueItems": true
20808 }
20809 }
20810 ],
20811 "requestBody": {
20812 "content": {
20813 "*/*": {
20814 "schema": {
20815 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20816 }
20817 }
20818 }
20819 },
20820 "responses": {
20821 "200": {
20822 "content": {
20823 "application/json": {
20824 "schema": {
20825 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20826 }
20827 },
20828 "application/vnd.kubernetes.protobuf": {
20829 "schema": {
20830 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20831 }
20832 },
20833 "application/yaml": {
20834 "schema": {
20835 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20836 }
20837 }
20838 },
20839 "description": "OK"
20840 },
20841 "202": {
20842 "content": {
20843 "application/json": {
20844 "schema": {
20845 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20846 }
20847 },
20848 "application/vnd.kubernetes.protobuf": {
20849 "schema": {
20850 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20851 }
20852 },
20853 "application/yaml": {
20854 "schema": {
20855 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20856 }
20857 }
20858 },
20859 "description": "Accepted"
20860 },
20861 "401": {
20862 "description": "Unauthorized"
20863 }
20864 },
20865 "tags": [
20866 "core_v1"
20867 ],
20868 "x-kubernetes-action": "delete",
20869 "x-kubernetes-group-version-kind": {
20870 "group": "",
20871 "kind": "ResourceQuota",
20872 "version": "v1"
20873 }
20874 },
20875 "get": {
20876 "description": "read the specified ResourceQuota",
20877 "operationId": "readCoreV1NamespacedResourceQuota",
20878 "responses": {
20879 "200": {
20880 "content": {
20881 "application/json": {
20882 "schema": {
20883 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20884 }
20885 },
20886 "application/vnd.kubernetes.protobuf": {
20887 "schema": {
20888 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20889 }
20890 },
20891 "application/yaml": {
20892 "schema": {
20893 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
20894 }
20895 }
20896 },
20897 "description": "OK"
20898 },
20899 "401": {
20900 "description": "Unauthorized"
20901 }
20902 },
20903 "tags": [
20904 "core_v1"
20905 ],
20906 "x-kubernetes-action": "get",
20907 "x-kubernetes-group-version-kind": {
20908 "group": "",
20909 "kind": "ResourceQuota",
20910 "version": "v1"
20911 }
20912 },
20913 "parameters": [
20914 {
20915 "description": "name of the ResourceQuota",
20916 "in": "path",
20917 "name": "name",
20918 "required": true,
20919 "schema": {
20920 "type": "string",
20921 "uniqueItems": true
20922 }
20923 },
20924 {
20925 "description": "object name and auth scope, such as for teams and projects",
20926 "in": "path",
20927 "name": "namespace",
20928 "required": true,
20929 "schema": {
20930 "type": "string",
20931 "uniqueItems": true
20932 }
20933 },
20934 {
20935 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
20936 "in": "query",
20937 "name": "pretty",
20938 "schema": {
20939 "type": "string",
20940 "uniqueItems": true
20941 }
20942 }
20943 ],
20944 "patch": {
20945 "description": "partially update the specified ResourceQuota",
20946 "operationId": "patchCoreV1NamespacedResourceQuota",
20947 "parameters": [
20948 {
20949 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20950 "in": "query",
20951 "name": "dryRun",
20952 "schema": {
20953 "type": "string",
20954 "uniqueItems": true
20955 }
20956 },
20957 {
20958 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
20959 "in": "query",
20960 "name": "fieldManager",
20961 "schema": {
20962 "type": "string",
20963 "uniqueItems": true
20964 }
20965 },
20966 {
20967 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
20968 "in": "query",
20969 "name": "fieldValidation",
20970 "schema": {
20971 "type": "string",
20972 "uniqueItems": true
20973 }
20974 },
20975 {
20976 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
20977 "in": "query",
20978 "name": "force",
20979 "schema": {
20980 "type": "boolean",
20981 "uniqueItems": true
20982 }
20983 }
20984 ],
20985 "requestBody": {
20986 "content": {
20987 "application/apply-patch+yaml": {
20988 "schema": {
20989 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20990 }
20991 },
20992 "application/json-patch+json": {
20993 "schema": {
20994 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20995 }
20996 },
20997 "application/merge-patch+json": {
20998 "schema": {
20999 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21000 }
21001 },
21002 "application/strategic-merge-patch+json": {
21003 "schema": {
21004 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21005 }
21006 }
21007 },
21008 "required": true
21009 },
21010 "responses": {
21011 "200": {
21012 "content": {
21013 "application/json": {
21014 "schema": {
21015 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21016 }
21017 },
21018 "application/vnd.kubernetes.protobuf": {
21019 "schema": {
21020 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21021 }
21022 },
21023 "application/yaml": {
21024 "schema": {
21025 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21026 }
21027 }
21028 },
21029 "description": "OK"
21030 },
21031 "201": {
21032 "content": {
21033 "application/json": {
21034 "schema": {
21035 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21036 }
21037 },
21038 "application/vnd.kubernetes.protobuf": {
21039 "schema": {
21040 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21041 }
21042 },
21043 "application/yaml": {
21044 "schema": {
21045 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21046 }
21047 }
21048 },
21049 "description": "Created"
21050 },
21051 "401": {
21052 "description": "Unauthorized"
21053 }
21054 },
21055 "tags": [
21056 "core_v1"
21057 ],
21058 "x-kubernetes-action": "patch",
21059 "x-kubernetes-group-version-kind": {
21060 "group": "",
21061 "kind": "ResourceQuota",
21062 "version": "v1"
21063 }
21064 },
21065 "put": {
21066 "description": "replace the specified ResourceQuota",
21067 "operationId": "replaceCoreV1NamespacedResourceQuota",
21068 "parameters": [
21069 {
21070 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21071 "in": "query",
21072 "name": "dryRun",
21073 "schema": {
21074 "type": "string",
21075 "uniqueItems": true
21076 }
21077 },
21078 {
21079 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21080 "in": "query",
21081 "name": "fieldManager",
21082 "schema": {
21083 "type": "string",
21084 "uniqueItems": true
21085 }
21086 },
21087 {
21088 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
21089 "in": "query",
21090 "name": "fieldValidation",
21091 "schema": {
21092 "type": "string",
21093 "uniqueItems": true
21094 }
21095 }
21096 ],
21097 "requestBody": {
21098 "content": {
21099 "*/*": {
21100 "schema": {
21101 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21102 }
21103 }
21104 },
21105 "required": true
21106 },
21107 "responses": {
21108 "200": {
21109 "content": {
21110 "application/json": {
21111 "schema": {
21112 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21113 }
21114 },
21115 "application/vnd.kubernetes.protobuf": {
21116 "schema": {
21117 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21118 }
21119 },
21120 "application/yaml": {
21121 "schema": {
21122 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21123 }
21124 }
21125 },
21126 "description": "OK"
21127 },
21128 "201": {
21129 "content": {
21130 "application/json": {
21131 "schema": {
21132 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21133 }
21134 },
21135 "application/vnd.kubernetes.protobuf": {
21136 "schema": {
21137 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21138 }
21139 },
21140 "application/yaml": {
21141 "schema": {
21142 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21143 }
21144 }
21145 },
21146 "description": "Created"
21147 },
21148 "401": {
21149 "description": "Unauthorized"
21150 }
21151 },
21152 "tags": [
21153 "core_v1"
21154 ],
21155 "x-kubernetes-action": "put",
21156 "x-kubernetes-group-version-kind": {
21157 "group": "",
21158 "kind": "ResourceQuota",
21159 "version": "v1"
21160 }
21161 }
21162 },
21163 "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
21164 "get": {
21165 "description": "read status of the specified ResourceQuota",
21166 "operationId": "readCoreV1NamespacedResourceQuotaStatus",
21167 "responses": {
21168 "200": {
21169 "content": {
21170 "application/json": {
21171 "schema": {
21172 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21173 }
21174 },
21175 "application/vnd.kubernetes.protobuf": {
21176 "schema": {
21177 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21178 }
21179 },
21180 "application/yaml": {
21181 "schema": {
21182 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21183 }
21184 }
21185 },
21186 "description": "OK"
21187 },
21188 "401": {
21189 "description": "Unauthorized"
21190 }
21191 },
21192 "tags": [
21193 "core_v1"
21194 ],
21195 "x-kubernetes-action": "get",
21196 "x-kubernetes-group-version-kind": {
21197 "group": "",
21198 "kind": "ResourceQuota",
21199 "version": "v1"
21200 }
21201 },
21202 "parameters": [
21203 {
21204 "description": "name of the ResourceQuota",
21205 "in": "path",
21206 "name": "name",
21207 "required": true,
21208 "schema": {
21209 "type": "string",
21210 "uniqueItems": true
21211 }
21212 },
21213 {
21214 "description": "object name and auth scope, such as for teams and projects",
21215 "in": "path",
21216 "name": "namespace",
21217 "required": true,
21218 "schema": {
21219 "type": "string",
21220 "uniqueItems": true
21221 }
21222 },
21223 {
21224 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
21225 "in": "query",
21226 "name": "pretty",
21227 "schema": {
21228 "type": "string",
21229 "uniqueItems": true
21230 }
21231 }
21232 ],
21233 "patch": {
21234 "description": "partially update status of the specified ResourceQuota",
21235 "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
21236 "parameters": [
21237 {
21238 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21239 "in": "query",
21240 "name": "dryRun",
21241 "schema": {
21242 "type": "string",
21243 "uniqueItems": true
21244 }
21245 },
21246 {
21247 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
21248 "in": "query",
21249 "name": "fieldManager",
21250 "schema": {
21251 "type": "string",
21252 "uniqueItems": true
21253 }
21254 },
21255 {
21256 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
21257 "in": "query",
21258 "name": "fieldValidation",
21259 "schema": {
21260 "type": "string",
21261 "uniqueItems": true
21262 }
21263 },
21264 {
21265 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
21266 "in": "query",
21267 "name": "force",
21268 "schema": {
21269 "type": "boolean",
21270 "uniqueItems": true
21271 }
21272 }
21273 ],
21274 "requestBody": {
21275 "content": {
21276 "application/apply-patch+yaml": {
21277 "schema": {
21278 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21279 }
21280 },
21281 "application/json-patch+json": {
21282 "schema": {
21283 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21284 }
21285 },
21286 "application/merge-patch+json": {
21287 "schema": {
21288 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21289 }
21290 },
21291 "application/strategic-merge-patch+json": {
21292 "schema": {
21293 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21294 }
21295 }
21296 },
21297 "required": true
21298 },
21299 "responses": {
21300 "200": {
21301 "content": {
21302 "application/json": {
21303 "schema": {
21304 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21305 }
21306 },
21307 "application/vnd.kubernetes.protobuf": {
21308 "schema": {
21309 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21310 }
21311 },
21312 "application/yaml": {
21313 "schema": {
21314 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21315 }
21316 }
21317 },
21318 "description": "OK"
21319 },
21320 "201": {
21321 "content": {
21322 "application/json": {
21323 "schema": {
21324 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21325 }
21326 },
21327 "application/vnd.kubernetes.protobuf": {
21328 "schema": {
21329 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21330 }
21331 },
21332 "application/yaml": {
21333 "schema": {
21334 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21335 }
21336 }
21337 },
21338 "description": "Created"
21339 },
21340 "401": {
21341 "description": "Unauthorized"
21342 }
21343 },
21344 "tags": [
21345 "core_v1"
21346 ],
21347 "x-kubernetes-action": "patch",
21348 "x-kubernetes-group-version-kind": {
21349 "group": "",
21350 "kind": "ResourceQuota",
21351 "version": "v1"
21352 }
21353 },
21354 "put": {
21355 "description": "replace status of the specified ResourceQuota",
21356 "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
21357 "parameters": [
21358 {
21359 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21360 "in": "query",
21361 "name": "dryRun",
21362 "schema": {
21363 "type": "string",
21364 "uniqueItems": true
21365 }
21366 },
21367 {
21368 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21369 "in": "query",
21370 "name": "fieldManager",
21371 "schema": {
21372 "type": "string",
21373 "uniqueItems": true
21374 }
21375 },
21376 {
21377 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
21378 "in": "query",
21379 "name": "fieldValidation",
21380 "schema": {
21381 "type": "string",
21382 "uniqueItems": true
21383 }
21384 }
21385 ],
21386 "requestBody": {
21387 "content": {
21388 "*/*": {
21389 "schema": {
21390 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21391 }
21392 }
21393 },
21394 "required": true
21395 },
21396 "responses": {
21397 "200": {
21398 "content": {
21399 "application/json": {
21400 "schema": {
21401 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21402 }
21403 },
21404 "application/vnd.kubernetes.protobuf": {
21405 "schema": {
21406 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21407 }
21408 },
21409 "application/yaml": {
21410 "schema": {
21411 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21412 }
21413 }
21414 },
21415 "description": "OK"
21416 },
21417 "201": {
21418 "content": {
21419 "application/json": {
21420 "schema": {
21421 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21422 }
21423 },
21424 "application/vnd.kubernetes.protobuf": {
21425 "schema": {
21426 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21427 }
21428 },
21429 "application/yaml": {
21430 "schema": {
21431 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota"
21432 }
21433 }
21434 },
21435 "description": "Created"
21436 },
21437 "401": {
21438 "description": "Unauthorized"
21439 }
21440 },
21441 "tags": [
21442 "core_v1"
21443 ],
21444 "x-kubernetes-action": "put",
21445 "x-kubernetes-group-version-kind": {
21446 "group": "",
21447 "kind": "ResourceQuota",
21448 "version": "v1"
21449 }
21450 }
21451 },
21452 "/api/v1/namespaces/{namespace}/secrets": {
21453 "delete": {
21454 "description": "delete collection of Secret",
21455 "operationId": "deleteCoreV1CollectionNamespacedSecret",
21456 "parameters": [
21457 {
21458 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21459 "in": "query",
21460 "name": "continue",
21461 "schema": {
21462 "type": "string",
21463 "uniqueItems": true
21464 }
21465 },
21466 {
21467 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21468 "in": "query",
21469 "name": "dryRun",
21470 "schema": {
21471 "type": "string",
21472 "uniqueItems": true
21473 }
21474 },
21475 {
21476 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21477 "in": "query",
21478 "name": "fieldSelector",
21479 "schema": {
21480 "type": "string",
21481 "uniqueItems": true
21482 }
21483 },
21484 {
21485 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21486 "in": "query",
21487 "name": "gracePeriodSeconds",
21488 "schema": {
21489 "type": "integer",
21490 "uniqueItems": true
21491 }
21492 },
21493 {
21494 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21495 "in": "query",
21496 "name": "labelSelector",
21497 "schema": {
21498 "type": "string",
21499 "uniqueItems": true
21500 }
21501 },
21502 {
21503 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21504 "in": "query",
21505 "name": "limit",
21506 "schema": {
21507 "type": "integer",
21508 "uniqueItems": true
21509 }
21510 },
21511 {
21512 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21513 "in": "query",
21514 "name": "orphanDependents",
21515 "schema": {
21516 "type": "boolean",
21517 "uniqueItems": true
21518 }
21519 },
21520 {
21521 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21522 "in": "query",
21523 "name": "propagationPolicy",
21524 "schema": {
21525 "type": "string",
21526 "uniqueItems": true
21527 }
21528 },
21529 {
21530 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21531 "in": "query",
21532 "name": "resourceVersion",
21533 "schema": {
21534 "type": "string",
21535 "uniqueItems": true
21536 }
21537 },
21538 {
21539 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21540 "in": "query",
21541 "name": "resourceVersionMatch",
21542 "schema": {
21543 "type": "string",
21544 "uniqueItems": true
21545 }
21546 },
21547 {
21548 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
21549 "in": "query",
21550 "name": "sendInitialEvents",
21551 "schema": {
21552 "type": "boolean",
21553 "uniqueItems": true
21554 }
21555 },
21556 {
21557 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21558 "in": "query",
21559 "name": "timeoutSeconds",
21560 "schema": {
21561 "type": "integer",
21562 "uniqueItems": true
21563 }
21564 }
21565 ],
21566 "requestBody": {
21567 "content": {
21568 "*/*": {
21569 "schema": {
21570 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21571 }
21572 }
21573 }
21574 },
21575 "responses": {
21576 "200": {
21577 "content": {
21578 "application/json": {
21579 "schema": {
21580 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21581 }
21582 },
21583 "application/vnd.kubernetes.protobuf": {
21584 "schema": {
21585 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21586 }
21587 },
21588 "application/yaml": {
21589 "schema": {
21590 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21591 }
21592 }
21593 },
21594 "description": "OK"
21595 },
21596 "401": {
21597 "description": "Unauthorized"
21598 }
21599 },
21600 "tags": [
21601 "core_v1"
21602 ],
21603 "x-kubernetes-action": "deletecollection",
21604 "x-kubernetes-group-version-kind": {
21605 "group": "",
21606 "kind": "Secret",
21607 "version": "v1"
21608 }
21609 },
21610 "get": {
21611 "description": "list or watch objects of kind Secret",
21612 "operationId": "listCoreV1NamespacedSecret",
21613 "parameters": [
21614 {
21615 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
21616 "in": "query",
21617 "name": "allowWatchBookmarks",
21618 "schema": {
21619 "type": "boolean",
21620 "uniqueItems": true
21621 }
21622 },
21623 {
21624 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21625 "in": "query",
21626 "name": "continue",
21627 "schema": {
21628 "type": "string",
21629 "uniqueItems": true
21630 }
21631 },
21632 {
21633 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21634 "in": "query",
21635 "name": "fieldSelector",
21636 "schema": {
21637 "type": "string",
21638 "uniqueItems": true
21639 }
21640 },
21641 {
21642 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21643 "in": "query",
21644 "name": "labelSelector",
21645 "schema": {
21646 "type": "string",
21647 "uniqueItems": true
21648 }
21649 },
21650 {
21651 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21652 "in": "query",
21653 "name": "limit",
21654 "schema": {
21655 "type": "integer",
21656 "uniqueItems": true
21657 }
21658 },
21659 {
21660 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21661 "in": "query",
21662 "name": "resourceVersion",
21663 "schema": {
21664 "type": "string",
21665 "uniqueItems": true
21666 }
21667 },
21668 {
21669 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
21670 "in": "query",
21671 "name": "resourceVersionMatch",
21672 "schema": {
21673 "type": "string",
21674 "uniqueItems": true
21675 }
21676 },
21677 {
21678 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
21679 "in": "query",
21680 "name": "sendInitialEvents",
21681 "schema": {
21682 "type": "boolean",
21683 "uniqueItems": true
21684 }
21685 },
21686 {
21687 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21688 "in": "query",
21689 "name": "timeoutSeconds",
21690 "schema": {
21691 "type": "integer",
21692 "uniqueItems": true
21693 }
21694 },
21695 {
21696 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21697 "in": "query",
21698 "name": "watch",
21699 "schema": {
21700 "type": "boolean",
21701 "uniqueItems": true
21702 }
21703 }
21704 ],
21705 "responses": {
21706 "200": {
21707 "content": {
21708 "application/json": {
21709 "schema": {
21710 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
21711 }
21712 },
21713 "application/json;stream=watch": {
21714 "schema": {
21715 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
21716 }
21717 },
21718 "application/vnd.kubernetes.protobuf": {
21719 "schema": {
21720 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
21721 }
21722 },
21723 "application/vnd.kubernetes.protobuf;stream=watch": {
21724 "schema": {
21725 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
21726 }
21727 },
21728 "application/yaml": {
21729 "schema": {
21730 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
21731 }
21732 }
21733 },
21734 "description": "OK"
21735 },
21736 "401": {
21737 "description": "Unauthorized"
21738 }
21739 },
21740 "tags": [
21741 "core_v1"
21742 ],
21743 "x-kubernetes-action": "list",
21744 "x-kubernetes-group-version-kind": {
21745 "group": "",
21746 "kind": "Secret",
21747 "version": "v1"
21748 }
21749 },
21750 "parameters": [
21751 {
21752 "description": "object name and auth scope, such as for teams and projects",
21753 "in": "path",
21754 "name": "namespace",
21755 "required": true,
21756 "schema": {
21757 "type": "string",
21758 "uniqueItems": true
21759 }
21760 },
21761 {
21762 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
21763 "in": "query",
21764 "name": "pretty",
21765 "schema": {
21766 "type": "string",
21767 "uniqueItems": true
21768 }
21769 }
21770 ],
21771 "post": {
21772 "description": "create a Secret",
21773 "operationId": "createCoreV1NamespacedSecret",
21774 "parameters": [
21775 {
21776 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21777 "in": "query",
21778 "name": "dryRun",
21779 "schema": {
21780 "type": "string",
21781 "uniqueItems": true
21782 }
21783 },
21784 {
21785 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21786 "in": "query",
21787 "name": "fieldManager",
21788 "schema": {
21789 "type": "string",
21790 "uniqueItems": true
21791 }
21792 },
21793 {
21794 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
21795 "in": "query",
21796 "name": "fieldValidation",
21797 "schema": {
21798 "type": "string",
21799 "uniqueItems": true
21800 }
21801 }
21802 ],
21803 "requestBody": {
21804 "content": {
21805 "*/*": {
21806 "schema": {
21807 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21808 }
21809 }
21810 },
21811 "required": true
21812 },
21813 "responses": {
21814 "200": {
21815 "content": {
21816 "application/json": {
21817 "schema": {
21818 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21819 }
21820 },
21821 "application/vnd.kubernetes.protobuf": {
21822 "schema": {
21823 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21824 }
21825 },
21826 "application/yaml": {
21827 "schema": {
21828 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21829 }
21830 }
21831 },
21832 "description": "OK"
21833 },
21834 "201": {
21835 "content": {
21836 "application/json": {
21837 "schema": {
21838 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21839 }
21840 },
21841 "application/vnd.kubernetes.protobuf": {
21842 "schema": {
21843 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21844 }
21845 },
21846 "application/yaml": {
21847 "schema": {
21848 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21849 }
21850 }
21851 },
21852 "description": "Created"
21853 },
21854 "202": {
21855 "content": {
21856 "application/json": {
21857 "schema": {
21858 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21859 }
21860 },
21861 "application/vnd.kubernetes.protobuf": {
21862 "schema": {
21863 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21864 }
21865 },
21866 "application/yaml": {
21867 "schema": {
21868 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
21869 }
21870 }
21871 },
21872 "description": "Accepted"
21873 },
21874 "401": {
21875 "description": "Unauthorized"
21876 }
21877 },
21878 "tags": [
21879 "core_v1"
21880 ],
21881 "x-kubernetes-action": "post",
21882 "x-kubernetes-group-version-kind": {
21883 "group": "",
21884 "kind": "Secret",
21885 "version": "v1"
21886 }
21887 }
21888 },
21889 "/api/v1/namespaces/{namespace}/secrets/{name}": {
21890 "delete": {
21891 "description": "delete a Secret",
21892 "operationId": "deleteCoreV1NamespacedSecret",
21893 "parameters": [
21894 {
21895 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21896 "in": "query",
21897 "name": "dryRun",
21898 "schema": {
21899 "type": "string",
21900 "uniqueItems": true
21901 }
21902 },
21903 {
21904 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21905 "in": "query",
21906 "name": "gracePeriodSeconds",
21907 "schema": {
21908 "type": "integer",
21909 "uniqueItems": true
21910 }
21911 },
21912 {
21913 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21914 "in": "query",
21915 "name": "orphanDependents",
21916 "schema": {
21917 "type": "boolean",
21918 "uniqueItems": true
21919 }
21920 },
21921 {
21922 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21923 "in": "query",
21924 "name": "propagationPolicy",
21925 "schema": {
21926 "type": "string",
21927 "uniqueItems": true
21928 }
21929 }
21930 ],
21931 "requestBody": {
21932 "content": {
21933 "*/*": {
21934 "schema": {
21935 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21936 }
21937 }
21938 }
21939 },
21940 "responses": {
21941 "200": {
21942 "content": {
21943 "application/json": {
21944 "schema": {
21945 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21946 }
21947 },
21948 "application/vnd.kubernetes.protobuf": {
21949 "schema": {
21950 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21951 }
21952 },
21953 "application/yaml": {
21954 "schema": {
21955 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21956 }
21957 }
21958 },
21959 "description": "OK"
21960 },
21961 "202": {
21962 "content": {
21963 "application/json": {
21964 "schema": {
21965 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21966 }
21967 },
21968 "application/vnd.kubernetes.protobuf": {
21969 "schema": {
21970 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21971 }
21972 },
21973 "application/yaml": {
21974 "schema": {
21975 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21976 }
21977 }
21978 },
21979 "description": "Accepted"
21980 },
21981 "401": {
21982 "description": "Unauthorized"
21983 }
21984 },
21985 "tags": [
21986 "core_v1"
21987 ],
21988 "x-kubernetes-action": "delete",
21989 "x-kubernetes-group-version-kind": {
21990 "group": "",
21991 "kind": "Secret",
21992 "version": "v1"
21993 }
21994 },
21995 "get": {
21996 "description": "read the specified Secret",
21997 "operationId": "readCoreV1NamespacedSecret",
21998 "responses": {
21999 "200": {
22000 "content": {
22001 "application/json": {
22002 "schema": {
22003 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22004 }
22005 },
22006 "application/vnd.kubernetes.protobuf": {
22007 "schema": {
22008 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22009 }
22010 },
22011 "application/yaml": {
22012 "schema": {
22013 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22014 }
22015 }
22016 },
22017 "description": "OK"
22018 },
22019 "401": {
22020 "description": "Unauthorized"
22021 }
22022 },
22023 "tags": [
22024 "core_v1"
22025 ],
22026 "x-kubernetes-action": "get",
22027 "x-kubernetes-group-version-kind": {
22028 "group": "",
22029 "kind": "Secret",
22030 "version": "v1"
22031 }
22032 },
22033 "parameters": [
22034 {
22035 "description": "name of the Secret",
22036 "in": "path",
22037 "name": "name",
22038 "required": true,
22039 "schema": {
22040 "type": "string",
22041 "uniqueItems": true
22042 }
22043 },
22044 {
22045 "description": "object name and auth scope, such as for teams and projects",
22046 "in": "path",
22047 "name": "namespace",
22048 "required": true,
22049 "schema": {
22050 "type": "string",
22051 "uniqueItems": true
22052 }
22053 },
22054 {
22055 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
22056 "in": "query",
22057 "name": "pretty",
22058 "schema": {
22059 "type": "string",
22060 "uniqueItems": true
22061 }
22062 }
22063 ],
22064 "patch": {
22065 "description": "partially update the specified Secret",
22066 "operationId": "patchCoreV1NamespacedSecret",
22067 "parameters": [
22068 {
22069 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22070 "in": "query",
22071 "name": "dryRun",
22072 "schema": {
22073 "type": "string",
22074 "uniqueItems": true
22075 }
22076 },
22077 {
22078 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
22079 "in": "query",
22080 "name": "fieldManager",
22081 "schema": {
22082 "type": "string",
22083 "uniqueItems": true
22084 }
22085 },
22086 {
22087 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
22088 "in": "query",
22089 "name": "fieldValidation",
22090 "schema": {
22091 "type": "string",
22092 "uniqueItems": true
22093 }
22094 },
22095 {
22096 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
22097 "in": "query",
22098 "name": "force",
22099 "schema": {
22100 "type": "boolean",
22101 "uniqueItems": true
22102 }
22103 }
22104 ],
22105 "requestBody": {
22106 "content": {
22107 "application/apply-patch+yaml": {
22108 "schema": {
22109 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22110 }
22111 },
22112 "application/json-patch+json": {
22113 "schema": {
22114 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22115 }
22116 },
22117 "application/merge-patch+json": {
22118 "schema": {
22119 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22120 }
22121 },
22122 "application/strategic-merge-patch+json": {
22123 "schema": {
22124 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22125 }
22126 }
22127 },
22128 "required": true
22129 },
22130 "responses": {
22131 "200": {
22132 "content": {
22133 "application/json": {
22134 "schema": {
22135 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22136 }
22137 },
22138 "application/vnd.kubernetes.protobuf": {
22139 "schema": {
22140 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22141 }
22142 },
22143 "application/yaml": {
22144 "schema": {
22145 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22146 }
22147 }
22148 },
22149 "description": "OK"
22150 },
22151 "201": {
22152 "content": {
22153 "application/json": {
22154 "schema": {
22155 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22156 }
22157 },
22158 "application/vnd.kubernetes.protobuf": {
22159 "schema": {
22160 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22161 }
22162 },
22163 "application/yaml": {
22164 "schema": {
22165 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22166 }
22167 }
22168 },
22169 "description": "Created"
22170 },
22171 "401": {
22172 "description": "Unauthorized"
22173 }
22174 },
22175 "tags": [
22176 "core_v1"
22177 ],
22178 "x-kubernetes-action": "patch",
22179 "x-kubernetes-group-version-kind": {
22180 "group": "",
22181 "kind": "Secret",
22182 "version": "v1"
22183 }
22184 },
22185 "put": {
22186 "description": "replace the specified Secret",
22187 "operationId": "replaceCoreV1NamespacedSecret",
22188 "parameters": [
22189 {
22190 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22191 "in": "query",
22192 "name": "dryRun",
22193 "schema": {
22194 "type": "string",
22195 "uniqueItems": true
22196 }
22197 },
22198 {
22199 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22200 "in": "query",
22201 "name": "fieldManager",
22202 "schema": {
22203 "type": "string",
22204 "uniqueItems": true
22205 }
22206 },
22207 {
22208 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
22209 "in": "query",
22210 "name": "fieldValidation",
22211 "schema": {
22212 "type": "string",
22213 "uniqueItems": true
22214 }
22215 }
22216 ],
22217 "requestBody": {
22218 "content": {
22219 "*/*": {
22220 "schema": {
22221 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22222 }
22223 }
22224 },
22225 "required": true
22226 },
22227 "responses": {
22228 "200": {
22229 "content": {
22230 "application/json": {
22231 "schema": {
22232 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22233 }
22234 },
22235 "application/vnd.kubernetes.protobuf": {
22236 "schema": {
22237 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22238 }
22239 },
22240 "application/yaml": {
22241 "schema": {
22242 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22243 }
22244 }
22245 },
22246 "description": "OK"
22247 },
22248 "201": {
22249 "content": {
22250 "application/json": {
22251 "schema": {
22252 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22253 }
22254 },
22255 "application/vnd.kubernetes.protobuf": {
22256 "schema": {
22257 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22258 }
22259 },
22260 "application/yaml": {
22261 "schema": {
22262 "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret"
22263 }
22264 }
22265 },
22266 "description": "Created"
22267 },
22268 "401": {
22269 "description": "Unauthorized"
22270 }
22271 },
22272 "tags": [
22273 "core_v1"
22274 ],
22275 "x-kubernetes-action": "put",
22276 "x-kubernetes-group-version-kind": {
22277 "group": "",
22278 "kind": "Secret",
22279 "version": "v1"
22280 }
22281 }
22282 },
22283 "/api/v1/namespaces/{namespace}/serviceaccounts": {
22284 "delete": {
22285 "description": "delete collection of ServiceAccount",
22286 "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
22287 "parameters": [
22288 {
22289 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22290 "in": "query",
22291 "name": "continue",
22292 "schema": {
22293 "type": "string",
22294 "uniqueItems": true
22295 }
22296 },
22297 {
22298 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22299 "in": "query",
22300 "name": "dryRun",
22301 "schema": {
22302 "type": "string",
22303 "uniqueItems": true
22304 }
22305 },
22306 {
22307 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22308 "in": "query",
22309 "name": "fieldSelector",
22310 "schema": {
22311 "type": "string",
22312 "uniqueItems": true
22313 }
22314 },
22315 {
22316 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22317 "in": "query",
22318 "name": "gracePeriodSeconds",
22319 "schema": {
22320 "type": "integer",
22321 "uniqueItems": true
22322 }
22323 },
22324 {
22325 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22326 "in": "query",
22327 "name": "labelSelector",
22328 "schema": {
22329 "type": "string",
22330 "uniqueItems": true
22331 }
22332 },
22333 {
22334 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22335 "in": "query",
22336 "name": "limit",
22337 "schema": {
22338 "type": "integer",
22339 "uniqueItems": true
22340 }
22341 },
22342 {
22343 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22344 "in": "query",
22345 "name": "orphanDependents",
22346 "schema": {
22347 "type": "boolean",
22348 "uniqueItems": true
22349 }
22350 },
22351 {
22352 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22353 "in": "query",
22354 "name": "propagationPolicy",
22355 "schema": {
22356 "type": "string",
22357 "uniqueItems": true
22358 }
22359 },
22360 {
22361 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22362 "in": "query",
22363 "name": "resourceVersion",
22364 "schema": {
22365 "type": "string",
22366 "uniqueItems": true
22367 }
22368 },
22369 {
22370 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22371 "in": "query",
22372 "name": "resourceVersionMatch",
22373 "schema": {
22374 "type": "string",
22375 "uniqueItems": true
22376 }
22377 },
22378 {
22379 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
22380 "in": "query",
22381 "name": "sendInitialEvents",
22382 "schema": {
22383 "type": "boolean",
22384 "uniqueItems": true
22385 }
22386 },
22387 {
22388 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22389 "in": "query",
22390 "name": "timeoutSeconds",
22391 "schema": {
22392 "type": "integer",
22393 "uniqueItems": true
22394 }
22395 }
22396 ],
22397 "requestBody": {
22398 "content": {
22399 "*/*": {
22400 "schema": {
22401 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22402 }
22403 }
22404 }
22405 },
22406 "responses": {
22407 "200": {
22408 "content": {
22409 "application/json": {
22410 "schema": {
22411 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22412 }
22413 },
22414 "application/vnd.kubernetes.protobuf": {
22415 "schema": {
22416 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22417 }
22418 },
22419 "application/yaml": {
22420 "schema": {
22421 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22422 }
22423 }
22424 },
22425 "description": "OK"
22426 },
22427 "401": {
22428 "description": "Unauthorized"
22429 }
22430 },
22431 "tags": [
22432 "core_v1"
22433 ],
22434 "x-kubernetes-action": "deletecollection",
22435 "x-kubernetes-group-version-kind": {
22436 "group": "",
22437 "kind": "ServiceAccount",
22438 "version": "v1"
22439 }
22440 },
22441 "get": {
22442 "description": "list or watch objects of kind ServiceAccount",
22443 "operationId": "listCoreV1NamespacedServiceAccount",
22444 "parameters": [
22445 {
22446 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
22447 "in": "query",
22448 "name": "allowWatchBookmarks",
22449 "schema": {
22450 "type": "boolean",
22451 "uniqueItems": true
22452 }
22453 },
22454 {
22455 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22456 "in": "query",
22457 "name": "continue",
22458 "schema": {
22459 "type": "string",
22460 "uniqueItems": true
22461 }
22462 },
22463 {
22464 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22465 "in": "query",
22466 "name": "fieldSelector",
22467 "schema": {
22468 "type": "string",
22469 "uniqueItems": true
22470 }
22471 },
22472 {
22473 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22474 "in": "query",
22475 "name": "labelSelector",
22476 "schema": {
22477 "type": "string",
22478 "uniqueItems": true
22479 }
22480 },
22481 {
22482 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22483 "in": "query",
22484 "name": "limit",
22485 "schema": {
22486 "type": "integer",
22487 "uniqueItems": true
22488 }
22489 },
22490 {
22491 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22492 "in": "query",
22493 "name": "resourceVersion",
22494 "schema": {
22495 "type": "string",
22496 "uniqueItems": true
22497 }
22498 },
22499 {
22500 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
22501 "in": "query",
22502 "name": "resourceVersionMatch",
22503 "schema": {
22504 "type": "string",
22505 "uniqueItems": true
22506 }
22507 },
22508 {
22509 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
22510 "in": "query",
22511 "name": "sendInitialEvents",
22512 "schema": {
22513 "type": "boolean",
22514 "uniqueItems": true
22515 }
22516 },
22517 {
22518 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22519 "in": "query",
22520 "name": "timeoutSeconds",
22521 "schema": {
22522 "type": "integer",
22523 "uniqueItems": true
22524 }
22525 },
22526 {
22527 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22528 "in": "query",
22529 "name": "watch",
22530 "schema": {
22531 "type": "boolean",
22532 "uniqueItems": true
22533 }
22534 }
22535 ],
22536 "responses": {
22537 "200": {
22538 "content": {
22539 "application/json": {
22540 "schema": {
22541 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
22542 }
22543 },
22544 "application/json;stream=watch": {
22545 "schema": {
22546 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
22547 }
22548 },
22549 "application/vnd.kubernetes.protobuf": {
22550 "schema": {
22551 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
22552 }
22553 },
22554 "application/vnd.kubernetes.protobuf;stream=watch": {
22555 "schema": {
22556 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
22557 }
22558 },
22559 "application/yaml": {
22560 "schema": {
22561 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
22562 }
22563 }
22564 },
22565 "description": "OK"
22566 },
22567 "401": {
22568 "description": "Unauthorized"
22569 }
22570 },
22571 "tags": [
22572 "core_v1"
22573 ],
22574 "x-kubernetes-action": "list",
22575 "x-kubernetes-group-version-kind": {
22576 "group": "",
22577 "kind": "ServiceAccount",
22578 "version": "v1"
22579 }
22580 },
22581 "parameters": [
22582 {
22583 "description": "object name and auth scope, such as for teams and projects",
22584 "in": "path",
22585 "name": "namespace",
22586 "required": true,
22587 "schema": {
22588 "type": "string",
22589 "uniqueItems": true
22590 }
22591 },
22592 {
22593 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
22594 "in": "query",
22595 "name": "pretty",
22596 "schema": {
22597 "type": "string",
22598 "uniqueItems": true
22599 }
22600 }
22601 ],
22602 "post": {
22603 "description": "create a ServiceAccount",
22604 "operationId": "createCoreV1NamespacedServiceAccount",
22605 "parameters": [
22606 {
22607 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22608 "in": "query",
22609 "name": "dryRun",
22610 "schema": {
22611 "type": "string",
22612 "uniqueItems": true
22613 }
22614 },
22615 {
22616 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22617 "in": "query",
22618 "name": "fieldManager",
22619 "schema": {
22620 "type": "string",
22621 "uniqueItems": true
22622 }
22623 },
22624 {
22625 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
22626 "in": "query",
22627 "name": "fieldValidation",
22628 "schema": {
22629 "type": "string",
22630 "uniqueItems": true
22631 }
22632 }
22633 ],
22634 "requestBody": {
22635 "content": {
22636 "*/*": {
22637 "schema": {
22638 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22639 }
22640 }
22641 },
22642 "required": true
22643 },
22644 "responses": {
22645 "200": {
22646 "content": {
22647 "application/json": {
22648 "schema": {
22649 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22650 }
22651 },
22652 "application/vnd.kubernetes.protobuf": {
22653 "schema": {
22654 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22655 }
22656 },
22657 "application/yaml": {
22658 "schema": {
22659 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22660 }
22661 }
22662 },
22663 "description": "OK"
22664 },
22665 "201": {
22666 "content": {
22667 "application/json": {
22668 "schema": {
22669 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22670 }
22671 },
22672 "application/vnd.kubernetes.protobuf": {
22673 "schema": {
22674 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22675 }
22676 },
22677 "application/yaml": {
22678 "schema": {
22679 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22680 }
22681 }
22682 },
22683 "description": "Created"
22684 },
22685 "202": {
22686 "content": {
22687 "application/json": {
22688 "schema": {
22689 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22690 }
22691 },
22692 "application/vnd.kubernetes.protobuf": {
22693 "schema": {
22694 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22695 }
22696 },
22697 "application/yaml": {
22698 "schema": {
22699 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22700 }
22701 }
22702 },
22703 "description": "Accepted"
22704 },
22705 "401": {
22706 "description": "Unauthorized"
22707 }
22708 },
22709 "tags": [
22710 "core_v1"
22711 ],
22712 "x-kubernetes-action": "post",
22713 "x-kubernetes-group-version-kind": {
22714 "group": "",
22715 "kind": "ServiceAccount",
22716 "version": "v1"
22717 }
22718 }
22719 },
22720 "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
22721 "delete": {
22722 "description": "delete a ServiceAccount",
22723 "operationId": "deleteCoreV1NamespacedServiceAccount",
22724 "parameters": [
22725 {
22726 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22727 "in": "query",
22728 "name": "dryRun",
22729 "schema": {
22730 "type": "string",
22731 "uniqueItems": true
22732 }
22733 },
22734 {
22735 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22736 "in": "query",
22737 "name": "gracePeriodSeconds",
22738 "schema": {
22739 "type": "integer",
22740 "uniqueItems": true
22741 }
22742 },
22743 {
22744 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22745 "in": "query",
22746 "name": "orphanDependents",
22747 "schema": {
22748 "type": "boolean",
22749 "uniqueItems": true
22750 }
22751 },
22752 {
22753 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22754 "in": "query",
22755 "name": "propagationPolicy",
22756 "schema": {
22757 "type": "string",
22758 "uniqueItems": true
22759 }
22760 }
22761 ],
22762 "requestBody": {
22763 "content": {
22764 "*/*": {
22765 "schema": {
22766 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22767 }
22768 }
22769 }
22770 },
22771 "responses": {
22772 "200": {
22773 "content": {
22774 "application/json": {
22775 "schema": {
22776 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22777 }
22778 },
22779 "application/vnd.kubernetes.protobuf": {
22780 "schema": {
22781 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22782 }
22783 },
22784 "application/yaml": {
22785 "schema": {
22786 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22787 }
22788 }
22789 },
22790 "description": "OK"
22791 },
22792 "202": {
22793 "content": {
22794 "application/json": {
22795 "schema": {
22796 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22797 }
22798 },
22799 "application/vnd.kubernetes.protobuf": {
22800 "schema": {
22801 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22802 }
22803 },
22804 "application/yaml": {
22805 "schema": {
22806 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22807 }
22808 }
22809 },
22810 "description": "Accepted"
22811 },
22812 "401": {
22813 "description": "Unauthorized"
22814 }
22815 },
22816 "tags": [
22817 "core_v1"
22818 ],
22819 "x-kubernetes-action": "delete",
22820 "x-kubernetes-group-version-kind": {
22821 "group": "",
22822 "kind": "ServiceAccount",
22823 "version": "v1"
22824 }
22825 },
22826 "get": {
22827 "description": "read the specified ServiceAccount",
22828 "operationId": "readCoreV1NamespacedServiceAccount",
22829 "responses": {
22830 "200": {
22831 "content": {
22832 "application/json": {
22833 "schema": {
22834 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22835 }
22836 },
22837 "application/vnd.kubernetes.protobuf": {
22838 "schema": {
22839 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22840 }
22841 },
22842 "application/yaml": {
22843 "schema": {
22844 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22845 }
22846 }
22847 },
22848 "description": "OK"
22849 },
22850 "401": {
22851 "description": "Unauthorized"
22852 }
22853 },
22854 "tags": [
22855 "core_v1"
22856 ],
22857 "x-kubernetes-action": "get",
22858 "x-kubernetes-group-version-kind": {
22859 "group": "",
22860 "kind": "ServiceAccount",
22861 "version": "v1"
22862 }
22863 },
22864 "parameters": [
22865 {
22866 "description": "name of the ServiceAccount",
22867 "in": "path",
22868 "name": "name",
22869 "required": true,
22870 "schema": {
22871 "type": "string",
22872 "uniqueItems": true
22873 }
22874 },
22875 {
22876 "description": "object name and auth scope, such as for teams and projects",
22877 "in": "path",
22878 "name": "namespace",
22879 "required": true,
22880 "schema": {
22881 "type": "string",
22882 "uniqueItems": true
22883 }
22884 },
22885 {
22886 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
22887 "in": "query",
22888 "name": "pretty",
22889 "schema": {
22890 "type": "string",
22891 "uniqueItems": true
22892 }
22893 }
22894 ],
22895 "patch": {
22896 "description": "partially update the specified ServiceAccount",
22897 "operationId": "patchCoreV1NamespacedServiceAccount",
22898 "parameters": [
22899 {
22900 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22901 "in": "query",
22902 "name": "dryRun",
22903 "schema": {
22904 "type": "string",
22905 "uniqueItems": true
22906 }
22907 },
22908 {
22909 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
22910 "in": "query",
22911 "name": "fieldManager",
22912 "schema": {
22913 "type": "string",
22914 "uniqueItems": true
22915 }
22916 },
22917 {
22918 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
22919 "in": "query",
22920 "name": "fieldValidation",
22921 "schema": {
22922 "type": "string",
22923 "uniqueItems": true
22924 }
22925 },
22926 {
22927 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
22928 "in": "query",
22929 "name": "force",
22930 "schema": {
22931 "type": "boolean",
22932 "uniqueItems": true
22933 }
22934 }
22935 ],
22936 "requestBody": {
22937 "content": {
22938 "application/apply-patch+yaml": {
22939 "schema": {
22940 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22941 }
22942 },
22943 "application/json-patch+json": {
22944 "schema": {
22945 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22946 }
22947 },
22948 "application/merge-patch+json": {
22949 "schema": {
22950 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22951 }
22952 },
22953 "application/strategic-merge-patch+json": {
22954 "schema": {
22955 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22956 }
22957 }
22958 },
22959 "required": true
22960 },
22961 "responses": {
22962 "200": {
22963 "content": {
22964 "application/json": {
22965 "schema": {
22966 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22967 }
22968 },
22969 "application/vnd.kubernetes.protobuf": {
22970 "schema": {
22971 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22972 }
22973 },
22974 "application/yaml": {
22975 "schema": {
22976 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22977 }
22978 }
22979 },
22980 "description": "OK"
22981 },
22982 "201": {
22983 "content": {
22984 "application/json": {
22985 "schema": {
22986 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22987 }
22988 },
22989 "application/vnd.kubernetes.protobuf": {
22990 "schema": {
22991 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22992 }
22993 },
22994 "application/yaml": {
22995 "schema": {
22996 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
22997 }
22998 }
22999 },
23000 "description": "Created"
23001 },
23002 "401": {
23003 "description": "Unauthorized"
23004 }
23005 },
23006 "tags": [
23007 "core_v1"
23008 ],
23009 "x-kubernetes-action": "patch",
23010 "x-kubernetes-group-version-kind": {
23011 "group": "",
23012 "kind": "ServiceAccount",
23013 "version": "v1"
23014 }
23015 },
23016 "put": {
23017 "description": "replace the specified ServiceAccount",
23018 "operationId": "replaceCoreV1NamespacedServiceAccount",
23019 "parameters": [
23020 {
23021 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23022 "in": "query",
23023 "name": "dryRun",
23024 "schema": {
23025 "type": "string",
23026 "uniqueItems": true
23027 }
23028 },
23029 {
23030 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23031 "in": "query",
23032 "name": "fieldManager",
23033 "schema": {
23034 "type": "string",
23035 "uniqueItems": true
23036 }
23037 },
23038 {
23039 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
23040 "in": "query",
23041 "name": "fieldValidation",
23042 "schema": {
23043 "type": "string",
23044 "uniqueItems": true
23045 }
23046 }
23047 ],
23048 "requestBody": {
23049 "content": {
23050 "*/*": {
23051 "schema": {
23052 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23053 }
23054 }
23055 },
23056 "required": true
23057 },
23058 "responses": {
23059 "200": {
23060 "content": {
23061 "application/json": {
23062 "schema": {
23063 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23064 }
23065 },
23066 "application/vnd.kubernetes.protobuf": {
23067 "schema": {
23068 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23069 }
23070 },
23071 "application/yaml": {
23072 "schema": {
23073 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23074 }
23075 }
23076 },
23077 "description": "OK"
23078 },
23079 "201": {
23080 "content": {
23081 "application/json": {
23082 "schema": {
23083 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23084 }
23085 },
23086 "application/vnd.kubernetes.protobuf": {
23087 "schema": {
23088 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23089 }
23090 },
23091 "application/yaml": {
23092 "schema": {
23093 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount"
23094 }
23095 }
23096 },
23097 "description": "Created"
23098 },
23099 "401": {
23100 "description": "Unauthorized"
23101 }
23102 },
23103 "tags": [
23104 "core_v1"
23105 ],
23106 "x-kubernetes-action": "put",
23107 "x-kubernetes-group-version-kind": {
23108 "group": "",
23109 "kind": "ServiceAccount",
23110 "version": "v1"
23111 }
23112 }
23113 },
23114 "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": {
23115 "parameters": [
23116 {
23117 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23118 "in": "query",
23119 "name": "dryRun",
23120 "schema": {
23121 "type": "string",
23122 "uniqueItems": true
23123 }
23124 },
23125 {
23126 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23127 "in": "query",
23128 "name": "fieldManager",
23129 "schema": {
23130 "type": "string",
23131 "uniqueItems": true
23132 }
23133 },
23134 {
23135 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
23136 "in": "query",
23137 "name": "fieldValidation",
23138 "schema": {
23139 "type": "string",
23140 "uniqueItems": true
23141 }
23142 },
23143 {
23144 "description": "name of the TokenRequest",
23145 "in": "path",
23146 "name": "name",
23147 "required": true,
23148 "schema": {
23149 "type": "string",
23150 "uniqueItems": true
23151 }
23152 },
23153 {
23154 "description": "object name and auth scope, such as for teams and projects",
23155 "in": "path",
23156 "name": "namespace",
23157 "required": true,
23158 "schema": {
23159 "type": "string",
23160 "uniqueItems": true
23161 }
23162 },
23163 {
23164 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
23165 "in": "query",
23166 "name": "pretty",
23167 "schema": {
23168 "type": "string",
23169 "uniqueItems": true
23170 }
23171 }
23172 ],
23173 "post": {
23174 "description": "create token of a ServiceAccount",
23175 "operationId": "createCoreV1NamespacedServiceAccountToken",
23176 "requestBody": {
23177 "content": {
23178 "*/*": {
23179 "schema": {
23180 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23181 }
23182 }
23183 },
23184 "required": true
23185 },
23186 "responses": {
23187 "200": {
23188 "content": {
23189 "application/json": {
23190 "schema": {
23191 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23192 }
23193 },
23194 "application/vnd.kubernetes.protobuf": {
23195 "schema": {
23196 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23197 }
23198 },
23199 "application/yaml": {
23200 "schema": {
23201 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23202 }
23203 }
23204 },
23205 "description": "OK"
23206 },
23207 "201": {
23208 "content": {
23209 "application/json": {
23210 "schema": {
23211 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23212 }
23213 },
23214 "application/vnd.kubernetes.protobuf": {
23215 "schema": {
23216 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23217 }
23218 },
23219 "application/yaml": {
23220 "schema": {
23221 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23222 }
23223 }
23224 },
23225 "description": "Created"
23226 },
23227 "202": {
23228 "content": {
23229 "application/json": {
23230 "schema": {
23231 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23232 }
23233 },
23234 "application/vnd.kubernetes.protobuf": {
23235 "schema": {
23236 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23237 }
23238 },
23239 "application/yaml": {
23240 "schema": {
23241 "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest"
23242 }
23243 }
23244 },
23245 "description": "Accepted"
23246 },
23247 "401": {
23248 "description": "Unauthorized"
23249 }
23250 },
23251 "tags": [
23252 "core_v1"
23253 ],
23254 "x-kubernetes-action": "post",
23255 "x-kubernetes-group-version-kind": {
23256 "group": "authentication.k8s.io",
23257 "kind": "TokenRequest",
23258 "version": "v1"
23259 }
23260 }
23261 },
23262 "/api/v1/namespaces/{namespace}/services": {
23263 "delete": {
23264 "description": "delete collection of Service",
23265 "operationId": "deleteCoreV1CollectionNamespacedService",
23266 "parameters": [
23267 {
23268 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23269 "in": "query",
23270 "name": "continue",
23271 "schema": {
23272 "type": "string",
23273 "uniqueItems": true
23274 }
23275 },
23276 {
23277 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23278 "in": "query",
23279 "name": "dryRun",
23280 "schema": {
23281 "type": "string",
23282 "uniqueItems": true
23283 }
23284 },
23285 {
23286 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23287 "in": "query",
23288 "name": "fieldSelector",
23289 "schema": {
23290 "type": "string",
23291 "uniqueItems": true
23292 }
23293 },
23294 {
23295 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23296 "in": "query",
23297 "name": "gracePeriodSeconds",
23298 "schema": {
23299 "type": "integer",
23300 "uniqueItems": true
23301 }
23302 },
23303 {
23304 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23305 "in": "query",
23306 "name": "labelSelector",
23307 "schema": {
23308 "type": "string",
23309 "uniqueItems": true
23310 }
23311 },
23312 {
23313 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23314 "in": "query",
23315 "name": "limit",
23316 "schema": {
23317 "type": "integer",
23318 "uniqueItems": true
23319 }
23320 },
23321 {
23322 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23323 "in": "query",
23324 "name": "orphanDependents",
23325 "schema": {
23326 "type": "boolean",
23327 "uniqueItems": true
23328 }
23329 },
23330 {
23331 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23332 "in": "query",
23333 "name": "propagationPolicy",
23334 "schema": {
23335 "type": "string",
23336 "uniqueItems": true
23337 }
23338 },
23339 {
23340 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23341 "in": "query",
23342 "name": "resourceVersion",
23343 "schema": {
23344 "type": "string",
23345 "uniqueItems": true
23346 }
23347 },
23348 {
23349 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23350 "in": "query",
23351 "name": "resourceVersionMatch",
23352 "schema": {
23353 "type": "string",
23354 "uniqueItems": true
23355 }
23356 },
23357 {
23358 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
23359 "in": "query",
23360 "name": "sendInitialEvents",
23361 "schema": {
23362 "type": "boolean",
23363 "uniqueItems": true
23364 }
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 "schema": {
23371 "type": "integer",
23372 "uniqueItems": true
23373 }
23374 }
23375 ],
23376 "requestBody": {
23377 "content": {
23378 "*/*": {
23379 "schema": {
23380 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23381 }
23382 }
23383 }
23384 },
23385 "responses": {
23386 "200": {
23387 "content": {
23388 "application/json": {
23389 "schema": {
23390 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23391 }
23392 },
23393 "application/vnd.kubernetes.protobuf": {
23394 "schema": {
23395 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23396 }
23397 },
23398 "application/yaml": {
23399 "schema": {
23400 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23401 }
23402 }
23403 },
23404 "description": "OK"
23405 },
23406 "401": {
23407 "description": "Unauthorized"
23408 }
23409 },
23410 "tags": [
23411 "core_v1"
23412 ],
23413 "x-kubernetes-action": "deletecollection",
23414 "x-kubernetes-group-version-kind": {
23415 "group": "",
23416 "kind": "Service",
23417 "version": "v1"
23418 }
23419 },
23420 "get": {
23421 "description": "list or watch objects of kind Service",
23422 "operationId": "listCoreV1NamespacedService",
23423 "parameters": [
23424 {
23425 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
23426 "in": "query",
23427 "name": "allowWatchBookmarks",
23428 "schema": {
23429 "type": "boolean",
23430 "uniqueItems": true
23431 }
23432 },
23433 {
23434 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23435 "in": "query",
23436 "name": "continue",
23437 "schema": {
23438 "type": "string",
23439 "uniqueItems": true
23440 }
23441 },
23442 {
23443 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23444 "in": "query",
23445 "name": "fieldSelector",
23446 "schema": {
23447 "type": "string",
23448 "uniqueItems": true
23449 }
23450 },
23451 {
23452 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23453 "in": "query",
23454 "name": "labelSelector",
23455 "schema": {
23456 "type": "string",
23457 "uniqueItems": true
23458 }
23459 },
23460 {
23461 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23462 "in": "query",
23463 "name": "limit",
23464 "schema": {
23465 "type": "integer",
23466 "uniqueItems": true
23467 }
23468 },
23469 {
23470 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23471 "in": "query",
23472 "name": "resourceVersion",
23473 "schema": {
23474 "type": "string",
23475 "uniqueItems": true
23476 }
23477 },
23478 {
23479 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23480 "in": "query",
23481 "name": "resourceVersionMatch",
23482 "schema": {
23483 "type": "string",
23484 "uniqueItems": true
23485 }
23486 },
23487 {
23488 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
23489 "in": "query",
23490 "name": "sendInitialEvents",
23491 "schema": {
23492 "type": "boolean",
23493 "uniqueItems": true
23494 }
23495 },
23496 {
23497 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23498 "in": "query",
23499 "name": "timeoutSeconds",
23500 "schema": {
23501 "type": "integer",
23502 "uniqueItems": true
23503 }
23504 },
23505 {
23506 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23507 "in": "query",
23508 "name": "watch",
23509 "schema": {
23510 "type": "boolean",
23511 "uniqueItems": true
23512 }
23513 }
23514 ],
23515 "responses": {
23516 "200": {
23517 "content": {
23518 "application/json": {
23519 "schema": {
23520 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
23521 }
23522 },
23523 "application/json;stream=watch": {
23524 "schema": {
23525 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
23526 }
23527 },
23528 "application/vnd.kubernetes.protobuf": {
23529 "schema": {
23530 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
23531 }
23532 },
23533 "application/vnd.kubernetes.protobuf;stream=watch": {
23534 "schema": {
23535 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
23536 }
23537 },
23538 "application/yaml": {
23539 "schema": {
23540 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
23541 }
23542 }
23543 },
23544 "description": "OK"
23545 },
23546 "401": {
23547 "description": "Unauthorized"
23548 }
23549 },
23550 "tags": [
23551 "core_v1"
23552 ],
23553 "x-kubernetes-action": "list",
23554 "x-kubernetes-group-version-kind": {
23555 "group": "",
23556 "kind": "Service",
23557 "version": "v1"
23558 }
23559 },
23560 "parameters": [
23561 {
23562 "description": "object name and auth scope, such as for teams and projects",
23563 "in": "path",
23564 "name": "namespace",
23565 "required": true,
23566 "schema": {
23567 "type": "string",
23568 "uniqueItems": true
23569 }
23570 },
23571 {
23572 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
23573 "in": "query",
23574 "name": "pretty",
23575 "schema": {
23576 "type": "string",
23577 "uniqueItems": true
23578 }
23579 }
23580 ],
23581 "post": {
23582 "description": "create a Service",
23583 "operationId": "createCoreV1NamespacedService",
23584 "parameters": [
23585 {
23586 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23587 "in": "query",
23588 "name": "dryRun",
23589 "schema": {
23590 "type": "string",
23591 "uniqueItems": true
23592 }
23593 },
23594 {
23595 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23596 "in": "query",
23597 "name": "fieldManager",
23598 "schema": {
23599 "type": "string",
23600 "uniqueItems": true
23601 }
23602 },
23603 {
23604 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
23605 "in": "query",
23606 "name": "fieldValidation",
23607 "schema": {
23608 "type": "string",
23609 "uniqueItems": true
23610 }
23611 }
23612 ],
23613 "requestBody": {
23614 "content": {
23615 "*/*": {
23616 "schema": {
23617 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23618 }
23619 }
23620 },
23621 "required": true
23622 },
23623 "responses": {
23624 "200": {
23625 "content": {
23626 "application/json": {
23627 "schema": {
23628 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23629 }
23630 },
23631 "application/vnd.kubernetes.protobuf": {
23632 "schema": {
23633 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23634 }
23635 },
23636 "application/yaml": {
23637 "schema": {
23638 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23639 }
23640 }
23641 },
23642 "description": "OK"
23643 },
23644 "201": {
23645 "content": {
23646 "application/json": {
23647 "schema": {
23648 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23649 }
23650 },
23651 "application/vnd.kubernetes.protobuf": {
23652 "schema": {
23653 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23654 }
23655 },
23656 "application/yaml": {
23657 "schema": {
23658 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23659 }
23660 }
23661 },
23662 "description": "Created"
23663 },
23664 "202": {
23665 "content": {
23666 "application/json": {
23667 "schema": {
23668 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23669 }
23670 },
23671 "application/vnd.kubernetes.protobuf": {
23672 "schema": {
23673 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23674 }
23675 },
23676 "application/yaml": {
23677 "schema": {
23678 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23679 }
23680 }
23681 },
23682 "description": "Accepted"
23683 },
23684 "401": {
23685 "description": "Unauthorized"
23686 }
23687 },
23688 "tags": [
23689 "core_v1"
23690 ],
23691 "x-kubernetes-action": "post",
23692 "x-kubernetes-group-version-kind": {
23693 "group": "",
23694 "kind": "Service",
23695 "version": "v1"
23696 }
23697 }
23698 },
23699 "/api/v1/namespaces/{namespace}/services/{name}": {
23700 "delete": {
23701 "description": "delete a Service",
23702 "operationId": "deleteCoreV1NamespacedService",
23703 "parameters": [
23704 {
23705 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23706 "in": "query",
23707 "name": "dryRun",
23708 "schema": {
23709 "type": "string",
23710 "uniqueItems": true
23711 }
23712 },
23713 {
23714 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23715 "in": "query",
23716 "name": "gracePeriodSeconds",
23717 "schema": {
23718 "type": "integer",
23719 "uniqueItems": true
23720 }
23721 },
23722 {
23723 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23724 "in": "query",
23725 "name": "orphanDependents",
23726 "schema": {
23727 "type": "boolean",
23728 "uniqueItems": true
23729 }
23730 },
23731 {
23732 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23733 "in": "query",
23734 "name": "propagationPolicy",
23735 "schema": {
23736 "type": "string",
23737 "uniqueItems": true
23738 }
23739 }
23740 ],
23741 "requestBody": {
23742 "content": {
23743 "*/*": {
23744 "schema": {
23745 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23746 }
23747 }
23748 }
23749 },
23750 "responses": {
23751 "200": {
23752 "content": {
23753 "application/json": {
23754 "schema": {
23755 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23756 }
23757 },
23758 "application/vnd.kubernetes.protobuf": {
23759 "schema": {
23760 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23761 }
23762 },
23763 "application/yaml": {
23764 "schema": {
23765 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23766 }
23767 }
23768 },
23769 "description": "OK"
23770 },
23771 "202": {
23772 "content": {
23773 "application/json": {
23774 "schema": {
23775 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23776 }
23777 },
23778 "application/vnd.kubernetes.protobuf": {
23779 "schema": {
23780 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23781 }
23782 },
23783 "application/yaml": {
23784 "schema": {
23785 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23786 }
23787 }
23788 },
23789 "description": "Accepted"
23790 },
23791 "401": {
23792 "description": "Unauthorized"
23793 }
23794 },
23795 "tags": [
23796 "core_v1"
23797 ],
23798 "x-kubernetes-action": "delete",
23799 "x-kubernetes-group-version-kind": {
23800 "group": "",
23801 "kind": "Service",
23802 "version": "v1"
23803 }
23804 },
23805 "get": {
23806 "description": "read the specified Service",
23807 "operationId": "readCoreV1NamespacedService",
23808 "responses": {
23809 "200": {
23810 "content": {
23811 "application/json": {
23812 "schema": {
23813 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23814 }
23815 },
23816 "application/vnd.kubernetes.protobuf": {
23817 "schema": {
23818 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23819 }
23820 },
23821 "application/yaml": {
23822 "schema": {
23823 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23824 }
23825 }
23826 },
23827 "description": "OK"
23828 },
23829 "401": {
23830 "description": "Unauthorized"
23831 }
23832 },
23833 "tags": [
23834 "core_v1"
23835 ],
23836 "x-kubernetes-action": "get",
23837 "x-kubernetes-group-version-kind": {
23838 "group": "",
23839 "kind": "Service",
23840 "version": "v1"
23841 }
23842 },
23843 "parameters": [
23844 {
23845 "description": "name of the Service",
23846 "in": "path",
23847 "name": "name",
23848 "required": true,
23849 "schema": {
23850 "type": "string",
23851 "uniqueItems": true
23852 }
23853 },
23854 {
23855 "description": "object name and auth scope, such as for teams and projects",
23856 "in": "path",
23857 "name": "namespace",
23858 "required": true,
23859 "schema": {
23860 "type": "string",
23861 "uniqueItems": true
23862 }
23863 },
23864 {
23865 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
23866 "in": "query",
23867 "name": "pretty",
23868 "schema": {
23869 "type": "string",
23870 "uniqueItems": true
23871 }
23872 }
23873 ],
23874 "patch": {
23875 "description": "partially update the specified Service",
23876 "operationId": "patchCoreV1NamespacedService",
23877 "parameters": [
23878 {
23879 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23880 "in": "query",
23881 "name": "dryRun",
23882 "schema": {
23883 "type": "string",
23884 "uniqueItems": true
23885 }
23886 },
23887 {
23888 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
23889 "in": "query",
23890 "name": "fieldManager",
23891 "schema": {
23892 "type": "string",
23893 "uniqueItems": true
23894 }
23895 },
23896 {
23897 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
23898 "in": "query",
23899 "name": "fieldValidation",
23900 "schema": {
23901 "type": "string",
23902 "uniqueItems": true
23903 }
23904 },
23905 {
23906 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
23907 "in": "query",
23908 "name": "force",
23909 "schema": {
23910 "type": "boolean",
23911 "uniqueItems": true
23912 }
23913 }
23914 ],
23915 "requestBody": {
23916 "content": {
23917 "application/apply-patch+yaml": {
23918 "schema": {
23919 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23920 }
23921 },
23922 "application/json-patch+json": {
23923 "schema": {
23924 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23925 }
23926 },
23927 "application/merge-patch+json": {
23928 "schema": {
23929 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23930 }
23931 },
23932 "application/strategic-merge-patch+json": {
23933 "schema": {
23934 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23935 }
23936 }
23937 },
23938 "required": true
23939 },
23940 "responses": {
23941 "200": {
23942 "content": {
23943 "application/json": {
23944 "schema": {
23945 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23946 }
23947 },
23948 "application/vnd.kubernetes.protobuf": {
23949 "schema": {
23950 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23951 }
23952 },
23953 "application/yaml": {
23954 "schema": {
23955 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23956 }
23957 }
23958 },
23959 "description": "OK"
23960 },
23961 "201": {
23962 "content": {
23963 "application/json": {
23964 "schema": {
23965 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23966 }
23967 },
23968 "application/vnd.kubernetes.protobuf": {
23969 "schema": {
23970 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23971 }
23972 },
23973 "application/yaml": {
23974 "schema": {
23975 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
23976 }
23977 }
23978 },
23979 "description": "Created"
23980 },
23981 "401": {
23982 "description": "Unauthorized"
23983 }
23984 },
23985 "tags": [
23986 "core_v1"
23987 ],
23988 "x-kubernetes-action": "patch",
23989 "x-kubernetes-group-version-kind": {
23990 "group": "",
23991 "kind": "Service",
23992 "version": "v1"
23993 }
23994 },
23995 "put": {
23996 "description": "replace the specified Service",
23997 "operationId": "replaceCoreV1NamespacedService",
23998 "parameters": [
23999 {
24000 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24001 "in": "query",
24002 "name": "dryRun",
24003 "schema": {
24004 "type": "string",
24005 "uniqueItems": true
24006 }
24007 },
24008 {
24009 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24010 "in": "query",
24011 "name": "fieldManager",
24012 "schema": {
24013 "type": "string",
24014 "uniqueItems": true
24015 }
24016 },
24017 {
24018 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
24019 "in": "query",
24020 "name": "fieldValidation",
24021 "schema": {
24022 "type": "string",
24023 "uniqueItems": true
24024 }
24025 }
24026 ],
24027 "requestBody": {
24028 "content": {
24029 "*/*": {
24030 "schema": {
24031 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24032 }
24033 }
24034 },
24035 "required": true
24036 },
24037 "responses": {
24038 "200": {
24039 "content": {
24040 "application/json": {
24041 "schema": {
24042 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24043 }
24044 },
24045 "application/vnd.kubernetes.protobuf": {
24046 "schema": {
24047 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24048 }
24049 },
24050 "application/yaml": {
24051 "schema": {
24052 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24053 }
24054 }
24055 },
24056 "description": "OK"
24057 },
24058 "201": {
24059 "content": {
24060 "application/json": {
24061 "schema": {
24062 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24063 }
24064 },
24065 "application/vnd.kubernetes.protobuf": {
24066 "schema": {
24067 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24068 }
24069 },
24070 "application/yaml": {
24071 "schema": {
24072 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24073 }
24074 }
24075 },
24076 "description": "Created"
24077 },
24078 "401": {
24079 "description": "Unauthorized"
24080 }
24081 },
24082 "tags": [
24083 "core_v1"
24084 ],
24085 "x-kubernetes-action": "put",
24086 "x-kubernetes-group-version-kind": {
24087 "group": "",
24088 "kind": "Service",
24089 "version": "v1"
24090 }
24091 }
24092 },
24093 "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
24094 "delete": {
24095 "description": "connect DELETE requests to proxy of Service",
24096 "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
24097 "responses": {
24098 "200": {
24099 "content": {
24100 "*/*": {
24101 "schema": {
24102 "type": "string"
24103 }
24104 }
24105 },
24106 "description": "OK"
24107 },
24108 "401": {
24109 "description": "Unauthorized"
24110 }
24111 },
24112 "tags": [
24113 "core_v1"
24114 ],
24115 "x-kubernetes-action": "connect",
24116 "x-kubernetes-group-version-kind": {
24117 "group": "",
24118 "kind": "ServiceProxyOptions",
24119 "version": "v1"
24120 }
24121 },
24122 "get": {
24123 "description": "connect GET requests to proxy of Service",
24124 "operationId": "connectCoreV1GetNamespacedServiceProxy",
24125 "responses": {
24126 "200": {
24127 "content": {
24128 "*/*": {
24129 "schema": {
24130 "type": "string"
24131 }
24132 }
24133 },
24134 "description": "OK"
24135 },
24136 "401": {
24137 "description": "Unauthorized"
24138 }
24139 },
24140 "tags": [
24141 "core_v1"
24142 ],
24143 "x-kubernetes-action": "connect",
24144 "x-kubernetes-group-version-kind": {
24145 "group": "",
24146 "kind": "ServiceProxyOptions",
24147 "version": "v1"
24148 }
24149 },
24150 "head": {
24151 "description": "connect HEAD requests to proxy of Service",
24152 "operationId": "connectCoreV1HeadNamespacedServiceProxy",
24153 "responses": {
24154 "200": {
24155 "content": {
24156 "*/*": {
24157 "schema": {
24158 "type": "string"
24159 }
24160 }
24161 },
24162 "description": "OK"
24163 },
24164 "401": {
24165 "description": "Unauthorized"
24166 }
24167 },
24168 "tags": [
24169 "core_v1"
24170 ],
24171 "x-kubernetes-action": "connect",
24172 "x-kubernetes-group-version-kind": {
24173 "group": "",
24174 "kind": "ServiceProxyOptions",
24175 "version": "v1"
24176 }
24177 },
24178 "options": {
24179 "description": "connect OPTIONS requests to proxy of Service",
24180 "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
24181 "responses": {
24182 "200": {
24183 "content": {
24184 "*/*": {
24185 "schema": {
24186 "type": "string"
24187 }
24188 }
24189 },
24190 "description": "OK"
24191 },
24192 "401": {
24193 "description": "Unauthorized"
24194 }
24195 },
24196 "tags": [
24197 "core_v1"
24198 ],
24199 "x-kubernetes-action": "connect",
24200 "x-kubernetes-group-version-kind": {
24201 "group": "",
24202 "kind": "ServiceProxyOptions",
24203 "version": "v1"
24204 }
24205 },
24206 "parameters": [
24207 {
24208 "description": "name of the ServiceProxyOptions",
24209 "in": "path",
24210 "name": "name",
24211 "required": true,
24212 "schema": {
24213 "type": "string",
24214 "uniqueItems": true
24215 }
24216 },
24217 {
24218 "description": "object name and auth scope, such as for teams and projects",
24219 "in": "path",
24220 "name": "namespace",
24221 "required": true,
24222 "schema": {
24223 "type": "string",
24224 "uniqueItems": true
24225 }
24226 },
24227 {
24228 "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.",
24229 "in": "query",
24230 "name": "path",
24231 "schema": {
24232 "type": "string",
24233 "uniqueItems": true
24234 }
24235 }
24236 ],
24237 "patch": {
24238 "description": "connect PATCH requests to proxy of Service",
24239 "operationId": "connectCoreV1PatchNamespacedServiceProxy",
24240 "responses": {
24241 "200": {
24242 "content": {
24243 "*/*": {
24244 "schema": {
24245 "type": "string"
24246 }
24247 }
24248 },
24249 "description": "OK"
24250 },
24251 "401": {
24252 "description": "Unauthorized"
24253 }
24254 },
24255 "tags": [
24256 "core_v1"
24257 ],
24258 "x-kubernetes-action": "connect",
24259 "x-kubernetes-group-version-kind": {
24260 "group": "",
24261 "kind": "ServiceProxyOptions",
24262 "version": "v1"
24263 }
24264 },
24265 "post": {
24266 "description": "connect POST requests to proxy of Service",
24267 "operationId": "connectCoreV1PostNamespacedServiceProxy",
24268 "responses": {
24269 "200": {
24270 "content": {
24271 "*/*": {
24272 "schema": {
24273 "type": "string"
24274 }
24275 }
24276 },
24277 "description": "OK"
24278 },
24279 "401": {
24280 "description": "Unauthorized"
24281 }
24282 },
24283 "tags": [
24284 "core_v1"
24285 ],
24286 "x-kubernetes-action": "connect",
24287 "x-kubernetes-group-version-kind": {
24288 "group": "",
24289 "kind": "ServiceProxyOptions",
24290 "version": "v1"
24291 }
24292 },
24293 "put": {
24294 "description": "connect PUT requests to proxy of Service",
24295 "operationId": "connectCoreV1PutNamespacedServiceProxy",
24296 "responses": {
24297 "200": {
24298 "content": {
24299 "*/*": {
24300 "schema": {
24301 "type": "string"
24302 }
24303 }
24304 },
24305 "description": "OK"
24306 },
24307 "401": {
24308 "description": "Unauthorized"
24309 }
24310 },
24311 "tags": [
24312 "core_v1"
24313 ],
24314 "x-kubernetes-action": "connect",
24315 "x-kubernetes-group-version-kind": {
24316 "group": "",
24317 "kind": "ServiceProxyOptions",
24318 "version": "v1"
24319 }
24320 }
24321 },
24322 "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
24323 "delete": {
24324 "description": "connect DELETE requests to proxy of Service",
24325 "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
24326 "responses": {
24327 "200": {
24328 "content": {
24329 "*/*": {
24330 "schema": {
24331 "type": "string"
24332 }
24333 }
24334 },
24335 "description": "OK"
24336 },
24337 "401": {
24338 "description": "Unauthorized"
24339 }
24340 },
24341 "tags": [
24342 "core_v1"
24343 ],
24344 "x-kubernetes-action": "connect",
24345 "x-kubernetes-group-version-kind": {
24346 "group": "",
24347 "kind": "ServiceProxyOptions",
24348 "version": "v1"
24349 }
24350 },
24351 "get": {
24352 "description": "connect GET requests to proxy of Service",
24353 "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
24354 "responses": {
24355 "200": {
24356 "content": {
24357 "*/*": {
24358 "schema": {
24359 "type": "string"
24360 }
24361 }
24362 },
24363 "description": "OK"
24364 },
24365 "401": {
24366 "description": "Unauthorized"
24367 }
24368 },
24369 "tags": [
24370 "core_v1"
24371 ],
24372 "x-kubernetes-action": "connect",
24373 "x-kubernetes-group-version-kind": {
24374 "group": "",
24375 "kind": "ServiceProxyOptions",
24376 "version": "v1"
24377 }
24378 },
24379 "head": {
24380 "description": "connect HEAD requests to proxy of Service",
24381 "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
24382 "responses": {
24383 "200": {
24384 "content": {
24385 "*/*": {
24386 "schema": {
24387 "type": "string"
24388 }
24389 }
24390 },
24391 "description": "OK"
24392 },
24393 "401": {
24394 "description": "Unauthorized"
24395 }
24396 },
24397 "tags": [
24398 "core_v1"
24399 ],
24400 "x-kubernetes-action": "connect",
24401 "x-kubernetes-group-version-kind": {
24402 "group": "",
24403 "kind": "ServiceProxyOptions",
24404 "version": "v1"
24405 }
24406 },
24407 "options": {
24408 "description": "connect OPTIONS requests to proxy of Service",
24409 "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
24410 "responses": {
24411 "200": {
24412 "content": {
24413 "*/*": {
24414 "schema": {
24415 "type": "string"
24416 }
24417 }
24418 },
24419 "description": "OK"
24420 },
24421 "401": {
24422 "description": "Unauthorized"
24423 }
24424 },
24425 "tags": [
24426 "core_v1"
24427 ],
24428 "x-kubernetes-action": "connect",
24429 "x-kubernetes-group-version-kind": {
24430 "group": "",
24431 "kind": "ServiceProxyOptions",
24432 "version": "v1"
24433 }
24434 },
24435 "parameters": [
24436 {
24437 "description": "name of the ServiceProxyOptions",
24438 "in": "path",
24439 "name": "name",
24440 "required": true,
24441 "schema": {
24442 "type": "string",
24443 "uniqueItems": true
24444 }
24445 },
24446 {
24447 "description": "object name and auth scope, such as for teams and projects",
24448 "in": "path",
24449 "name": "namespace",
24450 "required": true,
24451 "schema": {
24452 "type": "string",
24453 "uniqueItems": true
24454 }
24455 },
24456 {
24457 "description": "path to the resource",
24458 "in": "path",
24459 "name": "path",
24460 "required": true,
24461 "schema": {
24462 "type": "string",
24463 "uniqueItems": true
24464 }
24465 },
24466 {
24467 "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.",
24468 "in": "query",
24469 "name": "path",
24470 "schema": {
24471 "type": "string",
24472 "uniqueItems": true
24473 }
24474 }
24475 ],
24476 "patch": {
24477 "description": "connect PATCH requests to proxy of Service",
24478 "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath",
24479 "responses": {
24480 "200": {
24481 "content": {
24482 "*/*": {
24483 "schema": {
24484 "type": "string"
24485 }
24486 }
24487 },
24488 "description": "OK"
24489 },
24490 "401": {
24491 "description": "Unauthorized"
24492 }
24493 },
24494 "tags": [
24495 "core_v1"
24496 ],
24497 "x-kubernetes-action": "connect",
24498 "x-kubernetes-group-version-kind": {
24499 "group": "",
24500 "kind": "ServiceProxyOptions",
24501 "version": "v1"
24502 }
24503 },
24504 "post": {
24505 "description": "connect POST requests to proxy of Service",
24506 "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
24507 "responses": {
24508 "200": {
24509 "content": {
24510 "*/*": {
24511 "schema": {
24512 "type": "string"
24513 }
24514 }
24515 },
24516 "description": "OK"
24517 },
24518 "401": {
24519 "description": "Unauthorized"
24520 }
24521 },
24522 "tags": [
24523 "core_v1"
24524 ],
24525 "x-kubernetes-action": "connect",
24526 "x-kubernetes-group-version-kind": {
24527 "group": "",
24528 "kind": "ServiceProxyOptions",
24529 "version": "v1"
24530 }
24531 },
24532 "put": {
24533 "description": "connect PUT requests to proxy of Service",
24534 "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
24535 "responses": {
24536 "200": {
24537 "content": {
24538 "*/*": {
24539 "schema": {
24540 "type": "string"
24541 }
24542 }
24543 },
24544 "description": "OK"
24545 },
24546 "401": {
24547 "description": "Unauthorized"
24548 }
24549 },
24550 "tags": [
24551 "core_v1"
24552 ],
24553 "x-kubernetes-action": "connect",
24554 "x-kubernetes-group-version-kind": {
24555 "group": "",
24556 "kind": "ServiceProxyOptions",
24557 "version": "v1"
24558 }
24559 }
24560 },
24561 "/api/v1/namespaces/{namespace}/services/{name}/status": {
24562 "get": {
24563 "description": "read status of the specified Service",
24564 "operationId": "readCoreV1NamespacedServiceStatus",
24565 "responses": {
24566 "200": {
24567 "content": {
24568 "application/json": {
24569 "schema": {
24570 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24571 }
24572 },
24573 "application/vnd.kubernetes.protobuf": {
24574 "schema": {
24575 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24576 }
24577 },
24578 "application/yaml": {
24579 "schema": {
24580 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24581 }
24582 }
24583 },
24584 "description": "OK"
24585 },
24586 "401": {
24587 "description": "Unauthorized"
24588 }
24589 },
24590 "tags": [
24591 "core_v1"
24592 ],
24593 "x-kubernetes-action": "get",
24594 "x-kubernetes-group-version-kind": {
24595 "group": "",
24596 "kind": "Service",
24597 "version": "v1"
24598 }
24599 },
24600 "parameters": [
24601 {
24602 "description": "name of the Service",
24603 "in": "path",
24604 "name": "name",
24605 "required": true,
24606 "schema": {
24607 "type": "string",
24608 "uniqueItems": true
24609 }
24610 },
24611 {
24612 "description": "object name and auth scope, such as for teams and projects",
24613 "in": "path",
24614 "name": "namespace",
24615 "required": true,
24616 "schema": {
24617 "type": "string",
24618 "uniqueItems": true
24619 }
24620 },
24621 {
24622 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
24623 "in": "query",
24624 "name": "pretty",
24625 "schema": {
24626 "type": "string",
24627 "uniqueItems": true
24628 }
24629 }
24630 ],
24631 "patch": {
24632 "description": "partially update status of the specified Service",
24633 "operationId": "patchCoreV1NamespacedServiceStatus",
24634 "parameters": [
24635 {
24636 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24637 "in": "query",
24638 "name": "dryRun",
24639 "schema": {
24640 "type": "string",
24641 "uniqueItems": true
24642 }
24643 },
24644 {
24645 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24646 "in": "query",
24647 "name": "fieldManager",
24648 "schema": {
24649 "type": "string",
24650 "uniqueItems": true
24651 }
24652 },
24653 {
24654 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
24655 "in": "query",
24656 "name": "fieldValidation",
24657 "schema": {
24658 "type": "string",
24659 "uniqueItems": true
24660 }
24661 },
24662 {
24663 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
24664 "in": "query",
24665 "name": "force",
24666 "schema": {
24667 "type": "boolean",
24668 "uniqueItems": true
24669 }
24670 }
24671 ],
24672 "requestBody": {
24673 "content": {
24674 "application/apply-patch+yaml": {
24675 "schema": {
24676 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24677 }
24678 },
24679 "application/json-patch+json": {
24680 "schema": {
24681 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24682 }
24683 },
24684 "application/merge-patch+json": {
24685 "schema": {
24686 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24687 }
24688 },
24689 "application/strategic-merge-patch+json": {
24690 "schema": {
24691 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24692 }
24693 }
24694 },
24695 "required": true
24696 },
24697 "responses": {
24698 "200": {
24699 "content": {
24700 "application/json": {
24701 "schema": {
24702 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24703 }
24704 },
24705 "application/vnd.kubernetes.protobuf": {
24706 "schema": {
24707 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24708 }
24709 },
24710 "application/yaml": {
24711 "schema": {
24712 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24713 }
24714 }
24715 },
24716 "description": "OK"
24717 },
24718 "201": {
24719 "content": {
24720 "application/json": {
24721 "schema": {
24722 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24723 }
24724 },
24725 "application/vnd.kubernetes.protobuf": {
24726 "schema": {
24727 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24728 }
24729 },
24730 "application/yaml": {
24731 "schema": {
24732 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24733 }
24734 }
24735 },
24736 "description": "Created"
24737 },
24738 "401": {
24739 "description": "Unauthorized"
24740 }
24741 },
24742 "tags": [
24743 "core_v1"
24744 ],
24745 "x-kubernetes-action": "patch",
24746 "x-kubernetes-group-version-kind": {
24747 "group": "",
24748 "kind": "Service",
24749 "version": "v1"
24750 }
24751 },
24752 "put": {
24753 "description": "replace status of the specified Service",
24754 "operationId": "replaceCoreV1NamespacedServiceStatus",
24755 "parameters": [
24756 {
24757 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24758 "in": "query",
24759 "name": "dryRun",
24760 "schema": {
24761 "type": "string",
24762 "uniqueItems": true
24763 }
24764 },
24765 {
24766 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24767 "in": "query",
24768 "name": "fieldManager",
24769 "schema": {
24770 "type": "string",
24771 "uniqueItems": true
24772 }
24773 },
24774 {
24775 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
24776 "in": "query",
24777 "name": "fieldValidation",
24778 "schema": {
24779 "type": "string",
24780 "uniqueItems": true
24781 }
24782 }
24783 ],
24784 "requestBody": {
24785 "content": {
24786 "*/*": {
24787 "schema": {
24788 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24789 }
24790 }
24791 },
24792 "required": true
24793 },
24794 "responses": {
24795 "200": {
24796 "content": {
24797 "application/json": {
24798 "schema": {
24799 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24800 }
24801 },
24802 "application/vnd.kubernetes.protobuf": {
24803 "schema": {
24804 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24805 }
24806 },
24807 "application/yaml": {
24808 "schema": {
24809 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24810 }
24811 }
24812 },
24813 "description": "OK"
24814 },
24815 "201": {
24816 "content": {
24817 "application/json": {
24818 "schema": {
24819 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24820 }
24821 },
24822 "application/vnd.kubernetes.protobuf": {
24823 "schema": {
24824 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24825 }
24826 },
24827 "application/yaml": {
24828 "schema": {
24829 "$ref": "#/components/schemas/io.k8s.api.core.v1.Service"
24830 }
24831 }
24832 },
24833 "description": "Created"
24834 },
24835 "401": {
24836 "description": "Unauthorized"
24837 }
24838 },
24839 "tags": [
24840 "core_v1"
24841 ],
24842 "x-kubernetes-action": "put",
24843 "x-kubernetes-group-version-kind": {
24844 "group": "",
24845 "kind": "Service",
24846 "version": "v1"
24847 }
24848 }
24849 },
24850 "/api/v1/namespaces/{name}": {
24851 "delete": {
24852 "description": "delete a Namespace",
24853 "operationId": "deleteCoreV1Namespace",
24854 "parameters": [
24855 {
24856 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24857 "in": "query",
24858 "name": "dryRun",
24859 "schema": {
24860 "type": "string",
24861 "uniqueItems": true
24862 }
24863 },
24864 {
24865 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24866 "in": "query",
24867 "name": "gracePeriodSeconds",
24868 "schema": {
24869 "type": "integer",
24870 "uniqueItems": true
24871 }
24872 },
24873 {
24874 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24875 "in": "query",
24876 "name": "orphanDependents",
24877 "schema": {
24878 "type": "boolean",
24879 "uniqueItems": true
24880 }
24881 },
24882 {
24883 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24884 "in": "query",
24885 "name": "propagationPolicy",
24886 "schema": {
24887 "type": "string",
24888 "uniqueItems": true
24889 }
24890 }
24891 ],
24892 "requestBody": {
24893 "content": {
24894 "*/*": {
24895 "schema": {
24896 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
24897 }
24898 }
24899 }
24900 },
24901 "responses": {
24902 "200": {
24903 "content": {
24904 "application/json": {
24905 "schema": {
24906 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24907 }
24908 },
24909 "application/vnd.kubernetes.protobuf": {
24910 "schema": {
24911 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24912 }
24913 },
24914 "application/yaml": {
24915 "schema": {
24916 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24917 }
24918 }
24919 },
24920 "description": "OK"
24921 },
24922 "202": {
24923 "content": {
24924 "application/json": {
24925 "schema": {
24926 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24927 }
24928 },
24929 "application/vnd.kubernetes.protobuf": {
24930 "schema": {
24931 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24932 }
24933 },
24934 "application/yaml": {
24935 "schema": {
24936 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24937 }
24938 }
24939 },
24940 "description": "Accepted"
24941 },
24942 "401": {
24943 "description": "Unauthorized"
24944 }
24945 },
24946 "tags": [
24947 "core_v1"
24948 ],
24949 "x-kubernetes-action": "delete",
24950 "x-kubernetes-group-version-kind": {
24951 "group": "",
24952 "kind": "Namespace",
24953 "version": "v1"
24954 }
24955 },
24956 "get": {
24957 "description": "read the specified Namespace",
24958 "operationId": "readCoreV1Namespace",
24959 "responses": {
24960 "200": {
24961 "content": {
24962 "application/json": {
24963 "schema": {
24964 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
24965 }
24966 },
24967 "application/vnd.kubernetes.protobuf": {
24968 "schema": {
24969 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
24970 }
24971 },
24972 "application/yaml": {
24973 "schema": {
24974 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
24975 }
24976 }
24977 },
24978 "description": "OK"
24979 },
24980 "401": {
24981 "description": "Unauthorized"
24982 }
24983 },
24984 "tags": [
24985 "core_v1"
24986 ],
24987 "x-kubernetes-action": "get",
24988 "x-kubernetes-group-version-kind": {
24989 "group": "",
24990 "kind": "Namespace",
24991 "version": "v1"
24992 }
24993 },
24994 "parameters": [
24995 {
24996 "description": "name of the Namespace",
24997 "in": "path",
24998 "name": "name",
24999 "required": true,
25000 "schema": {
25001 "type": "string",
25002 "uniqueItems": true
25003 }
25004 },
25005 {
25006 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
25007 "in": "query",
25008 "name": "pretty",
25009 "schema": {
25010 "type": "string",
25011 "uniqueItems": true
25012 }
25013 }
25014 ],
25015 "patch": {
25016 "description": "partially update the specified Namespace",
25017 "operationId": "patchCoreV1Namespace",
25018 "parameters": [
25019 {
25020 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25021 "in": "query",
25022 "name": "dryRun",
25023 "schema": {
25024 "type": "string",
25025 "uniqueItems": true
25026 }
25027 },
25028 {
25029 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
25030 "in": "query",
25031 "name": "fieldManager",
25032 "schema": {
25033 "type": "string",
25034 "uniqueItems": true
25035 }
25036 },
25037 {
25038 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25039 "in": "query",
25040 "name": "fieldValidation",
25041 "schema": {
25042 "type": "string",
25043 "uniqueItems": true
25044 }
25045 },
25046 {
25047 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
25048 "in": "query",
25049 "name": "force",
25050 "schema": {
25051 "type": "boolean",
25052 "uniqueItems": true
25053 }
25054 }
25055 ],
25056 "requestBody": {
25057 "content": {
25058 "application/apply-patch+yaml": {
25059 "schema": {
25060 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25061 }
25062 },
25063 "application/json-patch+json": {
25064 "schema": {
25065 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25066 }
25067 },
25068 "application/merge-patch+json": {
25069 "schema": {
25070 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25071 }
25072 },
25073 "application/strategic-merge-patch+json": {
25074 "schema": {
25075 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25076 }
25077 }
25078 },
25079 "required": true
25080 },
25081 "responses": {
25082 "200": {
25083 "content": {
25084 "application/json": {
25085 "schema": {
25086 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25087 }
25088 },
25089 "application/vnd.kubernetes.protobuf": {
25090 "schema": {
25091 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25092 }
25093 },
25094 "application/yaml": {
25095 "schema": {
25096 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25097 }
25098 }
25099 },
25100 "description": "OK"
25101 },
25102 "201": {
25103 "content": {
25104 "application/json": {
25105 "schema": {
25106 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25107 }
25108 },
25109 "application/vnd.kubernetes.protobuf": {
25110 "schema": {
25111 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25112 }
25113 },
25114 "application/yaml": {
25115 "schema": {
25116 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25117 }
25118 }
25119 },
25120 "description": "Created"
25121 },
25122 "401": {
25123 "description": "Unauthorized"
25124 }
25125 },
25126 "tags": [
25127 "core_v1"
25128 ],
25129 "x-kubernetes-action": "patch",
25130 "x-kubernetes-group-version-kind": {
25131 "group": "",
25132 "kind": "Namespace",
25133 "version": "v1"
25134 }
25135 },
25136 "put": {
25137 "description": "replace the specified Namespace",
25138 "operationId": "replaceCoreV1Namespace",
25139 "parameters": [
25140 {
25141 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25142 "in": "query",
25143 "name": "dryRun",
25144 "schema": {
25145 "type": "string",
25146 "uniqueItems": true
25147 }
25148 },
25149 {
25150 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25151 "in": "query",
25152 "name": "fieldManager",
25153 "schema": {
25154 "type": "string",
25155 "uniqueItems": true
25156 }
25157 },
25158 {
25159 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25160 "in": "query",
25161 "name": "fieldValidation",
25162 "schema": {
25163 "type": "string",
25164 "uniqueItems": true
25165 }
25166 }
25167 ],
25168 "requestBody": {
25169 "content": {
25170 "*/*": {
25171 "schema": {
25172 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25173 }
25174 }
25175 },
25176 "required": true
25177 },
25178 "responses": {
25179 "200": {
25180 "content": {
25181 "application/json": {
25182 "schema": {
25183 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25184 }
25185 },
25186 "application/vnd.kubernetes.protobuf": {
25187 "schema": {
25188 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25189 }
25190 },
25191 "application/yaml": {
25192 "schema": {
25193 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25194 }
25195 }
25196 },
25197 "description": "OK"
25198 },
25199 "201": {
25200 "content": {
25201 "application/json": {
25202 "schema": {
25203 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25204 }
25205 },
25206 "application/vnd.kubernetes.protobuf": {
25207 "schema": {
25208 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25209 }
25210 },
25211 "application/yaml": {
25212 "schema": {
25213 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25214 }
25215 }
25216 },
25217 "description": "Created"
25218 },
25219 "401": {
25220 "description": "Unauthorized"
25221 }
25222 },
25223 "tags": [
25224 "core_v1"
25225 ],
25226 "x-kubernetes-action": "put",
25227 "x-kubernetes-group-version-kind": {
25228 "group": "",
25229 "kind": "Namespace",
25230 "version": "v1"
25231 }
25232 }
25233 },
25234 "/api/v1/namespaces/{name}/finalize": {
25235 "parameters": [
25236 {
25237 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25238 "in": "query",
25239 "name": "dryRun",
25240 "schema": {
25241 "type": "string",
25242 "uniqueItems": true
25243 }
25244 },
25245 {
25246 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25247 "in": "query",
25248 "name": "fieldManager",
25249 "schema": {
25250 "type": "string",
25251 "uniqueItems": true
25252 }
25253 },
25254 {
25255 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25256 "in": "query",
25257 "name": "fieldValidation",
25258 "schema": {
25259 "type": "string",
25260 "uniqueItems": true
25261 }
25262 },
25263 {
25264 "description": "name of the Namespace",
25265 "in": "path",
25266 "name": "name",
25267 "required": true,
25268 "schema": {
25269 "type": "string",
25270 "uniqueItems": true
25271 }
25272 },
25273 {
25274 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
25275 "in": "query",
25276 "name": "pretty",
25277 "schema": {
25278 "type": "string",
25279 "uniqueItems": true
25280 }
25281 }
25282 ],
25283 "put": {
25284 "description": "replace finalize of the specified Namespace",
25285 "operationId": "replaceCoreV1NamespaceFinalize",
25286 "requestBody": {
25287 "content": {
25288 "*/*": {
25289 "schema": {
25290 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25291 }
25292 }
25293 },
25294 "required": true
25295 },
25296 "responses": {
25297 "200": {
25298 "content": {
25299 "application/json": {
25300 "schema": {
25301 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25302 }
25303 },
25304 "application/vnd.kubernetes.protobuf": {
25305 "schema": {
25306 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25307 }
25308 },
25309 "application/yaml": {
25310 "schema": {
25311 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25312 }
25313 }
25314 },
25315 "description": "OK"
25316 },
25317 "201": {
25318 "content": {
25319 "application/json": {
25320 "schema": {
25321 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25322 }
25323 },
25324 "application/vnd.kubernetes.protobuf": {
25325 "schema": {
25326 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25327 }
25328 },
25329 "application/yaml": {
25330 "schema": {
25331 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25332 }
25333 }
25334 },
25335 "description": "Created"
25336 },
25337 "401": {
25338 "description": "Unauthorized"
25339 }
25340 },
25341 "tags": [
25342 "core_v1"
25343 ],
25344 "x-kubernetes-action": "put",
25345 "x-kubernetes-group-version-kind": {
25346 "group": "",
25347 "kind": "Namespace",
25348 "version": "v1"
25349 }
25350 }
25351 },
25352 "/api/v1/namespaces/{name}/status": {
25353 "get": {
25354 "description": "read status of the specified Namespace",
25355 "operationId": "readCoreV1NamespaceStatus",
25356 "responses": {
25357 "200": {
25358 "content": {
25359 "application/json": {
25360 "schema": {
25361 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25362 }
25363 },
25364 "application/vnd.kubernetes.protobuf": {
25365 "schema": {
25366 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25367 }
25368 },
25369 "application/yaml": {
25370 "schema": {
25371 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25372 }
25373 }
25374 },
25375 "description": "OK"
25376 },
25377 "401": {
25378 "description": "Unauthorized"
25379 }
25380 },
25381 "tags": [
25382 "core_v1"
25383 ],
25384 "x-kubernetes-action": "get",
25385 "x-kubernetes-group-version-kind": {
25386 "group": "",
25387 "kind": "Namespace",
25388 "version": "v1"
25389 }
25390 },
25391 "parameters": [
25392 {
25393 "description": "name of the Namespace",
25394 "in": "path",
25395 "name": "name",
25396 "required": true,
25397 "schema": {
25398 "type": "string",
25399 "uniqueItems": true
25400 }
25401 },
25402 {
25403 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
25404 "in": "query",
25405 "name": "pretty",
25406 "schema": {
25407 "type": "string",
25408 "uniqueItems": true
25409 }
25410 }
25411 ],
25412 "patch": {
25413 "description": "partially update status of the specified Namespace",
25414 "operationId": "patchCoreV1NamespaceStatus",
25415 "parameters": [
25416 {
25417 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25418 "in": "query",
25419 "name": "dryRun",
25420 "schema": {
25421 "type": "string",
25422 "uniqueItems": true
25423 }
25424 },
25425 {
25426 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
25427 "in": "query",
25428 "name": "fieldManager",
25429 "schema": {
25430 "type": "string",
25431 "uniqueItems": true
25432 }
25433 },
25434 {
25435 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25436 "in": "query",
25437 "name": "fieldValidation",
25438 "schema": {
25439 "type": "string",
25440 "uniqueItems": true
25441 }
25442 },
25443 {
25444 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
25445 "in": "query",
25446 "name": "force",
25447 "schema": {
25448 "type": "boolean",
25449 "uniqueItems": true
25450 }
25451 }
25452 ],
25453 "requestBody": {
25454 "content": {
25455 "application/apply-patch+yaml": {
25456 "schema": {
25457 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25458 }
25459 },
25460 "application/json-patch+json": {
25461 "schema": {
25462 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25463 }
25464 },
25465 "application/merge-patch+json": {
25466 "schema": {
25467 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25468 }
25469 },
25470 "application/strategic-merge-patch+json": {
25471 "schema": {
25472 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25473 }
25474 }
25475 },
25476 "required": true
25477 },
25478 "responses": {
25479 "200": {
25480 "content": {
25481 "application/json": {
25482 "schema": {
25483 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25484 }
25485 },
25486 "application/vnd.kubernetes.protobuf": {
25487 "schema": {
25488 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25489 }
25490 },
25491 "application/yaml": {
25492 "schema": {
25493 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25494 }
25495 }
25496 },
25497 "description": "OK"
25498 },
25499 "201": {
25500 "content": {
25501 "application/json": {
25502 "schema": {
25503 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25504 }
25505 },
25506 "application/vnd.kubernetes.protobuf": {
25507 "schema": {
25508 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25509 }
25510 },
25511 "application/yaml": {
25512 "schema": {
25513 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25514 }
25515 }
25516 },
25517 "description": "Created"
25518 },
25519 "401": {
25520 "description": "Unauthorized"
25521 }
25522 },
25523 "tags": [
25524 "core_v1"
25525 ],
25526 "x-kubernetes-action": "patch",
25527 "x-kubernetes-group-version-kind": {
25528 "group": "",
25529 "kind": "Namespace",
25530 "version": "v1"
25531 }
25532 },
25533 "put": {
25534 "description": "replace status of the specified Namespace",
25535 "operationId": "replaceCoreV1NamespaceStatus",
25536 "parameters": [
25537 {
25538 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25539 "in": "query",
25540 "name": "dryRun",
25541 "schema": {
25542 "type": "string",
25543 "uniqueItems": true
25544 }
25545 },
25546 {
25547 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25548 "in": "query",
25549 "name": "fieldManager",
25550 "schema": {
25551 "type": "string",
25552 "uniqueItems": true
25553 }
25554 },
25555 {
25556 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25557 "in": "query",
25558 "name": "fieldValidation",
25559 "schema": {
25560 "type": "string",
25561 "uniqueItems": true
25562 }
25563 }
25564 ],
25565 "requestBody": {
25566 "content": {
25567 "*/*": {
25568 "schema": {
25569 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25570 }
25571 }
25572 },
25573 "required": true
25574 },
25575 "responses": {
25576 "200": {
25577 "content": {
25578 "application/json": {
25579 "schema": {
25580 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25581 }
25582 },
25583 "application/vnd.kubernetes.protobuf": {
25584 "schema": {
25585 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25586 }
25587 },
25588 "application/yaml": {
25589 "schema": {
25590 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25591 }
25592 }
25593 },
25594 "description": "OK"
25595 },
25596 "201": {
25597 "content": {
25598 "application/json": {
25599 "schema": {
25600 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25601 }
25602 },
25603 "application/vnd.kubernetes.protobuf": {
25604 "schema": {
25605 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25606 }
25607 },
25608 "application/yaml": {
25609 "schema": {
25610 "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace"
25611 }
25612 }
25613 },
25614 "description": "Created"
25615 },
25616 "401": {
25617 "description": "Unauthorized"
25618 }
25619 },
25620 "tags": [
25621 "core_v1"
25622 ],
25623 "x-kubernetes-action": "put",
25624 "x-kubernetes-group-version-kind": {
25625 "group": "",
25626 "kind": "Namespace",
25627 "version": "v1"
25628 }
25629 }
25630 },
25631 "/api/v1/nodes": {
25632 "delete": {
25633 "description": "delete collection of Node",
25634 "operationId": "deleteCoreV1CollectionNode",
25635 "parameters": [
25636 {
25637 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25638 "in": "query",
25639 "name": "continue",
25640 "schema": {
25641 "type": "string",
25642 "uniqueItems": true
25643 }
25644 },
25645 {
25646 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25647 "in": "query",
25648 "name": "dryRun",
25649 "schema": {
25650 "type": "string",
25651 "uniqueItems": true
25652 }
25653 },
25654 {
25655 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25656 "in": "query",
25657 "name": "fieldSelector",
25658 "schema": {
25659 "type": "string",
25660 "uniqueItems": true
25661 }
25662 },
25663 {
25664 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
25665 "in": "query",
25666 "name": "gracePeriodSeconds",
25667 "schema": {
25668 "type": "integer",
25669 "uniqueItems": true
25670 }
25671 },
25672 {
25673 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25674 "in": "query",
25675 "name": "labelSelector",
25676 "schema": {
25677 "type": "string",
25678 "uniqueItems": true
25679 }
25680 },
25681 {
25682 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25683 "in": "query",
25684 "name": "limit",
25685 "schema": {
25686 "type": "integer",
25687 "uniqueItems": true
25688 }
25689 },
25690 {
25691 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
25692 "in": "query",
25693 "name": "orphanDependents",
25694 "schema": {
25695 "type": "boolean",
25696 "uniqueItems": true
25697 }
25698 },
25699 {
25700 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
25701 "in": "query",
25702 "name": "propagationPolicy",
25703 "schema": {
25704 "type": "string",
25705 "uniqueItems": true
25706 }
25707 },
25708 {
25709 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25710 "in": "query",
25711 "name": "resourceVersion",
25712 "schema": {
25713 "type": "string",
25714 "uniqueItems": true
25715 }
25716 },
25717 {
25718 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25719 "in": "query",
25720 "name": "resourceVersionMatch",
25721 "schema": {
25722 "type": "string",
25723 "uniqueItems": true
25724 }
25725 },
25726 {
25727 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
25728 "in": "query",
25729 "name": "sendInitialEvents",
25730 "schema": {
25731 "type": "boolean",
25732 "uniqueItems": true
25733 }
25734 },
25735 {
25736 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25737 "in": "query",
25738 "name": "timeoutSeconds",
25739 "schema": {
25740 "type": "integer",
25741 "uniqueItems": true
25742 }
25743 }
25744 ],
25745 "requestBody": {
25746 "content": {
25747 "*/*": {
25748 "schema": {
25749 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25750 }
25751 }
25752 }
25753 },
25754 "responses": {
25755 "200": {
25756 "content": {
25757 "application/json": {
25758 "schema": {
25759 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25760 }
25761 },
25762 "application/vnd.kubernetes.protobuf": {
25763 "schema": {
25764 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25765 }
25766 },
25767 "application/yaml": {
25768 "schema": {
25769 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25770 }
25771 }
25772 },
25773 "description": "OK"
25774 },
25775 "401": {
25776 "description": "Unauthorized"
25777 }
25778 },
25779 "tags": [
25780 "core_v1"
25781 ],
25782 "x-kubernetes-action": "deletecollection",
25783 "x-kubernetes-group-version-kind": {
25784 "group": "",
25785 "kind": "Node",
25786 "version": "v1"
25787 }
25788 },
25789 "get": {
25790 "description": "list or watch objects of kind Node",
25791 "operationId": "listCoreV1Node",
25792 "parameters": [
25793 {
25794 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
25795 "in": "query",
25796 "name": "allowWatchBookmarks",
25797 "schema": {
25798 "type": "boolean",
25799 "uniqueItems": true
25800 }
25801 },
25802 {
25803 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25804 "in": "query",
25805 "name": "continue",
25806 "schema": {
25807 "type": "string",
25808 "uniqueItems": true
25809 }
25810 },
25811 {
25812 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25813 "in": "query",
25814 "name": "fieldSelector",
25815 "schema": {
25816 "type": "string",
25817 "uniqueItems": true
25818 }
25819 },
25820 {
25821 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25822 "in": "query",
25823 "name": "labelSelector",
25824 "schema": {
25825 "type": "string",
25826 "uniqueItems": true
25827 }
25828 },
25829 {
25830 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25831 "in": "query",
25832 "name": "limit",
25833 "schema": {
25834 "type": "integer",
25835 "uniqueItems": true
25836 }
25837 },
25838 {
25839 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25840 "in": "query",
25841 "name": "resourceVersion",
25842 "schema": {
25843 "type": "string",
25844 "uniqueItems": true
25845 }
25846 },
25847 {
25848 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25849 "in": "query",
25850 "name": "resourceVersionMatch",
25851 "schema": {
25852 "type": "string",
25853 "uniqueItems": true
25854 }
25855 },
25856 {
25857 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
25858 "in": "query",
25859 "name": "sendInitialEvents",
25860 "schema": {
25861 "type": "boolean",
25862 "uniqueItems": true
25863 }
25864 },
25865 {
25866 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25867 "in": "query",
25868 "name": "timeoutSeconds",
25869 "schema": {
25870 "type": "integer",
25871 "uniqueItems": true
25872 }
25873 },
25874 {
25875 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
25876 "in": "query",
25877 "name": "watch",
25878 "schema": {
25879 "type": "boolean",
25880 "uniqueItems": true
25881 }
25882 }
25883 ],
25884 "responses": {
25885 "200": {
25886 "content": {
25887 "application/json": {
25888 "schema": {
25889 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList"
25890 }
25891 },
25892 "application/json;stream=watch": {
25893 "schema": {
25894 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList"
25895 }
25896 },
25897 "application/vnd.kubernetes.protobuf": {
25898 "schema": {
25899 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList"
25900 }
25901 },
25902 "application/vnd.kubernetes.protobuf;stream=watch": {
25903 "schema": {
25904 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList"
25905 }
25906 },
25907 "application/yaml": {
25908 "schema": {
25909 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList"
25910 }
25911 }
25912 },
25913 "description": "OK"
25914 },
25915 "401": {
25916 "description": "Unauthorized"
25917 }
25918 },
25919 "tags": [
25920 "core_v1"
25921 ],
25922 "x-kubernetes-action": "list",
25923 "x-kubernetes-group-version-kind": {
25924 "group": "",
25925 "kind": "Node",
25926 "version": "v1"
25927 }
25928 },
25929 "parameters": [
25930 {
25931 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
25932 "in": "query",
25933 "name": "pretty",
25934 "schema": {
25935 "type": "string",
25936 "uniqueItems": true
25937 }
25938 }
25939 ],
25940 "post": {
25941 "description": "create a Node",
25942 "operationId": "createCoreV1Node",
25943 "parameters": [
25944 {
25945 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25946 "in": "query",
25947 "name": "dryRun",
25948 "schema": {
25949 "type": "string",
25950 "uniqueItems": true
25951 }
25952 },
25953 {
25954 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25955 "in": "query",
25956 "name": "fieldManager",
25957 "schema": {
25958 "type": "string",
25959 "uniqueItems": true
25960 }
25961 },
25962 {
25963 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
25964 "in": "query",
25965 "name": "fieldValidation",
25966 "schema": {
25967 "type": "string",
25968 "uniqueItems": true
25969 }
25970 }
25971 ],
25972 "requestBody": {
25973 "content": {
25974 "*/*": {
25975 "schema": {
25976 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
25977 }
25978 }
25979 },
25980 "required": true
25981 },
25982 "responses": {
25983 "200": {
25984 "content": {
25985 "application/json": {
25986 "schema": {
25987 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
25988 }
25989 },
25990 "application/vnd.kubernetes.protobuf": {
25991 "schema": {
25992 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
25993 }
25994 },
25995 "application/yaml": {
25996 "schema": {
25997 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
25998 }
25999 }
26000 },
26001 "description": "OK"
26002 },
26003 "201": {
26004 "content": {
26005 "application/json": {
26006 "schema": {
26007 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26008 }
26009 },
26010 "application/vnd.kubernetes.protobuf": {
26011 "schema": {
26012 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26013 }
26014 },
26015 "application/yaml": {
26016 "schema": {
26017 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26018 }
26019 }
26020 },
26021 "description": "Created"
26022 },
26023 "202": {
26024 "content": {
26025 "application/json": {
26026 "schema": {
26027 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26028 }
26029 },
26030 "application/vnd.kubernetes.protobuf": {
26031 "schema": {
26032 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26033 }
26034 },
26035 "application/yaml": {
26036 "schema": {
26037 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26038 }
26039 }
26040 },
26041 "description": "Accepted"
26042 },
26043 "401": {
26044 "description": "Unauthorized"
26045 }
26046 },
26047 "tags": [
26048 "core_v1"
26049 ],
26050 "x-kubernetes-action": "post",
26051 "x-kubernetes-group-version-kind": {
26052 "group": "",
26053 "kind": "Node",
26054 "version": "v1"
26055 }
26056 }
26057 },
26058 "/api/v1/nodes/{name}": {
26059 "delete": {
26060 "description": "delete a Node",
26061 "operationId": "deleteCoreV1Node",
26062 "parameters": [
26063 {
26064 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26065 "in": "query",
26066 "name": "dryRun",
26067 "schema": {
26068 "type": "string",
26069 "uniqueItems": true
26070 }
26071 },
26072 {
26073 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26074 "in": "query",
26075 "name": "gracePeriodSeconds",
26076 "schema": {
26077 "type": "integer",
26078 "uniqueItems": true
26079 }
26080 },
26081 {
26082 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26083 "in": "query",
26084 "name": "orphanDependents",
26085 "schema": {
26086 "type": "boolean",
26087 "uniqueItems": true
26088 }
26089 },
26090 {
26091 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26092 "in": "query",
26093 "name": "propagationPolicy",
26094 "schema": {
26095 "type": "string",
26096 "uniqueItems": true
26097 }
26098 }
26099 ],
26100 "requestBody": {
26101 "content": {
26102 "*/*": {
26103 "schema": {
26104 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26105 }
26106 }
26107 }
26108 },
26109 "responses": {
26110 "200": {
26111 "content": {
26112 "application/json": {
26113 "schema": {
26114 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26115 }
26116 },
26117 "application/vnd.kubernetes.protobuf": {
26118 "schema": {
26119 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26120 }
26121 },
26122 "application/yaml": {
26123 "schema": {
26124 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26125 }
26126 }
26127 },
26128 "description": "OK"
26129 },
26130 "202": {
26131 "content": {
26132 "application/json": {
26133 "schema": {
26134 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26135 }
26136 },
26137 "application/vnd.kubernetes.protobuf": {
26138 "schema": {
26139 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26140 }
26141 },
26142 "application/yaml": {
26143 "schema": {
26144 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26145 }
26146 }
26147 },
26148 "description": "Accepted"
26149 },
26150 "401": {
26151 "description": "Unauthorized"
26152 }
26153 },
26154 "tags": [
26155 "core_v1"
26156 ],
26157 "x-kubernetes-action": "delete",
26158 "x-kubernetes-group-version-kind": {
26159 "group": "",
26160 "kind": "Node",
26161 "version": "v1"
26162 }
26163 },
26164 "get": {
26165 "description": "read the specified Node",
26166 "operationId": "readCoreV1Node",
26167 "responses": {
26168 "200": {
26169 "content": {
26170 "application/json": {
26171 "schema": {
26172 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26173 }
26174 },
26175 "application/vnd.kubernetes.protobuf": {
26176 "schema": {
26177 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26178 }
26179 },
26180 "application/yaml": {
26181 "schema": {
26182 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26183 }
26184 }
26185 },
26186 "description": "OK"
26187 },
26188 "401": {
26189 "description": "Unauthorized"
26190 }
26191 },
26192 "tags": [
26193 "core_v1"
26194 ],
26195 "x-kubernetes-action": "get",
26196 "x-kubernetes-group-version-kind": {
26197 "group": "",
26198 "kind": "Node",
26199 "version": "v1"
26200 }
26201 },
26202 "parameters": [
26203 {
26204 "description": "name of the Node",
26205 "in": "path",
26206 "name": "name",
26207 "required": true,
26208 "schema": {
26209 "type": "string",
26210 "uniqueItems": true
26211 }
26212 },
26213 {
26214 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
26215 "in": "query",
26216 "name": "pretty",
26217 "schema": {
26218 "type": "string",
26219 "uniqueItems": true
26220 }
26221 }
26222 ],
26223 "patch": {
26224 "description": "partially update the specified Node",
26225 "operationId": "patchCoreV1Node",
26226 "parameters": [
26227 {
26228 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26229 "in": "query",
26230 "name": "dryRun",
26231 "schema": {
26232 "type": "string",
26233 "uniqueItems": true
26234 }
26235 },
26236 {
26237 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26238 "in": "query",
26239 "name": "fieldManager",
26240 "schema": {
26241 "type": "string",
26242 "uniqueItems": true
26243 }
26244 },
26245 {
26246 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
26247 "in": "query",
26248 "name": "fieldValidation",
26249 "schema": {
26250 "type": "string",
26251 "uniqueItems": true
26252 }
26253 },
26254 {
26255 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
26256 "in": "query",
26257 "name": "force",
26258 "schema": {
26259 "type": "boolean",
26260 "uniqueItems": true
26261 }
26262 }
26263 ],
26264 "requestBody": {
26265 "content": {
26266 "application/apply-patch+yaml": {
26267 "schema": {
26268 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26269 }
26270 },
26271 "application/json-patch+json": {
26272 "schema": {
26273 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26274 }
26275 },
26276 "application/merge-patch+json": {
26277 "schema": {
26278 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26279 }
26280 },
26281 "application/strategic-merge-patch+json": {
26282 "schema": {
26283 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26284 }
26285 }
26286 },
26287 "required": true
26288 },
26289 "responses": {
26290 "200": {
26291 "content": {
26292 "application/json": {
26293 "schema": {
26294 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26295 }
26296 },
26297 "application/vnd.kubernetes.protobuf": {
26298 "schema": {
26299 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26300 }
26301 },
26302 "application/yaml": {
26303 "schema": {
26304 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26305 }
26306 }
26307 },
26308 "description": "OK"
26309 },
26310 "201": {
26311 "content": {
26312 "application/json": {
26313 "schema": {
26314 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26315 }
26316 },
26317 "application/vnd.kubernetes.protobuf": {
26318 "schema": {
26319 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26320 }
26321 },
26322 "application/yaml": {
26323 "schema": {
26324 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26325 }
26326 }
26327 },
26328 "description": "Created"
26329 },
26330 "401": {
26331 "description": "Unauthorized"
26332 }
26333 },
26334 "tags": [
26335 "core_v1"
26336 ],
26337 "x-kubernetes-action": "patch",
26338 "x-kubernetes-group-version-kind": {
26339 "group": "",
26340 "kind": "Node",
26341 "version": "v1"
26342 }
26343 },
26344 "put": {
26345 "description": "replace the specified Node",
26346 "operationId": "replaceCoreV1Node",
26347 "parameters": [
26348 {
26349 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26350 "in": "query",
26351 "name": "dryRun",
26352 "schema": {
26353 "type": "string",
26354 "uniqueItems": true
26355 }
26356 },
26357 {
26358 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26359 "in": "query",
26360 "name": "fieldManager",
26361 "schema": {
26362 "type": "string",
26363 "uniqueItems": true
26364 }
26365 },
26366 {
26367 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
26368 "in": "query",
26369 "name": "fieldValidation",
26370 "schema": {
26371 "type": "string",
26372 "uniqueItems": true
26373 }
26374 }
26375 ],
26376 "requestBody": {
26377 "content": {
26378 "*/*": {
26379 "schema": {
26380 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26381 }
26382 }
26383 },
26384 "required": true
26385 },
26386 "responses": {
26387 "200": {
26388 "content": {
26389 "application/json": {
26390 "schema": {
26391 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26392 }
26393 },
26394 "application/vnd.kubernetes.protobuf": {
26395 "schema": {
26396 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26397 }
26398 },
26399 "application/yaml": {
26400 "schema": {
26401 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26402 }
26403 }
26404 },
26405 "description": "OK"
26406 },
26407 "201": {
26408 "content": {
26409 "application/json": {
26410 "schema": {
26411 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26412 }
26413 },
26414 "application/vnd.kubernetes.protobuf": {
26415 "schema": {
26416 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26417 }
26418 },
26419 "application/yaml": {
26420 "schema": {
26421 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26422 }
26423 }
26424 },
26425 "description": "Created"
26426 },
26427 "401": {
26428 "description": "Unauthorized"
26429 }
26430 },
26431 "tags": [
26432 "core_v1"
26433 ],
26434 "x-kubernetes-action": "put",
26435 "x-kubernetes-group-version-kind": {
26436 "group": "",
26437 "kind": "Node",
26438 "version": "v1"
26439 }
26440 }
26441 },
26442 "/api/v1/nodes/{name}/proxy": {
26443 "delete": {
26444 "description": "connect DELETE requests to proxy of Node",
26445 "operationId": "connectCoreV1DeleteNodeProxy",
26446 "responses": {
26447 "200": {
26448 "content": {
26449 "*/*": {
26450 "schema": {
26451 "type": "string"
26452 }
26453 }
26454 },
26455 "description": "OK"
26456 },
26457 "401": {
26458 "description": "Unauthorized"
26459 }
26460 },
26461 "tags": [
26462 "core_v1"
26463 ],
26464 "x-kubernetes-action": "connect",
26465 "x-kubernetes-group-version-kind": {
26466 "group": "",
26467 "kind": "NodeProxyOptions",
26468 "version": "v1"
26469 }
26470 },
26471 "get": {
26472 "description": "connect GET requests to proxy of Node",
26473 "operationId": "connectCoreV1GetNodeProxy",
26474 "responses": {
26475 "200": {
26476 "content": {
26477 "*/*": {
26478 "schema": {
26479 "type": "string"
26480 }
26481 }
26482 },
26483 "description": "OK"
26484 },
26485 "401": {
26486 "description": "Unauthorized"
26487 }
26488 },
26489 "tags": [
26490 "core_v1"
26491 ],
26492 "x-kubernetes-action": "connect",
26493 "x-kubernetes-group-version-kind": {
26494 "group": "",
26495 "kind": "NodeProxyOptions",
26496 "version": "v1"
26497 }
26498 },
26499 "head": {
26500 "description": "connect HEAD requests to proxy of Node",
26501 "operationId": "connectCoreV1HeadNodeProxy",
26502 "responses": {
26503 "200": {
26504 "content": {
26505 "*/*": {
26506 "schema": {
26507 "type": "string"
26508 }
26509 }
26510 },
26511 "description": "OK"
26512 },
26513 "401": {
26514 "description": "Unauthorized"
26515 }
26516 },
26517 "tags": [
26518 "core_v1"
26519 ],
26520 "x-kubernetes-action": "connect",
26521 "x-kubernetes-group-version-kind": {
26522 "group": "",
26523 "kind": "NodeProxyOptions",
26524 "version": "v1"
26525 }
26526 },
26527 "options": {
26528 "description": "connect OPTIONS requests to proxy of Node",
26529 "operationId": "connectCoreV1OptionsNodeProxy",
26530 "responses": {
26531 "200": {
26532 "content": {
26533 "*/*": {
26534 "schema": {
26535 "type": "string"
26536 }
26537 }
26538 },
26539 "description": "OK"
26540 },
26541 "401": {
26542 "description": "Unauthorized"
26543 }
26544 },
26545 "tags": [
26546 "core_v1"
26547 ],
26548 "x-kubernetes-action": "connect",
26549 "x-kubernetes-group-version-kind": {
26550 "group": "",
26551 "kind": "NodeProxyOptions",
26552 "version": "v1"
26553 }
26554 },
26555 "parameters": [
26556 {
26557 "description": "name of the NodeProxyOptions",
26558 "in": "path",
26559 "name": "name",
26560 "required": true,
26561 "schema": {
26562 "type": "string",
26563 "uniqueItems": true
26564 }
26565 },
26566 {
26567 "description": "Path is the URL path to use for the current proxy request to node.",
26568 "in": "query",
26569 "name": "path",
26570 "schema": {
26571 "type": "string",
26572 "uniqueItems": true
26573 }
26574 }
26575 ],
26576 "patch": {
26577 "description": "connect PATCH requests to proxy of Node",
26578 "operationId": "connectCoreV1PatchNodeProxy",
26579 "responses": {
26580 "200": {
26581 "content": {
26582 "*/*": {
26583 "schema": {
26584 "type": "string"
26585 }
26586 }
26587 },
26588 "description": "OK"
26589 },
26590 "401": {
26591 "description": "Unauthorized"
26592 }
26593 },
26594 "tags": [
26595 "core_v1"
26596 ],
26597 "x-kubernetes-action": "connect",
26598 "x-kubernetes-group-version-kind": {
26599 "group": "",
26600 "kind": "NodeProxyOptions",
26601 "version": "v1"
26602 }
26603 },
26604 "post": {
26605 "description": "connect POST requests to proxy of Node",
26606 "operationId": "connectCoreV1PostNodeProxy",
26607 "responses": {
26608 "200": {
26609 "content": {
26610 "*/*": {
26611 "schema": {
26612 "type": "string"
26613 }
26614 }
26615 },
26616 "description": "OK"
26617 },
26618 "401": {
26619 "description": "Unauthorized"
26620 }
26621 },
26622 "tags": [
26623 "core_v1"
26624 ],
26625 "x-kubernetes-action": "connect",
26626 "x-kubernetes-group-version-kind": {
26627 "group": "",
26628 "kind": "NodeProxyOptions",
26629 "version": "v1"
26630 }
26631 },
26632 "put": {
26633 "description": "connect PUT requests to proxy of Node",
26634 "operationId": "connectCoreV1PutNodeProxy",
26635 "responses": {
26636 "200": {
26637 "content": {
26638 "*/*": {
26639 "schema": {
26640 "type": "string"
26641 }
26642 }
26643 },
26644 "description": "OK"
26645 },
26646 "401": {
26647 "description": "Unauthorized"
26648 }
26649 },
26650 "tags": [
26651 "core_v1"
26652 ],
26653 "x-kubernetes-action": "connect",
26654 "x-kubernetes-group-version-kind": {
26655 "group": "",
26656 "kind": "NodeProxyOptions",
26657 "version": "v1"
26658 }
26659 }
26660 },
26661 "/api/v1/nodes/{name}/proxy/{path}": {
26662 "delete": {
26663 "description": "connect DELETE requests to proxy of Node",
26664 "operationId": "connectCoreV1DeleteNodeProxyWithPath",
26665 "responses": {
26666 "200": {
26667 "content": {
26668 "*/*": {
26669 "schema": {
26670 "type": "string"
26671 }
26672 }
26673 },
26674 "description": "OK"
26675 },
26676 "401": {
26677 "description": "Unauthorized"
26678 }
26679 },
26680 "tags": [
26681 "core_v1"
26682 ],
26683 "x-kubernetes-action": "connect",
26684 "x-kubernetes-group-version-kind": {
26685 "group": "",
26686 "kind": "NodeProxyOptions",
26687 "version": "v1"
26688 }
26689 },
26690 "get": {
26691 "description": "connect GET requests to proxy of Node",
26692 "operationId": "connectCoreV1GetNodeProxyWithPath",
26693 "responses": {
26694 "200": {
26695 "content": {
26696 "*/*": {
26697 "schema": {
26698 "type": "string"
26699 }
26700 }
26701 },
26702 "description": "OK"
26703 },
26704 "401": {
26705 "description": "Unauthorized"
26706 }
26707 },
26708 "tags": [
26709 "core_v1"
26710 ],
26711 "x-kubernetes-action": "connect",
26712 "x-kubernetes-group-version-kind": {
26713 "group": "",
26714 "kind": "NodeProxyOptions",
26715 "version": "v1"
26716 }
26717 },
26718 "head": {
26719 "description": "connect HEAD requests to proxy of Node",
26720 "operationId": "connectCoreV1HeadNodeProxyWithPath",
26721 "responses": {
26722 "200": {
26723 "content": {
26724 "*/*": {
26725 "schema": {
26726 "type": "string"
26727 }
26728 }
26729 },
26730 "description": "OK"
26731 },
26732 "401": {
26733 "description": "Unauthorized"
26734 }
26735 },
26736 "tags": [
26737 "core_v1"
26738 ],
26739 "x-kubernetes-action": "connect",
26740 "x-kubernetes-group-version-kind": {
26741 "group": "",
26742 "kind": "NodeProxyOptions",
26743 "version": "v1"
26744 }
26745 },
26746 "options": {
26747 "description": "connect OPTIONS requests to proxy of Node",
26748 "operationId": "connectCoreV1OptionsNodeProxyWithPath",
26749 "responses": {
26750 "200": {
26751 "content": {
26752 "*/*": {
26753 "schema": {
26754 "type": "string"
26755 }
26756 }
26757 },
26758 "description": "OK"
26759 },
26760 "401": {
26761 "description": "Unauthorized"
26762 }
26763 },
26764 "tags": [
26765 "core_v1"
26766 ],
26767 "x-kubernetes-action": "connect",
26768 "x-kubernetes-group-version-kind": {
26769 "group": "",
26770 "kind": "NodeProxyOptions",
26771 "version": "v1"
26772 }
26773 },
26774 "parameters": [
26775 {
26776 "description": "name of the NodeProxyOptions",
26777 "in": "path",
26778 "name": "name",
26779 "required": true,
26780 "schema": {
26781 "type": "string",
26782 "uniqueItems": true
26783 }
26784 },
26785 {
26786 "description": "path to the resource",
26787 "in": "path",
26788 "name": "path",
26789 "required": true,
26790 "schema": {
26791 "type": "string",
26792 "uniqueItems": true
26793 }
26794 },
26795 {
26796 "description": "Path is the URL path to use for the current proxy request to node.",
26797 "in": "query",
26798 "name": "path",
26799 "schema": {
26800 "type": "string",
26801 "uniqueItems": true
26802 }
26803 }
26804 ],
26805 "patch": {
26806 "description": "connect PATCH requests to proxy of Node",
26807 "operationId": "connectCoreV1PatchNodeProxyWithPath",
26808 "responses": {
26809 "200": {
26810 "content": {
26811 "*/*": {
26812 "schema": {
26813 "type": "string"
26814 }
26815 }
26816 },
26817 "description": "OK"
26818 },
26819 "401": {
26820 "description": "Unauthorized"
26821 }
26822 },
26823 "tags": [
26824 "core_v1"
26825 ],
26826 "x-kubernetes-action": "connect",
26827 "x-kubernetes-group-version-kind": {
26828 "group": "",
26829 "kind": "NodeProxyOptions",
26830 "version": "v1"
26831 }
26832 },
26833 "post": {
26834 "description": "connect POST requests to proxy of Node",
26835 "operationId": "connectCoreV1PostNodeProxyWithPath",
26836 "responses": {
26837 "200": {
26838 "content": {
26839 "*/*": {
26840 "schema": {
26841 "type": "string"
26842 }
26843 }
26844 },
26845 "description": "OK"
26846 },
26847 "401": {
26848 "description": "Unauthorized"
26849 }
26850 },
26851 "tags": [
26852 "core_v1"
26853 ],
26854 "x-kubernetes-action": "connect",
26855 "x-kubernetes-group-version-kind": {
26856 "group": "",
26857 "kind": "NodeProxyOptions",
26858 "version": "v1"
26859 }
26860 },
26861 "put": {
26862 "description": "connect PUT requests to proxy of Node",
26863 "operationId": "connectCoreV1PutNodeProxyWithPath",
26864 "responses": {
26865 "200": {
26866 "content": {
26867 "*/*": {
26868 "schema": {
26869 "type": "string"
26870 }
26871 }
26872 },
26873 "description": "OK"
26874 },
26875 "401": {
26876 "description": "Unauthorized"
26877 }
26878 },
26879 "tags": [
26880 "core_v1"
26881 ],
26882 "x-kubernetes-action": "connect",
26883 "x-kubernetes-group-version-kind": {
26884 "group": "",
26885 "kind": "NodeProxyOptions",
26886 "version": "v1"
26887 }
26888 }
26889 },
26890 "/api/v1/nodes/{name}/status": {
26891 "get": {
26892 "description": "read status of the specified Node",
26893 "operationId": "readCoreV1NodeStatus",
26894 "responses": {
26895 "200": {
26896 "content": {
26897 "application/json": {
26898 "schema": {
26899 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26900 }
26901 },
26902 "application/vnd.kubernetes.protobuf": {
26903 "schema": {
26904 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26905 }
26906 },
26907 "application/yaml": {
26908 "schema": {
26909 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
26910 }
26911 }
26912 },
26913 "description": "OK"
26914 },
26915 "401": {
26916 "description": "Unauthorized"
26917 }
26918 },
26919 "tags": [
26920 "core_v1"
26921 ],
26922 "x-kubernetes-action": "get",
26923 "x-kubernetes-group-version-kind": {
26924 "group": "",
26925 "kind": "Node",
26926 "version": "v1"
26927 }
26928 },
26929 "parameters": [
26930 {
26931 "description": "name of the Node",
26932 "in": "path",
26933 "name": "name",
26934 "required": true,
26935 "schema": {
26936 "type": "string",
26937 "uniqueItems": true
26938 }
26939 },
26940 {
26941 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
26942 "in": "query",
26943 "name": "pretty",
26944 "schema": {
26945 "type": "string",
26946 "uniqueItems": true
26947 }
26948 }
26949 ],
26950 "patch": {
26951 "description": "partially update status of the specified Node",
26952 "operationId": "patchCoreV1NodeStatus",
26953 "parameters": [
26954 {
26955 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26956 "in": "query",
26957 "name": "dryRun",
26958 "schema": {
26959 "type": "string",
26960 "uniqueItems": true
26961 }
26962 },
26963 {
26964 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26965 "in": "query",
26966 "name": "fieldManager",
26967 "schema": {
26968 "type": "string",
26969 "uniqueItems": true
26970 }
26971 },
26972 {
26973 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
26974 "in": "query",
26975 "name": "fieldValidation",
26976 "schema": {
26977 "type": "string",
26978 "uniqueItems": true
26979 }
26980 },
26981 {
26982 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
26983 "in": "query",
26984 "name": "force",
26985 "schema": {
26986 "type": "boolean",
26987 "uniqueItems": true
26988 }
26989 }
26990 ],
26991 "requestBody": {
26992 "content": {
26993 "application/apply-patch+yaml": {
26994 "schema": {
26995 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26996 }
26997 },
26998 "application/json-patch+json": {
26999 "schema": {
27000 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27001 }
27002 },
27003 "application/merge-patch+json": {
27004 "schema": {
27005 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27006 }
27007 },
27008 "application/strategic-merge-patch+json": {
27009 "schema": {
27010 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27011 }
27012 }
27013 },
27014 "required": true
27015 },
27016 "responses": {
27017 "200": {
27018 "content": {
27019 "application/json": {
27020 "schema": {
27021 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27022 }
27023 },
27024 "application/vnd.kubernetes.protobuf": {
27025 "schema": {
27026 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27027 }
27028 },
27029 "application/yaml": {
27030 "schema": {
27031 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27032 }
27033 }
27034 },
27035 "description": "OK"
27036 },
27037 "201": {
27038 "content": {
27039 "application/json": {
27040 "schema": {
27041 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27042 }
27043 },
27044 "application/vnd.kubernetes.protobuf": {
27045 "schema": {
27046 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27047 }
27048 },
27049 "application/yaml": {
27050 "schema": {
27051 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27052 }
27053 }
27054 },
27055 "description": "Created"
27056 },
27057 "401": {
27058 "description": "Unauthorized"
27059 }
27060 },
27061 "tags": [
27062 "core_v1"
27063 ],
27064 "x-kubernetes-action": "patch",
27065 "x-kubernetes-group-version-kind": {
27066 "group": "",
27067 "kind": "Node",
27068 "version": "v1"
27069 }
27070 },
27071 "put": {
27072 "description": "replace status of the specified Node",
27073 "operationId": "replaceCoreV1NodeStatus",
27074 "parameters": [
27075 {
27076 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27077 "in": "query",
27078 "name": "dryRun",
27079 "schema": {
27080 "type": "string",
27081 "uniqueItems": true
27082 }
27083 },
27084 {
27085 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27086 "in": "query",
27087 "name": "fieldManager",
27088 "schema": {
27089 "type": "string",
27090 "uniqueItems": true
27091 }
27092 },
27093 {
27094 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
27095 "in": "query",
27096 "name": "fieldValidation",
27097 "schema": {
27098 "type": "string",
27099 "uniqueItems": true
27100 }
27101 }
27102 ],
27103 "requestBody": {
27104 "content": {
27105 "*/*": {
27106 "schema": {
27107 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27108 }
27109 }
27110 },
27111 "required": true
27112 },
27113 "responses": {
27114 "200": {
27115 "content": {
27116 "application/json": {
27117 "schema": {
27118 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27119 }
27120 },
27121 "application/vnd.kubernetes.protobuf": {
27122 "schema": {
27123 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27124 }
27125 },
27126 "application/yaml": {
27127 "schema": {
27128 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27129 }
27130 }
27131 },
27132 "description": "OK"
27133 },
27134 "201": {
27135 "content": {
27136 "application/json": {
27137 "schema": {
27138 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27139 }
27140 },
27141 "application/vnd.kubernetes.protobuf": {
27142 "schema": {
27143 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27144 }
27145 },
27146 "application/yaml": {
27147 "schema": {
27148 "$ref": "#/components/schemas/io.k8s.api.core.v1.Node"
27149 }
27150 }
27151 },
27152 "description": "Created"
27153 },
27154 "401": {
27155 "description": "Unauthorized"
27156 }
27157 },
27158 "tags": [
27159 "core_v1"
27160 ],
27161 "x-kubernetes-action": "put",
27162 "x-kubernetes-group-version-kind": {
27163 "group": "",
27164 "kind": "Node",
27165 "version": "v1"
27166 }
27167 }
27168 },
27169 "/api/v1/persistentvolumeclaims": {
27170 "get": {
27171 "description": "list or watch objects of kind PersistentVolumeClaim",
27172 "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
27173 "responses": {
27174 "200": {
27175 "content": {
27176 "application/json": {
27177 "schema": {
27178 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
27179 }
27180 },
27181 "application/json;stream=watch": {
27182 "schema": {
27183 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
27184 }
27185 },
27186 "application/vnd.kubernetes.protobuf": {
27187 "schema": {
27188 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
27189 }
27190 },
27191 "application/vnd.kubernetes.protobuf;stream=watch": {
27192 "schema": {
27193 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
27194 }
27195 },
27196 "application/yaml": {
27197 "schema": {
27198 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList"
27199 }
27200 }
27201 },
27202 "description": "OK"
27203 },
27204 "401": {
27205 "description": "Unauthorized"
27206 }
27207 },
27208 "tags": [
27209 "core_v1"
27210 ],
27211 "x-kubernetes-action": "list",
27212 "x-kubernetes-group-version-kind": {
27213 "group": "",
27214 "kind": "PersistentVolumeClaim",
27215 "version": "v1"
27216 }
27217 },
27218 "parameters": [
27219 {
27220 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
27221 "in": "query",
27222 "name": "allowWatchBookmarks",
27223 "schema": {
27224 "type": "boolean",
27225 "uniqueItems": true
27226 }
27227 },
27228 {
27229 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27230 "in": "query",
27231 "name": "continue",
27232 "schema": {
27233 "type": "string",
27234 "uniqueItems": true
27235 }
27236 },
27237 {
27238 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27239 "in": "query",
27240 "name": "fieldSelector",
27241 "schema": {
27242 "type": "string",
27243 "uniqueItems": true
27244 }
27245 },
27246 {
27247 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27248 "in": "query",
27249 "name": "labelSelector",
27250 "schema": {
27251 "type": "string",
27252 "uniqueItems": true
27253 }
27254 },
27255 {
27256 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27257 "in": "query",
27258 "name": "limit",
27259 "schema": {
27260 "type": "integer",
27261 "uniqueItems": true
27262 }
27263 },
27264 {
27265 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
27266 "in": "query",
27267 "name": "pretty",
27268 "schema": {
27269 "type": "string",
27270 "uniqueItems": true
27271 }
27272 },
27273 {
27274 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27275 "in": "query",
27276 "name": "resourceVersion",
27277 "schema": {
27278 "type": "string",
27279 "uniqueItems": true
27280 }
27281 },
27282 {
27283 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27284 "in": "query",
27285 "name": "resourceVersionMatch",
27286 "schema": {
27287 "type": "string",
27288 "uniqueItems": true
27289 }
27290 },
27291 {
27292 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
27293 "in": "query",
27294 "name": "sendInitialEvents",
27295 "schema": {
27296 "type": "boolean",
27297 "uniqueItems": true
27298 }
27299 },
27300 {
27301 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27302 "in": "query",
27303 "name": "timeoutSeconds",
27304 "schema": {
27305 "type": "integer",
27306 "uniqueItems": true
27307 }
27308 },
27309 {
27310 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27311 "in": "query",
27312 "name": "watch",
27313 "schema": {
27314 "type": "boolean",
27315 "uniqueItems": true
27316 }
27317 }
27318 ]
27319 },
27320 "/api/v1/persistentvolumes": {
27321 "delete": {
27322 "description": "delete collection of PersistentVolume",
27323 "operationId": "deleteCoreV1CollectionPersistentVolume",
27324 "parameters": [
27325 {
27326 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27327 "in": "query",
27328 "name": "continue",
27329 "schema": {
27330 "type": "string",
27331 "uniqueItems": true
27332 }
27333 },
27334 {
27335 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27336 "in": "query",
27337 "name": "dryRun",
27338 "schema": {
27339 "type": "string",
27340 "uniqueItems": true
27341 }
27342 },
27343 {
27344 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27345 "in": "query",
27346 "name": "fieldSelector",
27347 "schema": {
27348 "type": "string",
27349 "uniqueItems": true
27350 }
27351 },
27352 {
27353 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27354 "in": "query",
27355 "name": "gracePeriodSeconds",
27356 "schema": {
27357 "type": "integer",
27358 "uniqueItems": true
27359 }
27360 },
27361 {
27362 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27363 "in": "query",
27364 "name": "labelSelector",
27365 "schema": {
27366 "type": "string",
27367 "uniqueItems": true
27368 }
27369 },
27370 {
27371 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27372 "in": "query",
27373 "name": "limit",
27374 "schema": {
27375 "type": "integer",
27376 "uniqueItems": true
27377 }
27378 },
27379 {
27380 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27381 "in": "query",
27382 "name": "orphanDependents",
27383 "schema": {
27384 "type": "boolean",
27385 "uniqueItems": true
27386 }
27387 },
27388 {
27389 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27390 "in": "query",
27391 "name": "propagationPolicy",
27392 "schema": {
27393 "type": "string",
27394 "uniqueItems": true
27395 }
27396 },
27397 {
27398 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27399 "in": "query",
27400 "name": "resourceVersion",
27401 "schema": {
27402 "type": "string",
27403 "uniqueItems": true
27404 }
27405 },
27406 {
27407 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27408 "in": "query",
27409 "name": "resourceVersionMatch",
27410 "schema": {
27411 "type": "string",
27412 "uniqueItems": true
27413 }
27414 },
27415 {
27416 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
27417 "in": "query",
27418 "name": "sendInitialEvents",
27419 "schema": {
27420 "type": "boolean",
27421 "uniqueItems": true
27422 }
27423 },
27424 {
27425 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27426 "in": "query",
27427 "name": "timeoutSeconds",
27428 "schema": {
27429 "type": "integer",
27430 "uniqueItems": true
27431 }
27432 }
27433 ],
27434 "requestBody": {
27435 "content": {
27436 "*/*": {
27437 "schema": {
27438 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27439 }
27440 }
27441 }
27442 },
27443 "responses": {
27444 "200": {
27445 "content": {
27446 "application/json": {
27447 "schema": {
27448 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27449 }
27450 },
27451 "application/vnd.kubernetes.protobuf": {
27452 "schema": {
27453 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27454 }
27455 },
27456 "application/yaml": {
27457 "schema": {
27458 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27459 }
27460 }
27461 },
27462 "description": "OK"
27463 },
27464 "401": {
27465 "description": "Unauthorized"
27466 }
27467 },
27468 "tags": [
27469 "core_v1"
27470 ],
27471 "x-kubernetes-action": "deletecollection",
27472 "x-kubernetes-group-version-kind": {
27473 "group": "",
27474 "kind": "PersistentVolume",
27475 "version": "v1"
27476 }
27477 },
27478 "get": {
27479 "description": "list or watch objects of kind PersistentVolume",
27480 "operationId": "listCoreV1PersistentVolume",
27481 "parameters": [
27482 {
27483 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
27484 "in": "query",
27485 "name": "allowWatchBookmarks",
27486 "schema": {
27487 "type": "boolean",
27488 "uniqueItems": true
27489 }
27490 },
27491 {
27492 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27493 "in": "query",
27494 "name": "continue",
27495 "schema": {
27496 "type": "string",
27497 "uniqueItems": true
27498 }
27499 },
27500 {
27501 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27502 "in": "query",
27503 "name": "fieldSelector",
27504 "schema": {
27505 "type": "string",
27506 "uniqueItems": true
27507 }
27508 },
27509 {
27510 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27511 "in": "query",
27512 "name": "labelSelector",
27513 "schema": {
27514 "type": "string",
27515 "uniqueItems": true
27516 }
27517 },
27518 {
27519 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27520 "in": "query",
27521 "name": "limit",
27522 "schema": {
27523 "type": "integer",
27524 "uniqueItems": true
27525 }
27526 },
27527 {
27528 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27529 "in": "query",
27530 "name": "resourceVersion",
27531 "schema": {
27532 "type": "string",
27533 "uniqueItems": true
27534 }
27535 },
27536 {
27537 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
27538 "in": "query",
27539 "name": "resourceVersionMatch",
27540 "schema": {
27541 "type": "string",
27542 "uniqueItems": true
27543 }
27544 },
27545 {
27546 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
27547 "in": "query",
27548 "name": "sendInitialEvents",
27549 "schema": {
27550 "type": "boolean",
27551 "uniqueItems": true
27552 }
27553 },
27554 {
27555 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27556 "in": "query",
27557 "name": "timeoutSeconds",
27558 "schema": {
27559 "type": "integer",
27560 "uniqueItems": true
27561 }
27562 },
27563 {
27564 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27565 "in": "query",
27566 "name": "watch",
27567 "schema": {
27568 "type": "boolean",
27569 "uniqueItems": true
27570 }
27571 }
27572 ],
27573 "responses": {
27574 "200": {
27575 "content": {
27576 "application/json": {
27577 "schema": {
27578 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList"
27579 }
27580 },
27581 "application/json;stream=watch": {
27582 "schema": {
27583 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList"
27584 }
27585 },
27586 "application/vnd.kubernetes.protobuf": {
27587 "schema": {
27588 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList"
27589 }
27590 },
27591 "application/vnd.kubernetes.protobuf;stream=watch": {
27592 "schema": {
27593 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList"
27594 }
27595 },
27596 "application/yaml": {
27597 "schema": {
27598 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList"
27599 }
27600 }
27601 },
27602 "description": "OK"
27603 },
27604 "401": {
27605 "description": "Unauthorized"
27606 }
27607 },
27608 "tags": [
27609 "core_v1"
27610 ],
27611 "x-kubernetes-action": "list",
27612 "x-kubernetes-group-version-kind": {
27613 "group": "",
27614 "kind": "PersistentVolume",
27615 "version": "v1"
27616 }
27617 },
27618 "parameters": [
27619 {
27620 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
27621 "in": "query",
27622 "name": "pretty",
27623 "schema": {
27624 "type": "string",
27625 "uniqueItems": true
27626 }
27627 }
27628 ],
27629 "post": {
27630 "description": "create a PersistentVolume",
27631 "operationId": "createCoreV1PersistentVolume",
27632 "parameters": [
27633 {
27634 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27635 "in": "query",
27636 "name": "dryRun",
27637 "schema": {
27638 "type": "string",
27639 "uniqueItems": true
27640 }
27641 },
27642 {
27643 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27644 "in": "query",
27645 "name": "fieldManager",
27646 "schema": {
27647 "type": "string",
27648 "uniqueItems": true
27649 }
27650 },
27651 {
27652 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
27653 "in": "query",
27654 "name": "fieldValidation",
27655 "schema": {
27656 "type": "string",
27657 "uniqueItems": true
27658 }
27659 }
27660 ],
27661 "requestBody": {
27662 "content": {
27663 "*/*": {
27664 "schema": {
27665 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27666 }
27667 }
27668 },
27669 "required": true
27670 },
27671 "responses": {
27672 "200": {
27673 "content": {
27674 "application/json": {
27675 "schema": {
27676 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27677 }
27678 },
27679 "application/vnd.kubernetes.protobuf": {
27680 "schema": {
27681 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27682 }
27683 },
27684 "application/yaml": {
27685 "schema": {
27686 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27687 }
27688 }
27689 },
27690 "description": "OK"
27691 },
27692 "201": {
27693 "content": {
27694 "application/json": {
27695 "schema": {
27696 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27697 }
27698 },
27699 "application/vnd.kubernetes.protobuf": {
27700 "schema": {
27701 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27702 }
27703 },
27704 "application/yaml": {
27705 "schema": {
27706 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27707 }
27708 }
27709 },
27710 "description": "Created"
27711 },
27712 "202": {
27713 "content": {
27714 "application/json": {
27715 "schema": {
27716 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27717 }
27718 },
27719 "application/vnd.kubernetes.protobuf": {
27720 "schema": {
27721 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27722 }
27723 },
27724 "application/yaml": {
27725 "schema": {
27726 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27727 }
27728 }
27729 },
27730 "description": "Accepted"
27731 },
27732 "401": {
27733 "description": "Unauthorized"
27734 }
27735 },
27736 "tags": [
27737 "core_v1"
27738 ],
27739 "x-kubernetes-action": "post",
27740 "x-kubernetes-group-version-kind": {
27741 "group": "",
27742 "kind": "PersistentVolume",
27743 "version": "v1"
27744 }
27745 }
27746 },
27747 "/api/v1/persistentvolumes/{name}": {
27748 "delete": {
27749 "description": "delete a PersistentVolume",
27750 "operationId": "deleteCoreV1PersistentVolume",
27751 "parameters": [
27752 {
27753 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27754 "in": "query",
27755 "name": "dryRun",
27756 "schema": {
27757 "type": "string",
27758 "uniqueItems": true
27759 }
27760 },
27761 {
27762 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27763 "in": "query",
27764 "name": "gracePeriodSeconds",
27765 "schema": {
27766 "type": "integer",
27767 "uniqueItems": true
27768 }
27769 },
27770 {
27771 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27772 "in": "query",
27773 "name": "orphanDependents",
27774 "schema": {
27775 "type": "boolean",
27776 "uniqueItems": true
27777 }
27778 },
27779 {
27780 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27781 "in": "query",
27782 "name": "propagationPolicy",
27783 "schema": {
27784 "type": "string",
27785 "uniqueItems": true
27786 }
27787 }
27788 ],
27789 "requestBody": {
27790 "content": {
27791 "*/*": {
27792 "schema": {
27793 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27794 }
27795 }
27796 }
27797 },
27798 "responses": {
27799 "200": {
27800 "content": {
27801 "application/json": {
27802 "schema": {
27803 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27804 }
27805 },
27806 "application/vnd.kubernetes.protobuf": {
27807 "schema": {
27808 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27809 }
27810 },
27811 "application/yaml": {
27812 "schema": {
27813 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27814 }
27815 }
27816 },
27817 "description": "OK"
27818 },
27819 "202": {
27820 "content": {
27821 "application/json": {
27822 "schema": {
27823 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27824 }
27825 },
27826 "application/vnd.kubernetes.protobuf": {
27827 "schema": {
27828 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27829 }
27830 },
27831 "application/yaml": {
27832 "schema": {
27833 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27834 }
27835 }
27836 },
27837 "description": "Accepted"
27838 },
27839 "401": {
27840 "description": "Unauthorized"
27841 }
27842 },
27843 "tags": [
27844 "core_v1"
27845 ],
27846 "x-kubernetes-action": "delete",
27847 "x-kubernetes-group-version-kind": {
27848 "group": "",
27849 "kind": "PersistentVolume",
27850 "version": "v1"
27851 }
27852 },
27853 "get": {
27854 "description": "read the specified PersistentVolume",
27855 "operationId": "readCoreV1PersistentVolume",
27856 "responses": {
27857 "200": {
27858 "content": {
27859 "application/json": {
27860 "schema": {
27861 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27862 }
27863 },
27864 "application/vnd.kubernetes.protobuf": {
27865 "schema": {
27866 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27867 }
27868 },
27869 "application/yaml": {
27870 "schema": {
27871 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27872 }
27873 }
27874 },
27875 "description": "OK"
27876 },
27877 "401": {
27878 "description": "Unauthorized"
27879 }
27880 },
27881 "tags": [
27882 "core_v1"
27883 ],
27884 "x-kubernetes-action": "get",
27885 "x-kubernetes-group-version-kind": {
27886 "group": "",
27887 "kind": "PersistentVolume",
27888 "version": "v1"
27889 }
27890 },
27891 "parameters": [
27892 {
27893 "description": "name of the PersistentVolume",
27894 "in": "path",
27895 "name": "name",
27896 "required": true,
27897 "schema": {
27898 "type": "string",
27899 "uniqueItems": true
27900 }
27901 },
27902 {
27903 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
27904 "in": "query",
27905 "name": "pretty",
27906 "schema": {
27907 "type": "string",
27908 "uniqueItems": true
27909 }
27910 }
27911 ],
27912 "patch": {
27913 "description": "partially update the specified PersistentVolume",
27914 "operationId": "patchCoreV1PersistentVolume",
27915 "parameters": [
27916 {
27917 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27918 "in": "query",
27919 "name": "dryRun",
27920 "schema": {
27921 "type": "string",
27922 "uniqueItems": true
27923 }
27924 },
27925 {
27926 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27927 "in": "query",
27928 "name": "fieldManager",
27929 "schema": {
27930 "type": "string",
27931 "uniqueItems": true
27932 }
27933 },
27934 {
27935 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
27936 "in": "query",
27937 "name": "fieldValidation",
27938 "schema": {
27939 "type": "string",
27940 "uniqueItems": true
27941 }
27942 },
27943 {
27944 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
27945 "in": "query",
27946 "name": "force",
27947 "schema": {
27948 "type": "boolean",
27949 "uniqueItems": true
27950 }
27951 }
27952 ],
27953 "requestBody": {
27954 "content": {
27955 "application/apply-patch+yaml": {
27956 "schema": {
27957 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27958 }
27959 },
27960 "application/json-patch+json": {
27961 "schema": {
27962 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27963 }
27964 },
27965 "application/merge-patch+json": {
27966 "schema": {
27967 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27968 }
27969 },
27970 "application/strategic-merge-patch+json": {
27971 "schema": {
27972 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27973 }
27974 }
27975 },
27976 "required": true
27977 },
27978 "responses": {
27979 "200": {
27980 "content": {
27981 "application/json": {
27982 "schema": {
27983 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27984 }
27985 },
27986 "application/vnd.kubernetes.protobuf": {
27987 "schema": {
27988 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27989 }
27990 },
27991 "application/yaml": {
27992 "schema": {
27993 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
27994 }
27995 }
27996 },
27997 "description": "OK"
27998 },
27999 "201": {
28000 "content": {
28001 "application/json": {
28002 "schema": {
28003 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28004 }
28005 },
28006 "application/vnd.kubernetes.protobuf": {
28007 "schema": {
28008 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28009 }
28010 },
28011 "application/yaml": {
28012 "schema": {
28013 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28014 }
28015 }
28016 },
28017 "description": "Created"
28018 },
28019 "401": {
28020 "description": "Unauthorized"
28021 }
28022 },
28023 "tags": [
28024 "core_v1"
28025 ],
28026 "x-kubernetes-action": "patch",
28027 "x-kubernetes-group-version-kind": {
28028 "group": "",
28029 "kind": "PersistentVolume",
28030 "version": "v1"
28031 }
28032 },
28033 "put": {
28034 "description": "replace the specified PersistentVolume",
28035 "operationId": "replaceCoreV1PersistentVolume",
28036 "parameters": [
28037 {
28038 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28039 "in": "query",
28040 "name": "dryRun",
28041 "schema": {
28042 "type": "string",
28043 "uniqueItems": true
28044 }
28045 },
28046 {
28047 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28048 "in": "query",
28049 "name": "fieldManager",
28050 "schema": {
28051 "type": "string",
28052 "uniqueItems": true
28053 }
28054 },
28055 {
28056 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
28057 "in": "query",
28058 "name": "fieldValidation",
28059 "schema": {
28060 "type": "string",
28061 "uniqueItems": true
28062 }
28063 }
28064 ],
28065 "requestBody": {
28066 "content": {
28067 "*/*": {
28068 "schema": {
28069 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28070 }
28071 }
28072 },
28073 "required": true
28074 },
28075 "responses": {
28076 "200": {
28077 "content": {
28078 "application/json": {
28079 "schema": {
28080 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28081 }
28082 },
28083 "application/vnd.kubernetes.protobuf": {
28084 "schema": {
28085 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28086 }
28087 },
28088 "application/yaml": {
28089 "schema": {
28090 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28091 }
28092 }
28093 },
28094 "description": "OK"
28095 },
28096 "201": {
28097 "content": {
28098 "application/json": {
28099 "schema": {
28100 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28101 }
28102 },
28103 "application/vnd.kubernetes.protobuf": {
28104 "schema": {
28105 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28106 }
28107 },
28108 "application/yaml": {
28109 "schema": {
28110 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28111 }
28112 }
28113 },
28114 "description": "Created"
28115 },
28116 "401": {
28117 "description": "Unauthorized"
28118 }
28119 },
28120 "tags": [
28121 "core_v1"
28122 ],
28123 "x-kubernetes-action": "put",
28124 "x-kubernetes-group-version-kind": {
28125 "group": "",
28126 "kind": "PersistentVolume",
28127 "version": "v1"
28128 }
28129 }
28130 },
28131 "/api/v1/persistentvolumes/{name}/status": {
28132 "get": {
28133 "description": "read status of the specified PersistentVolume",
28134 "operationId": "readCoreV1PersistentVolumeStatus",
28135 "responses": {
28136 "200": {
28137 "content": {
28138 "application/json": {
28139 "schema": {
28140 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28141 }
28142 },
28143 "application/vnd.kubernetes.protobuf": {
28144 "schema": {
28145 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28146 }
28147 },
28148 "application/yaml": {
28149 "schema": {
28150 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28151 }
28152 }
28153 },
28154 "description": "OK"
28155 },
28156 "401": {
28157 "description": "Unauthorized"
28158 }
28159 },
28160 "tags": [
28161 "core_v1"
28162 ],
28163 "x-kubernetes-action": "get",
28164 "x-kubernetes-group-version-kind": {
28165 "group": "",
28166 "kind": "PersistentVolume",
28167 "version": "v1"
28168 }
28169 },
28170 "parameters": [
28171 {
28172 "description": "name of the PersistentVolume",
28173 "in": "path",
28174 "name": "name",
28175 "required": true,
28176 "schema": {
28177 "type": "string",
28178 "uniqueItems": true
28179 }
28180 },
28181 {
28182 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
28183 "in": "query",
28184 "name": "pretty",
28185 "schema": {
28186 "type": "string",
28187 "uniqueItems": true
28188 }
28189 }
28190 ],
28191 "patch": {
28192 "description": "partially update status of the specified PersistentVolume",
28193 "operationId": "patchCoreV1PersistentVolumeStatus",
28194 "parameters": [
28195 {
28196 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28197 "in": "query",
28198 "name": "dryRun",
28199 "schema": {
28200 "type": "string",
28201 "uniqueItems": true
28202 }
28203 },
28204 {
28205 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28206 "in": "query",
28207 "name": "fieldManager",
28208 "schema": {
28209 "type": "string",
28210 "uniqueItems": true
28211 }
28212 },
28213 {
28214 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
28215 "in": "query",
28216 "name": "fieldValidation",
28217 "schema": {
28218 "type": "string",
28219 "uniqueItems": true
28220 }
28221 },
28222 {
28223 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
28224 "in": "query",
28225 "name": "force",
28226 "schema": {
28227 "type": "boolean",
28228 "uniqueItems": true
28229 }
28230 }
28231 ],
28232 "requestBody": {
28233 "content": {
28234 "application/apply-patch+yaml": {
28235 "schema": {
28236 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28237 }
28238 },
28239 "application/json-patch+json": {
28240 "schema": {
28241 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28242 }
28243 },
28244 "application/merge-patch+json": {
28245 "schema": {
28246 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28247 }
28248 },
28249 "application/strategic-merge-patch+json": {
28250 "schema": {
28251 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28252 }
28253 }
28254 },
28255 "required": true
28256 },
28257 "responses": {
28258 "200": {
28259 "content": {
28260 "application/json": {
28261 "schema": {
28262 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28263 }
28264 },
28265 "application/vnd.kubernetes.protobuf": {
28266 "schema": {
28267 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28268 }
28269 },
28270 "application/yaml": {
28271 "schema": {
28272 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28273 }
28274 }
28275 },
28276 "description": "OK"
28277 },
28278 "201": {
28279 "content": {
28280 "application/json": {
28281 "schema": {
28282 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28283 }
28284 },
28285 "application/vnd.kubernetes.protobuf": {
28286 "schema": {
28287 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28288 }
28289 },
28290 "application/yaml": {
28291 "schema": {
28292 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28293 }
28294 }
28295 },
28296 "description": "Created"
28297 },
28298 "401": {
28299 "description": "Unauthorized"
28300 }
28301 },
28302 "tags": [
28303 "core_v1"
28304 ],
28305 "x-kubernetes-action": "patch",
28306 "x-kubernetes-group-version-kind": {
28307 "group": "",
28308 "kind": "PersistentVolume",
28309 "version": "v1"
28310 }
28311 },
28312 "put": {
28313 "description": "replace status of the specified PersistentVolume",
28314 "operationId": "replaceCoreV1PersistentVolumeStatus",
28315 "parameters": [
28316 {
28317 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28318 "in": "query",
28319 "name": "dryRun",
28320 "schema": {
28321 "type": "string",
28322 "uniqueItems": true
28323 }
28324 },
28325 {
28326 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28327 "in": "query",
28328 "name": "fieldManager",
28329 "schema": {
28330 "type": "string",
28331 "uniqueItems": true
28332 }
28333 },
28334 {
28335 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
28336 "in": "query",
28337 "name": "fieldValidation",
28338 "schema": {
28339 "type": "string",
28340 "uniqueItems": true
28341 }
28342 }
28343 ],
28344 "requestBody": {
28345 "content": {
28346 "*/*": {
28347 "schema": {
28348 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28349 }
28350 }
28351 },
28352 "required": true
28353 },
28354 "responses": {
28355 "200": {
28356 "content": {
28357 "application/json": {
28358 "schema": {
28359 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28360 }
28361 },
28362 "application/vnd.kubernetes.protobuf": {
28363 "schema": {
28364 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28365 }
28366 },
28367 "application/yaml": {
28368 "schema": {
28369 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28370 }
28371 }
28372 },
28373 "description": "OK"
28374 },
28375 "201": {
28376 "content": {
28377 "application/json": {
28378 "schema": {
28379 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28380 }
28381 },
28382 "application/vnd.kubernetes.protobuf": {
28383 "schema": {
28384 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28385 }
28386 },
28387 "application/yaml": {
28388 "schema": {
28389 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume"
28390 }
28391 }
28392 },
28393 "description": "Created"
28394 },
28395 "401": {
28396 "description": "Unauthorized"
28397 }
28398 },
28399 "tags": [
28400 "core_v1"
28401 ],
28402 "x-kubernetes-action": "put",
28403 "x-kubernetes-group-version-kind": {
28404 "group": "",
28405 "kind": "PersistentVolume",
28406 "version": "v1"
28407 }
28408 }
28409 },
28410 "/api/v1/pods": {
28411 "get": {
28412 "description": "list or watch objects of kind Pod",
28413 "operationId": "listCoreV1PodForAllNamespaces",
28414 "responses": {
28415 "200": {
28416 "content": {
28417 "application/json": {
28418 "schema": {
28419 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
28420 }
28421 },
28422 "application/json;stream=watch": {
28423 "schema": {
28424 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
28425 }
28426 },
28427 "application/vnd.kubernetes.protobuf": {
28428 "schema": {
28429 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
28430 }
28431 },
28432 "application/vnd.kubernetes.protobuf;stream=watch": {
28433 "schema": {
28434 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
28435 }
28436 },
28437 "application/yaml": {
28438 "schema": {
28439 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList"
28440 }
28441 }
28442 },
28443 "description": "OK"
28444 },
28445 "401": {
28446 "description": "Unauthorized"
28447 }
28448 },
28449 "tags": [
28450 "core_v1"
28451 ],
28452 "x-kubernetes-action": "list",
28453 "x-kubernetes-group-version-kind": {
28454 "group": "",
28455 "kind": "Pod",
28456 "version": "v1"
28457 }
28458 },
28459 "parameters": [
28460 {
28461 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
28462 "in": "query",
28463 "name": "allowWatchBookmarks",
28464 "schema": {
28465 "type": "boolean",
28466 "uniqueItems": true
28467 }
28468 },
28469 {
28470 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28471 "in": "query",
28472 "name": "continue",
28473 "schema": {
28474 "type": "string",
28475 "uniqueItems": true
28476 }
28477 },
28478 {
28479 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28480 "in": "query",
28481 "name": "fieldSelector",
28482 "schema": {
28483 "type": "string",
28484 "uniqueItems": true
28485 }
28486 },
28487 {
28488 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28489 "in": "query",
28490 "name": "labelSelector",
28491 "schema": {
28492 "type": "string",
28493 "uniqueItems": true
28494 }
28495 },
28496 {
28497 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28498 "in": "query",
28499 "name": "limit",
28500 "schema": {
28501 "type": "integer",
28502 "uniqueItems": true
28503 }
28504 },
28505 {
28506 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
28507 "in": "query",
28508 "name": "pretty",
28509 "schema": {
28510 "type": "string",
28511 "uniqueItems": true
28512 }
28513 },
28514 {
28515 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28516 "in": "query",
28517 "name": "resourceVersion",
28518 "schema": {
28519 "type": "string",
28520 "uniqueItems": true
28521 }
28522 },
28523 {
28524 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28525 "in": "query",
28526 "name": "resourceVersionMatch",
28527 "schema": {
28528 "type": "string",
28529 "uniqueItems": true
28530 }
28531 },
28532 {
28533 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
28534 "in": "query",
28535 "name": "sendInitialEvents",
28536 "schema": {
28537 "type": "boolean",
28538 "uniqueItems": true
28539 }
28540 },
28541 {
28542 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28543 "in": "query",
28544 "name": "timeoutSeconds",
28545 "schema": {
28546 "type": "integer",
28547 "uniqueItems": true
28548 }
28549 },
28550 {
28551 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28552 "in": "query",
28553 "name": "watch",
28554 "schema": {
28555 "type": "boolean",
28556 "uniqueItems": true
28557 }
28558 }
28559 ]
28560 },
28561 "/api/v1/podtemplates": {
28562 "get": {
28563 "description": "list or watch objects of kind PodTemplate",
28564 "operationId": "listCoreV1PodTemplateForAllNamespaces",
28565 "responses": {
28566 "200": {
28567 "content": {
28568 "application/json": {
28569 "schema": {
28570 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
28571 }
28572 },
28573 "application/json;stream=watch": {
28574 "schema": {
28575 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
28576 }
28577 },
28578 "application/vnd.kubernetes.protobuf": {
28579 "schema": {
28580 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
28581 }
28582 },
28583 "application/vnd.kubernetes.protobuf;stream=watch": {
28584 "schema": {
28585 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
28586 }
28587 },
28588 "application/yaml": {
28589 "schema": {
28590 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList"
28591 }
28592 }
28593 },
28594 "description": "OK"
28595 },
28596 "401": {
28597 "description": "Unauthorized"
28598 }
28599 },
28600 "tags": [
28601 "core_v1"
28602 ],
28603 "x-kubernetes-action": "list",
28604 "x-kubernetes-group-version-kind": {
28605 "group": "",
28606 "kind": "PodTemplate",
28607 "version": "v1"
28608 }
28609 },
28610 "parameters": [
28611 {
28612 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
28613 "in": "query",
28614 "name": "allowWatchBookmarks",
28615 "schema": {
28616 "type": "boolean",
28617 "uniqueItems": true
28618 }
28619 },
28620 {
28621 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28622 "in": "query",
28623 "name": "continue",
28624 "schema": {
28625 "type": "string",
28626 "uniqueItems": true
28627 }
28628 },
28629 {
28630 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28631 "in": "query",
28632 "name": "fieldSelector",
28633 "schema": {
28634 "type": "string",
28635 "uniqueItems": true
28636 }
28637 },
28638 {
28639 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28640 "in": "query",
28641 "name": "labelSelector",
28642 "schema": {
28643 "type": "string",
28644 "uniqueItems": true
28645 }
28646 },
28647 {
28648 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28649 "in": "query",
28650 "name": "limit",
28651 "schema": {
28652 "type": "integer",
28653 "uniqueItems": true
28654 }
28655 },
28656 {
28657 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
28658 "in": "query",
28659 "name": "pretty",
28660 "schema": {
28661 "type": "string",
28662 "uniqueItems": true
28663 }
28664 },
28665 {
28666 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28667 "in": "query",
28668 "name": "resourceVersion",
28669 "schema": {
28670 "type": "string",
28671 "uniqueItems": true
28672 }
28673 },
28674 {
28675 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28676 "in": "query",
28677 "name": "resourceVersionMatch",
28678 "schema": {
28679 "type": "string",
28680 "uniqueItems": true
28681 }
28682 },
28683 {
28684 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
28685 "in": "query",
28686 "name": "sendInitialEvents",
28687 "schema": {
28688 "type": "boolean",
28689 "uniqueItems": true
28690 }
28691 },
28692 {
28693 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28694 "in": "query",
28695 "name": "timeoutSeconds",
28696 "schema": {
28697 "type": "integer",
28698 "uniqueItems": true
28699 }
28700 },
28701 {
28702 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28703 "in": "query",
28704 "name": "watch",
28705 "schema": {
28706 "type": "boolean",
28707 "uniqueItems": true
28708 }
28709 }
28710 ]
28711 },
28712 "/api/v1/replicationcontrollers": {
28713 "get": {
28714 "description": "list or watch objects of kind ReplicationController",
28715 "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
28716 "responses": {
28717 "200": {
28718 "content": {
28719 "application/json": {
28720 "schema": {
28721 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
28722 }
28723 },
28724 "application/json;stream=watch": {
28725 "schema": {
28726 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
28727 }
28728 },
28729 "application/vnd.kubernetes.protobuf": {
28730 "schema": {
28731 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
28732 }
28733 },
28734 "application/vnd.kubernetes.protobuf;stream=watch": {
28735 "schema": {
28736 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
28737 }
28738 },
28739 "application/yaml": {
28740 "schema": {
28741 "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList"
28742 }
28743 }
28744 },
28745 "description": "OK"
28746 },
28747 "401": {
28748 "description": "Unauthorized"
28749 }
28750 },
28751 "tags": [
28752 "core_v1"
28753 ],
28754 "x-kubernetes-action": "list",
28755 "x-kubernetes-group-version-kind": {
28756 "group": "",
28757 "kind": "ReplicationController",
28758 "version": "v1"
28759 }
28760 },
28761 "parameters": [
28762 {
28763 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
28764 "in": "query",
28765 "name": "allowWatchBookmarks",
28766 "schema": {
28767 "type": "boolean",
28768 "uniqueItems": true
28769 }
28770 },
28771 {
28772 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28773 "in": "query",
28774 "name": "continue",
28775 "schema": {
28776 "type": "string",
28777 "uniqueItems": true
28778 }
28779 },
28780 {
28781 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28782 "in": "query",
28783 "name": "fieldSelector",
28784 "schema": {
28785 "type": "string",
28786 "uniqueItems": true
28787 }
28788 },
28789 {
28790 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28791 "in": "query",
28792 "name": "labelSelector",
28793 "schema": {
28794 "type": "string",
28795 "uniqueItems": true
28796 }
28797 },
28798 {
28799 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28800 "in": "query",
28801 "name": "limit",
28802 "schema": {
28803 "type": "integer",
28804 "uniqueItems": true
28805 }
28806 },
28807 {
28808 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
28809 "in": "query",
28810 "name": "pretty",
28811 "schema": {
28812 "type": "string",
28813 "uniqueItems": true
28814 }
28815 },
28816 {
28817 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28818 "in": "query",
28819 "name": "resourceVersion",
28820 "schema": {
28821 "type": "string",
28822 "uniqueItems": true
28823 }
28824 },
28825 {
28826 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28827 "in": "query",
28828 "name": "resourceVersionMatch",
28829 "schema": {
28830 "type": "string",
28831 "uniqueItems": true
28832 }
28833 },
28834 {
28835 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
28836 "in": "query",
28837 "name": "sendInitialEvents",
28838 "schema": {
28839 "type": "boolean",
28840 "uniqueItems": true
28841 }
28842 },
28843 {
28844 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28845 "in": "query",
28846 "name": "timeoutSeconds",
28847 "schema": {
28848 "type": "integer",
28849 "uniqueItems": true
28850 }
28851 },
28852 {
28853 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28854 "in": "query",
28855 "name": "watch",
28856 "schema": {
28857 "type": "boolean",
28858 "uniqueItems": true
28859 }
28860 }
28861 ]
28862 },
28863 "/api/v1/resourcequotas": {
28864 "get": {
28865 "description": "list or watch objects of kind ResourceQuota",
28866 "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
28867 "responses": {
28868 "200": {
28869 "content": {
28870 "application/json": {
28871 "schema": {
28872 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
28873 }
28874 },
28875 "application/json;stream=watch": {
28876 "schema": {
28877 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
28878 }
28879 },
28880 "application/vnd.kubernetes.protobuf": {
28881 "schema": {
28882 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
28883 }
28884 },
28885 "application/vnd.kubernetes.protobuf;stream=watch": {
28886 "schema": {
28887 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
28888 }
28889 },
28890 "application/yaml": {
28891 "schema": {
28892 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList"
28893 }
28894 }
28895 },
28896 "description": "OK"
28897 },
28898 "401": {
28899 "description": "Unauthorized"
28900 }
28901 },
28902 "tags": [
28903 "core_v1"
28904 ],
28905 "x-kubernetes-action": "list",
28906 "x-kubernetes-group-version-kind": {
28907 "group": "",
28908 "kind": "ResourceQuota",
28909 "version": "v1"
28910 }
28911 },
28912 "parameters": [
28913 {
28914 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
28915 "in": "query",
28916 "name": "allowWatchBookmarks",
28917 "schema": {
28918 "type": "boolean",
28919 "uniqueItems": true
28920 }
28921 },
28922 {
28923 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28924 "in": "query",
28925 "name": "continue",
28926 "schema": {
28927 "type": "string",
28928 "uniqueItems": true
28929 }
28930 },
28931 {
28932 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28933 "in": "query",
28934 "name": "fieldSelector",
28935 "schema": {
28936 "type": "string",
28937 "uniqueItems": true
28938 }
28939 },
28940 {
28941 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28942 "in": "query",
28943 "name": "labelSelector",
28944 "schema": {
28945 "type": "string",
28946 "uniqueItems": true
28947 }
28948 },
28949 {
28950 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28951 "in": "query",
28952 "name": "limit",
28953 "schema": {
28954 "type": "integer",
28955 "uniqueItems": true
28956 }
28957 },
28958 {
28959 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
28960 "in": "query",
28961 "name": "pretty",
28962 "schema": {
28963 "type": "string",
28964 "uniqueItems": true
28965 }
28966 },
28967 {
28968 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28969 "in": "query",
28970 "name": "resourceVersion",
28971 "schema": {
28972 "type": "string",
28973 "uniqueItems": true
28974 }
28975 },
28976 {
28977 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28978 "in": "query",
28979 "name": "resourceVersionMatch",
28980 "schema": {
28981 "type": "string",
28982 "uniqueItems": true
28983 }
28984 },
28985 {
28986 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
28987 "in": "query",
28988 "name": "sendInitialEvents",
28989 "schema": {
28990 "type": "boolean",
28991 "uniqueItems": true
28992 }
28993 },
28994 {
28995 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28996 "in": "query",
28997 "name": "timeoutSeconds",
28998 "schema": {
28999 "type": "integer",
29000 "uniqueItems": true
29001 }
29002 },
29003 {
29004 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29005 "in": "query",
29006 "name": "watch",
29007 "schema": {
29008 "type": "boolean",
29009 "uniqueItems": true
29010 }
29011 }
29012 ]
29013 },
29014 "/api/v1/secrets": {
29015 "get": {
29016 "description": "list or watch objects of kind Secret",
29017 "operationId": "listCoreV1SecretForAllNamespaces",
29018 "responses": {
29019 "200": {
29020 "content": {
29021 "application/json": {
29022 "schema": {
29023 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
29024 }
29025 },
29026 "application/json;stream=watch": {
29027 "schema": {
29028 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
29029 }
29030 },
29031 "application/vnd.kubernetes.protobuf": {
29032 "schema": {
29033 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
29034 }
29035 },
29036 "application/vnd.kubernetes.protobuf;stream=watch": {
29037 "schema": {
29038 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
29039 }
29040 },
29041 "application/yaml": {
29042 "schema": {
29043 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList"
29044 }
29045 }
29046 },
29047 "description": "OK"
29048 },
29049 "401": {
29050 "description": "Unauthorized"
29051 }
29052 },
29053 "tags": [
29054 "core_v1"
29055 ],
29056 "x-kubernetes-action": "list",
29057 "x-kubernetes-group-version-kind": {
29058 "group": "",
29059 "kind": "Secret",
29060 "version": "v1"
29061 }
29062 },
29063 "parameters": [
29064 {
29065 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29066 "in": "query",
29067 "name": "allowWatchBookmarks",
29068 "schema": {
29069 "type": "boolean",
29070 "uniqueItems": true
29071 }
29072 },
29073 {
29074 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29075 "in": "query",
29076 "name": "continue",
29077 "schema": {
29078 "type": "string",
29079 "uniqueItems": true
29080 }
29081 },
29082 {
29083 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29084 "in": "query",
29085 "name": "fieldSelector",
29086 "schema": {
29087 "type": "string",
29088 "uniqueItems": true
29089 }
29090 },
29091 {
29092 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29093 "in": "query",
29094 "name": "labelSelector",
29095 "schema": {
29096 "type": "string",
29097 "uniqueItems": true
29098 }
29099 },
29100 {
29101 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29102 "in": "query",
29103 "name": "limit",
29104 "schema": {
29105 "type": "integer",
29106 "uniqueItems": true
29107 }
29108 },
29109 {
29110 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29111 "in": "query",
29112 "name": "pretty",
29113 "schema": {
29114 "type": "string",
29115 "uniqueItems": true
29116 }
29117 },
29118 {
29119 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29120 "in": "query",
29121 "name": "resourceVersion",
29122 "schema": {
29123 "type": "string",
29124 "uniqueItems": true
29125 }
29126 },
29127 {
29128 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29129 "in": "query",
29130 "name": "resourceVersionMatch",
29131 "schema": {
29132 "type": "string",
29133 "uniqueItems": true
29134 }
29135 },
29136 {
29137 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29138 "in": "query",
29139 "name": "sendInitialEvents",
29140 "schema": {
29141 "type": "boolean",
29142 "uniqueItems": true
29143 }
29144 },
29145 {
29146 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29147 "in": "query",
29148 "name": "timeoutSeconds",
29149 "schema": {
29150 "type": "integer",
29151 "uniqueItems": true
29152 }
29153 },
29154 {
29155 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29156 "in": "query",
29157 "name": "watch",
29158 "schema": {
29159 "type": "boolean",
29160 "uniqueItems": true
29161 }
29162 }
29163 ]
29164 },
29165 "/api/v1/serviceaccounts": {
29166 "get": {
29167 "description": "list or watch objects of kind ServiceAccount",
29168 "operationId": "listCoreV1ServiceAccountForAllNamespaces",
29169 "responses": {
29170 "200": {
29171 "content": {
29172 "application/json": {
29173 "schema": {
29174 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
29175 }
29176 },
29177 "application/json;stream=watch": {
29178 "schema": {
29179 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
29180 }
29181 },
29182 "application/vnd.kubernetes.protobuf": {
29183 "schema": {
29184 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
29185 }
29186 },
29187 "application/vnd.kubernetes.protobuf;stream=watch": {
29188 "schema": {
29189 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
29190 }
29191 },
29192 "application/yaml": {
29193 "schema": {
29194 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList"
29195 }
29196 }
29197 },
29198 "description": "OK"
29199 },
29200 "401": {
29201 "description": "Unauthorized"
29202 }
29203 },
29204 "tags": [
29205 "core_v1"
29206 ],
29207 "x-kubernetes-action": "list",
29208 "x-kubernetes-group-version-kind": {
29209 "group": "",
29210 "kind": "ServiceAccount",
29211 "version": "v1"
29212 }
29213 },
29214 "parameters": [
29215 {
29216 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29217 "in": "query",
29218 "name": "allowWatchBookmarks",
29219 "schema": {
29220 "type": "boolean",
29221 "uniqueItems": true
29222 }
29223 },
29224 {
29225 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29226 "in": "query",
29227 "name": "continue",
29228 "schema": {
29229 "type": "string",
29230 "uniqueItems": true
29231 }
29232 },
29233 {
29234 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29235 "in": "query",
29236 "name": "fieldSelector",
29237 "schema": {
29238 "type": "string",
29239 "uniqueItems": true
29240 }
29241 },
29242 {
29243 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29244 "in": "query",
29245 "name": "labelSelector",
29246 "schema": {
29247 "type": "string",
29248 "uniqueItems": true
29249 }
29250 },
29251 {
29252 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29253 "in": "query",
29254 "name": "limit",
29255 "schema": {
29256 "type": "integer",
29257 "uniqueItems": true
29258 }
29259 },
29260 {
29261 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29262 "in": "query",
29263 "name": "pretty",
29264 "schema": {
29265 "type": "string",
29266 "uniqueItems": true
29267 }
29268 },
29269 {
29270 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29271 "in": "query",
29272 "name": "resourceVersion",
29273 "schema": {
29274 "type": "string",
29275 "uniqueItems": true
29276 }
29277 },
29278 {
29279 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29280 "in": "query",
29281 "name": "resourceVersionMatch",
29282 "schema": {
29283 "type": "string",
29284 "uniqueItems": true
29285 }
29286 },
29287 {
29288 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29289 "in": "query",
29290 "name": "sendInitialEvents",
29291 "schema": {
29292 "type": "boolean",
29293 "uniqueItems": true
29294 }
29295 },
29296 {
29297 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29298 "in": "query",
29299 "name": "timeoutSeconds",
29300 "schema": {
29301 "type": "integer",
29302 "uniqueItems": true
29303 }
29304 },
29305 {
29306 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29307 "in": "query",
29308 "name": "watch",
29309 "schema": {
29310 "type": "boolean",
29311 "uniqueItems": true
29312 }
29313 }
29314 ]
29315 },
29316 "/api/v1/services": {
29317 "get": {
29318 "description": "list or watch objects of kind Service",
29319 "operationId": "listCoreV1ServiceForAllNamespaces",
29320 "responses": {
29321 "200": {
29322 "content": {
29323 "application/json": {
29324 "schema": {
29325 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
29326 }
29327 },
29328 "application/json;stream=watch": {
29329 "schema": {
29330 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
29331 }
29332 },
29333 "application/vnd.kubernetes.protobuf": {
29334 "schema": {
29335 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
29336 }
29337 },
29338 "application/vnd.kubernetes.protobuf;stream=watch": {
29339 "schema": {
29340 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
29341 }
29342 },
29343 "application/yaml": {
29344 "schema": {
29345 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList"
29346 }
29347 }
29348 },
29349 "description": "OK"
29350 },
29351 "401": {
29352 "description": "Unauthorized"
29353 }
29354 },
29355 "tags": [
29356 "core_v1"
29357 ],
29358 "x-kubernetes-action": "list",
29359 "x-kubernetes-group-version-kind": {
29360 "group": "",
29361 "kind": "Service",
29362 "version": "v1"
29363 }
29364 },
29365 "parameters": [
29366 {
29367 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29368 "in": "query",
29369 "name": "allowWatchBookmarks",
29370 "schema": {
29371 "type": "boolean",
29372 "uniqueItems": true
29373 }
29374 },
29375 {
29376 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29377 "in": "query",
29378 "name": "continue",
29379 "schema": {
29380 "type": "string",
29381 "uniqueItems": true
29382 }
29383 },
29384 {
29385 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29386 "in": "query",
29387 "name": "fieldSelector",
29388 "schema": {
29389 "type": "string",
29390 "uniqueItems": true
29391 }
29392 },
29393 {
29394 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29395 "in": "query",
29396 "name": "labelSelector",
29397 "schema": {
29398 "type": "string",
29399 "uniqueItems": true
29400 }
29401 },
29402 {
29403 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29404 "in": "query",
29405 "name": "limit",
29406 "schema": {
29407 "type": "integer",
29408 "uniqueItems": true
29409 }
29410 },
29411 {
29412 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29413 "in": "query",
29414 "name": "pretty",
29415 "schema": {
29416 "type": "string",
29417 "uniqueItems": true
29418 }
29419 },
29420 {
29421 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29422 "in": "query",
29423 "name": "resourceVersion",
29424 "schema": {
29425 "type": "string",
29426 "uniqueItems": true
29427 }
29428 },
29429 {
29430 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29431 "in": "query",
29432 "name": "resourceVersionMatch",
29433 "schema": {
29434 "type": "string",
29435 "uniqueItems": true
29436 }
29437 },
29438 {
29439 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29440 "in": "query",
29441 "name": "sendInitialEvents",
29442 "schema": {
29443 "type": "boolean",
29444 "uniqueItems": true
29445 }
29446 },
29447 {
29448 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29449 "in": "query",
29450 "name": "timeoutSeconds",
29451 "schema": {
29452 "type": "integer",
29453 "uniqueItems": true
29454 }
29455 },
29456 {
29457 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29458 "in": "query",
29459 "name": "watch",
29460 "schema": {
29461 "type": "boolean",
29462 "uniqueItems": true
29463 }
29464 }
29465 ]
29466 },
29467 "/api/v1/watch/configmaps": {
29468 "get": {
29469 "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
29470 "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
29471 "responses": {
29472 "200": {
29473 "content": {
29474 "application/json": {
29475 "schema": {
29476 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29477 }
29478 },
29479 "application/json;stream=watch": {
29480 "schema": {
29481 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29482 }
29483 },
29484 "application/vnd.kubernetes.protobuf": {
29485 "schema": {
29486 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29487 }
29488 },
29489 "application/vnd.kubernetes.protobuf;stream=watch": {
29490 "schema": {
29491 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29492 }
29493 },
29494 "application/yaml": {
29495 "schema": {
29496 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29497 }
29498 }
29499 },
29500 "description": "OK"
29501 },
29502 "401": {
29503 "description": "Unauthorized"
29504 }
29505 },
29506 "tags": [
29507 "core_v1"
29508 ],
29509 "x-kubernetes-action": "watchlist",
29510 "x-kubernetes-group-version-kind": {
29511 "group": "",
29512 "kind": "ConfigMap",
29513 "version": "v1"
29514 }
29515 },
29516 "parameters": [
29517 {
29518 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29519 "in": "query",
29520 "name": "allowWatchBookmarks",
29521 "schema": {
29522 "type": "boolean",
29523 "uniqueItems": true
29524 }
29525 },
29526 {
29527 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29528 "in": "query",
29529 "name": "continue",
29530 "schema": {
29531 "type": "string",
29532 "uniqueItems": true
29533 }
29534 },
29535 {
29536 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29537 "in": "query",
29538 "name": "fieldSelector",
29539 "schema": {
29540 "type": "string",
29541 "uniqueItems": true
29542 }
29543 },
29544 {
29545 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29546 "in": "query",
29547 "name": "labelSelector",
29548 "schema": {
29549 "type": "string",
29550 "uniqueItems": true
29551 }
29552 },
29553 {
29554 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29555 "in": "query",
29556 "name": "limit",
29557 "schema": {
29558 "type": "integer",
29559 "uniqueItems": true
29560 }
29561 },
29562 {
29563 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29564 "in": "query",
29565 "name": "pretty",
29566 "schema": {
29567 "type": "string",
29568 "uniqueItems": true
29569 }
29570 },
29571 {
29572 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29573 "in": "query",
29574 "name": "resourceVersion",
29575 "schema": {
29576 "type": "string",
29577 "uniqueItems": true
29578 }
29579 },
29580 {
29581 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29582 "in": "query",
29583 "name": "resourceVersionMatch",
29584 "schema": {
29585 "type": "string",
29586 "uniqueItems": true
29587 }
29588 },
29589 {
29590 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29591 "in": "query",
29592 "name": "sendInitialEvents",
29593 "schema": {
29594 "type": "boolean",
29595 "uniqueItems": true
29596 }
29597 },
29598 {
29599 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29600 "in": "query",
29601 "name": "timeoutSeconds",
29602 "schema": {
29603 "type": "integer",
29604 "uniqueItems": true
29605 }
29606 },
29607 {
29608 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29609 "in": "query",
29610 "name": "watch",
29611 "schema": {
29612 "type": "boolean",
29613 "uniqueItems": true
29614 }
29615 }
29616 ]
29617 },
29618 "/api/v1/watch/endpoints": {
29619 "get": {
29620 "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
29621 "operationId": "watchCoreV1EndpointsListForAllNamespaces",
29622 "responses": {
29623 "200": {
29624 "content": {
29625 "application/json": {
29626 "schema": {
29627 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29628 }
29629 },
29630 "application/json;stream=watch": {
29631 "schema": {
29632 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29633 }
29634 },
29635 "application/vnd.kubernetes.protobuf": {
29636 "schema": {
29637 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29638 }
29639 },
29640 "application/vnd.kubernetes.protobuf;stream=watch": {
29641 "schema": {
29642 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29643 }
29644 },
29645 "application/yaml": {
29646 "schema": {
29647 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29648 }
29649 }
29650 },
29651 "description": "OK"
29652 },
29653 "401": {
29654 "description": "Unauthorized"
29655 }
29656 },
29657 "tags": [
29658 "core_v1"
29659 ],
29660 "x-kubernetes-action": "watchlist",
29661 "x-kubernetes-group-version-kind": {
29662 "group": "",
29663 "kind": "Endpoints",
29664 "version": "v1"
29665 }
29666 },
29667 "parameters": [
29668 {
29669 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29670 "in": "query",
29671 "name": "allowWatchBookmarks",
29672 "schema": {
29673 "type": "boolean",
29674 "uniqueItems": true
29675 }
29676 },
29677 {
29678 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29679 "in": "query",
29680 "name": "continue",
29681 "schema": {
29682 "type": "string",
29683 "uniqueItems": true
29684 }
29685 },
29686 {
29687 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29688 "in": "query",
29689 "name": "fieldSelector",
29690 "schema": {
29691 "type": "string",
29692 "uniqueItems": true
29693 }
29694 },
29695 {
29696 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29697 "in": "query",
29698 "name": "labelSelector",
29699 "schema": {
29700 "type": "string",
29701 "uniqueItems": true
29702 }
29703 },
29704 {
29705 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29706 "in": "query",
29707 "name": "limit",
29708 "schema": {
29709 "type": "integer",
29710 "uniqueItems": true
29711 }
29712 },
29713 {
29714 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29715 "in": "query",
29716 "name": "pretty",
29717 "schema": {
29718 "type": "string",
29719 "uniqueItems": true
29720 }
29721 },
29722 {
29723 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29724 "in": "query",
29725 "name": "resourceVersion",
29726 "schema": {
29727 "type": "string",
29728 "uniqueItems": true
29729 }
29730 },
29731 {
29732 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29733 "in": "query",
29734 "name": "resourceVersionMatch",
29735 "schema": {
29736 "type": "string",
29737 "uniqueItems": true
29738 }
29739 },
29740 {
29741 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29742 "in": "query",
29743 "name": "sendInitialEvents",
29744 "schema": {
29745 "type": "boolean",
29746 "uniqueItems": true
29747 }
29748 },
29749 {
29750 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29751 "in": "query",
29752 "name": "timeoutSeconds",
29753 "schema": {
29754 "type": "integer",
29755 "uniqueItems": true
29756 }
29757 },
29758 {
29759 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29760 "in": "query",
29761 "name": "watch",
29762 "schema": {
29763 "type": "boolean",
29764 "uniqueItems": true
29765 }
29766 }
29767 ]
29768 },
29769 "/api/v1/watch/events": {
29770 "get": {
29771 "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
29772 "operationId": "watchCoreV1EventListForAllNamespaces",
29773 "responses": {
29774 "200": {
29775 "content": {
29776 "application/json": {
29777 "schema": {
29778 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29779 }
29780 },
29781 "application/json;stream=watch": {
29782 "schema": {
29783 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29784 }
29785 },
29786 "application/vnd.kubernetes.protobuf": {
29787 "schema": {
29788 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29789 }
29790 },
29791 "application/vnd.kubernetes.protobuf;stream=watch": {
29792 "schema": {
29793 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29794 }
29795 },
29796 "application/yaml": {
29797 "schema": {
29798 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29799 }
29800 }
29801 },
29802 "description": "OK"
29803 },
29804 "401": {
29805 "description": "Unauthorized"
29806 }
29807 },
29808 "tags": [
29809 "core_v1"
29810 ],
29811 "x-kubernetes-action": "watchlist",
29812 "x-kubernetes-group-version-kind": {
29813 "group": "",
29814 "kind": "Event",
29815 "version": "v1"
29816 }
29817 },
29818 "parameters": [
29819 {
29820 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29821 "in": "query",
29822 "name": "allowWatchBookmarks",
29823 "schema": {
29824 "type": "boolean",
29825 "uniqueItems": true
29826 }
29827 },
29828 {
29829 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29830 "in": "query",
29831 "name": "continue",
29832 "schema": {
29833 "type": "string",
29834 "uniqueItems": true
29835 }
29836 },
29837 {
29838 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29839 "in": "query",
29840 "name": "fieldSelector",
29841 "schema": {
29842 "type": "string",
29843 "uniqueItems": true
29844 }
29845 },
29846 {
29847 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29848 "in": "query",
29849 "name": "labelSelector",
29850 "schema": {
29851 "type": "string",
29852 "uniqueItems": true
29853 }
29854 },
29855 {
29856 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29857 "in": "query",
29858 "name": "limit",
29859 "schema": {
29860 "type": "integer",
29861 "uniqueItems": true
29862 }
29863 },
29864 {
29865 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
29866 "in": "query",
29867 "name": "pretty",
29868 "schema": {
29869 "type": "string",
29870 "uniqueItems": true
29871 }
29872 },
29873 {
29874 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29875 "in": "query",
29876 "name": "resourceVersion",
29877 "schema": {
29878 "type": "string",
29879 "uniqueItems": true
29880 }
29881 },
29882 {
29883 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29884 "in": "query",
29885 "name": "resourceVersionMatch",
29886 "schema": {
29887 "type": "string",
29888 "uniqueItems": true
29889 }
29890 },
29891 {
29892 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
29893 "in": "query",
29894 "name": "sendInitialEvents",
29895 "schema": {
29896 "type": "boolean",
29897 "uniqueItems": true
29898 }
29899 },
29900 {
29901 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29902 "in": "query",
29903 "name": "timeoutSeconds",
29904 "schema": {
29905 "type": "integer",
29906 "uniqueItems": true
29907 }
29908 },
29909 {
29910 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29911 "in": "query",
29912 "name": "watch",
29913 "schema": {
29914 "type": "boolean",
29915 "uniqueItems": true
29916 }
29917 }
29918 ]
29919 },
29920 "/api/v1/watch/limitranges": {
29921 "get": {
29922 "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
29923 "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
29924 "responses": {
29925 "200": {
29926 "content": {
29927 "application/json": {
29928 "schema": {
29929 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29930 }
29931 },
29932 "application/json;stream=watch": {
29933 "schema": {
29934 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29935 }
29936 },
29937 "application/vnd.kubernetes.protobuf": {
29938 "schema": {
29939 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29940 }
29941 },
29942 "application/vnd.kubernetes.protobuf;stream=watch": {
29943 "schema": {
29944 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29945 }
29946 },
29947 "application/yaml": {
29948 "schema": {
29949 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
29950 }
29951 }
29952 },
29953 "description": "OK"
29954 },
29955 "401": {
29956 "description": "Unauthorized"
29957 }
29958 },
29959 "tags": [
29960 "core_v1"
29961 ],
29962 "x-kubernetes-action": "watchlist",
29963 "x-kubernetes-group-version-kind": {
29964 "group": "",
29965 "kind": "LimitRange",
29966 "version": "v1"
29967 }
29968 },
29969 "parameters": [
29970 {
29971 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29972 "in": "query",
29973 "name": "allowWatchBookmarks",
29974 "schema": {
29975 "type": "boolean",
29976 "uniqueItems": true
29977 }
29978 },
29979 {
29980 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29981 "in": "query",
29982 "name": "continue",
29983 "schema": {
29984 "type": "string",
29985 "uniqueItems": true
29986 }
29987 },
29988 {
29989 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29990 "in": "query",
29991 "name": "fieldSelector",
29992 "schema": {
29993 "type": "string",
29994 "uniqueItems": true
29995 }
29996 },
29997 {
29998 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29999 "in": "query",
30000 "name": "labelSelector",
30001 "schema": {
30002 "type": "string",
30003 "uniqueItems": true
30004 }
30005 },
30006 {
30007 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30008 "in": "query",
30009 "name": "limit",
30010 "schema": {
30011 "type": "integer",
30012 "uniqueItems": true
30013 }
30014 },
30015 {
30016 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30017 "in": "query",
30018 "name": "pretty",
30019 "schema": {
30020 "type": "string",
30021 "uniqueItems": true
30022 }
30023 },
30024 {
30025 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30026 "in": "query",
30027 "name": "resourceVersion",
30028 "schema": {
30029 "type": "string",
30030 "uniqueItems": true
30031 }
30032 },
30033 {
30034 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30035 "in": "query",
30036 "name": "resourceVersionMatch",
30037 "schema": {
30038 "type": "string",
30039 "uniqueItems": true
30040 }
30041 },
30042 {
30043 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30044 "in": "query",
30045 "name": "sendInitialEvents",
30046 "schema": {
30047 "type": "boolean",
30048 "uniqueItems": true
30049 }
30050 },
30051 {
30052 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30053 "in": "query",
30054 "name": "timeoutSeconds",
30055 "schema": {
30056 "type": "integer",
30057 "uniqueItems": true
30058 }
30059 },
30060 {
30061 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30062 "in": "query",
30063 "name": "watch",
30064 "schema": {
30065 "type": "boolean",
30066 "uniqueItems": true
30067 }
30068 }
30069 ]
30070 },
30071 "/api/v1/watch/namespaces": {
30072 "get": {
30073 "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.",
30074 "operationId": "watchCoreV1NamespaceList",
30075 "responses": {
30076 "200": {
30077 "content": {
30078 "application/json": {
30079 "schema": {
30080 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30081 }
30082 },
30083 "application/json;stream=watch": {
30084 "schema": {
30085 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30086 }
30087 },
30088 "application/vnd.kubernetes.protobuf": {
30089 "schema": {
30090 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30091 }
30092 },
30093 "application/vnd.kubernetes.protobuf;stream=watch": {
30094 "schema": {
30095 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30096 }
30097 },
30098 "application/yaml": {
30099 "schema": {
30100 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30101 }
30102 }
30103 },
30104 "description": "OK"
30105 },
30106 "401": {
30107 "description": "Unauthorized"
30108 }
30109 },
30110 "tags": [
30111 "core_v1"
30112 ],
30113 "x-kubernetes-action": "watchlist",
30114 "x-kubernetes-group-version-kind": {
30115 "group": "",
30116 "kind": "Namespace",
30117 "version": "v1"
30118 }
30119 },
30120 "parameters": [
30121 {
30122 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30123 "in": "query",
30124 "name": "allowWatchBookmarks",
30125 "schema": {
30126 "type": "boolean",
30127 "uniqueItems": true
30128 }
30129 },
30130 {
30131 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30132 "in": "query",
30133 "name": "continue",
30134 "schema": {
30135 "type": "string",
30136 "uniqueItems": true
30137 }
30138 },
30139 {
30140 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30141 "in": "query",
30142 "name": "fieldSelector",
30143 "schema": {
30144 "type": "string",
30145 "uniqueItems": true
30146 }
30147 },
30148 {
30149 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30150 "in": "query",
30151 "name": "labelSelector",
30152 "schema": {
30153 "type": "string",
30154 "uniqueItems": true
30155 }
30156 },
30157 {
30158 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30159 "in": "query",
30160 "name": "limit",
30161 "schema": {
30162 "type": "integer",
30163 "uniqueItems": true
30164 }
30165 },
30166 {
30167 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30168 "in": "query",
30169 "name": "pretty",
30170 "schema": {
30171 "type": "string",
30172 "uniqueItems": true
30173 }
30174 },
30175 {
30176 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30177 "in": "query",
30178 "name": "resourceVersion",
30179 "schema": {
30180 "type": "string",
30181 "uniqueItems": true
30182 }
30183 },
30184 {
30185 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30186 "in": "query",
30187 "name": "resourceVersionMatch",
30188 "schema": {
30189 "type": "string",
30190 "uniqueItems": true
30191 }
30192 },
30193 {
30194 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30195 "in": "query",
30196 "name": "sendInitialEvents",
30197 "schema": {
30198 "type": "boolean",
30199 "uniqueItems": true
30200 }
30201 },
30202 {
30203 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30204 "in": "query",
30205 "name": "timeoutSeconds",
30206 "schema": {
30207 "type": "integer",
30208 "uniqueItems": true
30209 }
30210 },
30211 {
30212 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30213 "in": "query",
30214 "name": "watch",
30215 "schema": {
30216 "type": "boolean",
30217 "uniqueItems": true
30218 }
30219 }
30220 ]
30221 },
30222 "/api/v1/watch/namespaces/{namespace}/configmaps": {
30223 "get": {
30224 "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
30225 "operationId": "watchCoreV1NamespacedConfigMapList",
30226 "responses": {
30227 "200": {
30228 "content": {
30229 "application/json": {
30230 "schema": {
30231 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30232 }
30233 },
30234 "application/json;stream=watch": {
30235 "schema": {
30236 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30237 }
30238 },
30239 "application/vnd.kubernetes.protobuf": {
30240 "schema": {
30241 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30242 }
30243 },
30244 "application/vnd.kubernetes.protobuf;stream=watch": {
30245 "schema": {
30246 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30247 }
30248 },
30249 "application/yaml": {
30250 "schema": {
30251 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30252 }
30253 }
30254 },
30255 "description": "OK"
30256 },
30257 "401": {
30258 "description": "Unauthorized"
30259 }
30260 },
30261 "tags": [
30262 "core_v1"
30263 ],
30264 "x-kubernetes-action": "watchlist",
30265 "x-kubernetes-group-version-kind": {
30266 "group": "",
30267 "kind": "ConfigMap",
30268 "version": "v1"
30269 }
30270 },
30271 "parameters": [
30272 {
30273 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30274 "in": "query",
30275 "name": "allowWatchBookmarks",
30276 "schema": {
30277 "type": "boolean",
30278 "uniqueItems": true
30279 }
30280 },
30281 {
30282 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30283 "in": "query",
30284 "name": "continue",
30285 "schema": {
30286 "type": "string",
30287 "uniqueItems": true
30288 }
30289 },
30290 {
30291 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30292 "in": "query",
30293 "name": "fieldSelector",
30294 "schema": {
30295 "type": "string",
30296 "uniqueItems": true
30297 }
30298 },
30299 {
30300 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30301 "in": "query",
30302 "name": "labelSelector",
30303 "schema": {
30304 "type": "string",
30305 "uniqueItems": true
30306 }
30307 },
30308 {
30309 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30310 "in": "query",
30311 "name": "limit",
30312 "schema": {
30313 "type": "integer",
30314 "uniqueItems": true
30315 }
30316 },
30317 {
30318 "description": "object name and auth scope, such as for teams and projects",
30319 "in": "path",
30320 "name": "namespace",
30321 "required": true,
30322 "schema": {
30323 "type": "string",
30324 "uniqueItems": true
30325 }
30326 },
30327 {
30328 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30329 "in": "query",
30330 "name": "pretty",
30331 "schema": {
30332 "type": "string",
30333 "uniqueItems": true
30334 }
30335 },
30336 {
30337 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30338 "in": "query",
30339 "name": "resourceVersion",
30340 "schema": {
30341 "type": "string",
30342 "uniqueItems": true
30343 }
30344 },
30345 {
30346 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30347 "in": "query",
30348 "name": "resourceVersionMatch",
30349 "schema": {
30350 "type": "string",
30351 "uniqueItems": true
30352 }
30353 },
30354 {
30355 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30356 "in": "query",
30357 "name": "sendInitialEvents",
30358 "schema": {
30359 "type": "boolean",
30360 "uniqueItems": true
30361 }
30362 },
30363 {
30364 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30365 "in": "query",
30366 "name": "timeoutSeconds",
30367 "schema": {
30368 "type": "integer",
30369 "uniqueItems": true
30370 }
30371 },
30372 {
30373 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30374 "in": "query",
30375 "name": "watch",
30376 "schema": {
30377 "type": "boolean",
30378 "uniqueItems": true
30379 }
30380 }
30381 ]
30382 },
30383 "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
30384 "get": {
30385 "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.",
30386 "operationId": "watchCoreV1NamespacedConfigMap",
30387 "responses": {
30388 "200": {
30389 "content": {
30390 "application/json": {
30391 "schema": {
30392 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30393 }
30394 },
30395 "application/json;stream=watch": {
30396 "schema": {
30397 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30398 }
30399 },
30400 "application/vnd.kubernetes.protobuf": {
30401 "schema": {
30402 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30403 }
30404 },
30405 "application/vnd.kubernetes.protobuf;stream=watch": {
30406 "schema": {
30407 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30408 }
30409 },
30410 "application/yaml": {
30411 "schema": {
30412 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30413 }
30414 }
30415 },
30416 "description": "OK"
30417 },
30418 "401": {
30419 "description": "Unauthorized"
30420 }
30421 },
30422 "tags": [
30423 "core_v1"
30424 ],
30425 "x-kubernetes-action": "watch",
30426 "x-kubernetes-group-version-kind": {
30427 "group": "",
30428 "kind": "ConfigMap",
30429 "version": "v1"
30430 }
30431 },
30432 "parameters": [
30433 {
30434 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30435 "in": "query",
30436 "name": "allowWatchBookmarks",
30437 "schema": {
30438 "type": "boolean",
30439 "uniqueItems": true
30440 }
30441 },
30442 {
30443 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30444 "in": "query",
30445 "name": "continue",
30446 "schema": {
30447 "type": "string",
30448 "uniqueItems": true
30449 }
30450 },
30451 {
30452 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30453 "in": "query",
30454 "name": "fieldSelector",
30455 "schema": {
30456 "type": "string",
30457 "uniqueItems": true
30458 }
30459 },
30460 {
30461 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30462 "in": "query",
30463 "name": "labelSelector",
30464 "schema": {
30465 "type": "string",
30466 "uniqueItems": true
30467 }
30468 },
30469 {
30470 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30471 "in": "query",
30472 "name": "limit",
30473 "schema": {
30474 "type": "integer",
30475 "uniqueItems": true
30476 }
30477 },
30478 {
30479 "description": "name of the ConfigMap",
30480 "in": "path",
30481 "name": "name",
30482 "required": true,
30483 "schema": {
30484 "type": "string",
30485 "uniqueItems": true
30486 }
30487 },
30488 {
30489 "description": "object name and auth scope, such as for teams and projects",
30490 "in": "path",
30491 "name": "namespace",
30492 "required": true,
30493 "schema": {
30494 "type": "string",
30495 "uniqueItems": true
30496 }
30497 },
30498 {
30499 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30500 "in": "query",
30501 "name": "pretty",
30502 "schema": {
30503 "type": "string",
30504 "uniqueItems": true
30505 }
30506 },
30507 {
30508 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30509 "in": "query",
30510 "name": "resourceVersion",
30511 "schema": {
30512 "type": "string",
30513 "uniqueItems": true
30514 }
30515 },
30516 {
30517 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30518 "in": "query",
30519 "name": "resourceVersionMatch",
30520 "schema": {
30521 "type": "string",
30522 "uniqueItems": true
30523 }
30524 },
30525 {
30526 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30527 "in": "query",
30528 "name": "sendInitialEvents",
30529 "schema": {
30530 "type": "boolean",
30531 "uniqueItems": true
30532 }
30533 },
30534 {
30535 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30536 "in": "query",
30537 "name": "timeoutSeconds",
30538 "schema": {
30539 "type": "integer",
30540 "uniqueItems": true
30541 }
30542 },
30543 {
30544 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30545 "in": "query",
30546 "name": "watch",
30547 "schema": {
30548 "type": "boolean",
30549 "uniqueItems": true
30550 }
30551 }
30552 ]
30553 },
30554 "/api/v1/watch/namespaces/{namespace}/endpoints": {
30555 "get": {
30556 "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
30557 "operationId": "watchCoreV1NamespacedEndpointsList",
30558 "responses": {
30559 "200": {
30560 "content": {
30561 "application/json": {
30562 "schema": {
30563 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30564 }
30565 },
30566 "application/json;stream=watch": {
30567 "schema": {
30568 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30569 }
30570 },
30571 "application/vnd.kubernetes.protobuf": {
30572 "schema": {
30573 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30574 }
30575 },
30576 "application/vnd.kubernetes.protobuf;stream=watch": {
30577 "schema": {
30578 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30579 }
30580 },
30581 "application/yaml": {
30582 "schema": {
30583 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30584 }
30585 }
30586 },
30587 "description": "OK"
30588 },
30589 "401": {
30590 "description": "Unauthorized"
30591 }
30592 },
30593 "tags": [
30594 "core_v1"
30595 ],
30596 "x-kubernetes-action": "watchlist",
30597 "x-kubernetes-group-version-kind": {
30598 "group": "",
30599 "kind": "Endpoints",
30600 "version": "v1"
30601 }
30602 },
30603 "parameters": [
30604 {
30605 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30606 "in": "query",
30607 "name": "allowWatchBookmarks",
30608 "schema": {
30609 "type": "boolean",
30610 "uniqueItems": true
30611 }
30612 },
30613 {
30614 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30615 "in": "query",
30616 "name": "continue",
30617 "schema": {
30618 "type": "string",
30619 "uniqueItems": true
30620 }
30621 },
30622 {
30623 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30624 "in": "query",
30625 "name": "fieldSelector",
30626 "schema": {
30627 "type": "string",
30628 "uniqueItems": true
30629 }
30630 },
30631 {
30632 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30633 "in": "query",
30634 "name": "labelSelector",
30635 "schema": {
30636 "type": "string",
30637 "uniqueItems": true
30638 }
30639 },
30640 {
30641 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30642 "in": "query",
30643 "name": "limit",
30644 "schema": {
30645 "type": "integer",
30646 "uniqueItems": true
30647 }
30648 },
30649 {
30650 "description": "object name and auth scope, such as for teams and projects",
30651 "in": "path",
30652 "name": "namespace",
30653 "required": true,
30654 "schema": {
30655 "type": "string",
30656 "uniqueItems": true
30657 }
30658 },
30659 {
30660 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30661 "in": "query",
30662 "name": "pretty",
30663 "schema": {
30664 "type": "string",
30665 "uniqueItems": true
30666 }
30667 },
30668 {
30669 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30670 "in": "query",
30671 "name": "resourceVersion",
30672 "schema": {
30673 "type": "string",
30674 "uniqueItems": true
30675 }
30676 },
30677 {
30678 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30679 "in": "query",
30680 "name": "resourceVersionMatch",
30681 "schema": {
30682 "type": "string",
30683 "uniqueItems": true
30684 }
30685 },
30686 {
30687 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30688 "in": "query",
30689 "name": "sendInitialEvents",
30690 "schema": {
30691 "type": "boolean",
30692 "uniqueItems": true
30693 }
30694 },
30695 {
30696 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30697 "in": "query",
30698 "name": "timeoutSeconds",
30699 "schema": {
30700 "type": "integer",
30701 "uniqueItems": true
30702 }
30703 },
30704 {
30705 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30706 "in": "query",
30707 "name": "watch",
30708 "schema": {
30709 "type": "boolean",
30710 "uniqueItems": true
30711 }
30712 }
30713 ]
30714 },
30715 "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
30716 "get": {
30717 "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.",
30718 "operationId": "watchCoreV1NamespacedEndpoints",
30719 "responses": {
30720 "200": {
30721 "content": {
30722 "application/json": {
30723 "schema": {
30724 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30725 }
30726 },
30727 "application/json;stream=watch": {
30728 "schema": {
30729 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30730 }
30731 },
30732 "application/vnd.kubernetes.protobuf": {
30733 "schema": {
30734 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30735 }
30736 },
30737 "application/vnd.kubernetes.protobuf;stream=watch": {
30738 "schema": {
30739 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30740 }
30741 },
30742 "application/yaml": {
30743 "schema": {
30744 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30745 }
30746 }
30747 },
30748 "description": "OK"
30749 },
30750 "401": {
30751 "description": "Unauthorized"
30752 }
30753 },
30754 "tags": [
30755 "core_v1"
30756 ],
30757 "x-kubernetes-action": "watch",
30758 "x-kubernetes-group-version-kind": {
30759 "group": "",
30760 "kind": "Endpoints",
30761 "version": "v1"
30762 }
30763 },
30764 "parameters": [
30765 {
30766 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30767 "in": "query",
30768 "name": "allowWatchBookmarks",
30769 "schema": {
30770 "type": "boolean",
30771 "uniqueItems": true
30772 }
30773 },
30774 {
30775 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30776 "in": "query",
30777 "name": "continue",
30778 "schema": {
30779 "type": "string",
30780 "uniqueItems": true
30781 }
30782 },
30783 {
30784 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30785 "in": "query",
30786 "name": "fieldSelector",
30787 "schema": {
30788 "type": "string",
30789 "uniqueItems": true
30790 }
30791 },
30792 {
30793 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30794 "in": "query",
30795 "name": "labelSelector",
30796 "schema": {
30797 "type": "string",
30798 "uniqueItems": true
30799 }
30800 },
30801 {
30802 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30803 "in": "query",
30804 "name": "limit",
30805 "schema": {
30806 "type": "integer",
30807 "uniqueItems": true
30808 }
30809 },
30810 {
30811 "description": "name of the Endpoints",
30812 "in": "path",
30813 "name": "name",
30814 "required": true,
30815 "schema": {
30816 "type": "string",
30817 "uniqueItems": true
30818 }
30819 },
30820 {
30821 "description": "object name and auth scope, such as for teams and projects",
30822 "in": "path",
30823 "name": "namespace",
30824 "required": true,
30825 "schema": {
30826 "type": "string",
30827 "uniqueItems": true
30828 }
30829 },
30830 {
30831 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30832 "in": "query",
30833 "name": "pretty",
30834 "schema": {
30835 "type": "string",
30836 "uniqueItems": true
30837 }
30838 },
30839 {
30840 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30841 "in": "query",
30842 "name": "resourceVersion",
30843 "schema": {
30844 "type": "string",
30845 "uniqueItems": true
30846 }
30847 },
30848 {
30849 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30850 "in": "query",
30851 "name": "resourceVersionMatch",
30852 "schema": {
30853 "type": "string",
30854 "uniqueItems": true
30855 }
30856 },
30857 {
30858 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
30859 "in": "query",
30860 "name": "sendInitialEvents",
30861 "schema": {
30862 "type": "boolean",
30863 "uniqueItems": true
30864 }
30865 },
30866 {
30867 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30868 "in": "query",
30869 "name": "timeoutSeconds",
30870 "schema": {
30871 "type": "integer",
30872 "uniqueItems": true
30873 }
30874 },
30875 {
30876 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30877 "in": "query",
30878 "name": "watch",
30879 "schema": {
30880 "type": "boolean",
30881 "uniqueItems": true
30882 }
30883 }
30884 ]
30885 },
30886 "/api/v1/watch/namespaces/{namespace}/events": {
30887 "get": {
30888 "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
30889 "operationId": "watchCoreV1NamespacedEventList",
30890 "responses": {
30891 "200": {
30892 "content": {
30893 "application/json": {
30894 "schema": {
30895 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30896 }
30897 },
30898 "application/json;stream=watch": {
30899 "schema": {
30900 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30901 }
30902 },
30903 "application/vnd.kubernetes.protobuf": {
30904 "schema": {
30905 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30906 }
30907 },
30908 "application/vnd.kubernetes.protobuf;stream=watch": {
30909 "schema": {
30910 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30911 }
30912 },
30913 "application/yaml": {
30914 "schema": {
30915 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
30916 }
30917 }
30918 },
30919 "description": "OK"
30920 },
30921 "401": {
30922 "description": "Unauthorized"
30923 }
30924 },
30925 "tags": [
30926 "core_v1"
30927 ],
30928 "x-kubernetes-action": "watchlist",
30929 "x-kubernetes-group-version-kind": {
30930 "group": "",
30931 "kind": "Event",
30932 "version": "v1"
30933 }
30934 },
30935 "parameters": [
30936 {
30937 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30938 "in": "query",
30939 "name": "allowWatchBookmarks",
30940 "schema": {
30941 "type": "boolean",
30942 "uniqueItems": true
30943 }
30944 },
30945 {
30946 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30947 "in": "query",
30948 "name": "continue",
30949 "schema": {
30950 "type": "string",
30951 "uniqueItems": true
30952 }
30953 },
30954 {
30955 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30956 "in": "query",
30957 "name": "fieldSelector",
30958 "schema": {
30959 "type": "string",
30960 "uniqueItems": true
30961 }
30962 },
30963 {
30964 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30965 "in": "query",
30966 "name": "labelSelector",
30967 "schema": {
30968 "type": "string",
30969 "uniqueItems": true
30970 }
30971 },
30972 {
30973 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30974 "in": "query",
30975 "name": "limit",
30976 "schema": {
30977 "type": "integer",
30978 "uniqueItems": true
30979 }
30980 },
30981 {
30982 "description": "object name and auth scope, such as for teams and projects",
30983 "in": "path",
30984 "name": "namespace",
30985 "required": true,
30986 "schema": {
30987 "type": "string",
30988 "uniqueItems": true
30989 }
30990 },
30991 {
30992 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
30993 "in": "query",
30994 "name": "pretty",
30995 "schema": {
30996 "type": "string",
30997 "uniqueItems": true
30998 }
30999 },
31000 {
31001 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31002 "in": "query",
31003 "name": "resourceVersion",
31004 "schema": {
31005 "type": "string",
31006 "uniqueItems": true
31007 }
31008 },
31009 {
31010 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31011 "in": "query",
31012 "name": "resourceVersionMatch",
31013 "schema": {
31014 "type": "string",
31015 "uniqueItems": true
31016 }
31017 },
31018 {
31019 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31020 "in": "query",
31021 "name": "sendInitialEvents",
31022 "schema": {
31023 "type": "boolean",
31024 "uniqueItems": true
31025 }
31026 },
31027 {
31028 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31029 "in": "query",
31030 "name": "timeoutSeconds",
31031 "schema": {
31032 "type": "integer",
31033 "uniqueItems": true
31034 }
31035 },
31036 {
31037 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31038 "in": "query",
31039 "name": "watch",
31040 "schema": {
31041 "type": "boolean",
31042 "uniqueItems": true
31043 }
31044 }
31045 ]
31046 },
31047 "/api/v1/watch/namespaces/{namespace}/events/{name}": {
31048 "get": {
31049 "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.",
31050 "operationId": "watchCoreV1NamespacedEvent",
31051 "responses": {
31052 "200": {
31053 "content": {
31054 "application/json": {
31055 "schema": {
31056 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31057 }
31058 },
31059 "application/json;stream=watch": {
31060 "schema": {
31061 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31062 }
31063 },
31064 "application/vnd.kubernetes.protobuf": {
31065 "schema": {
31066 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31067 }
31068 },
31069 "application/vnd.kubernetes.protobuf;stream=watch": {
31070 "schema": {
31071 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31072 }
31073 },
31074 "application/yaml": {
31075 "schema": {
31076 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31077 }
31078 }
31079 },
31080 "description": "OK"
31081 },
31082 "401": {
31083 "description": "Unauthorized"
31084 }
31085 },
31086 "tags": [
31087 "core_v1"
31088 ],
31089 "x-kubernetes-action": "watch",
31090 "x-kubernetes-group-version-kind": {
31091 "group": "",
31092 "kind": "Event",
31093 "version": "v1"
31094 }
31095 },
31096 "parameters": [
31097 {
31098 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31099 "in": "query",
31100 "name": "allowWatchBookmarks",
31101 "schema": {
31102 "type": "boolean",
31103 "uniqueItems": true
31104 }
31105 },
31106 {
31107 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31108 "in": "query",
31109 "name": "continue",
31110 "schema": {
31111 "type": "string",
31112 "uniqueItems": true
31113 }
31114 },
31115 {
31116 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31117 "in": "query",
31118 "name": "fieldSelector",
31119 "schema": {
31120 "type": "string",
31121 "uniqueItems": true
31122 }
31123 },
31124 {
31125 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31126 "in": "query",
31127 "name": "labelSelector",
31128 "schema": {
31129 "type": "string",
31130 "uniqueItems": true
31131 }
31132 },
31133 {
31134 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31135 "in": "query",
31136 "name": "limit",
31137 "schema": {
31138 "type": "integer",
31139 "uniqueItems": true
31140 }
31141 },
31142 {
31143 "description": "name of the Event",
31144 "in": "path",
31145 "name": "name",
31146 "required": true,
31147 "schema": {
31148 "type": "string",
31149 "uniqueItems": true
31150 }
31151 },
31152 {
31153 "description": "object name and auth scope, such as for teams and projects",
31154 "in": "path",
31155 "name": "namespace",
31156 "required": true,
31157 "schema": {
31158 "type": "string",
31159 "uniqueItems": true
31160 }
31161 },
31162 {
31163 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31164 "in": "query",
31165 "name": "pretty",
31166 "schema": {
31167 "type": "string",
31168 "uniqueItems": true
31169 }
31170 },
31171 {
31172 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31173 "in": "query",
31174 "name": "resourceVersion",
31175 "schema": {
31176 "type": "string",
31177 "uniqueItems": true
31178 }
31179 },
31180 {
31181 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31182 "in": "query",
31183 "name": "resourceVersionMatch",
31184 "schema": {
31185 "type": "string",
31186 "uniqueItems": true
31187 }
31188 },
31189 {
31190 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31191 "in": "query",
31192 "name": "sendInitialEvents",
31193 "schema": {
31194 "type": "boolean",
31195 "uniqueItems": true
31196 }
31197 },
31198 {
31199 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31200 "in": "query",
31201 "name": "timeoutSeconds",
31202 "schema": {
31203 "type": "integer",
31204 "uniqueItems": true
31205 }
31206 },
31207 {
31208 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31209 "in": "query",
31210 "name": "watch",
31211 "schema": {
31212 "type": "boolean",
31213 "uniqueItems": true
31214 }
31215 }
31216 ]
31217 },
31218 "/api/v1/watch/namespaces/{namespace}/limitranges": {
31219 "get": {
31220 "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
31221 "operationId": "watchCoreV1NamespacedLimitRangeList",
31222 "responses": {
31223 "200": {
31224 "content": {
31225 "application/json": {
31226 "schema": {
31227 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31228 }
31229 },
31230 "application/json;stream=watch": {
31231 "schema": {
31232 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31233 }
31234 },
31235 "application/vnd.kubernetes.protobuf": {
31236 "schema": {
31237 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31238 }
31239 },
31240 "application/vnd.kubernetes.protobuf;stream=watch": {
31241 "schema": {
31242 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31243 }
31244 },
31245 "application/yaml": {
31246 "schema": {
31247 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31248 }
31249 }
31250 },
31251 "description": "OK"
31252 },
31253 "401": {
31254 "description": "Unauthorized"
31255 }
31256 },
31257 "tags": [
31258 "core_v1"
31259 ],
31260 "x-kubernetes-action": "watchlist",
31261 "x-kubernetes-group-version-kind": {
31262 "group": "",
31263 "kind": "LimitRange",
31264 "version": "v1"
31265 }
31266 },
31267 "parameters": [
31268 {
31269 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31270 "in": "query",
31271 "name": "allowWatchBookmarks",
31272 "schema": {
31273 "type": "boolean",
31274 "uniqueItems": true
31275 }
31276 },
31277 {
31278 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31279 "in": "query",
31280 "name": "continue",
31281 "schema": {
31282 "type": "string",
31283 "uniqueItems": true
31284 }
31285 },
31286 {
31287 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31288 "in": "query",
31289 "name": "fieldSelector",
31290 "schema": {
31291 "type": "string",
31292 "uniqueItems": true
31293 }
31294 },
31295 {
31296 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31297 "in": "query",
31298 "name": "labelSelector",
31299 "schema": {
31300 "type": "string",
31301 "uniqueItems": true
31302 }
31303 },
31304 {
31305 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31306 "in": "query",
31307 "name": "limit",
31308 "schema": {
31309 "type": "integer",
31310 "uniqueItems": true
31311 }
31312 },
31313 {
31314 "description": "object name and auth scope, such as for teams and projects",
31315 "in": "path",
31316 "name": "namespace",
31317 "required": true,
31318 "schema": {
31319 "type": "string",
31320 "uniqueItems": true
31321 }
31322 },
31323 {
31324 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31325 "in": "query",
31326 "name": "pretty",
31327 "schema": {
31328 "type": "string",
31329 "uniqueItems": true
31330 }
31331 },
31332 {
31333 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31334 "in": "query",
31335 "name": "resourceVersion",
31336 "schema": {
31337 "type": "string",
31338 "uniqueItems": true
31339 }
31340 },
31341 {
31342 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31343 "in": "query",
31344 "name": "resourceVersionMatch",
31345 "schema": {
31346 "type": "string",
31347 "uniqueItems": true
31348 }
31349 },
31350 {
31351 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31352 "in": "query",
31353 "name": "sendInitialEvents",
31354 "schema": {
31355 "type": "boolean",
31356 "uniqueItems": true
31357 }
31358 },
31359 {
31360 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31361 "in": "query",
31362 "name": "timeoutSeconds",
31363 "schema": {
31364 "type": "integer",
31365 "uniqueItems": true
31366 }
31367 },
31368 {
31369 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31370 "in": "query",
31371 "name": "watch",
31372 "schema": {
31373 "type": "boolean",
31374 "uniqueItems": true
31375 }
31376 }
31377 ]
31378 },
31379 "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
31380 "get": {
31381 "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.",
31382 "operationId": "watchCoreV1NamespacedLimitRange",
31383 "responses": {
31384 "200": {
31385 "content": {
31386 "application/json": {
31387 "schema": {
31388 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31389 }
31390 },
31391 "application/json;stream=watch": {
31392 "schema": {
31393 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31394 }
31395 },
31396 "application/vnd.kubernetes.protobuf": {
31397 "schema": {
31398 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31399 }
31400 },
31401 "application/vnd.kubernetes.protobuf;stream=watch": {
31402 "schema": {
31403 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31404 }
31405 },
31406 "application/yaml": {
31407 "schema": {
31408 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31409 }
31410 }
31411 },
31412 "description": "OK"
31413 },
31414 "401": {
31415 "description": "Unauthorized"
31416 }
31417 },
31418 "tags": [
31419 "core_v1"
31420 ],
31421 "x-kubernetes-action": "watch",
31422 "x-kubernetes-group-version-kind": {
31423 "group": "",
31424 "kind": "LimitRange",
31425 "version": "v1"
31426 }
31427 },
31428 "parameters": [
31429 {
31430 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31431 "in": "query",
31432 "name": "allowWatchBookmarks",
31433 "schema": {
31434 "type": "boolean",
31435 "uniqueItems": true
31436 }
31437 },
31438 {
31439 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31440 "in": "query",
31441 "name": "continue",
31442 "schema": {
31443 "type": "string",
31444 "uniqueItems": true
31445 }
31446 },
31447 {
31448 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31449 "in": "query",
31450 "name": "fieldSelector",
31451 "schema": {
31452 "type": "string",
31453 "uniqueItems": true
31454 }
31455 },
31456 {
31457 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31458 "in": "query",
31459 "name": "labelSelector",
31460 "schema": {
31461 "type": "string",
31462 "uniqueItems": true
31463 }
31464 },
31465 {
31466 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31467 "in": "query",
31468 "name": "limit",
31469 "schema": {
31470 "type": "integer",
31471 "uniqueItems": true
31472 }
31473 },
31474 {
31475 "description": "name of the LimitRange",
31476 "in": "path",
31477 "name": "name",
31478 "required": true,
31479 "schema": {
31480 "type": "string",
31481 "uniqueItems": true
31482 }
31483 },
31484 {
31485 "description": "object name and auth scope, such as for teams and projects",
31486 "in": "path",
31487 "name": "namespace",
31488 "required": true,
31489 "schema": {
31490 "type": "string",
31491 "uniqueItems": true
31492 }
31493 },
31494 {
31495 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31496 "in": "query",
31497 "name": "pretty",
31498 "schema": {
31499 "type": "string",
31500 "uniqueItems": true
31501 }
31502 },
31503 {
31504 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31505 "in": "query",
31506 "name": "resourceVersion",
31507 "schema": {
31508 "type": "string",
31509 "uniqueItems": true
31510 }
31511 },
31512 {
31513 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31514 "in": "query",
31515 "name": "resourceVersionMatch",
31516 "schema": {
31517 "type": "string",
31518 "uniqueItems": true
31519 }
31520 },
31521 {
31522 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31523 "in": "query",
31524 "name": "sendInitialEvents",
31525 "schema": {
31526 "type": "boolean",
31527 "uniqueItems": true
31528 }
31529 },
31530 {
31531 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31532 "in": "query",
31533 "name": "timeoutSeconds",
31534 "schema": {
31535 "type": "integer",
31536 "uniqueItems": true
31537 }
31538 },
31539 {
31540 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31541 "in": "query",
31542 "name": "watch",
31543 "schema": {
31544 "type": "boolean",
31545 "uniqueItems": true
31546 }
31547 }
31548 ]
31549 },
31550 "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
31551 "get": {
31552 "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
31553 "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
31554 "responses": {
31555 "200": {
31556 "content": {
31557 "application/json": {
31558 "schema": {
31559 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31560 }
31561 },
31562 "application/json;stream=watch": {
31563 "schema": {
31564 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31565 }
31566 },
31567 "application/vnd.kubernetes.protobuf": {
31568 "schema": {
31569 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31570 }
31571 },
31572 "application/vnd.kubernetes.protobuf;stream=watch": {
31573 "schema": {
31574 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31575 }
31576 },
31577 "application/yaml": {
31578 "schema": {
31579 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31580 }
31581 }
31582 },
31583 "description": "OK"
31584 },
31585 "401": {
31586 "description": "Unauthorized"
31587 }
31588 },
31589 "tags": [
31590 "core_v1"
31591 ],
31592 "x-kubernetes-action": "watchlist",
31593 "x-kubernetes-group-version-kind": {
31594 "group": "",
31595 "kind": "PersistentVolumeClaim",
31596 "version": "v1"
31597 }
31598 },
31599 "parameters": [
31600 {
31601 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31602 "in": "query",
31603 "name": "allowWatchBookmarks",
31604 "schema": {
31605 "type": "boolean",
31606 "uniqueItems": true
31607 }
31608 },
31609 {
31610 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31611 "in": "query",
31612 "name": "continue",
31613 "schema": {
31614 "type": "string",
31615 "uniqueItems": true
31616 }
31617 },
31618 {
31619 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31620 "in": "query",
31621 "name": "fieldSelector",
31622 "schema": {
31623 "type": "string",
31624 "uniqueItems": true
31625 }
31626 },
31627 {
31628 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31629 "in": "query",
31630 "name": "labelSelector",
31631 "schema": {
31632 "type": "string",
31633 "uniqueItems": true
31634 }
31635 },
31636 {
31637 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31638 "in": "query",
31639 "name": "limit",
31640 "schema": {
31641 "type": "integer",
31642 "uniqueItems": true
31643 }
31644 },
31645 {
31646 "description": "object name and auth scope, such as for teams and projects",
31647 "in": "path",
31648 "name": "namespace",
31649 "required": true,
31650 "schema": {
31651 "type": "string",
31652 "uniqueItems": true
31653 }
31654 },
31655 {
31656 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31657 "in": "query",
31658 "name": "pretty",
31659 "schema": {
31660 "type": "string",
31661 "uniqueItems": true
31662 }
31663 },
31664 {
31665 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31666 "in": "query",
31667 "name": "resourceVersion",
31668 "schema": {
31669 "type": "string",
31670 "uniqueItems": true
31671 }
31672 },
31673 {
31674 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31675 "in": "query",
31676 "name": "resourceVersionMatch",
31677 "schema": {
31678 "type": "string",
31679 "uniqueItems": true
31680 }
31681 },
31682 {
31683 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31684 "in": "query",
31685 "name": "sendInitialEvents",
31686 "schema": {
31687 "type": "boolean",
31688 "uniqueItems": true
31689 }
31690 },
31691 {
31692 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31693 "in": "query",
31694 "name": "timeoutSeconds",
31695 "schema": {
31696 "type": "integer",
31697 "uniqueItems": true
31698 }
31699 },
31700 {
31701 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31702 "in": "query",
31703 "name": "watch",
31704 "schema": {
31705 "type": "boolean",
31706 "uniqueItems": true
31707 }
31708 }
31709 ]
31710 },
31711 "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
31712 "get": {
31713 "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.",
31714 "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
31715 "responses": {
31716 "200": {
31717 "content": {
31718 "application/json": {
31719 "schema": {
31720 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31721 }
31722 },
31723 "application/json;stream=watch": {
31724 "schema": {
31725 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31726 }
31727 },
31728 "application/vnd.kubernetes.protobuf": {
31729 "schema": {
31730 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31731 }
31732 },
31733 "application/vnd.kubernetes.protobuf;stream=watch": {
31734 "schema": {
31735 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31736 }
31737 },
31738 "application/yaml": {
31739 "schema": {
31740 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31741 }
31742 }
31743 },
31744 "description": "OK"
31745 },
31746 "401": {
31747 "description": "Unauthorized"
31748 }
31749 },
31750 "tags": [
31751 "core_v1"
31752 ],
31753 "x-kubernetes-action": "watch",
31754 "x-kubernetes-group-version-kind": {
31755 "group": "",
31756 "kind": "PersistentVolumeClaim",
31757 "version": "v1"
31758 }
31759 },
31760 "parameters": [
31761 {
31762 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31763 "in": "query",
31764 "name": "allowWatchBookmarks",
31765 "schema": {
31766 "type": "boolean",
31767 "uniqueItems": true
31768 }
31769 },
31770 {
31771 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31772 "in": "query",
31773 "name": "continue",
31774 "schema": {
31775 "type": "string",
31776 "uniqueItems": true
31777 }
31778 },
31779 {
31780 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31781 "in": "query",
31782 "name": "fieldSelector",
31783 "schema": {
31784 "type": "string",
31785 "uniqueItems": true
31786 }
31787 },
31788 {
31789 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31790 "in": "query",
31791 "name": "labelSelector",
31792 "schema": {
31793 "type": "string",
31794 "uniqueItems": true
31795 }
31796 },
31797 {
31798 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31799 "in": "query",
31800 "name": "limit",
31801 "schema": {
31802 "type": "integer",
31803 "uniqueItems": true
31804 }
31805 },
31806 {
31807 "description": "name of the PersistentVolumeClaim",
31808 "in": "path",
31809 "name": "name",
31810 "required": true,
31811 "schema": {
31812 "type": "string",
31813 "uniqueItems": true
31814 }
31815 },
31816 {
31817 "description": "object name and auth scope, such as for teams and projects",
31818 "in": "path",
31819 "name": "namespace",
31820 "required": true,
31821 "schema": {
31822 "type": "string",
31823 "uniqueItems": true
31824 }
31825 },
31826 {
31827 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31828 "in": "query",
31829 "name": "pretty",
31830 "schema": {
31831 "type": "string",
31832 "uniqueItems": true
31833 }
31834 },
31835 {
31836 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31837 "in": "query",
31838 "name": "resourceVersion",
31839 "schema": {
31840 "type": "string",
31841 "uniqueItems": true
31842 }
31843 },
31844 {
31845 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31846 "in": "query",
31847 "name": "resourceVersionMatch",
31848 "schema": {
31849 "type": "string",
31850 "uniqueItems": true
31851 }
31852 },
31853 {
31854 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
31855 "in": "query",
31856 "name": "sendInitialEvents",
31857 "schema": {
31858 "type": "boolean",
31859 "uniqueItems": true
31860 }
31861 },
31862 {
31863 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31864 "in": "query",
31865 "name": "timeoutSeconds",
31866 "schema": {
31867 "type": "integer",
31868 "uniqueItems": true
31869 }
31870 },
31871 {
31872 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31873 "in": "query",
31874 "name": "watch",
31875 "schema": {
31876 "type": "boolean",
31877 "uniqueItems": true
31878 }
31879 }
31880 ]
31881 },
31882 "/api/v1/watch/namespaces/{namespace}/pods": {
31883 "get": {
31884 "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
31885 "operationId": "watchCoreV1NamespacedPodList",
31886 "responses": {
31887 "200": {
31888 "content": {
31889 "application/json": {
31890 "schema": {
31891 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31892 }
31893 },
31894 "application/json;stream=watch": {
31895 "schema": {
31896 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31897 }
31898 },
31899 "application/vnd.kubernetes.protobuf": {
31900 "schema": {
31901 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31902 }
31903 },
31904 "application/vnd.kubernetes.protobuf;stream=watch": {
31905 "schema": {
31906 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31907 }
31908 },
31909 "application/yaml": {
31910 "schema": {
31911 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31912 }
31913 }
31914 },
31915 "description": "OK"
31916 },
31917 "401": {
31918 "description": "Unauthorized"
31919 }
31920 },
31921 "tags": [
31922 "core_v1"
31923 ],
31924 "x-kubernetes-action": "watchlist",
31925 "x-kubernetes-group-version-kind": {
31926 "group": "",
31927 "kind": "Pod",
31928 "version": "v1"
31929 }
31930 },
31931 "parameters": [
31932 {
31933 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31934 "in": "query",
31935 "name": "allowWatchBookmarks",
31936 "schema": {
31937 "type": "boolean",
31938 "uniqueItems": true
31939 }
31940 },
31941 {
31942 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31943 "in": "query",
31944 "name": "continue",
31945 "schema": {
31946 "type": "string",
31947 "uniqueItems": true
31948 }
31949 },
31950 {
31951 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31952 "in": "query",
31953 "name": "fieldSelector",
31954 "schema": {
31955 "type": "string",
31956 "uniqueItems": true
31957 }
31958 },
31959 {
31960 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31961 "in": "query",
31962 "name": "labelSelector",
31963 "schema": {
31964 "type": "string",
31965 "uniqueItems": true
31966 }
31967 },
31968 {
31969 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31970 "in": "query",
31971 "name": "limit",
31972 "schema": {
31973 "type": "integer",
31974 "uniqueItems": true
31975 }
31976 },
31977 {
31978 "description": "object name and auth scope, such as for teams and projects",
31979 "in": "path",
31980 "name": "namespace",
31981 "required": true,
31982 "schema": {
31983 "type": "string",
31984 "uniqueItems": true
31985 }
31986 },
31987 {
31988 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
31989 "in": "query",
31990 "name": "pretty",
31991 "schema": {
31992 "type": "string",
31993 "uniqueItems": true
31994 }
31995 },
31996 {
31997 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31998 "in": "query",
31999 "name": "resourceVersion",
32000 "schema": {
32001 "type": "string",
32002 "uniqueItems": true
32003 }
32004 },
32005 {
32006 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32007 "in": "query",
32008 "name": "resourceVersionMatch",
32009 "schema": {
32010 "type": "string",
32011 "uniqueItems": true
32012 }
32013 },
32014 {
32015 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32016 "in": "query",
32017 "name": "sendInitialEvents",
32018 "schema": {
32019 "type": "boolean",
32020 "uniqueItems": true
32021 }
32022 },
32023 {
32024 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32025 "in": "query",
32026 "name": "timeoutSeconds",
32027 "schema": {
32028 "type": "integer",
32029 "uniqueItems": true
32030 }
32031 },
32032 {
32033 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32034 "in": "query",
32035 "name": "watch",
32036 "schema": {
32037 "type": "boolean",
32038 "uniqueItems": true
32039 }
32040 }
32041 ]
32042 },
32043 "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
32044 "get": {
32045 "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.",
32046 "operationId": "watchCoreV1NamespacedPod",
32047 "responses": {
32048 "200": {
32049 "content": {
32050 "application/json": {
32051 "schema": {
32052 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32053 }
32054 },
32055 "application/json;stream=watch": {
32056 "schema": {
32057 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32058 }
32059 },
32060 "application/vnd.kubernetes.protobuf": {
32061 "schema": {
32062 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32063 }
32064 },
32065 "application/vnd.kubernetes.protobuf;stream=watch": {
32066 "schema": {
32067 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32068 }
32069 },
32070 "application/yaml": {
32071 "schema": {
32072 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32073 }
32074 }
32075 },
32076 "description": "OK"
32077 },
32078 "401": {
32079 "description": "Unauthorized"
32080 }
32081 },
32082 "tags": [
32083 "core_v1"
32084 ],
32085 "x-kubernetes-action": "watch",
32086 "x-kubernetes-group-version-kind": {
32087 "group": "",
32088 "kind": "Pod",
32089 "version": "v1"
32090 }
32091 },
32092 "parameters": [
32093 {
32094 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32095 "in": "query",
32096 "name": "allowWatchBookmarks",
32097 "schema": {
32098 "type": "boolean",
32099 "uniqueItems": true
32100 }
32101 },
32102 {
32103 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32104 "in": "query",
32105 "name": "continue",
32106 "schema": {
32107 "type": "string",
32108 "uniqueItems": true
32109 }
32110 },
32111 {
32112 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32113 "in": "query",
32114 "name": "fieldSelector",
32115 "schema": {
32116 "type": "string",
32117 "uniqueItems": true
32118 }
32119 },
32120 {
32121 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32122 "in": "query",
32123 "name": "labelSelector",
32124 "schema": {
32125 "type": "string",
32126 "uniqueItems": true
32127 }
32128 },
32129 {
32130 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32131 "in": "query",
32132 "name": "limit",
32133 "schema": {
32134 "type": "integer",
32135 "uniqueItems": true
32136 }
32137 },
32138 {
32139 "description": "name of the Pod",
32140 "in": "path",
32141 "name": "name",
32142 "required": true,
32143 "schema": {
32144 "type": "string",
32145 "uniqueItems": true
32146 }
32147 },
32148 {
32149 "description": "object name and auth scope, such as for teams and projects",
32150 "in": "path",
32151 "name": "namespace",
32152 "required": true,
32153 "schema": {
32154 "type": "string",
32155 "uniqueItems": true
32156 }
32157 },
32158 {
32159 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32160 "in": "query",
32161 "name": "pretty",
32162 "schema": {
32163 "type": "string",
32164 "uniqueItems": true
32165 }
32166 },
32167 {
32168 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32169 "in": "query",
32170 "name": "resourceVersion",
32171 "schema": {
32172 "type": "string",
32173 "uniqueItems": true
32174 }
32175 },
32176 {
32177 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32178 "in": "query",
32179 "name": "resourceVersionMatch",
32180 "schema": {
32181 "type": "string",
32182 "uniqueItems": true
32183 }
32184 },
32185 {
32186 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32187 "in": "query",
32188 "name": "sendInitialEvents",
32189 "schema": {
32190 "type": "boolean",
32191 "uniqueItems": true
32192 }
32193 },
32194 {
32195 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32196 "in": "query",
32197 "name": "timeoutSeconds",
32198 "schema": {
32199 "type": "integer",
32200 "uniqueItems": true
32201 }
32202 },
32203 {
32204 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32205 "in": "query",
32206 "name": "watch",
32207 "schema": {
32208 "type": "boolean",
32209 "uniqueItems": true
32210 }
32211 }
32212 ]
32213 },
32214 "/api/v1/watch/namespaces/{namespace}/podtemplates": {
32215 "get": {
32216 "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
32217 "operationId": "watchCoreV1NamespacedPodTemplateList",
32218 "responses": {
32219 "200": {
32220 "content": {
32221 "application/json": {
32222 "schema": {
32223 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32224 }
32225 },
32226 "application/json;stream=watch": {
32227 "schema": {
32228 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32229 }
32230 },
32231 "application/vnd.kubernetes.protobuf": {
32232 "schema": {
32233 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32234 }
32235 },
32236 "application/vnd.kubernetes.protobuf;stream=watch": {
32237 "schema": {
32238 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32239 }
32240 },
32241 "application/yaml": {
32242 "schema": {
32243 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32244 }
32245 }
32246 },
32247 "description": "OK"
32248 },
32249 "401": {
32250 "description": "Unauthorized"
32251 }
32252 },
32253 "tags": [
32254 "core_v1"
32255 ],
32256 "x-kubernetes-action": "watchlist",
32257 "x-kubernetes-group-version-kind": {
32258 "group": "",
32259 "kind": "PodTemplate",
32260 "version": "v1"
32261 }
32262 },
32263 "parameters": [
32264 {
32265 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32266 "in": "query",
32267 "name": "allowWatchBookmarks",
32268 "schema": {
32269 "type": "boolean",
32270 "uniqueItems": true
32271 }
32272 },
32273 {
32274 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32275 "in": "query",
32276 "name": "continue",
32277 "schema": {
32278 "type": "string",
32279 "uniqueItems": true
32280 }
32281 },
32282 {
32283 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32284 "in": "query",
32285 "name": "fieldSelector",
32286 "schema": {
32287 "type": "string",
32288 "uniqueItems": true
32289 }
32290 },
32291 {
32292 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32293 "in": "query",
32294 "name": "labelSelector",
32295 "schema": {
32296 "type": "string",
32297 "uniqueItems": true
32298 }
32299 },
32300 {
32301 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32302 "in": "query",
32303 "name": "limit",
32304 "schema": {
32305 "type": "integer",
32306 "uniqueItems": true
32307 }
32308 },
32309 {
32310 "description": "object name and auth scope, such as for teams and projects",
32311 "in": "path",
32312 "name": "namespace",
32313 "required": true,
32314 "schema": {
32315 "type": "string",
32316 "uniqueItems": true
32317 }
32318 },
32319 {
32320 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32321 "in": "query",
32322 "name": "pretty",
32323 "schema": {
32324 "type": "string",
32325 "uniqueItems": true
32326 }
32327 },
32328 {
32329 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32330 "in": "query",
32331 "name": "resourceVersion",
32332 "schema": {
32333 "type": "string",
32334 "uniqueItems": true
32335 }
32336 },
32337 {
32338 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32339 "in": "query",
32340 "name": "resourceVersionMatch",
32341 "schema": {
32342 "type": "string",
32343 "uniqueItems": true
32344 }
32345 },
32346 {
32347 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32348 "in": "query",
32349 "name": "sendInitialEvents",
32350 "schema": {
32351 "type": "boolean",
32352 "uniqueItems": true
32353 }
32354 },
32355 {
32356 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32357 "in": "query",
32358 "name": "timeoutSeconds",
32359 "schema": {
32360 "type": "integer",
32361 "uniqueItems": true
32362 }
32363 },
32364 {
32365 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32366 "in": "query",
32367 "name": "watch",
32368 "schema": {
32369 "type": "boolean",
32370 "uniqueItems": true
32371 }
32372 }
32373 ]
32374 },
32375 "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
32376 "get": {
32377 "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.",
32378 "operationId": "watchCoreV1NamespacedPodTemplate",
32379 "responses": {
32380 "200": {
32381 "content": {
32382 "application/json": {
32383 "schema": {
32384 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32385 }
32386 },
32387 "application/json;stream=watch": {
32388 "schema": {
32389 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32390 }
32391 },
32392 "application/vnd.kubernetes.protobuf": {
32393 "schema": {
32394 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32395 }
32396 },
32397 "application/vnd.kubernetes.protobuf;stream=watch": {
32398 "schema": {
32399 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32400 }
32401 },
32402 "application/yaml": {
32403 "schema": {
32404 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32405 }
32406 }
32407 },
32408 "description": "OK"
32409 },
32410 "401": {
32411 "description": "Unauthorized"
32412 }
32413 },
32414 "tags": [
32415 "core_v1"
32416 ],
32417 "x-kubernetes-action": "watch",
32418 "x-kubernetes-group-version-kind": {
32419 "group": "",
32420 "kind": "PodTemplate",
32421 "version": "v1"
32422 }
32423 },
32424 "parameters": [
32425 {
32426 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32427 "in": "query",
32428 "name": "allowWatchBookmarks",
32429 "schema": {
32430 "type": "boolean",
32431 "uniqueItems": true
32432 }
32433 },
32434 {
32435 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32436 "in": "query",
32437 "name": "continue",
32438 "schema": {
32439 "type": "string",
32440 "uniqueItems": true
32441 }
32442 },
32443 {
32444 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32445 "in": "query",
32446 "name": "fieldSelector",
32447 "schema": {
32448 "type": "string",
32449 "uniqueItems": true
32450 }
32451 },
32452 {
32453 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32454 "in": "query",
32455 "name": "labelSelector",
32456 "schema": {
32457 "type": "string",
32458 "uniqueItems": true
32459 }
32460 },
32461 {
32462 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32463 "in": "query",
32464 "name": "limit",
32465 "schema": {
32466 "type": "integer",
32467 "uniqueItems": true
32468 }
32469 },
32470 {
32471 "description": "name of the PodTemplate",
32472 "in": "path",
32473 "name": "name",
32474 "required": true,
32475 "schema": {
32476 "type": "string",
32477 "uniqueItems": true
32478 }
32479 },
32480 {
32481 "description": "object name and auth scope, such as for teams and projects",
32482 "in": "path",
32483 "name": "namespace",
32484 "required": true,
32485 "schema": {
32486 "type": "string",
32487 "uniqueItems": true
32488 }
32489 },
32490 {
32491 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32492 "in": "query",
32493 "name": "pretty",
32494 "schema": {
32495 "type": "string",
32496 "uniqueItems": true
32497 }
32498 },
32499 {
32500 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32501 "in": "query",
32502 "name": "resourceVersion",
32503 "schema": {
32504 "type": "string",
32505 "uniqueItems": true
32506 }
32507 },
32508 {
32509 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32510 "in": "query",
32511 "name": "resourceVersionMatch",
32512 "schema": {
32513 "type": "string",
32514 "uniqueItems": true
32515 }
32516 },
32517 {
32518 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32519 "in": "query",
32520 "name": "sendInitialEvents",
32521 "schema": {
32522 "type": "boolean",
32523 "uniqueItems": true
32524 }
32525 },
32526 {
32527 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32528 "in": "query",
32529 "name": "timeoutSeconds",
32530 "schema": {
32531 "type": "integer",
32532 "uniqueItems": true
32533 }
32534 },
32535 {
32536 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32537 "in": "query",
32538 "name": "watch",
32539 "schema": {
32540 "type": "boolean",
32541 "uniqueItems": true
32542 }
32543 }
32544 ]
32545 },
32546 "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
32547 "get": {
32548 "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
32549 "operationId": "watchCoreV1NamespacedReplicationControllerList",
32550 "responses": {
32551 "200": {
32552 "content": {
32553 "application/json": {
32554 "schema": {
32555 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32556 }
32557 },
32558 "application/json;stream=watch": {
32559 "schema": {
32560 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32561 }
32562 },
32563 "application/vnd.kubernetes.protobuf": {
32564 "schema": {
32565 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32566 }
32567 },
32568 "application/vnd.kubernetes.protobuf;stream=watch": {
32569 "schema": {
32570 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32571 }
32572 },
32573 "application/yaml": {
32574 "schema": {
32575 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32576 }
32577 }
32578 },
32579 "description": "OK"
32580 },
32581 "401": {
32582 "description": "Unauthorized"
32583 }
32584 },
32585 "tags": [
32586 "core_v1"
32587 ],
32588 "x-kubernetes-action": "watchlist",
32589 "x-kubernetes-group-version-kind": {
32590 "group": "",
32591 "kind": "ReplicationController",
32592 "version": "v1"
32593 }
32594 },
32595 "parameters": [
32596 {
32597 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32598 "in": "query",
32599 "name": "allowWatchBookmarks",
32600 "schema": {
32601 "type": "boolean",
32602 "uniqueItems": true
32603 }
32604 },
32605 {
32606 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32607 "in": "query",
32608 "name": "continue",
32609 "schema": {
32610 "type": "string",
32611 "uniqueItems": true
32612 }
32613 },
32614 {
32615 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32616 "in": "query",
32617 "name": "fieldSelector",
32618 "schema": {
32619 "type": "string",
32620 "uniqueItems": true
32621 }
32622 },
32623 {
32624 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32625 "in": "query",
32626 "name": "labelSelector",
32627 "schema": {
32628 "type": "string",
32629 "uniqueItems": true
32630 }
32631 },
32632 {
32633 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32634 "in": "query",
32635 "name": "limit",
32636 "schema": {
32637 "type": "integer",
32638 "uniqueItems": true
32639 }
32640 },
32641 {
32642 "description": "object name and auth scope, such as for teams and projects",
32643 "in": "path",
32644 "name": "namespace",
32645 "required": true,
32646 "schema": {
32647 "type": "string",
32648 "uniqueItems": true
32649 }
32650 },
32651 {
32652 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32653 "in": "query",
32654 "name": "pretty",
32655 "schema": {
32656 "type": "string",
32657 "uniqueItems": true
32658 }
32659 },
32660 {
32661 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32662 "in": "query",
32663 "name": "resourceVersion",
32664 "schema": {
32665 "type": "string",
32666 "uniqueItems": true
32667 }
32668 },
32669 {
32670 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32671 "in": "query",
32672 "name": "resourceVersionMatch",
32673 "schema": {
32674 "type": "string",
32675 "uniqueItems": true
32676 }
32677 },
32678 {
32679 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32680 "in": "query",
32681 "name": "sendInitialEvents",
32682 "schema": {
32683 "type": "boolean",
32684 "uniqueItems": true
32685 }
32686 },
32687 {
32688 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32689 "in": "query",
32690 "name": "timeoutSeconds",
32691 "schema": {
32692 "type": "integer",
32693 "uniqueItems": true
32694 }
32695 },
32696 {
32697 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32698 "in": "query",
32699 "name": "watch",
32700 "schema": {
32701 "type": "boolean",
32702 "uniqueItems": true
32703 }
32704 }
32705 ]
32706 },
32707 "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
32708 "get": {
32709 "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.",
32710 "operationId": "watchCoreV1NamespacedReplicationController",
32711 "responses": {
32712 "200": {
32713 "content": {
32714 "application/json": {
32715 "schema": {
32716 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32717 }
32718 },
32719 "application/json;stream=watch": {
32720 "schema": {
32721 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32722 }
32723 },
32724 "application/vnd.kubernetes.protobuf": {
32725 "schema": {
32726 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32727 }
32728 },
32729 "application/vnd.kubernetes.protobuf;stream=watch": {
32730 "schema": {
32731 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32732 }
32733 },
32734 "application/yaml": {
32735 "schema": {
32736 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32737 }
32738 }
32739 },
32740 "description": "OK"
32741 },
32742 "401": {
32743 "description": "Unauthorized"
32744 }
32745 },
32746 "tags": [
32747 "core_v1"
32748 ],
32749 "x-kubernetes-action": "watch",
32750 "x-kubernetes-group-version-kind": {
32751 "group": "",
32752 "kind": "ReplicationController",
32753 "version": "v1"
32754 }
32755 },
32756 "parameters": [
32757 {
32758 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32759 "in": "query",
32760 "name": "allowWatchBookmarks",
32761 "schema": {
32762 "type": "boolean",
32763 "uniqueItems": true
32764 }
32765 },
32766 {
32767 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32768 "in": "query",
32769 "name": "continue",
32770 "schema": {
32771 "type": "string",
32772 "uniqueItems": true
32773 }
32774 },
32775 {
32776 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32777 "in": "query",
32778 "name": "fieldSelector",
32779 "schema": {
32780 "type": "string",
32781 "uniqueItems": true
32782 }
32783 },
32784 {
32785 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32786 "in": "query",
32787 "name": "labelSelector",
32788 "schema": {
32789 "type": "string",
32790 "uniqueItems": true
32791 }
32792 },
32793 {
32794 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32795 "in": "query",
32796 "name": "limit",
32797 "schema": {
32798 "type": "integer",
32799 "uniqueItems": true
32800 }
32801 },
32802 {
32803 "description": "name of the ReplicationController",
32804 "in": "path",
32805 "name": "name",
32806 "required": true,
32807 "schema": {
32808 "type": "string",
32809 "uniqueItems": true
32810 }
32811 },
32812 {
32813 "description": "object name and auth scope, such as for teams and projects",
32814 "in": "path",
32815 "name": "namespace",
32816 "required": true,
32817 "schema": {
32818 "type": "string",
32819 "uniqueItems": true
32820 }
32821 },
32822 {
32823 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32824 "in": "query",
32825 "name": "pretty",
32826 "schema": {
32827 "type": "string",
32828 "uniqueItems": true
32829 }
32830 },
32831 {
32832 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32833 "in": "query",
32834 "name": "resourceVersion",
32835 "schema": {
32836 "type": "string",
32837 "uniqueItems": true
32838 }
32839 },
32840 {
32841 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32842 "in": "query",
32843 "name": "resourceVersionMatch",
32844 "schema": {
32845 "type": "string",
32846 "uniqueItems": true
32847 }
32848 },
32849 {
32850 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
32851 "in": "query",
32852 "name": "sendInitialEvents",
32853 "schema": {
32854 "type": "boolean",
32855 "uniqueItems": true
32856 }
32857 },
32858 {
32859 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32860 "in": "query",
32861 "name": "timeoutSeconds",
32862 "schema": {
32863 "type": "integer",
32864 "uniqueItems": true
32865 }
32866 },
32867 {
32868 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32869 "in": "query",
32870 "name": "watch",
32871 "schema": {
32872 "type": "boolean",
32873 "uniqueItems": true
32874 }
32875 }
32876 ]
32877 },
32878 "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
32879 "get": {
32880 "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
32881 "operationId": "watchCoreV1NamespacedResourceQuotaList",
32882 "responses": {
32883 "200": {
32884 "content": {
32885 "application/json": {
32886 "schema": {
32887 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32888 }
32889 },
32890 "application/json;stream=watch": {
32891 "schema": {
32892 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32893 }
32894 },
32895 "application/vnd.kubernetes.protobuf": {
32896 "schema": {
32897 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32898 }
32899 },
32900 "application/vnd.kubernetes.protobuf;stream=watch": {
32901 "schema": {
32902 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32903 }
32904 },
32905 "application/yaml": {
32906 "schema": {
32907 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32908 }
32909 }
32910 },
32911 "description": "OK"
32912 },
32913 "401": {
32914 "description": "Unauthorized"
32915 }
32916 },
32917 "tags": [
32918 "core_v1"
32919 ],
32920 "x-kubernetes-action": "watchlist",
32921 "x-kubernetes-group-version-kind": {
32922 "group": "",
32923 "kind": "ResourceQuota",
32924 "version": "v1"
32925 }
32926 },
32927 "parameters": [
32928 {
32929 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32930 "in": "query",
32931 "name": "allowWatchBookmarks",
32932 "schema": {
32933 "type": "boolean",
32934 "uniqueItems": true
32935 }
32936 },
32937 {
32938 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32939 "in": "query",
32940 "name": "continue",
32941 "schema": {
32942 "type": "string",
32943 "uniqueItems": true
32944 }
32945 },
32946 {
32947 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32948 "in": "query",
32949 "name": "fieldSelector",
32950 "schema": {
32951 "type": "string",
32952 "uniqueItems": true
32953 }
32954 },
32955 {
32956 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32957 "in": "query",
32958 "name": "labelSelector",
32959 "schema": {
32960 "type": "string",
32961 "uniqueItems": true
32962 }
32963 },
32964 {
32965 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32966 "in": "query",
32967 "name": "limit",
32968 "schema": {
32969 "type": "integer",
32970 "uniqueItems": true
32971 }
32972 },
32973 {
32974 "description": "object name and auth scope, such as for teams and projects",
32975 "in": "path",
32976 "name": "namespace",
32977 "required": true,
32978 "schema": {
32979 "type": "string",
32980 "uniqueItems": true
32981 }
32982 },
32983 {
32984 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
32985 "in": "query",
32986 "name": "pretty",
32987 "schema": {
32988 "type": "string",
32989 "uniqueItems": true
32990 }
32991 },
32992 {
32993 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32994 "in": "query",
32995 "name": "resourceVersion",
32996 "schema": {
32997 "type": "string",
32998 "uniqueItems": true
32999 }
33000 },
33001 {
33002 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33003 "in": "query",
33004 "name": "resourceVersionMatch",
33005 "schema": {
33006 "type": "string",
33007 "uniqueItems": true
33008 }
33009 },
33010 {
33011 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33012 "in": "query",
33013 "name": "sendInitialEvents",
33014 "schema": {
33015 "type": "boolean",
33016 "uniqueItems": true
33017 }
33018 },
33019 {
33020 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33021 "in": "query",
33022 "name": "timeoutSeconds",
33023 "schema": {
33024 "type": "integer",
33025 "uniqueItems": true
33026 }
33027 },
33028 {
33029 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33030 "in": "query",
33031 "name": "watch",
33032 "schema": {
33033 "type": "boolean",
33034 "uniqueItems": true
33035 }
33036 }
33037 ]
33038 },
33039 "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
33040 "get": {
33041 "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.",
33042 "operationId": "watchCoreV1NamespacedResourceQuota",
33043 "responses": {
33044 "200": {
33045 "content": {
33046 "application/json": {
33047 "schema": {
33048 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33049 }
33050 },
33051 "application/json;stream=watch": {
33052 "schema": {
33053 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33054 }
33055 },
33056 "application/vnd.kubernetes.protobuf": {
33057 "schema": {
33058 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33059 }
33060 },
33061 "application/vnd.kubernetes.protobuf;stream=watch": {
33062 "schema": {
33063 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33064 }
33065 },
33066 "application/yaml": {
33067 "schema": {
33068 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33069 }
33070 }
33071 },
33072 "description": "OK"
33073 },
33074 "401": {
33075 "description": "Unauthorized"
33076 }
33077 },
33078 "tags": [
33079 "core_v1"
33080 ],
33081 "x-kubernetes-action": "watch",
33082 "x-kubernetes-group-version-kind": {
33083 "group": "",
33084 "kind": "ResourceQuota",
33085 "version": "v1"
33086 }
33087 },
33088 "parameters": [
33089 {
33090 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33091 "in": "query",
33092 "name": "allowWatchBookmarks",
33093 "schema": {
33094 "type": "boolean",
33095 "uniqueItems": true
33096 }
33097 },
33098 {
33099 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33100 "in": "query",
33101 "name": "continue",
33102 "schema": {
33103 "type": "string",
33104 "uniqueItems": true
33105 }
33106 },
33107 {
33108 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33109 "in": "query",
33110 "name": "fieldSelector",
33111 "schema": {
33112 "type": "string",
33113 "uniqueItems": true
33114 }
33115 },
33116 {
33117 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33118 "in": "query",
33119 "name": "labelSelector",
33120 "schema": {
33121 "type": "string",
33122 "uniqueItems": true
33123 }
33124 },
33125 {
33126 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33127 "in": "query",
33128 "name": "limit",
33129 "schema": {
33130 "type": "integer",
33131 "uniqueItems": true
33132 }
33133 },
33134 {
33135 "description": "name of the ResourceQuota",
33136 "in": "path",
33137 "name": "name",
33138 "required": true,
33139 "schema": {
33140 "type": "string",
33141 "uniqueItems": true
33142 }
33143 },
33144 {
33145 "description": "object name and auth scope, such as for teams and projects",
33146 "in": "path",
33147 "name": "namespace",
33148 "required": true,
33149 "schema": {
33150 "type": "string",
33151 "uniqueItems": true
33152 }
33153 },
33154 {
33155 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33156 "in": "query",
33157 "name": "pretty",
33158 "schema": {
33159 "type": "string",
33160 "uniqueItems": true
33161 }
33162 },
33163 {
33164 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33165 "in": "query",
33166 "name": "resourceVersion",
33167 "schema": {
33168 "type": "string",
33169 "uniqueItems": true
33170 }
33171 },
33172 {
33173 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33174 "in": "query",
33175 "name": "resourceVersionMatch",
33176 "schema": {
33177 "type": "string",
33178 "uniqueItems": true
33179 }
33180 },
33181 {
33182 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33183 "in": "query",
33184 "name": "sendInitialEvents",
33185 "schema": {
33186 "type": "boolean",
33187 "uniqueItems": true
33188 }
33189 },
33190 {
33191 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33192 "in": "query",
33193 "name": "timeoutSeconds",
33194 "schema": {
33195 "type": "integer",
33196 "uniqueItems": true
33197 }
33198 },
33199 {
33200 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33201 "in": "query",
33202 "name": "watch",
33203 "schema": {
33204 "type": "boolean",
33205 "uniqueItems": true
33206 }
33207 }
33208 ]
33209 },
33210 "/api/v1/watch/namespaces/{namespace}/secrets": {
33211 "get": {
33212 "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
33213 "operationId": "watchCoreV1NamespacedSecretList",
33214 "responses": {
33215 "200": {
33216 "content": {
33217 "application/json": {
33218 "schema": {
33219 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33220 }
33221 },
33222 "application/json;stream=watch": {
33223 "schema": {
33224 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33225 }
33226 },
33227 "application/vnd.kubernetes.protobuf": {
33228 "schema": {
33229 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33230 }
33231 },
33232 "application/vnd.kubernetes.protobuf;stream=watch": {
33233 "schema": {
33234 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33235 }
33236 },
33237 "application/yaml": {
33238 "schema": {
33239 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33240 }
33241 }
33242 },
33243 "description": "OK"
33244 },
33245 "401": {
33246 "description": "Unauthorized"
33247 }
33248 },
33249 "tags": [
33250 "core_v1"
33251 ],
33252 "x-kubernetes-action": "watchlist",
33253 "x-kubernetes-group-version-kind": {
33254 "group": "",
33255 "kind": "Secret",
33256 "version": "v1"
33257 }
33258 },
33259 "parameters": [
33260 {
33261 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33262 "in": "query",
33263 "name": "allowWatchBookmarks",
33264 "schema": {
33265 "type": "boolean",
33266 "uniqueItems": true
33267 }
33268 },
33269 {
33270 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33271 "in": "query",
33272 "name": "continue",
33273 "schema": {
33274 "type": "string",
33275 "uniqueItems": true
33276 }
33277 },
33278 {
33279 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33280 "in": "query",
33281 "name": "fieldSelector",
33282 "schema": {
33283 "type": "string",
33284 "uniqueItems": true
33285 }
33286 },
33287 {
33288 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33289 "in": "query",
33290 "name": "labelSelector",
33291 "schema": {
33292 "type": "string",
33293 "uniqueItems": true
33294 }
33295 },
33296 {
33297 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33298 "in": "query",
33299 "name": "limit",
33300 "schema": {
33301 "type": "integer",
33302 "uniqueItems": true
33303 }
33304 },
33305 {
33306 "description": "object name and auth scope, such as for teams and projects",
33307 "in": "path",
33308 "name": "namespace",
33309 "required": true,
33310 "schema": {
33311 "type": "string",
33312 "uniqueItems": true
33313 }
33314 },
33315 {
33316 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33317 "in": "query",
33318 "name": "pretty",
33319 "schema": {
33320 "type": "string",
33321 "uniqueItems": true
33322 }
33323 },
33324 {
33325 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33326 "in": "query",
33327 "name": "resourceVersion",
33328 "schema": {
33329 "type": "string",
33330 "uniqueItems": true
33331 }
33332 },
33333 {
33334 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33335 "in": "query",
33336 "name": "resourceVersionMatch",
33337 "schema": {
33338 "type": "string",
33339 "uniqueItems": true
33340 }
33341 },
33342 {
33343 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33344 "in": "query",
33345 "name": "sendInitialEvents",
33346 "schema": {
33347 "type": "boolean",
33348 "uniqueItems": true
33349 }
33350 },
33351 {
33352 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33353 "in": "query",
33354 "name": "timeoutSeconds",
33355 "schema": {
33356 "type": "integer",
33357 "uniqueItems": true
33358 }
33359 },
33360 {
33361 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33362 "in": "query",
33363 "name": "watch",
33364 "schema": {
33365 "type": "boolean",
33366 "uniqueItems": true
33367 }
33368 }
33369 ]
33370 },
33371 "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
33372 "get": {
33373 "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.",
33374 "operationId": "watchCoreV1NamespacedSecret",
33375 "responses": {
33376 "200": {
33377 "content": {
33378 "application/json": {
33379 "schema": {
33380 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33381 }
33382 },
33383 "application/json;stream=watch": {
33384 "schema": {
33385 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33386 }
33387 },
33388 "application/vnd.kubernetes.protobuf": {
33389 "schema": {
33390 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33391 }
33392 },
33393 "application/vnd.kubernetes.protobuf;stream=watch": {
33394 "schema": {
33395 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33396 }
33397 },
33398 "application/yaml": {
33399 "schema": {
33400 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33401 }
33402 }
33403 },
33404 "description": "OK"
33405 },
33406 "401": {
33407 "description": "Unauthorized"
33408 }
33409 },
33410 "tags": [
33411 "core_v1"
33412 ],
33413 "x-kubernetes-action": "watch",
33414 "x-kubernetes-group-version-kind": {
33415 "group": "",
33416 "kind": "Secret",
33417 "version": "v1"
33418 }
33419 },
33420 "parameters": [
33421 {
33422 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33423 "in": "query",
33424 "name": "allowWatchBookmarks",
33425 "schema": {
33426 "type": "boolean",
33427 "uniqueItems": true
33428 }
33429 },
33430 {
33431 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33432 "in": "query",
33433 "name": "continue",
33434 "schema": {
33435 "type": "string",
33436 "uniqueItems": true
33437 }
33438 },
33439 {
33440 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33441 "in": "query",
33442 "name": "fieldSelector",
33443 "schema": {
33444 "type": "string",
33445 "uniqueItems": true
33446 }
33447 },
33448 {
33449 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33450 "in": "query",
33451 "name": "labelSelector",
33452 "schema": {
33453 "type": "string",
33454 "uniqueItems": true
33455 }
33456 },
33457 {
33458 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33459 "in": "query",
33460 "name": "limit",
33461 "schema": {
33462 "type": "integer",
33463 "uniqueItems": true
33464 }
33465 },
33466 {
33467 "description": "name of the Secret",
33468 "in": "path",
33469 "name": "name",
33470 "required": true,
33471 "schema": {
33472 "type": "string",
33473 "uniqueItems": true
33474 }
33475 },
33476 {
33477 "description": "object name and auth scope, such as for teams and projects",
33478 "in": "path",
33479 "name": "namespace",
33480 "required": true,
33481 "schema": {
33482 "type": "string",
33483 "uniqueItems": true
33484 }
33485 },
33486 {
33487 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33488 "in": "query",
33489 "name": "pretty",
33490 "schema": {
33491 "type": "string",
33492 "uniqueItems": true
33493 }
33494 },
33495 {
33496 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33497 "in": "query",
33498 "name": "resourceVersion",
33499 "schema": {
33500 "type": "string",
33501 "uniqueItems": true
33502 }
33503 },
33504 {
33505 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33506 "in": "query",
33507 "name": "resourceVersionMatch",
33508 "schema": {
33509 "type": "string",
33510 "uniqueItems": true
33511 }
33512 },
33513 {
33514 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33515 "in": "query",
33516 "name": "sendInitialEvents",
33517 "schema": {
33518 "type": "boolean",
33519 "uniqueItems": true
33520 }
33521 },
33522 {
33523 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33524 "in": "query",
33525 "name": "timeoutSeconds",
33526 "schema": {
33527 "type": "integer",
33528 "uniqueItems": true
33529 }
33530 },
33531 {
33532 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33533 "in": "query",
33534 "name": "watch",
33535 "schema": {
33536 "type": "boolean",
33537 "uniqueItems": true
33538 }
33539 }
33540 ]
33541 },
33542 "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
33543 "get": {
33544 "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
33545 "operationId": "watchCoreV1NamespacedServiceAccountList",
33546 "responses": {
33547 "200": {
33548 "content": {
33549 "application/json": {
33550 "schema": {
33551 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33552 }
33553 },
33554 "application/json;stream=watch": {
33555 "schema": {
33556 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33557 }
33558 },
33559 "application/vnd.kubernetes.protobuf": {
33560 "schema": {
33561 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33562 }
33563 },
33564 "application/vnd.kubernetes.protobuf;stream=watch": {
33565 "schema": {
33566 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33567 }
33568 },
33569 "application/yaml": {
33570 "schema": {
33571 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33572 }
33573 }
33574 },
33575 "description": "OK"
33576 },
33577 "401": {
33578 "description": "Unauthorized"
33579 }
33580 },
33581 "tags": [
33582 "core_v1"
33583 ],
33584 "x-kubernetes-action": "watchlist",
33585 "x-kubernetes-group-version-kind": {
33586 "group": "",
33587 "kind": "ServiceAccount",
33588 "version": "v1"
33589 }
33590 },
33591 "parameters": [
33592 {
33593 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33594 "in": "query",
33595 "name": "allowWatchBookmarks",
33596 "schema": {
33597 "type": "boolean",
33598 "uniqueItems": true
33599 }
33600 },
33601 {
33602 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33603 "in": "query",
33604 "name": "continue",
33605 "schema": {
33606 "type": "string",
33607 "uniqueItems": true
33608 }
33609 },
33610 {
33611 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33612 "in": "query",
33613 "name": "fieldSelector",
33614 "schema": {
33615 "type": "string",
33616 "uniqueItems": true
33617 }
33618 },
33619 {
33620 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33621 "in": "query",
33622 "name": "labelSelector",
33623 "schema": {
33624 "type": "string",
33625 "uniqueItems": true
33626 }
33627 },
33628 {
33629 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33630 "in": "query",
33631 "name": "limit",
33632 "schema": {
33633 "type": "integer",
33634 "uniqueItems": true
33635 }
33636 },
33637 {
33638 "description": "object name and auth scope, such as for teams and projects",
33639 "in": "path",
33640 "name": "namespace",
33641 "required": true,
33642 "schema": {
33643 "type": "string",
33644 "uniqueItems": true
33645 }
33646 },
33647 {
33648 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33649 "in": "query",
33650 "name": "pretty",
33651 "schema": {
33652 "type": "string",
33653 "uniqueItems": true
33654 }
33655 },
33656 {
33657 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33658 "in": "query",
33659 "name": "resourceVersion",
33660 "schema": {
33661 "type": "string",
33662 "uniqueItems": true
33663 }
33664 },
33665 {
33666 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33667 "in": "query",
33668 "name": "resourceVersionMatch",
33669 "schema": {
33670 "type": "string",
33671 "uniqueItems": true
33672 }
33673 },
33674 {
33675 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33676 "in": "query",
33677 "name": "sendInitialEvents",
33678 "schema": {
33679 "type": "boolean",
33680 "uniqueItems": true
33681 }
33682 },
33683 {
33684 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33685 "in": "query",
33686 "name": "timeoutSeconds",
33687 "schema": {
33688 "type": "integer",
33689 "uniqueItems": true
33690 }
33691 },
33692 {
33693 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33694 "in": "query",
33695 "name": "watch",
33696 "schema": {
33697 "type": "boolean",
33698 "uniqueItems": true
33699 }
33700 }
33701 ]
33702 },
33703 "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
33704 "get": {
33705 "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.",
33706 "operationId": "watchCoreV1NamespacedServiceAccount",
33707 "responses": {
33708 "200": {
33709 "content": {
33710 "application/json": {
33711 "schema": {
33712 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33713 }
33714 },
33715 "application/json;stream=watch": {
33716 "schema": {
33717 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33718 }
33719 },
33720 "application/vnd.kubernetes.protobuf": {
33721 "schema": {
33722 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33723 }
33724 },
33725 "application/vnd.kubernetes.protobuf;stream=watch": {
33726 "schema": {
33727 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33728 }
33729 },
33730 "application/yaml": {
33731 "schema": {
33732 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33733 }
33734 }
33735 },
33736 "description": "OK"
33737 },
33738 "401": {
33739 "description": "Unauthorized"
33740 }
33741 },
33742 "tags": [
33743 "core_v1"
33744 ],
33745 "x-kubernetes-action": "watch",
33746 "x-kubernetes-group-version-kind": {
33747 "group": "",
33748 "kind": "ServiceAccount",
33749 "version": "v1"
33750 }
33751 },
33752 "parameters": [
33753 {
33754 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33755 "in": "query",
33756 "name": "allowWatchBookmarks",
33757 "schema": {
33758 "type": "boolean",
33759 "uniqueItems": true
33760 }
33761 },
33762 {
33763 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33764 "in": "query",
33765 "name": "continue",
33766 "schema": {
33767 "type": "string",
33768 "uniqueItems": true
33769 }
33770 },
33771 {
33772 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33773 "in": "query",
33774 "name": "fieldSelector",
33775 "schema": {
33776 "type": "string",
33777 "uniqueItems": true
33778 }
33779 },
33780 {
33781 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33782 "in": "query",
33783 "name": "labelSelector",
33784 "schema": {
33785 "type": "string",
33786 "uniqueItems": true
33787 }
33788 },
33789 {
33790 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33791 "in": "query",
33792 "name": "limit",
33793 "schema": {
33794 "type": "integer",
33795 "uniqueItems": true
33796 }
33797 },
33798 {
33799 "description": "name of the ServiceAccount",
33800 "in": "path",
33801 "name": "name",
33802 "required": true,
33803 "schema": {
33804 "type": "string",
33805 "uniqueItems": true
33806 }
33807 },
33808 {
33809 "description": "object name and auth scope, such as for teams and projects",
33810 "in": "path",
33811 "name": "namespace",
33812 "required": true,
33813 "schema": {
33814 "type": "string",
33815 "uniqueItems": true
33816 }
33817 },
33818 {
33819 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33820 "in": "query",
33821 "name": "pretty",
33822 "schema": {
33823 "type": "string",
33824 "uniqueItems": true
33825 }
33826 },
33827 {
33828 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33829 "in": "query",
33830 "name": "resourceVersion",
33831 "schema": {
33832 "type": "string",
33833 "uniqueItems": true
33834 }
33835 },
33836 {
33837 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33838 "in": "query",
33839 "name": "resourceVersionMatch",
33840 "schema": {
33841 "type": "string",
33842 "uniqueItems": true
33843 }
33844 },
33845 {
33846 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
33847 "in": "query",
33848 "name": "sendInitialEvents",
33849 "schema": {
33850 "type": "boolean",
33851 "uniqueItems": true
33852 }
33853 },
33854 {
33855 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33856 "in": "query",
33857 "name": "timeoutSeconds",
33858 "schema": {
33859 "type": "integer",
33860 "uniqueItems": true
33861 }
33862 },
33863 {
33864 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33865 "in": "query",
33866 "name": "watch",
33867 "schema": {
33868 "type": "boolean",
33869 "uniqueItems": true
33870 }
33871 }
33872 ]
33873 },
33874 "/api/v1/watch/namespaces/{namespace}/services": {
33875 "get": {
33876 "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
33877 "operationId": "watchCoreV1NamespacedServiceList",
33878 "responses": {
33879 "200": {
33880 "content": {
33881 "application/json": {
33882 "schema": {
33883 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33884 }
33885 },
33886 "application/json;stream=watch": {
33887 "schema": {
33888 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33889 }
33890 },
33891 "application/vnd.kubernetes.protobuf": {
33892 "schema": {
33893 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33894 }
33895 },
33896 "application/vnd.kubernetes.protobuf;stream=watch": {
33897 "schema": {
33898 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33899 }
33900 },
33901 "application/yaml": {
33902 "schema": {
33903 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33904 }
33905 }
33906 },
33907 "description": "OK"
33908 },
33909 "401": {
33910 "description": "Unauthorized"
33911 }
33912 },
33913 "tags": [
33914 "core_v1"
33915 ],
33916 "x-kubernetes-action": "watchlist",
33917 "x-kubernetes-group-version-kind": {
33918 "group": "",
33919 "kind": "Service",
33920 "version": "v1"
33921 }
33922 },
33923 "parameters": [
33924 {
33925 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33926 "in": "query",
33927 "name": "allowWatchBookmarks",
33928 "schema": {
33929 "type": "boolean",
33930 "uniqueItems": true
33931 }
33932 },
33933 {
33934 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33935 "in": "query",
33936 "name": "continue",
33937 "schema": {
33938 "type": "string",
33939 "uniqueItems": true
33940 }
33941 },
33942 {
33943 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33944 "in": "query",
33945 "name": "fieldSelector",
33946 "schema": {
33947 "type": "string",
33948 "uniqueItems": true
33949 }
33950 },
33951 {
33952 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33953 "in": "query",
33954 "name": "labelSelector",
33955 "schema": {
33956 "type": "string",
33957 "uniqueItems": true
33958 }
33959 },
33960 {
33961 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33962 "in": "query",
33963 "name": "limit",
33964 "schema": {
33965 "type": "integer",
33966 "uniqueItems": true
33967 }
33968 },
33969 {
33970 "description": "object name and auth scope, such as for teams and projects",
33971 "in": "path",
33972 "name": "namespace",
33973 "required": true,
33974 "schema": {
33975 "type": "string",
33976 "uniqueItems": true
33977 }
33978 },
33979 {
33980 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
33981 "in": "query",
33982 "name": "pretty",
33983 "schema": {
33984 "type": "string",
33985 "uniqueItems": true
33986 }
33987 },
33988 {
33989 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33990 "in": "query",
33991 "name": "resourceVersion",
33992 "schema": {
33993 "type": "string",
33994 "uniqueItems": true
33995 }
33996 },
33997 {
33998 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33999 "in": "query",
34000 "name": "resourceVersionMatch",
34001 "schema": {
34002 "type": "string",
34003 "uniqueItems": true
34004 }
34005 },
34006 {
34007 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34008 "in": "query",
34009 "name": "sendInitialEvents",
34010 "schema": {
34011 "type": "boolean",
34012 "uniqueItems": true
34013 }
34014 },
34015 {
34016 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34017 "in": "query",
34018 "name": "timeoutSeconds",
34019 "schema": {
34020 "type": "integer",
34021 "uniqueItems": true
34022 }
34023 },
34024 {
34025 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34026 "in": "query",
34027 "name": "watch",
34028 "schema": {
34029 "type": "boolean",
34030 "uniqueItems": true
34031 }
34032 }
34033 ]
34034 },
34035 "/api/v1/watch/namespaces/{namespace}/services/{name}": {
34036 "get": {
34037 "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.",
34038 "operationId": "watchCoreV1NamespacedService",
34039 "responses": {
34040 "200": {
34041 "content": {
34042 "application/json": {
34043 "schema": {
34044 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34045 }
34046 },
34047 "application/json;stream=watch": {
34048 "schema": {
34049 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34050 }
34051 },
34052 "application/vnd.kubernetes.protobuf": {
34053 "schema": {
34054 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34055 }
34056 },
34057 "application/vnd.kubernetes.protobuf;stream=watch": {
34058 "schema": {
34059 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34060 }
34061 },
34062 "application/yaml": {
34063 "schema": {
34064 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34065 }
34066 }
34067 },
34068 "description": "OK"
34069 },
34070 "401": {
34071 "description": "Unauthorized"
34072 }
34073 },
34074 "tags": [
34075 "core_v1"
34076 ],
34077 "x-kubernetes-action": "watch",
34078 "x-kubernetes-group-version-kind": {
34079 "group": "",
34080 "kind": "Service",
34081 "version": "v1"
34082 }
34083 },
34084 "parameters": [
34085 {
34086 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34087 "in": "query",
34088 "name": "allowWatchBookmarks",
34089 "schema": {
34090 "type": "boolean",
34091 "uniqueItems": true
34092 }
34093 },
34094 {
34095 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34096 "in": "query",
34097 "name": "continue",
34098 "schema": {
34099 "type": "string",
34100 "uniqueItems": true
34101 }
34102 },
34103 {
34104 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34105 "in": "query",
34106 "name": "fieldSelector",
34107 "schema": {
34108 "type": "string",
34109 "uniqueItems": true
34110 }
34111 },
34112 {
34113 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34114 "in": "query",
34115 "name": "labelSelector",
34116 "schema": {
34117 "type": "string",
34118 "uniqueItems": true
34119 }
34120 },
34121 {
34122 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34123 "in": "query",
34124 "name": "limit",
34125 "schema": {
34126 "type": "integer",
34127 "uniqueItems": true
34128 }
34129 },
34130 {
34131 "description": "name of the Service",
34132 "in": "path",
34133 "name": "name",
34134 "required": true,
34135 "schema": {
34136 "type": "string",
34137 "uniqueItems": true
34138 }
34139 },
34140 {
34141 "description": "object name and auth scope, such as for teams and projects",
34142 "in": "path",
34143 "name": "namespace",
34144 "required": true,
34145 "schema": {
34146 "type": "string",
34147 "uniqueItems": true
34148 }
34149 },
34150 {
34151 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34152 "in": "query",
34153 "name": "pretty",
34154 "schema": {
34155 "type": "string",
34156 "uniqueItems": true
34157 }
34158 },
34159 {
34160 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34161 "in": "query",
34162 "name": "resourceVersion",
34163 "schema": {
34164 "type": "string",
34165 "uniqueItems": true
34166 }
34167 },
34168 {
34169 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34170 "in": "query",
34171 "name": "resourceVersionMatch",
34172 "schema": {
34173 "type": "string",
34174 "uniqueItems": true
34175 }
34176 },
34177 {
34178 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34179 "in": "query",
34180 "name": "sendInitialEvents",
34181 "schema": {
34182 "type": "boolean",
34183 "uniqueItems": true
34184 }
34185 },
34186 {
34187 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34188 "in": "query",
34189 "name": "timeoutSeconds",
34190 "schema": {
34191 "type": "integer",
34192 "uniqueItems": true
34193 }
34194 },
34195 {
34196 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34197 "in": "query",
34198 "name": "watch",
34199 "schema": {
34200 "type": "boolean",
34201 "uniqueItems": true
34202 }
34203 }
34204 ]
34205 },
34206 "/api/v1/watch/namespaces/{name}": {
34207 "get": {
34208 "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.",
34209 "operationId": "watchCoreV1Namespace",
34210 "responses": {
34211 "200": {
34212 "content": {
34213 "application/json": {
34214 "schema": {
34215 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34216 }
34217 },
34218 "application/json;stream=watch": {
34219 "schema": {
34220 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34221 }
34222 },
34223 "application/vnd.kubernetes.protobuf": {
34224 "schema": {
34225 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34226 }
34227 },
34228 "application/vnd.kubernetes.protobuf;stream=watch": {
34229 "schema": {
34230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34231 }
34232 },
34233 "application/yaml": {
34234 "schema": {
34235 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34236 }
34237 }
34238 },
34239 "description": "OK"
34240 },
34241 "401": {
34242 "description": "Unauthorized"
34243 }
34244 },
34245 "tags": [
34246 "core_v1"
34247 ],
34248 "x-kubernetes-action": "watch",
34249 "x-kubernetes-group-version-kind": {
34250 "group": "",
34251 "kind": "Namespace",
34252 "version": "v1"
34253 }
34254 },
34255 "parameters": [
34256 {
34257 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34258 "in": "query",
34259 "name": "allowWatchBookmarks",
34260 "schema": {
34261 "type": "boolean",
34262 "uniqueItems": true
34263 }
34264 },
34265 {
34266 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34267 "in": "query",
34268 "name": "continue",
34269 "schema": {
34270 "type": "string",
34271 "uniqueItems": true
34272 }
34273 },
34274 {
34275 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34276 "in": "query",
34277 "name": "fieldSelector",
34278 "schema": {
34279 "type": "string",
34280 "uniqueItems": true
34281 }
34282 },
34283 {
34284 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34285 "in": "query",
34286 "name": "labelSelector",
34287 "schema": {
34288 "type": "string",
34289 "uniqueItems": true
34290 }
34291 },
34292 {
34293 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34294 "in": "query",
34295 "name": "limit",
34296 "schema": {
34297 "type": "integer",
34298 "uniqueItems": true
34299 }
34300 },
34301 {
34302 "description": "name of the Namespace",
34303 "in": "path",
34304 "name": "name",
34305 "required": true,
34306 "schema": {
34307 "type": "string",
34308 "uniqueItems": true
34309 }
34310 },
34311 {
34312 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34313 "in": "query",
34314 "name": "pretty",
34315 "schema": {
34316 "type": "string",
34317 "uniqueItems": true
34318 }
34319 },
34320 {
34321 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34322 "in": "query",
34323 "name": "resourceVersion",
34324 "schema": {
34325 "type": "string",
34326 "uniqueItems": true
34327 }
34328 },
34329 {
34330 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34331 "in": "query",
34332 "name": "resourceVersionMatch",
34333 "schema": {
34334 "type": "string",
34335 "uniqueItems": true
34336 }
34337 },
34338 {
34339 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34340 "in": "query",
34341 "name": "sendInitialEvents",
34342 "schema": {
34343 "type": "boolean",
34344 "uniqueItems": true
34345 }
34346 },
34347 {
34348 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34349 "in": "query",
34350 "name": "timeoutSeconds",
34351 "schema": {
34352 "type": "integer",
34353 "uniqueItems": true
34354 }
34355 },
34356 {
34357 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34358 "in": "query",
34359 "name": "watch",
34360 "schema": {
34361 "type": "boolean",
34362 "uniqueItems": true
34363 }
34364 }
34365 ]
34366 },
34367 "/api/v1/watch/nodes": {
34368 "get": {
34369 "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.",
34370 "operationId": "watchCoreV1NodeList",
34371 "responses": {
34372 "200": {
34373 "content": {
34374 "application/json": {
34375 "schema": {
34376 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34377 }
34378 },
34379 "application/json;stream=watch": {
34380 "schema": {
34381 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34382 }
34383 },
34384 "application/vnd.kubernetes.protobuf": {
34385 "schema": {
34386 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34387 }
34388 },
34389 "application/vnd.kubernetes.protobuf;stream=watch": {
34390 "schema": {
34391 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34392 }
34393 },
34394 "application/yaml": {
34395 "schema": {
34396 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34397 }
34398 }
34399 },
34400 "description": "OK"
34401 },
34402 "401": {
34403 "description": "Unauthorized"
34404 }
34405 },
34406 "tags": [
34407 "core_v1"
34408 ],
34409 "x-kubernetes-action": "watchlist",
34410 "x-kubernetes-group-version-kind": {
34411 "group": "",
34412 "kind": "Node",
34413 "version": "v1"
34414 }
34415 },
34416 "parameters": [
34417 {
34418 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34419 "in": "query",
34420 "name": "allowWatchBookmarks",
34421 "schema": {
34422 "type": "boolean",
34423 "uniqueItems": true
34424 }
34425 },
34426 {
34427 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34428 "in": "query",
34429 "name": "continue",
34430 "schema": {
34431 "type": "string",
34432 "uniqueItems": true
34433 }
34434 },
34435 {
34436 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34437 "in": "query",
34438 "name": "fieldSelector",
34439 "schema": {
34440 "type": "string",
34441 "uniqueItems": true
34442 }
34443 },
34444 {
34445 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34446 "in": "query",
34447 "name": "labelSelector",
34448 "schema": {
34449 "type": "string",
34450 "uniqueItems": true
34451 }
34452 },
34453 {
34454 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34455 "in": "query",
34456 "name": "limit",
34457 "schema": {
34458 "type": "integer",
34459 "uniqueItems": true
34460 }
34461 },
34462 {
34463 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34464 "in": "query",
34465 "name": "pretty",
34466 "schema": {
34467 "type": "string",
34468 "uniqueItems": true
34469 }
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 "schema": {
34476 "type": "string",
34477 "uniqueItems": true
34478 }
34479 },
34480 {
34481 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34482 "in": "query",
34483 "name": "resourceVersionMatch",
34484 "schema": {
34485 "type": "string",
34486 "uniqueItems": true
34487 }
34488 },
34489 {
34490 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34491 "in": "query",
34492 "name": "sendInitialEvents",
34493 "schema": {
34494 "type": "boolean",
34495 "uniqueItems": true
34496 }
34497 },
34498 {
34499 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34500 "in": "query",
34501 "name": "timeoutSeconds",
34502 "schema": {
34503 "type": "integer",
34504 "uniqueItems": true
34505 }
34506 },
34507 {
34508 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34509 "in": "query",
34510 "name": "watch",
34511 "schema": {
34512 "type": "boolean",
34513 "uniqueItems": true
34514 }
34515 }
34516 ]
34517 },
34518 "/api/v1/watch/nodes/{name}": {
34519 "get": {
34520 "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.",
34521 "operationId": "watchCoreV1Node",
34522 "responses": {
34523 "200": {
34524 "content": {
34525 "application/json": {
34526 "schema": {
34527 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34528 }
34529 },
34530 "application/json;stream=watch": {
34531 "schema": {
34532 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34533 }
34534 },
34535 "application/vnd.kubernetes.protobuf": {
34536 "schema": {
34537 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34538 }
34539 },
34540 "application/vnd.kubernetes.protobuf;stream=watch": {
34541 "schema": {
34542 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34543 }
34544 },
34545 "application/yaml": {
34546 "schema": {
34547 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34548 }
34549 }
34550 },
34551 "description": "OK"
34552 },
34553 "401": {
34554 "description": "Unauthorized"
34555 }
34556 },
34557 "tags": [
34558 "core_v1"
34559 ],
34560 "x-kubernetes-action": "watch",
34561 "x-kubernetes-group-version-kind": {
34562 "group": "",
34563 "kind": "Node",
34564 "version": "v1"
34565 }
34566 },
34567 "parameters": [
34568 {
34569 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34570 "in": "query",
34571 "name": "allowWatchBookmarks",
34572 "schema": {
34573 "type": "boolean",
34574 "uniqueItems": true
34575 }
34576 },
34577 {
34578 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34579 "in": "query",
34580 "name": "continue",
34581 "schema": {
34582 "type": "string",
34583 "uniqueItems": true
34584 }
34585 },
34586 {
34587 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34588 "in": "query",
34589 "name": "fieldSelector",
34590 "schema": {
34591 "type": "string",
34592 "uniqueItems": true
34593 }
34594 },
34595 {
34596 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34597 "in": "query",
34598 "name": "labelSelector",
34599 "schema": {
34600 "type": "string",
34601 "uniqueItems": true
34602 }
34603 },
34604 {
34605 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34606 "in": "query",
34607 "name": "limit",
34608 "schema": {
34609 "type": "integer",
34610 "uniqueItems": true
34611 }
34612 },
34613 {
34614 "description": "name of the Node",
34615 "in": "path",
34616 "name": "name",
34617 "required": true,
34618 "schema": {
34619 "type": "string",
34620 "uniqueItems": true
34621 }
34622 },
34623 {
34624 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34625 "in": "query",
34626 "name": "pretty",
34627 "schema": {
34628 "type": "string",
34629 "uniqueItems": true
34630 }
34631 },
34632 {
34633 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34634 "in": "query",
34635 "name": "resourceVersion",
34636 "schema": {
34637 "type": "string",
34638 "uniqueItems": true
34639 }
34640 },
34641 {
34642 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34643 "in": "query",
34644 "name": "resourceVersionMatch",
34645 "schema": {
34646 "type": "string",
34647 "uniqueItems": true
34648 }
34649 },
34650 {
34651 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34652 "in": "query",
34653 "name": "sendInitialEvents",
34654 "schema": {
34655 "type": "boolean",
34656 "uniqueItems": true
34657 }
34658 },
34659 {
34660 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34661 "in": "query",
34662 "name": "timeoutSeconds",
34663 "schema": {
34664 "type": "integer",
34665 "uniqueItems": true
34666 }
34667 },
34668 {
34669 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34670 "in": "query",
34671 "name": "watch",
34672 "schema": {
34673 "type": "boolean",
34674 "uniqueItems": true
34675 }
34676 }
34677 ]
34678 },
34679 "/api/v1/watch/persistentvolumeclaims": {
34680 "get": {
34681 "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
34682 "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
34683 "responses": {
34684 "200": {
34685 "content": {
34686 "application/json": {
34687 "schema": {
34688 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34689 }
34690 },
34691 "application/json;stream=watch": {
34692 "schema": {
34693 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34694 }
34695 },
34696 "application/vnd.kubernetes.protobuf": {
34697 "schema": {
34698 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34699 }
34700 },
34701 "application/vnd.kubernetes.protobuf;stream=watch": {
34702 "schema": {
34703 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34704 }
34705 },
34706 "application/yaml": {
34707 "schema": {
34708 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34709 }
34710 }
34711 },
34712 "description": "OK"
34713 },
34714 "401": {
34715 "description": "Unauthorized"
34716 }
34717 },
34718 "tags": [
34719 "core_v1"
34720 ],
34721 "x-kubernetes-action": "watchlist",
34722 "x-kubernetes-group-version-kind": {
34723 "group": "",
34724 "kind": "PersistentVolumeClaim",
34725 "version": "v1"
34726 }
34727 },
34728 "parameters": [
34729 {
34730 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34731 "in": "query",
34732 "name": "allowWatchBookmarks",
34733 "schema": {
34734 "type": "boolean",
34735 "uniqueItems": true
34736 }
34737 },
34738 {
34739 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34740 "in": "query",
34741 "name": "continue",
34742 "schema": {
34743 "type": "string",
34744 "uniqueItems": true
34745 }
34746 },
34747 {
34748 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34749 "in": "query",
34750 "name": "fieldSelector",
34751 "schema": {
34752 "type": "string",
34753 "uniqueItems": true
34754 }
34755 },
34756 {
34757 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34758 "in": "query",
34759 "name": "labelSelector",
34760 "schema": {
34761 "type": "string",
34762 "uniqueItems": true
34763 }
34764 },
34765 {
34766 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34767 "in": "query",
34768 "name": "limit",
34769 "schema": {
34770 "type": "integer",
34771 "uniqueItems": true
34772 }
34773 },
34774 {
34775 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34776 "in": "query",
34777 "name": "pretty",
34778 "schema": {
34779 "type": "string",
34780 "uniqueItems": true
34781 }
34782 },
34783 {
34784 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34785 "in": "query",
34786 "name": "resourceVersion",
34787 "schema": {
34788 "type": "string",
34789 "uniqueItems": true
34790 }
34791 },
34792 {
34793 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34794 "in": "query",
34795 "name": "resourceVersionMatch",
34796 "schema": {
34797 "type": "string",
34798 "uniqueItems": true
34799 }
34800 },
34801 {
34802 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34803 "in": "query",
34804 "name": "sendInitialEvents",
34805 "schema": {
34806 "type": "boolean",
34807 "uniqueItems": true
34808 }
34809 },
34810 {
34811 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34812 "in": "query",
34813 "name": "timeoutSeconds",
34814 "schema": {
34815 "type": "integer",
34816 "uniqueItems": true
34817 }
34818 },
34819 {
34820 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34821 "in": "query",
34822 "name": "watch",
34823 "schema": {
34824 "type": "boolean",
34825 "uniqueItems": true
34826 }
34827 }
34828 ]
34829 },
34830 "/api/v1/watch/persistentvolumes": {
34831 "get": {
34832 "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.",
34833 "operationId": "watchCoreV1PersistentVolumeList",
34834 "responses": {
34835 "200": {
34836 "content": {
34837 "application/json": {
34838 "schema": {
34839 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34840 }
34841 },
34842 "application/json;stream=watch": {
34843 "schema": {
34844 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34845 }
34846 },
34847 "application/vnd.kubernetes.protobuf": {
34848 "schema": {
34849 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34850 }
34851 },
34852 "application/vnd.kubernetes.protobuf;stream=watch": {
34853 "schema": {
34854 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34855 }
34856 },
34857 "application/yaml": {
34858 "schema": {
34859 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34860 }
34861 }
34862 },
34863 "description": "OK"
34864 },
34865 "401": {
34866 "description": "Unauthorized"
34867 }
34868 },
34869 "tags": [
34870 "core_v1"
34871 ],
34872 "x-kubernetes-action": "watchlist",
34873 "x-kubernetes-group-version-kind": {
34874 "group": "",
34875 "kind": "PersistentVolume",
34876 "version": "v1"
34877 }
34878 },
34879 "parameters": [
34880 {
34881 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34882 "in": "query",
34883 "name": "allowWatchBookmarks",
34884 "schema": {
34885 "type": "boolean",
34886 "uniqueItems": true
34887 }
34888 },
34889 {
34890 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34891 "in": "query",
34892 "name": "continue",
34893 "schema": {
34894 "type": "string",
34895 "uniqueItems": true
34896 }
34897 },
34898 {
34899 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34900 "in": "query",
34901 "name": "fieldSelector",
34902 "schema": {
34903 "type": "string",
34904 "uniqueItems": true
34905 }
34906 },
34907 {
34908 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34909 "in": "query",
34910 "name": "labelSelector",
34911 "schema": {
34912 "type": "string",
34913 "uniqueItems": true
34914 }
34915 },
34916 {
34917 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34918 "in": "query",
34919 "name": "limit",
34920 "schema": {
34921 "type": "integer",
34922 "uniqueItems": true
34923 }
34924 },
34925 {
34926 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
34927 "in": "query",
34928 "name": "pretty",
34929 "schema": {
34930 "type": "string",
34931 "uniqueItems": true
34932 }
34933 },
34934 {
34935 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34936 "in": "query",
34937 "name": "resourceVersion",
34938 "schema": {
34939 "type": "string",
34940 "uniqueItems": true
34941 }
34942 },
34943 {
34944 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34945 "in": "query",
34946 "name": "resourceVersionMatch",
34947 "schema": {
34948 "type": "string",
34949 "uniqueItems": true
34950 }
34951 },
34952 {
34953 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
34954 "in": "query",
34955 "name": "sendInitialEvents",
34956 "schema": {
34957 "type": "boolean",
34958 "uniqueItems": true
34959 }
34960 },
34961 {
34962 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34963 "in": "query",
34964 "name": "timeoutSeconds",
34965 "schema": {
34966 "type": "integer",
34967 "uniqueItems": true
34968 }
34969 },
34970 {
34971 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34972 "in": "query",
34973 "name": "watch",
34974 "schema": {
34975 "type": "boolean",
34976 "uniqueItems": true
34977 }
34978 }
34979 ]
34980 },
34981 "/api/v1/watch/persistentvolumes/{name}": {
34982 "get": {
34983 "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.",
34984 "operationId": "watchCoreV1PersistentVolume",
34985 "responses": {
34986 "200": {
34987 "content": {
34988 "application/json": {
34989 "schema": {
34990 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34991 }
34992 },
34993 "application/json;stream=watch": {
34994 "schema": {
34995 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34996 }
34997 },
34998 "application/vnd.kubernetes.protobuf": {
34999 "schema": {
35000 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35001 }
35002 },
35003 "application/vnd.kubernetes.protobuf;stream=watch": {
35004 "schema": {
35005 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35006 }
35007 },
35008 "application/yaml": {
35009 "schema": {
35010 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35011 }
35012 }
35013 },
35014 "description": "OK"
35015 },
35016 "401": {
35017 "description": "Unauthorized"
35018 }
35019 },
35020 "tags": [
35021 "core_v1"
35022 ],
35023 "x-kubernetes-action": "watch",
35024 "x-kubernetes-group-version-kind": {
35025 "group": "",
35026 "kind": "PersistentVolume",
35027 "version": "v1"
35028 }
35029 },
35030 "parameters": [
35031 {
35032 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35033 "in": "query",
35034 "name": "allowWatchBookmarks",
35035 "schema": {
35036 "type": "boolean",
35037 "uniqueItems": true
35038 }
35039 },
35040 {
35041 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35042 "in": "query",
35043 "name": "continue",
35044 "schema": {
35045 "type": "string",
35046 "uniqueItems": true
35047 }
35048 },
35049 {
35050 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35051 "in": "query",
35052 "name": "fieldSelector",
35053 "schema": {
35054 "type": "string",
35055 "uniqueItems": true
35056 }
35057 },
35058 {
35059 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35060 "in": "query",
35061 "name": "labelSelector",
35062 "schema": {
35063 "type": "string",
35064 "uniqueItems": true
35065 }
35066 },
35067 {
35068 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35069 "in": "query",
35070 "name": "limit",
35071 "schema": {
35072 "type": "integer",
35073 "uniqueItems": true
35074 }
35075 },
35076 {
35077 "description": "name of the PersistentVolume",
35078 "in": "path",
35079 "name": "name",
35080 "required": true,
35081 "schema": {
35082 "type": "string",
35083 "uniqueItems": true
35084 }
35085 },
35086 {
35087 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35088 "in": "query",
35089 "name": "pretty",
35090 "schema": {
35091 "type": "string",
35092 "uniqueItems": true
35093 }
35094 },
35095 {
35096 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35097 "in": "query",
35098 "name": "resourceVersion",
35099 "schema": {
35100 "type": "string",
35101 "uniqueItems": true
35102 }
35103 },
35104 {
35105 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35106 "in": "query",
35107 "name": "resourceVersionMatch",
35108 "schema": {
35109 "type": "string",
35110 "uniqueItems": true
35111 }
35112 },
35113 {
35114 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35115 "in": "query",
35116 "name": "sendInitialEvents",
35117 "schema": {
35118 "type": "boolean",
35119 "uniqueItems": true
35120 }
35121 },
35122 {
35123 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35124 "in": "query",
35125 "name": "timeoutSeconds",
35126 "schema": {
35127 "type": "integer",
35128 "uniqueItems": true
35129 }
35130 },
35131 {
35132 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35133 "in": "query",
35134 "name": "watch",
35135 "schema": {
35136 "type": "boolean",
35137 "uniqueItems": true
35138 }
35139 }
35140 ]
35141 },
35142 "/api/v1/watch/pods": {
35143 "get": {
35144 "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
35145 "operationId": "watchCoreV1PodListForAllNamespaces",
35146 "responses": {
35147 "200": {
35148 "content": {
35149 "application/json": {
35150 "schema": {
35151 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35152 }
35153 },
35154 "application/json;stream=watch": {
35155 "schema": {
35156 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35157 }
35158 },
35159 "application/vnd.kubernetes.protobuf": {
35160 "schema": {
35161 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35162 }
35163 },
35164 "application/vnd.kubernetes.protobuf;stream=watch": {
35165 "schema": {
35166 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35167 }
35168 },
35169 "application/yaml": {
35170 "schema": {
35171 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35172 }
35173 }
35174 },
35175 "description": "OK"
35176 },
35177 "401": {
35178 "description": "Unauthorized"
35179 }
35180 },
35181 "tags": [
35182 "core_v1"
35183 ],
35184 "x-kubernetes-action": "watchlist",
35185 "x-kubernetes-group-version-kind": {
35186 "group": "",
35187 "kind": "Pod",
35188 "version": "v1"
35189 }
35190 },
35191 "parameters": [
35192 {
35193 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35194 "in": "query",
35195 "name": "allowWatchBookmarks",
35196 "schema": {
35197 "type": "boolean",
35198 "uniqueItems": true
35199 }
35200 },
35201 {
35202 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35203 "in": "query",
35204 "name": "continue",
35205 "schema": {
35206 "type": "string",
35207 "uniqueItems": true
35208 }
35209 },
35210 {
35211 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35212 "in": "query",
35213 "name": "fieldSelector",
35214 "schema": {
35215 "type": "string",
35216 "uniqueItems": true
35217 }
35218 },
35219 {
35220 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35221 "in": "query",
35222 "name": "labelSelector",
35223 "schema": {
35224 "type": "string",
35225 "uniqueItems": true
35226 }
35227 },
35228 {
35229 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35230 "in": "query",
35231 "name": "limit",
35232 "schema": {
35233 "type": "integer",
35234 "uniqueItems": true
35235 }
35236 },
35237 {
35238 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35239 "in": "query",
35240 "name": "pretty",
35241 "schema": {
35242 "type": "string",
35243 "uniqueItems": true
35244 }
35245 },
35246 {
35247 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35248 "in": "query",
35249 "name": "resourceVersion",
35250 "schema": {
35251 "type": "string",
35252 "uniqueItems": true
35253 }
35254 },
35255 {
35256 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35257 "in": "query",
35258 "name": "resourceVersionMatch",
35259 "schema": {
35260 "type": "string",
35261 "uniqueItems": true
35262 }
35263 },
35264 {
35265 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35266 "in": "query",
35267 "name": "sendInitialEvents",
35268 "schema": {
35269 "type": "boolean",
35270 "uniqueItems": true
35271 }
35272 },
35273 {
35274 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35275 "in": "query",
35276 "name": "timeoutSeconds",
35277 "schema": {
35278 "type": "integer",
35279 "uniqueItems": true
35280 }
35281 },
35282 {
35283 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35284 "in": "query",
35285 "name": "watch",
35286 "schema": {
35287 "type": "boolean",
35288 "uniqueItems": true
35289 }
35290 }
35291 ]
35292 },
35293 "/api/v1/watch/podtemplates": {
35294 "get": {
35295 "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
35296 "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
35297 "responses": {
35298 "200": {
35299 "content": {
35300 "application/json": {
35301 "schema": {
35302 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35303 }
35304 },
35305 "application/json;stream=watch": {
35306 "schema": {
35307 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35308 }
35309 },
35310 "application/vnd.kubernetes.protobuf": {
35311 "schema": {
35312 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35313 }
35314 },
35315 "application/vnd.kubernetes.protobuf;stream=watch": {
35316 "schema": {
35317 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35318 }
35319 },
35320 "application/yaml": {
35321 "schema": {
35322 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35323 }
35324 }
35325 },
35326 "description": "OK"
35327 },
35328 "401": {
35329 "description": "Unauthorized"
35330 }
35331 },
35332 "tags": [
35333 "core_v1"
35334 ],
35335 "x-kubernetes-action": "watchlist",
35336 "x-kubernetes-group-version-kind": {
35337 "group": "",
35338 "kind": "PodTemplate",
35339 "version": "v1"
35340 }
35341 },
35342 "parameters": [
35343 {
35344 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35345 "in": "query",
35346 "name": "allowWatchBookmarks",
35347 "schema": {
35348 "type": "boolean",
35349 "uniqueItems": true
35350 }
35351 },
35352 {
35353 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35354 "in": "query",
35355 "name": "continue",
35356 "schema": {
35357 "type": "string",
35358 "uniqueItems": true
35359 }
35360 },
35361 {
35362 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35363 "in": "query",
35364 "name": "fieldSelector",
35365 "schema": {
35366 "type": "string",
35367 "uniqueItems": true
35368 }
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 "schema": {
35375 "type": "string",
35376 "uniqueItems": true
35377 }
35378 },
35379 {
35380 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35381 "in": "query",
35382 "name": "limit",
35383 "schema": {
35384 "type": "integer",
35385 "uniqueItems": true
35386 }
35387 },
35388 {
35389 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35390 "in": "query",
35391 "name": "pretty",
35392 "schema": {
35393 "type": "string",
35394 "uniqueItems": true
35395 }
35396 },
35397 {
35398 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35399 "in": "query",
35400 "name": "resourceVersion",
35401 "schema": {
35402 "type": "string",
35403 "uniqueItems": true
35404 }
35405 },
35406 {
35407 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35408 "in": "query",
35409 "name": "resourceVersionMatch",
35410 "schema": {
35411 "type": "string",
35412 "uniqueItems": true
35413 }
35414 },
35415 {
35416 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35417 "in": "query",
35418 "name": "sendInitialEvents",
35419 "schema": {
35420 "type": "boolean",
35421 "uniqueItems": true
35422 }
35423 },
35424 {
35425 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35426 "in": "query",
35427 "name": "timeoutSeconds",
35428 "schema": {
35429 "type": "integer",
35430 "uniqueItems": true
35431 }
35432 },
35433 {
35434 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35435 "in": "query",
35436 "name": "watch",
35437 "schema": {
35438 "type": "boolean",
35439 "uniqueItems": true
35440 }
35441 }
35442 ]
35443 },
35444 "/api/v1/watch/replicationcontrollers": {
35445 "get": {
35446 "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
35447 "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
35448 "responses": {
35449 "200": {
35450 "content": {
35451 "application/json": {
35452 "schema": {
35453 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35454 }
35455 },
35456 "application/json;stream=watch": {
35457 "schema": {
35458 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35459 }
35460 },
35461 "application/vnd.kubernetes.protobuf": {
35462 "schema": {
35463 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35464 }
35465 },
35466 "application/vnd.kubernetes.protobuf;stream=watch": {
35467 "schema": {
35468 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35469 }
35470 },
35471 "application/yaml": {
35472 "schema": {
35473 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35474 }
35475 }
35476 },
35477 "description": "OK"
35478 },
35479 "401": {
35480 "description": "Unauthorized"
35481 }
35482 },
35483 "tags": [
35484 "core_v1"
35485 ],
35486 "x-kubernetes-action": "watchlist",
35487 "x-kubernetes-group-version-kind": {
35488 "group": "",
35489 "kind": "ReplicationController",
35490 "version": "v1"
35491 }
35492 },
35493 "parameters": [
35494 {
35495 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35496 "in": "query",
35497 "name": "allowWatchBookmarks",
35498 "schema": {
35499 "type": "boolean",
35500 "uniqueItems": true
35501 }
35502 },
35503 {
35504 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35505 "in": "query",
35506 "name": "continue",
35507 "schema": {
35508 "type": "string",
35509 "uniqueItems": true
35510 }
35511 },
35512 {
35513 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35514 "in": "query",
35515 "name": "fieldSelector",
35516 "schema": {
35517 "type": "string",
35518 "uniqueItems": true
35519 }
35520 },
35521 {
35522 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35523 "in": "query",
35524 "name": "labelSelector",
35525 "schema": {
35526 "type": "string",
35527 "uniqueItems": true
35528 }
35529 },
35530 {
35531 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35532 "in": "query",
35533 "name": "limit",
35534 "schema": {
35535 "type": "integer",
35536 "uniqueItems": true
35537 }
35538 },
35539 {
35540 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35541 "in": "query",
35542 "name": "pretty",
35543 "schema": {
35544 "type": "string",
35545 "uniqueItems": true
35546 }
35547 },
35548 {
35549 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35550 "in": "query",
35551 "name": "resourceVersion",
35552 "schema": {
35553 "type": "string",
35554 "uniqueItems": true
35555 }
35556 },
35557 {
35558 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35559 "in": "query",
35560 "name": "resourceVersionMatch",
35561 "schema": {
35562 "type": "string",
35563 "uniqueItems": true
35564 }
35565 },
35566 {
35567 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35568 "in": "query",
35569 "name": "sendInitialEvents",
35570 "schema": {
35571 "type": "boolean",
35572 "uniqueItems": true
35573 }
35574 },
35575 {
35576 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35577 "in": "query",
35578 "name": "timeoutSeconds",
35579 "schema": {
35580 "type": "integer",
35581 "uniqueItems": true
35582 }
35583 },
35584 {
35585 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35586 "in": "query",
35587 "name": "watch",
35588 "schema": {
35589 "type": "boolean",
35590 "uniqueItems": true
35591 }
35592 }
35593 ]
35594 },
35595 "/api/v1/watch/resourcequotas": {
35596 "get": {
35597 "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
35598 "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
35599 "responses": {
35600 "200": {
35601 "content": {
35602 "application/json": {
35603 "schema": {
35604 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35605 }
35606 },
35607 "application/json;stream=watch": {
35608 "schema": {
35609 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35610 }
35611 },
35612 "application/vnd.kubernetes.protobuf": {
35613 "schema": {
35614 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35615 }
35616 },
35617 "application/vnd.kubernetes.protobuf;stream=watch": {
35618 "schema": {
35619 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35620 }
35621 },
35622 "application/yaml": {
35623 "schema": {
35624 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35625 }
35626 }
35627 },
35628 "description": "OK"
35629 },
35630 "401": {
35631 "description": "Unauthorized"
35632 }
35633 },
35634 "tags": [
35635 "core_v1"
35636 ],
35637 "x-kubernetes-action": "watchlist",
35638 "x-kubernetes-group-version-kind": {
35639 "group": "",
35640 "kind": "ResourceQuota",
35641 "version": "v1"
35642 }
35643 },
35644 "parameters": [
35645 {
35646 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35647 "in": "query",
35648 "name": "allowWatchBookmarks",
35649 "schema": {
35650 "type": "boolean",
35651 "uniqueItems": true
35652 }
35653 },
35654 {
35655 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35656 "in": "query",
35657 "name": "continue",
35658 "schema": {
35659 "type": "string",
35660 "uniqueItems": true
35661 }
35662 },
35663 {
35664 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35665 "in": "query",
35666 "name": "fieldSelector",
35667 "schema": {
35668 "type": "string",
35669 "uniqueItems": true
35670 }
35671 },
35672 {
35673 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35674 "in": "query",
35675 "name": "labelSelector",
35676 "schema": {
35677 "type": "string",
35678 "uniqueItems": true
35679 }
35680 },
35681 {
35682 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35683 "in": "query",
35684 "name": "limit",
35685 "schema": {
35686 "type": "integer",
35687 "uniqueItems": true
35688 }
35689 },
35690 {
35691 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35692 "in": "query",
35693 "name": "pretty",
35694 "schema": {
35695 "type": "string",
35696 "uniqueItems": true
35697 }
35698 },
35699 {
35700 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35701 "in": "query",
35702 "name": "resourceVersion",
35703 "schema": {
35704 "type": "string",
35705 "uniqueItems": true
35706 }
35707 },
35708 {
35709 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35710 "in": "query",
35711 "name": "resourceVersionMatch",
35712 "schema": {
35713 "type": "string",
35714 "uniqueItems": true
35715 }
35716 },
35717 {
35718 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35719 "in": "query",
35720 "name": "sendInitialEvents",
35721 "schema": {
35722 "type": "boolean",
35723 "uniqueItems": true
35724 }
35725 },
35726 {
35727 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35728 "in": "query",
35729 "name": "timeoutSeconds",
35730 "schema": {
35731 "type": "integer",
35732 "uniqueItems": true
35733 }
35734 },
35735 {
35736 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35737 "in": "query",
35738 "name": "watch",
35739 "schema": {
35740 "type": "boolean",
35741 "uniqueItems": true
35742 }
35743 }
35744 ]
35745 },
35746 "/api/v1/watch/secrets": {
35747 "get": {
35748 "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
35749 "operationId": "watchCoreV1SecretListForAllNamespaces",
35750 "responses": {
35751 "200": {
35752 "content": {
35753 "application/json": {
35754 "schema": {
35755 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35756 }
35757 },
35758 "application/json;stream=watch": {
35759 "schema": {
35760 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35761 }
35762 },
35763 "application/vnd.kubernetes.protobuf": {
35764 "schema": {
35765 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35766 }
35767 },
35768 "application/vnd.kubernetes.protobuf;stream=watch": {
35769 "schema": {
35770 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35771 }
35772 },
35773 "application/yaml": {
35774 "schema": {
35775 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35776 }
35777 }
35778 },
35779 "description": "OK"
35780 },
35781 "401": {
35782 "description": "Unauthorized"
35783 }
35784 },
35785 "tags": [
35786 "core_v1"
35787 ],
35788 "x-kubernetes-action": "watchlist",
35789 "x-kubernetes-group-version-kind": {
35790 "group": "",
35791 "kind": "Secret",
35792 "version": "v1"
35793 }
35794 },
35795 "parameters": [
35796 {
35797 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35798 "in": "query",
35799 "name": "allowWatchBookmarks",
35800 "schema": {
35801 "type": "boolean",
35802 "uniqueItems": true
35803 }
35804 },
35805 {
35806 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35807 "in": "query",
35808 "name": "continue",
35809 "schema": {
35810 "type": "string",
35811 "uniqueItems": true
35812 }
35813 },
35814 {
35815 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35816 "in": "query",
35817 "name": "fieldSelector",
35818 "schema": {
35819 "type": "string",
35820 "uniqueItems": true
35821 }
35822 },
35823 {
35824 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35825 "in": "query",
35826 "name": "labelSelector",
35827 "schema": {
35828 "type": "string",
35829 "uniqueItems": true
35830 }
35831 },
35832 {
35833 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35834 "in": "query",
35835 "name": "limit",
35836 "schema": {
35837 "type": "integer",
35838 "uniqueItems": true
35839 }
35840 },
35841 {
35842 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35843 "in": "query",
35844 "name": "pretty",
35845 "schema": {
35846 "type": "string",
35847 "uniqueItems": true
35848 }
35849 },
35850 {
35851 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35852 "in": "query",
35853 "name": "resourceVersion",
35854 "schema": {
35855 "type": "string",
35856 "uniqueItems": true
35857 }
35858 },
35859 {
35860 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35861 "in": "query",
35862 "name": "resourceVersionMatch",
35863 "schema": {
35864 "type": "string",
35865 "uniqueItems": true
35866 }
35867 },
35868 {
35869 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
35870 "in": "query",
35871 "name": "sendInitialEvents",
35872 "schema": {
35873 "type": "boolean",
35874 "uniqueItems": true
35875 }
35876 },
35877 {
35878 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35879 "in": "query",
35880 "name": "timeoutSeconds",
35881 "schema": {
35882 "type": "integer",
35883 "uniqueItems": true
35884 }
35885 },
35886 {
35887 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35888 "in": "query",
35889 "name": "watch",
35890 "schema": {
35891 "type": "boolean",
35892 "uniqueItems": true
35893 }
35894 }
35895 ]
35896 },
35897 "/api/v1/watch/serviceaccounts": {
35898 "get": {
35899 "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
35900 "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
35901 "responses": {
35902 "200": {
35903 "content": {
35904 "application/json": {
35905 "schema": {
35906 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35907 }
35908 },
35909 "application/json;stream=watch": {
35910 "schema": {
35911 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35912 }
35913 },
35914 "application/vnd.kubernetes.protobuf": {
35915 "schema": {
35916 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35917 }
35918 },
35919 "application/vnd.kubernetes.protobuf;stream=watch": {
35920 "schema": {
35921 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35922 }
35923 },
35924 "application/yaml": {
35925 "schema": {
35926 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35927 }
35928 }
35929 },
35930 "description": "OK"
35931 },
35932 "401": {
35933 "description": "Unauthorized"
35934 }
35935 },
35936 "tags": [
35937 "core_v1"
35938 ],
35939 "x-kubernetes-action": "watchlist",
35940 "x-kubernetes-group-version-kind": {
35941 "group": "",
35942 "kind": "ServiceAccount",
35943 "version": "v1"
35944 }
35945 },
35946 "parameters": [
35947 {
35948 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35949 "in": "query",
35950 "name": "allowWatchBookmarks",
35951 "schema": {
35952 "type": "boolean",
35953 "uniqueItems": true
35954 }
35955 },
35956 {
35957 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35958 "in": "query",
35959 "name": "continue",
35960 "schema": {
35961 "type": "string",
35962 "uniqueItems": true
35963 }
35964 },
35965 {
35966 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35967 "in": "query",
35968 "name": "fieldSelector",
35969 "schema": {
35970 "type": "string",
35971 "uniqueItems": true
35972 }
35973 },
35974 {
35975 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35976 "in": "query",
35977 "name": "labelSelector",
35978 "schema": {
35979 "type": "string",
35980 "uniqueItems": true
35981 }
35982 },
35983 {
35984 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35985 "in": "query",
35986 "name": "limit",
35987 "schema": {
35988 "type": "integer",
35989 "uniqueItems": true
35990 }
35991 },
35992 {
35993 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
35994 "in": "query",
35995 "name": "pretty",
35996 "schema": {
35997 "type": "string",
35998 "uniqueItems": true
35999 }
36000 },
36001 {
36002 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36003 "in": "query",
36004 "name": "resourceVersion",
36005 "schema": {
36006 "type": "string",
36007 "uniqueItems": true
36008 }
36009 },
36010 {
36011 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36012 "in": "query",
36013 "name": "resourceVersionMatch",
36014 "schema": {
36015 "type": "string",
36016 "uniqueItems": true
36017 }
36018 },
36019 {
36020 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
36021 "in": "query",
36022 "name": "sendInitialEvents",
36023 "schema": {
36024 "type": "boolean",
36025 "uniqueItems": true
36026 }
36027 },
36028 {
36029 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36030 "in": "query",
36031 "name": "timeoutSeconds",
36032 "schema": {
36033 "type": "integer",
36034 "uniqueItems": true
36035 }
36036 },
36037 {
36038 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36039 "in": "query",
36040 "name": "watch",
36041 "schema": {
36042 "type": "boolean",
36043 "uniqueItems": true
36044 }
36045 }
36046 ]
36047 },
36048 "/api/v1/watch/services": {
36049 "get": {
36050 "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
36051 "operationId": "watchCoreV1ServiceListForAllNamespaces",
36052 "responses": {
36053 "200": {
36054 "content": {
36055 "application/json": {
36056 "schema": {
36057 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36058 }
36059 },
36060 "application/json;stream=watch": {
36061 "schema": {
36062 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36063 }
36064 },
36065 "application/vnd.kubernetes.protobuf": {
36066 "schema": {
36067 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36068 }
36069 },
36070 "application/vnd.kubernetes.protobuf;stream=watch": {
36071 "schema": {
36072 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36073 }
36074 },
36075 "application/yaml": {
36076 "schema": {
36077 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36078 }
36079 }
36080 },
36081 "description": "OK"
36082 },
36083 "401": {
36084 "description": "Unauthorized"
36085 }
36086 },
36087 "tags": [
36088 "core_v1"
36089 ],
36090 "x-kubernetes-action": "watchlist",
36091 "x-kubernetes-group-version-kind": {
36092 "group": "",
36093 "kind": "Service",
36094 "version": "v1"
36095 }
36096 },
36097 "parameters": [
36098 {
36099 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
36100 "in": "query",
36101 "name": "allowWatchBookmarks",
36102 "schema": {
36103 "type": "boolean",
36104 "uniqueItems": true
36105 }
36106 },
36107 {
36108 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36109 "in": "query",
36110 "name": "continue",
36111 "schema": {
36112 "type": "string",
36113 "uniqueItems": true
36114 }
36115 },
36116 {
36117 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36118 "in": "query",
36119 "name": "fieldSelector",
36120 "schema": {
36121 "type": "string",
36122 "uniqueItems": true
36123 }
36124 },
36125 {
36126 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36127 "in": "query",
36128 "name": "labelSelector",
36129 "schema": {
36130 "type": "string",
36131 "uniqueItems": true
36132 }
36133 },
36134 {
36135 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36136 "in": "query",
36137 "name": "limit",
36138 "schema": {
36139 "type": "integer",
36140 "uniqueItems": true
36141 }
36142 },
36143 {
36144 "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
36145 "in": "query",
36146 "name": "pretty",
36147 "schema": {
36148 "type": "string",
36149 "uniqueItems": true
36150 }
36151 },
36152 {
36153 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36154 "in": "query",
36155 "name": "resourceVersion",
36156 "schema": {
36157 "type": "string",
36158 "uniqueItems": true
36159 }
36160 },
36161 {
36162 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36163 "in": "query",
36164 "name": "resourceVersionMatch",
36165 "schema": {
36166 "type": "string",
36167 "uniqueItems": true
36168 }
36169 },
36170 {
36171 "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
36172 "in": "query",
36173 "name": "sendInitialEvents",
36174 "schema": {
36175 "type": "boolean",
36176 "uniqueItems": true
36177 }
36178 },
36179 {
36180 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36181 "in": "query",
36182 "name": "timeoutSeconds",
36183 "schema": {
36184 "type": "integer",
36185 "uniqueItems": true
36186 }
36187 },
36188 {
36189 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36190 "in": "query",
36191 "name": "watch",
36192 "schema": {
36193 "type": "boolean",
36194 "uniqueItems": true
36195 }
36196 }
36197 ]
36198 }
36199 }
36200}
View as plain text