1{
2 "components": {
3 "schemas": {
4 "io.k8s.api.core.v1.NodeSelector": {
5 "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.",
6 "properties": {
7 "nodeSelectorTerms": {
8 "description": "Required. A list of node selector terms. The terms are ORed.",
9 "items": {
10 "allOf": [
11 {
12 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm"
13 }
14 ],
15 "default": {}
16 },
17 "type": "array",
18 "x-kubernetes-list-type": "atomic"
19 }
20 },
21 "required": [
22 "nodeSelectorTerms"
23 ],
24 "type": "object",
25 "x-kubernetes-map-type": "atomic"
26 },
27 "io.k8s.api.core.v1.NodeSelectorRequirement": {
28 "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
29 "properties": {
30 "key": {
31 "default": "",
32 "description": "The label key that the selector applies to.",
33 "type": "string"
34 },
35 "operator": {
36 "default": "",
37 "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
38 "type": "string"
39 },
40 "values": {
41 "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.",
42 "items": {
43 "default": "",
44 "type": "string"
45 },
46 "type": "array",
47 "x-kubernetes-list-type": "atomic"
48 }
49 },
50 "required": [
51 "key",
52 "operator"
53 ],
54 "type": "object"
55 },
56 "io.k8s.api.core.v1.NodeSelectorTerm": {
57 "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.",
58 "properties": {
59 "matchExpressions": {
60 "description": "A list of node selector requirements by node's labels.",
61 "items": {
62 "allOf": [
63 {
64 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"
65 }
66 ],
67 "default": {}
68 },
69 "type": "array",
70 "x-kubernetes-list-type": "atomic"
71 },
72 "matchFields": {
73 "description": "A list of node selector requirements by node's fields.",
74 "items": {
75 "allOf": [
76 {
77 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement"
78 }
79 ],
80 "default": {}
81 },
82 "type": "array",
83 "x-kubernetes-list-type": "atomic"
84 }
85 },
86 "type": "object",
87 "x-kubernetes-map-type": "atomic"
88 },
89 "io.k8s.api.resource.v1alpha2.AllocationResult": {
90 "description": "AllocationResult contains attributes of an allocated resource.",
91 "properties": {
92 "availableOnNodes": {
93 "allOf": [
94 {
95 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
96 }
97 ],
98 "description": "This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaim.\n\nSetting this field is optional. If null, the resource is available everywhere."
99 },
100 "resourceHandles": {
101 "description": "ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed.\n\nSetting this field is optional. It has a maximum size of 32 entries. If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached. The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in.",
102 "items": {
103 "allOf": [
104 {
105 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceHandle"
106 }
107 ],
108 "default": {}
109 },
110 "type": "array",
111 "x-kubernetes-list-type": "atomic"
112 },
113 "shareable": {
114 "description": "Shareable determines whether the resource supports more than one consumer at a time.",
115 "type": "boolean"
116 }
117 },
118 "type": "object"
119 },
120 "io.k8s.api.resource.v1alpha2.DriverAllocationResult": {
121 "description": "DriverAllocationResult contains vendor parameters and the allocation result for one request.",
122 "properties": {
123 "namedResources": {
124 "allOf": [
125 {
126 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesAllocationResult"
127 }
128 ],
129 "description": "NamedResources describes the allocation result when using the named resources model."
130 },
131 "vendorRequestParameters": {
132 "allOf": [
133 {
134 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
135 }
136 ],
137 "description": "VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated."
138 }
139 },
140 "type": "object"
141 },
142 "io.k8s.api.resource.v1alpha2.DriverRequests": {
143 "description": "DriverRequests describes all resources that are needed from one particular driver.",
144 "properties": {
145 "driverName": {
146 "description": "DriverName is the name used by the DRA driver kubelet plugin.",
147 "type": "string"
148 },
149 "requests": {
150 "description": "Requests describes all resources that are needed from the driver.",
151 "items": {
152 "allOf": [
153 {
154 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceRequest"
155 }
156 ],
157 "default": {}
158 },
159 "type": "array",
160 "x-kubernetes-list-type": "atomic"
161 },
162 "vendorParameters": {
163 "allOf": [
164 {
165 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
166 }
167 ],
168 "description": "VendorParameters are arbitrary setup parameters for all requests of the claim. They are ignored while allocating the claim."
169 }
170 },
171 "type": "object"
172 },
173 "io.k8s.api.resource.v1alpha2.NamedResourcesAllocationResult": {
174 "description": "NamedResourcesAllocationResult is used in AllocationResultModel.",
175 "properties": {
176 "name": {
177 "default": "",
178 "description": "Name is the name of the selected resource instance.",
179 "type": "string"
180 }
181 },
182 "required": [
183 "name"
184 ],
185 "type": "object"
186 },
187 "io.k8s.api.resource.v1alpha2.NamedResourcesAttribute": {
188 "description": "NamedResourcesAttribute is a combination of an attribute name and its value.",
189 "properties": {
190 "bool": {
191 "description": "BoolValue is a true/false value.",
192 "type": "boolean"
193 },
194 "int": {
195 "description": "IntValue is a 64-bit integer.",
196 "format": "int64",
197 "type": "integer"
198 },
199 "intSlice": {
200 "allOf": [
201 {
202 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesIntSlice"
203 }
204 ],
205 "description": "IntSliceValue is an array of 64-bit integers."
206 },
207 "name": {
208 "default": "",
209 "description": "Name is unique identifier among all resource instances managed by the driver on the node. It must be a DNS subdomain.",
210 "type": "string"
211 },
212 "quantity": {
213 "allOf": [
214 {
215 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
216 }
217 ],
218 "description": "QuantityValue is a quantity."
219 },
220 "string": {
221 "description": "StringValue is a string.",
222 "type": "string"
223 },
224 "stringSlice": {
225 "allOf": [
226 {
227 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesStringSlice"
228 }
229 ],
230 "description": "StringSliceValue is an array of strings."
231 },
232 "version": {
233 "description": "VersionValue is a semantic version according to semver.org spec 2.0.0.",
234 "type": "string"
235 }
236 },
237 "required": [
238 "name"
239 ],
240 "type": "object"
241 },
242 "io.k8s.api.resource.v1alpha2.NamedResourcesFilter": {
243 "description": "NamedResourcesFilter is used in ResourceFilterModel.",
244 "properties": {
245 "selector": {
246 "default": "",
247 "description": "Selector is a CEL expression which must evaluate to true if a resource instance is suitable. The language is as defined in https://kubernetes.io/docs/reference/using-api/cel/\n\nIn addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation. For example:\n\n attributes.quantity[\"a\"].isGreaterThan(quantity(\"0\")) &&\n attributes.stringslice[\"b\"].isSorted()",
248 "type": "string"
249 }
250 },
251 "required": [
252 "selector"
253 ],
254 "type": "object"
255 },
256 "io.k8s.api.resource.v1alpha2.NamedResourcesInstance": {
257 "description": "NamedResourcesInstance represents one individual hardware instance that can be selected based on its attributes.",
258 "properties": {
259 "attributes": {
260 "description": "Attributes defines the attributes of this resource instance. The name of each attribute must be unique.",
261 "items": {
262 "allOf": [
263 {
264 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesAttribute"
265 }
266 ],
267 "default": {}
268 },
269 "type": "array",
270 "x-kubernetes-list-type": "atomic"
271 },
272 "name": {
273 "default": "",
274 "description": "Name is unique identifier among all resource instances managed by the driver on the node. It must be a DNS subdomain.",
275 "type": "string"
276 }
277 },
278 "required": [
279 "name"
280 ],
281 "type": "object"
282 },
283 "io.k8s.api.resource.v1alpha2.NamedResourcesIntSlice": {
284 "description": "NamedResourcesIntSlice contains a slice of 64-bit integers.",
285 "properties": {
286 "ints": {
287 "description": "Ints is the slice of 64-bit integers.",
288 "items": {
289 "default": 0,
290 "format": "int64",
291 "type": "integer"
292 },
293 "type": "array",
294 "x-kubernetes-list-type": "atomic"
295 }
296 },
297 "required": [
298 "ints"
299 ],
300 "type": "object"
301 },
302 "io.k8s.api.resource.v1alpha2.NamedResourcesRequest": {
303 "description": "NamedResourcesRequest is used in ResourceRequestModel.",
304 "properties": {
305 "selector": {
306 "default": "",
307 "description": "Selector is a CEL expression which must evaluate to true if a resource instance is suitable. The language is as defined in https://kubernetes.io/docs/reference/using-api/cel/\n\nIn addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation. For example:\n\n attributes.quantity[\"a\"].isGreaterThan(quantity(\"0\")) &&\n attributes.stringslice[\"b\"].isSorted()",
308 "type": "string"
309 }
310 },
311 "required": [
312 "selector"
313 ],
314 "type": "object"
315 },
316 "io.k8s.api.resource.v1alpha2.NamedResourcesResources": {
317 "description": "NamedResourcesResources is used in ResourceModel.",
318 "properties": {
319 "instances": {
320 "description": "The list of all individual resources instances currently available.",
321 "items": {
322 "allOf": [
323 {
324 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesInstance"
325 }
326 ],
327 "default": {}
328 },
329 "type": "array",
330 "x-kubernetes-list-type": "atomic"
331 }
332 },
333 "required": [
334 "instances"
335 ],
336 "type": "object"
337 },
338 "io.k8s.api.resource.v1alpha2.NamedResourcesStringSlice": {
339 "description": "NamedResourcesStringSlice contains a slice of strings.",
340 "properties": {
341 "strings": {
342 "description": "Strings is the slice of strings.",
343 "items": {
344 "default": "",
345 "type": "string"
346 },
347 "type": "array",
348 "x-kubernetes-list-type": "atomic"
349 }
350 },
351 "required": [
352 "strings"
353 ],
354 "type": "object"
355 },
356 "io.k8s.api.resource.v1alpha2.PodSchedulingContext": {
357 "description": "PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use \"WaitForFirstConsumer\" allocation mode.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.",
358 "properties": {
359 "apiVersion": {
360 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
361 "type": "string"
362 },
363 "kind": {
364 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
365 "type": "string"
366 },
367 "metadata": {
368 "allOf": [
369 {
370 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
371 }
372 ],
373 "default": {},
374 "description": "Standard object metadata"
375 },
376 "spec": {
377 "allOf": [
378 {
379 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec"
380 }
381 ],
382 "default": {},
383 "description": "Spec describes where resources for the Pod are needed."
384 },
385 "status": {
386 "allOf": [
387 {
388 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus"
389 }
390 ],
391 "default": {},
392 "description": "Status describes where resources for the Pod can be allocated."
393 }
394 },
395 "required": [
396 "spec"
397 ],
398 "type": "object",
399 "x-kubernetes-group-version-kind": [
400 {
401 "group": "resource.k8s.io",
402 "kind": "PodSchedulingContext",
403 "version": "v1alpha2"
404 }
405 ]
406 },
407 "io.k8s.api.resource.v1alpha2.PodSchedulingContextList": {
408 "description": "PodSchedulingContextList is a collection of Pod scheduling objects.",
409 "properties": {
410 "apiVersion": {
411 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
412 "type": "string"
413 },
414 "items": {
415 "description": "Items is the list of PodSchedulingContext objects.",
416 "items": {
417 "allOf": [
418 {
419 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
420 }
421 ],
422 "default": {}
423 },
424 "type": "array"
425 },
426 "kind": {
427 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
428 "type": "string"
429 },
430 "metadata": {
431 "allOf": [
432 {
433 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
434 }
435 ],
436 "default": {},
437 "description": "Standard list metadata"
438 }
439 },
440 "required": [
441 "items"
442 ],
443 "type": "object",
444 "x-kubernetes-group-version-kind": [
445 {
446 "group": "resource.k8s.io",
447 "kind": "PodSchedulingContextList",
448 "version": "v1alpha2"
449 }
450 ]
451 },
452 "io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec": {
453 "description": "PodSchedulingContextSpec describes where resources for the Pod are needed.",
454 "properties": {
455 "potentialNodes": {
456 "description": "PotentialNodes lists nodes where the Pod might be able to run.\n\nThe size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.",
457 "items": {
458 "default": "",
459 "type": "string"
460 },
461 "type": "array",
462 "x-kubernetes-list-type": "atomic"
463 },
464 "selectedNode": {
465 "description": "SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use \"WaitForFirstConsumer\" allocation is to be attempted.",
466 "type": "string"
467 }
468 },
469 "type": "object"
470 },
471 "io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus": {
472 "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.",
473 "properties": {
474 "resourceClaims": {
475 "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.",
476 "items": {
477 "allOf": [
478 {
479 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus"
480 }
481 ],
482 "default": {}
483 },
484 "type": "array",
485 "x-kubernetes-list-map-keys": [
486 "name"
487 ],
488 "x-kubernetes-list-type": "map"
489 }
490 },
491 "type": "object"
492 },
493 "io.k8s.api.resource.v1alpha2.ResourceClaim": {
494 "description": "ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.",
495 "properties": {
496 "apiVersion": {
497 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
498 "type": "string"
499 },
500 "kind": {
501 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
502 "type": "string"
503 },
504 "metadata": {
505 "allOf": [
506 {
507 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
508 }
509 ],
510 "default": {},
511 "description": "Standard object metadata"
512 },
513 "spec": {
514 "allOf": [
515 {
516 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSpec"
517 }
518 ],
519 "default": {},
520 "description": "Spec describes the desired attributes of a resource that then needs to be allocated. It can only be set once when creating the ResourceClaim."
521 },
522 "status": {
523 "allOf": [
524 {
525 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimStatus"
526 }
527 ],
528 "default": {},
529 "description": "Status describes whether the resource is available and with which attributes."
530 }
531 },
532 "required": [
533 "spec"
534 ],
535 "type": "object",
536 "x-kubernetes-group-version-kind": [
537 {
538 "group": "resource.k8s.io",
539 "kind": "ResourceClaim",
540 "version": "v1alpha2"
541 }
542 ]
543 },
544 "io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference": {
545 "description": "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.",
546 "properties": {
547 "apiGroup": {
548 "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.",
549 "type": "string"
550 },
551 "name": {
552 "default": "",
553 "description": "Name is the name of resource being referenced.",
554 "type": "string"
555 },
556 "resource": {
557 "default": "",
558 "description": "Resource is the type of resource being referenced, for example \"pods\".",
559 "type": "string"
560 },
561 "uid": {
562 "default": "",
563 "description": "UID identifies exactly one incarnation of the resource.",
564 "type": "string"
565 }
566 },
567 "required": [
568 "resource",
569 "name",
570 "uid"
571 ],
572 "type": "object"
573 },
574 "io.k8s.api.resource.v1alpha2.ResourceClaimList": {
575 "description": "ResourceClaimList is a collection of claims.",
576 "properties": {
577 "apiVersion": {
578 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
579 "type": "string"
580 },
581 "items": {
582 "description": "Items is the list of resource claims.",
583 "items": {
584 "allOf": [
585 {
586 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
587 }
588 ],
589 "default": {}
590 },
591 "type": "array"
592 },
593 "kind": {
594 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
595 "type": "string"
596 },
597 "metadata": {
598 "allOf": [
599 {
600 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
601 }
602 ],
603 "default": {},
604 "description": "Standard list metadata"
605 }
606 },
607 "required": [
608 "items"
609 ],
610 "type": "object",
611 "x-kubernetes-group-version-kind": [
612 {
613 "group": "resource.k8s.io",
614 "kind": "ResourceClaimList",
615 "version": "v1alpha2"
616 }
617 ]
618 },
619 "io.k8s.api.resource.v1alpha2.ResourceClaimParameters": {
620 "description": "ResourceClaimParameters defines resource requests for a ResourceClaim in an in-tree format understood by Kubernetes.",
621 "properties": {
622 "apiVersion": {
623 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
624 "type": "string"
625 },
626 "driverRequests": {
627 "description": "DriverRequests describes all resources that are needed for the allocated claim. A single claim may use resources coming from different drivers. For each driver, this array has at most one entry which then may have one or more per-driver requests.\n\nMay be empty, in which case the claim can always be allocated.",
628 "items": {
629 "allOf": [
630 {
631 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.DriverRequests"
632 }
633 ],
634 "default": {}
635 },
636 "type": "array",
637 "x-kubernetes-list-type": "atomic"
638 },
639 "generatedFrom": {
640 "allOf": [
641 {
642 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference"
643 }
644 ],
645 "description": "If this object was created from some other resource, then this links back to that resource. This field is used to find the in-tree representation of the claim parameters when the parameter reference of the claim refers to some unknown type."
646 },
647 "kind": {
648 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
649 "type": "string"
650 },
651 "metadata": {
652 "allOf": [
653 {
654 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
655 }
656 ],
657 "default": {},
658 "description": "Standard object metadata"
659 },
660 "shareable": {
661 "description": "Shareable indicates whether the allocated claim is meant to be shareable by multiple consumers at the same time.",
662 "type": "boolean"
663 }
664 },
665 "type": "object",
666 "x-kubernetes-group-version-kind": [
667 {
668 "group": "resource.k8s.io",
669 "kind": "ResourceClaimParameters",
670 "version": "v1alpha2"
671 }
672 ]
673 },
674 "io.k8s.api.resource.v1alpha2.ResourceClaimParametersList": {
675 "description": "ResourceClaimParametersList is a collection of ResourceClaimParameters.",
676 "properties": {
677 "apiVersion": {
678 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
679 "type": "string"
680 },
681 "items": {
682 "description": "Items is the list of node resource capacity objects.",
683 "items": {
684 "allOf": [
685 {
686 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
687 }
688 ],
689 "default": {}
690 },
691 "type": "array"
692 },
693 "kind": {
694 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
695 "type": "string"
696 },
697 "metadata": {
698 "allOf": [
699 {
700 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
701 }
702 ],
703 "default": {},
704 "description": "Standard list metadata"
705 }
706 },
707 "required": [
708 "items"
709 ],
710 "type": "object",
711 "x-kubernetes-group-version-kind": [
712 {
713 "group": "resource.k8s.io",
714 "kind": "ResourceClaimParametersList",
715 "version": "v1alpha2"
716 }
717 ]
718 },
719 "io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference": {
720 "description": "ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim. The object must be in the same namespace as the ResourceClaim.",
721 "properties": {
722 "apiGroup": {
723 "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.",
724 "type": "string"
725 },
726 "kind": {
727 "default": "",
728 "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata, for example \"ConfigMap\".",
729 "type": "string"
730 },
731 "name": {
732 "default": "",
733 "description": "Name is the name of resource being referenced.",
734 "type": "string"
735 }
736 },
737 "required": [
738 "kind",
739 "name"
740 ],
741 "type": "object"
742 },
743 "io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus": {
744 "description": "ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with \"WaitForFirstConsumer\" allocation mode.",
745 "properties": {
746 "name": {
747 "description": "Name matches the pod.spec.resourceClaims[*].Name field.",
748 "type": "string"
749 },
750 "unsuitableNodes": {
751 "description": "UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated for.\n\nThe size of this field is limited to 128, the same as for PodSchedulingSpec.PotentialNodes. This may get increased in the future, but not reduced.",
752 "items": {
753 "default": "",
754 "type": "string"
755 },
756 "type": "array",
757 "x-kubernetes-list-type": "atomic"
758 }
759 },
760 "type": "object"
761 },
762 "io.k8s.api.resource.v1alpha2.ResourceClaimSpec": {
763 "description": "ResourceClaimSpec defines how a resource is to be allocated.",
764 "properties": {
765 "allocationMode": {
766 "description": "Allocation can start immediately or when a Pod wants to use the resource. \"WaitForFirstConsumer\" is the default.",
767 "type": "string"
768 },
769 "parametersRef": {
770 "allOf": [
771 {
772 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference"
773 }
774 ],
775 "description": "ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claim.\n\nThe object must be in the same namespace as the ResourceClaim."
776 },
777 "resourceClassName": {
778 "default": "",
779 "description": "ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment.",
780 "type": "string"
781 }
782 },
783 "required": [
784 "resourceClassName"
785 ],
786 "type": "object"
787 },
788 "io.k8s.api.resource.v1alpha2.ResourceClaimStatus": {
789 "description": "ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are.",
790 "properties": {
791 "allocation": {
792 "allOf": [
793 {
794 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.AllocationResult"
795 }
796 ],
797 "description": "Allocation is set by the resource driver once a resource or set of resources has been allocated successfully. If this is not specified, the resources have not been allocated yet."
798 },
799 "deallocationRequested": {
800 "description": "DeallocationRequested indicates that a ResourceClaim is to be deallocated.\n\nThe driver then must deallocate this claim and reset the field together with clearing the Allocation field.\n\nWhile DeallocationRequested is set, no new consumers may be added to ReservedFor.",
801 "type": "boolean"
802 },
803 "driverName": {
804 "description": "DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.",
805 "type": "string"
806 },
807 "reservedFor": {
808 "description": "ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.\n\nThere can be at most 32 such reservations. This may get increased in the future, but not reduced.",
809 "items": {
810 "allOf": [
811 {
812 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference"
813 }
814 ],
815 "default": {}
816 },
817 "type": "array",
818 "x-kubernetes-list-map-keys": [
819 "uid"
820 ],
821 "x-kubernetes-list-type": "map",
822 "x-kubernetes-patch-merge-key": "uid",
823 "x-kubernetes-patch-strategy": "merge"
824 }
825 },
826 "type": "object"
827 },
828 "io.k8s.api.resource.v1alpha2.ResourceClaimTemplate": {
829 "description": "ResourceClaimTemplate is used to produce ResourceClaim objects.",
830 "properties": {
831 "apiVersion": {
832 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
833 "type": "string"
834 },
835 "kind": {
836 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
837 "type": "string"
838 },
839 "metadata": {
840 "allOf": [
841 {
842 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
843 }
844 ],
845 "default": {},
846 "description": "Standard object metadata"
847 },
848 "spec": {
849 "allOf": [
850 {
851 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec"
852 }
853 ],
854 "default": {},
855 "description": "Describes the ResourceClaim that is to be generated.\n\nThis field is immutable. A ResourceClaim will get created by the control plane for a Pod when needed and then not get updated anymore."
856 }
857 },
858 "required": [
859 "spec"
860 ],
861 "type": "object",
862 "x-kubernetes-group-version-kind": [
863 {
864 "group": "resource.k8s.io",
865 "kind": "ResourceClaimTemplate",
866 "version": "v1alpha2"
867 }
868 ]
869 },
870 "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList": {
871 "description": "ResourceClaimTemplateList is a collection of claim templates.",
872 "properties": {
873 "apiVersion": {
874 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
875 "type": "string"
876 },
877 "items": {
878 "description": "Items is the list of resource claim templates.",
879 "items": {
880 "allOf": [
881 {
882 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
883 }
884 ],
885 "default": {}
886 },
887 "type": "array"
888 },
889 "kind": {
890 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
891 "type": "string"
892 },
893 "metadata": {
894 "allOf": [
895 {
896 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
897 }
898 ],
899 "default": {},
900 "description": "Standard list metadata"
901 }
902 },
903 "required": [
904 "items"
905 ],
906 "type": "object",
907 "x-kubernetes-group-version-kind": [
908 {
909 "group": "resource.k8s.io",
910 "kind": "ResourceClaimTemplateList",
911 "version": "v1alpha2"
912 }
913 ]
914 },
915 "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec": {
916 "description": "ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim.",
917 "properties": {
918 "metadata": {
919 "allOf": [
920 {
921 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
922 }
923 ],
924 "default": {},
925 "description": "ObjectMeta 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."
926 },
927 "spec": {
928 "allOf": [
929 {
930 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSpec"
931 }
932 ],
933 "default": {},
934 "description": "Spec for the ResourceClaim. The entire content is copied unchanged into the ResourceClaim that gets created from this template. The same fields as in a ResourceClaim are also valid here."
935 }
936 },
937 "required": [
938 "spec"
939 ],
940 "type": "object"
941 },
942 "io.k8s.api.resource.v1alpha2.ResourceClass": {
943 "description": "ResourceClass is used by administrators to influence how resources are allocated.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.",
944 "properties": {
945 "apiVersion": {
946 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
947 "type": "string"
948 },
949 "driverName": {
950 "default": "",
951 "description": "DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.\n\nResource drivers have a unique name in forward domain order (acme.example.com).",
952 "type": "string"
953 },
954 "kind": {
955 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
956 "type": "string"
957 },
958 "metadata": {
959 "allOf": [
960 {
961 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
962 }
963 ],
964 "default": {},
965 "description": "Standard object metadata"
966 },
967 "parametersRef": {
968 "allOf": [
969 {
970 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersReference"
971 }
972 ],
973 "description": "ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class. A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec."
974 },
975 "structuredParameters": {
976 "description": "If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true.",
977 "type": "boolean"
978 },
979 "suitableNodes": {
980 "allOf": [
981 {
982 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
983 }
984 ],
985 "description": "Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.\n\nSetting this field is optional. If null, all nodes are candidates."
986 }
987 },
988 "required": [
989 "driverName"
990 ],
991 "type": "object",
992 "x-kubernetes-group-version-kind": [
993 {
994 "group": "resource.k8s.io",
995 "kind": "ResourceClass",
996 "version": "v1alpha2"
997 }
998 ]
999 },
1000 "io.k8s.api.resource.v1alpha2.ResourceClassList": {
1001 "description": "ResourceClassList is a collection of classes.",
1002 "properties": {
1003 "apiVersion": {
1004 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1005 "type": "string"
1006 },
1007 "items": {
1008 "description": "Items is the list of resource classes.",
1009 "items": {
1010 "allOf": [
1011 {
1012 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
1013 }
1014 ],
1015 "default": {}
1016 },
1017 "type": "array"
1018 },
1019 "kind": {
1020 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1021 "type": "string"
1022 },
1023 "metadata": {
1024 "allOf": [
1025 {
1026 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1027 }
1028 ],
1029 "default": {},
1030 "description": "Standard list metadata"
1031 }
1032 },
1033 "required": [
1034 "items"
1035 ],
1036 "type": "object",
1037 "x-kubernetes-group-version-kind": [
1038 {
1039 "group": "resource.k8s.io",
1040 "kind": "ResourceClassList",
1041 "version": "v1alpha2"
1042 }
1043 ]
1044 },
1045 "io.k8s.api.resource.v1alpha2.ResourceClassParameters": {
1046 "description": "ResourceClassParameters defines resource requests for a ResourceClass in an in-tree format understood by Kubernetes.",
1047 "properties": {
1048 "apiVersion": {
1049 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1050 "type": "string"
1051 },
1052 "filters": {
1053 "description": "Filters describes additional contraints that must be met when using the class.",
1054 "items": {
1055 "allOf": [
1056 {
1057 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceFilter"
1058 }
1059 ],
1060 "default": {}
1061 },
1062 "type": "array",
1063 "x-kubernetes-list-type": "atomic"
1064 },
1065 "generatedFrom": {
1066 "allOf": [
1067 {
1068 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersReference"
1069 }
1070 ],
1071 "description": "If this object was created from some other resource, then this links back to that resource. This field is used to find the in-tree representation of the class parameters when the parameter reference of the class refers to some unknown type."
1072 },
1073 "kind": {
1074 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1075 "type": "string"
1076 },
1077 "metadata": {
1078 "allOf": [
1079 {
1080 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1081 }
1082 ],
1083 "default": {},
1084 "description": "Standard object metadata"
1085 },
1086 "vendorParameters": {
1087 "description": "VendorParameters are arbitrary setup parameters for all claims using this class. They are ignored while allocating the claim. There must not be more than one entry per driver.",
1088 "items": {
1089 "allOf": [
1090 {
1091 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.VendorParameters"
1092 }
1093 ],
1094 "default": {}
1095 },
1096 "type": "array",
1097 "x-kubernetes-list-type": "atomic"
1098 }
1099 },
1100 "type": "object",
1101 "x-kubernetes-group-version-kind": [
1102 {
1103 "group": "resource.k8s.io",
1104 "kind": "ResourceClassParameters",
1105 "version": "v1alpha2"
1106 }
1107 ]
1108 },
1109 "io.k8s.api.resource.v1alpha2.ResourceClassParametersList": {
1110 "description": "ResourceClassParametersList is a collection of ResourceClassParameters.",
1111 "properties": {
1112 "apiVersion": {
1113 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1114 "type": "string"
1115 },
1116 "items": {
1117 "description": "Items is the list of node resource capacity objects.",
1118 "items": {
1119 "allOf": [
1120 {
1121 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
1122 }
1123 ],
1124 "default": {}
1125 },
1126 "type": "array"
1127 },
1128 "kind": {
1129 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1130 "type": "string"
1131 },
1132 "metadata": {
1133 "allOf": [
1134 {
1135 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1136 }
1137 ],
1138 "default": {},
1139 "description": "Standard list metadata"
1140 }
1141 },
1142 "required": [
1143 "items"
1144 ],
1145 "type": "object",
1146 "x-kubernetes-group-version-kind": [
1147 {
1148 "group": "resource.k8s.io",
1149 "kind": "ResourceClassParametersList",
1150 "version": "v1alpha2"
1151 }
1152 ]
1153 },
1154 "io.k8s.api.resource.v1alpha2.ResourceClassParametersReference": {
1155 "description": "ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass.",
1156 "properties": {
1157 "apiGroup": {
1158 "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.",
1159 "type": "string"
1160 },
1161 "kind": {
1162 "default": "",
1163 "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.",
1164 "type": "string"
1165 },
1166 "name": {
1167 "default": "",
1168 "description": "Name is the name of resource being referenced.",
1169 "type": "string"
1170 },
1171 "namespace": {
1172 "description": "Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.",
1173 "type": "string"
1174 }
1175 },
1176 "required": [
1177 "kind",
1178 "name"
1179 ],
1180 "type": "object"
1181 },
1182 "io.k8s.api.resource.v1alpha2.ResourceFilter": {
1183 "description": "ResourceFilter is a filter for resources from one particular driver.",
1184 "properties": {
1185 "driverName": {
1186 "description": "DriverName is the name used by the DRA driver kubelet plugin.",
1187 "type": "string"
1188 },
1189 "namedResources": {
1190 "allOf": [
1191 {
1192 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesFilter"
1193 }
1194 ],
1195 "description": "NamedResources describes a resource filter using the named resources model."
1196 }
1197 },
1198 "type": "object"
1199 },
1200 "io.k8s.api.resource.v1alpha2.ResourceHandle": {
1201 "description": "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.",
1202 "properties": {
1203 "data": {
1204 "description": "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.\n\nThe maximum size of this field is 16KiB. This may get increased in the future, but not reduced.",
1205 "type": "string"
1206 },
1207 "driverName": {
1208 "description": "DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in.",
1209 "type": "string"
1210 },
1211 "structuredData": {
1212 "allOf": [
1213 {
1214 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.StructuredResourceHandle"
1215 }
1216 ],
1217 "description": "If StructuredData is set, then it needs to be used instead of Data."
1218 }
1219 },
1220 "type": "object"
1221 },
1222 "io.k8s.api.resource.v1alpha2.ResourceRequest": {
1223 "description": "ResourceRequest is a request for resources from one particular driver.",
1224 "properties": {
1225 "namedResources": {
1226 "allOf": [
1227 {
1228 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesRequest"
1229 }
1230 ],
1231 "description": "NamedResources describes a request for resources with the named resources model."
1232 },
1233 "vendorParameters": {
1234 "allOf": [
1235 {
1236 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
1237 }
1238 ],
1239 "description": "VendorParameters are arbitrary setup parameters for the requested resource. They are ignored while allocating a claim."
1240 }
1241 },
1242 "type": "object"
1243 },
1244 "io.k8s.api.resource.v1alpha2.ResourceSlice": {
1245 "description": "ResourceSlice provides information about available resources on individual nodes.",
1246 "properties": {
1247 "apiVersion": {
1248 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1249 "type": "string"
1250 },
1251 "driverName": {
1252 "default": "",
1253 "description": "DriverName identifies the DRA driver providing the capacity information. A field selector can be used to list only ResourceSlice objects with a certain driver name.",
1254 "type": "string"
1255 },
1256 "kind": {
1257 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1258 "type": "string"
1259 },
1260 "metadata": {
1261 "allOf": [
1262 {
1263 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1264 }
1265 ],
1266 "default": {},
1267 "description": "Standard object metadata"
1268 },
1269 "namedResources": {
1270 "allOf": [
1271 {
1272 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesResources"
1273 }
1274 ],
1275 "description": "NamedResources describes available resources using the named resources model."
1276 },
1277 "nodeName": {
1278 "description": "NodeName identifies the node which provides the resources if they are local to a node.\n\nA field selector can be used to list only ResourceSlice objects with a certain node name.",
1279 "type": "string"
1280 }
1281 },
1282 "required": [
1283 "driverName"
1284 ],
1285 "type": "object",
1286 "x-kubernetes-group-version-kind": [
1287 {
1288 "group": "resource.k8s.io",
1289 "kind": "ResourceSlice",
1290 "version": "v1alpha2"
1291 }
1292 ]
1293 },
1294 "io.k8s.api.resource.v1alpha2.ResourceSliceList": {
1295 "description": "ResourceSliceList is a collection of ResourceSlices.",
1296 "properties": {
1297 "apiVersion": {
1298 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1299 "type": "string"
1300 },
1301 "items": {
1302 "description": "Items is the list of node resource capacity objects.",
1303 "items": {
1304 "allOf": [
1305 {
1306 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
1307 }
1308 ],
1309 "default": {}
1310 },
1311 "type": "array"
1312 },
1313 "kind": {
1314 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1315 "type": "string"
1316 },
1317 "metadata": {
1318 "allOf": [
1319 {
1320 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1321 }
1322 ],
1323 "default": {},
1324 "description": "Standard list metadata"
1325 }
1326 },
1327 "required": [
1328 "items"
1329 ],
1330 "type": "object",
1331 "x-kubernetes-group-version-kind": [
1332 {
1333 "group": "resource.k8s.io",
1334 "kind": "ResourceSliceList",
1335 "version": "v1alpha2"
1336 }
1337 ]
1338 },
1339 "io.k8s.api.resource.v1alpha2.StructuredResourceHandle": {
1340 "description": "StructuredResourceHandle is the in-tree representation of the allocation result.",
1341 "properties": {
1342 "nodeName": {
1343 "description": "NodeName is the name of the node providing the necessary resources if the resources are local to a node.",
1344 "type": "string"
1345 },
1346 "results": {
1347 "description": "Results lists all allocated driver resources.",
1348 "items": {
1349 "allOf": [
1350 {
1351 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.DriverAllocationResult"
1352 }
1353 ],
1354 "default": {}
1355 },
1356 "type": "array",
1357 "x-kubernetes-list-type": "atomic"
1358 },
1359 "vendorClaimParameters": {
1360 "allOf": [
1361 {
1362 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
1363 }
1364 ],
1365 "description": "VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated."
1366 },
1367 "vendorClassParameters": {
1368 "allOf": [
1369 {
1370 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
1371 }
1372 ],
1373 "description": "VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated."
1374 }
1375 },
1376 "required": [
1377 "results"
1378 ],
1379 "type": "object"
1380 },
1381 "io.k8s.api.resource.v1alpha2.VendorParameters": {
1382 "description": "VendorParameters are opaque parameters for one particular driver.",
1383 "properties": {
1384 "driverName": {
1385 "description": "DriverName is the name used by the DRA driver kubelet plugin.",
1386 "type": "string"
1387 },
1388 "parameters": {
1389 "allOf": [
1390 {
1391 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
1392 }
1393 ],
1394 "description": "Parameters can be arbitrary setup parameters. They are ignored while allocating a claim."
1395 }
1396 },
1397 "type": "object"
1398 },
1399 "io.k8s.apimachinery.pkg.api.resource.Quantity": {
1400 "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.",
1401 "oneOf": [
1402 {
1403 "type": "string"
1404 },
1405 {
1406 "type": "number"
1407 }
1408 ]
1409 },
1410 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
1411 "description": "APIResource specifies the name of a resource and whether it is namespaced.",
1412 "properties": {
1413 "categories": {
1414 "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
1415 "items": {
1416 "default": "",
1417 "type": "string"
1418 },
1419 "type": "array",
1420 "x-kubernetes-list-type": "atomic"
1421 },
1422 "group": {
1423 "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\".",
1424 "type": "string"
1425 },
1426 "kind": {
1427 "default": "",
1428 "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
1429 "type": "string"
1430 },
1431 "name": {
1432 "default": "",
1433 "description": "name is the plural name of the resource.",
1434 "type": "string"
1435 },
1436 "namespaced": {
1437 "default": false,
1438 "description": "namespaced indicates if a resource is namespaced or not.",
1439 "type": "boolean"
1440 },
1441 "shortNames": {
1442 "description": "shortNames is a list of suggested short names of the resource.",
1443 "items": {
1444 "default": "",
1445 "type": "string"
1446 },
1447 "type": "array",
1448 "x-kubernetes-list-type": "atomic"
1449 },
1450 "singularName": {
1451 "default": "",
1452 "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.",
1453 "type": "string"
1454 },
1455 "storageVersionHash": {
1456 "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.",
1457 "type": "string"
1458 },
1459 "verbs": {
1460 "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
1461 "items": {
1462 "default": "",
1463 "type": "string"
1464 },
1465 "type": "array"
1466 },
1467 "version": {
1468 "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)\".",
1469 "type": "string"
1470 }
1471 },
1472 "required": [
1473 "name",
1474 "singularName",
1475 "namespaced",
1476 "kind",
1477 "verbs"
1478 ],
1479 "type": "object"
1480 },
1481 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
1482 "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.",
1483 "properties": {
1484 "apiVersion": {
1485 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1486 "type": "string"
1487 },
1488 "groupVersion": {
1489 "default": "",
1490 "description": "groupVersion is the group and version this APIResourceList is for.",
1491 "type": "string"
1492 },
1493 "kind": {
1494 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1495 "type": "string"
1496 },
1497 "resources": {
1498 "description": "resources contains the name of the resources and if they are namespaced.",
1499 "items": {
1500 "allOf": [
1501 {
1502 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
1503 }
1504 ],
1505 "default": {}
1506 },
1507 "type": "array",
1508 "x-kubernetes-list-type": "atomic"
1509 }
1510 },
1511 "required": [
1512 "groupVersion",
1513 "resources"
1514 ],
1515 "type": "object",
1516 "x-kubernetes-group-version-kind": [
1517 {
1518 "group": "",
1519 "kind": "APIResourceList",
1520 "version": "v1"
1521 }
1522 ]
1523 },
1524 "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
1525 "description": "DeleteOptions may be provided when deleting an API object.",
1526 "properties": {
1527 "apiVersion": {
1528 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1529 "type": "string"
1530 },
1531 "dryRun": {
1532 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
1533 "items": {
1534 "default": "",
1535 "type": "string"
1536 },
1537 "type": "array",
1538 "x-kubernetes-list-type": "atomic"
1539 },
1540 "gracePeriodSeconds": {
1541 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
1542 "format": "int64",
1543 "type": "integer"
1544 },
1545 "kind": {
1546 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1547 "type": "string"
1548 },
1549 "orphanDependents": {
1550 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
1551 "type": "boolean"
1552 },
1553 "preconditions": {
1554 "allOf": [
1555 {
1556 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
1557 }
1558 ],
1559 "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
1560 },
1561 "propagationPolicy": {
1562 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
1563 "type": "string"
1564 }
1565 },
1566 "type": "object",
1567 "x-kubernetes-group-version-kind": [
1568 {
1569 "group": "",
1570 "kind": "DeleteOptions",
1571 "version": "v1"
1572 },
1573 {
1574 "group": "admission.k8s.io",
1575 "kind": "DeleteOptions",
1576 "version": "v1"
1577 },
1578 {
1579 "group": "admission.k8s.io",
1580 "kind": "DeleteOptions",
1581 "version": "v1beta1"
1582 },
1583 {
1584 "group": "admissionregistration.k8s.io",
1585 "kind": "DeleteOptions",
1586 "version": "v1"
1587 },
1588 {
1589 "group": "admissionregistration.k8s.io",
1590 "kind": "DeleteOptions",
1591 "version": "v1alpha1"
1592 },
1593 {
1594 "group": "admissionregistration.k8s.io",
1595 "kind": "DeleteOptions",
1596 "version": "v1beta1"
1597 },
1598 {
1599 "group": "apiextensions.k8s.io",
1600 "kind": "DeleteOptions",
1601 "version": "v1"
1602 },
1603 {
1604 "group": "apiextensions.k8s.io",
1605 "kind": "DeleteOptions",
1606 "version": "v1beta1"
1607 },
1608 {
1609 "group": "apiregistration.k8s.io",
1610 "kind": "DeleteOptions",
1611 "version": "v1"
1612 },
1613 {
1614 "group": "apiregistration.k8s.io",
1615 "kind": "DeleteOptions",
1616 "version": "v1beta1"
1617 },
1618 {
1619 "group": "apps",
1620 "kind": "DeleteOptions",
1621 "version": "v1"
1622 },
1623 {
1624 "group": "apps",
1625 "kind": "DeleteOptions",
1626 "version": "v1beta1"
1627 },
1628 {
1629 "group": "apps",
1630 "kind": "DeleteOptions",
1631 "version": "v1beta2"
1632 },
1633 {
1634 "group": "authentication.k8s.io",
1635 "kind": "DeleteOptions",
1636 "version": "v1"
1637 },
1638 {
1639 "group": "authentication.k8s.io",
1640 "kind": "DeleteOptions",
1641 "version": "v1alpha1"
1642 },
1643 {
1644 "group": "authentication.k8s.io",
1645 "kind": "DeleteOptions",
1646 "version": "v1beta1"
1647 },
1648 {
1649 "group": "authorization.k8s.io",
1650 "kind": "DeleteOptions",
1651 "version": "v1"
1652 },
1653 {
1654 "group": "authorization.k8s.io",
1655 "kind": "DeleteOptions",
1656 "version": "v1beta1"
1657 },
1658 {
1659 "group": "autoscaling",
1660 "kind": "DeleteOptions",
1661 "version": "v1"
1662 },
1663 {
1664 "group": "autoscaling",
1665 "kind": "DeleteOptions",
1666 "version": "v2"
1667 },
1668 {
1669 "group": "autoscaling",
1670 "kind": "DeleteOptions",
1671 "version": "v2beta1"
1672 },
1673 {
1674 "group": "autoscaling",
1675 "kind": "DeleteOptions",
1676 "version": "v2beta2"
1677 },
1678 {
1679 "group": "batch",
1680 "kind": "DeleteOptions",
1681 "version": "v1"
1682 },
1683 {
1684 "group": "batch",
1685 "kind": "DeleteOptions",
1686 "version": "v1beta1"
1687 },
1688 {
1689 "group": "certificates.k8s.io",
1690 "kind": "DeleteOptions",
1691 "version": "v1"
1692 },
1693 {
1694 "group": "certificates.k8s.io",
1695 "kind": "DeleteOptions",
1696 "version": "v1alpha1"
1697 },
1698 {
1699 "group": "certificates.k8s.io",
1700 "kind": "DeleteOptions",
1701 "version": "v1beta1"
1702 },
1703 {
1704 "group": "coordination.k8s.io",
1705 "kind": "DeleteOptions",
1706 "version": "v1"
1707 },
1708 {
1709 "group": "coordination.k8s.io",
1710 "kind": "DeleteOptions",
1711 "version": "v1beta1"
1712 },
1713 {
1714 "group": "discovery.k8s.io",
1715 "kind": "DeleteOptions",
1716 "version": "v1"
1717 },
1718 {
1719 "group": "discovery.k8s.io",
1720 "kind": "DeleteOptions",
1721 "version": "v1beta1"
1722 },
1723 {
1724 "group": "events.k8s.io",
1725 "kind": "DeleteOptions",
1726 "version": "v1"
1727 },
1728 {
1729 "group": "events.k8s.io",
1730 "kind": "DeleteOptions",
1731 "version": "v1beta1"
1732 },
1733 {
1734 "group": "extensions",
1735 "kind": "DeleteOptions",
1736 "version": "v1beta1"
1737 },
1738 {
1739 "group": "flowcontrol.apiserver.k8s.io",
1740 "kind": "DeleteOptions",
1741 "version": "v1"
1742 },
1743 {
1744 "group": "flowcontrol.apiserver.k8s.io",
1745 "kind": "DeleteOptions",
1746 "version": "v1beta1"
1747 },
1748 {
1749 "group": "flowcontrol.apiserver.k8s.io",
1750 "kind": "DeleteOptions",
1751 "version": "v1beta2"
1752 },
1753 {
1754 "group": "flowcontrol.apiserver.k8s.io",
1755 "kind": "DeleteOptions",
1756 "version": "v1beta3"
1757 },
1758 {
1759 "group": "imagepolicy.k8s.io",
1760 "kind": "DeleteOptions",
1761 "version": "v1alpha1"
1762 },
1763 {
1764 "group": "internal.apiserver.k8s.io",
1765 "kind": "DeleteOptions",
1766 "version": "v1alpha1"
1767 },
1768 {
1769 "group": "networking.k8s.io",
1770 "kind": "DeleteOptions",
1771 "version": "v1"
1772 },
1773 {
1774 "group": "networking.k8s.io",
1775 "kind": "DeleteOptions",
1776 "version": "v1alpha1"
1777 },
1778 {
1779 "group": "networking.k8s.io",
1780 "kind": "DeleteOptions",
1781 "version": "v1beta1"
1782 },
1783 {
1784 "group": "node.k8s.io",
1785 "kind": "DeleteOptions",
1786 "version": "v1"
1787 },
1788 {
1789 "group": "node.k8s.io",
1790 "kind": "DeleteOptions",
1791 "version": "v1alpha1"
1792 },
1793 {
1794 "group": "node.k8s.io",
1795 "kind": "DeleteOptions",
1796 "version": "v1beta1"
1797 },
1798 {
1799 "group": "policy",
1800 "kind": "DeleteOptions",
1801 "version": "v1"
1802 },
1803 {
1804 "group": "policy",
1805 "kind": "DeleteOptions",
1806 "version": "v1beta1"
1807 },
1808 {
1809 "group": "rbac.authorization.k8s.io",
1810 "kind": "DeleteOptions",
1811 "version": "v1"
1812 },
1813 {
1814 "group": "rbac.authorization.k8s.io",
1815 "kind": "DeleteOptions",
1816 "version": "v1alpha1"
1817 },
1818 {
1819 "group": "rbac.authorization.k8s.io",
1820 "kind": "DeleteOptions",
1821 "version": "v1beta1"
1822 },
1823 {
1824 "group": "resource.k8s.io",
1825 "kind": "DeleteOptions",
1826 "version": "v1alpha2"
1827 },
1828 {
1829 "group": "scheduling.k8s.io",
1830 "kind": "DeleteOptions",
1831 "version": "v1"
1832 },
1833 {
1834 "group": "scheduling.k8s.io",
1835 "kind": "DeleteOptions",
1836 "version": "v1alpha1"
1837 },
1838 {
1839 "group": "scheduling.k8s.io",
1840 "kind": "DeleteOptions",
1841 "version": "v1beta1"
1842 },
1843 {
1844 "group": "storage.k8s.io",
1845 "kind": "DeleteOptions",
1846 "version": "v1"
1847 },
1848 {
1849 "group": "storage.k8s.io",
1850 "kind": "DeleteOptions",
1851 "version": "v1alpha1"
1852 },
1853 {
1854 "group": "storage.k8s.io",
1855 "kind": "DeleteOptions",
1856 "version": "v1beta1"
1857 },
1858 {
1859 "group": "storagemigration.k8s.io",
1860 "kind": "DeleteOptions",
1861 "version": "v1alpha1"
1862 }
1863 ]
1864 },
1865 "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
1866 "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",
1867 "type": "object"
1868 },
1869 "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
1870 "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
1871 "properties": {
1872 "continue": {
1873 "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.",
1874 "type": "string"
1875 },
1876 "remainingItemCount": {
1877 "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.",
1878 "format": "int64",
1879 "type": "integer"
1880 },
1881 "resourceVersion": {
1882 "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",
1883 "type": "string"
1884 },
1885 "selfLink": {
1886 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
1887 "type": "string"
1888 }
1889 },
1890 "type": "object"
1891 },
1892 "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
1893 "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
1894 "properties": {
1895 "apiVersion": {
1896 "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.",
1897 "type": "string"
1898 },
1899 "fieldsType": {
1900 "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
1901 "type": "string"
1902 },
1903 "fieldsV1": {
1904 "allOf": [
1905 {
1906 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
1907 }
1908 ],
1909 "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
1910 },
1911 "manager": {
1912 "description": "Manager is an identifier of the workflow managing these fields.",
1913 "type": "string"
1914 },
1915 "operation": {
1916 "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'.",
1917 "type": "string"
1918 },
1919 "subresource": {
1920 "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.",
1921 "type": "string"
1922 },
1923 "time": {
1924 "allOf": [
1925 {
1926 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1927 }
1928 ],
1929 "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."
1930 }
1931 },
1932 "type": "object"
1933 },
1934 "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
1935 "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
1936 "properties": {
1937 "annotations": {
1938 "additionalProperties": {
1939 "default": "",
1940 "type": "string"
1941 },
1942 "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",
1943 "type": "object"
1944 },
1945 "creationTimestamp": {
1946 "allOf": [
1947 {
1948 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1949 }
1950 ],
1951 "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"
1952 },
1953 "deletionGracePeriodSeconds": {
1954 "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.",
1955 "format": "int64",
1956 "type": "integer"
1957 },
1958 "deletionTimestamp": {
1959 "allOf": [
1960 {
1961 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
1962 }
1963 ],
1964 "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"
1965 },
1966 "finalizers": {
1967 "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.",
1968 "items": {
1969 "default": "",
1970 "type": "string"
1971 },
1972 "type": "array",
1973 "x-kubernetes-list-type": "set",
1974 "x-kubernetes-patch-strategy": "merge"
1975 },
1976 "generateName": {
1977 "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",
1978 "type": "string"
1979 },
1980 "generation": {
1981 "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
1982 "format": "int64",
1983 "type": "integer"
1984 },
1985 "labels": {
1986 "additionalProperties": {
1987 "default": "",
1988 "type": "string"
1989 },
1990 "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",
1991 "type": "object"
1992 },
1993 "managedFields": {
1994 "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.",
1995 "items": {
1996 "allOf": [
1997 {
1998 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
1999 }
2000 ],
2001 "default": {}
2002 },
2003 "type": "array",
2004 "x-kubernetes-list-type": "atomic"
2005 },
2006 "name": {
2007 "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",
2008 "type": "string"
2009 },
2010 "namespace": {
2011 "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",
2012 "type": "string"
2013 },
2014 "ownerReferences": {
2015 "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.",
2016 "items": {
2017 "allOf": [
2018 {
2019 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
2020 }
2021 ],
2022 "default": {}
2023 },
2024 "type": "array",
2025 "x-kubernetes-list-map-keys": [
2026 "uid"
2027 ],
2028 "x-kubernetes-list-type": "map",
2029 "x-kubernetes-patch-merge-key": "uid",
2030 "x-kubernetes-patch-strategy": "merge"
2031 },
2032 "resourceVersion": {
2033 "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",
2034 "type": "string"
2035 },
2036 "selfLink": {
2037 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
2038 "type": "string"
2039 },
2040 "uid": {
2041 "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",
2042 "type": "string"
2043 }
2044 },
2045 "type": "object"
2046 },
2047 "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
2048 "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.",
2049 "properties": {
2050 "apiVersion": {
2051 "default": "",
2052 "description": "API version of the referent.",
2053 "type": "string"
2054 },
2055 "blockOwnerDeletion": {
2056 "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.",
2057 "type": "boolean"
2058 },
2059 "controller": {
2060 "description": "If true, this reference points to the managing controller.",
2061 "type": "boolean"
2062 },
2063 "kind": {
2064 "default": "",
2065 "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2066 "type": "string"
2067 },
2068 "name": {
2069 "default": "",
2070 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
2071 "type": "string"
2072 },
2073 "uid": {
2074 "default": "",
2075 "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
2076 "type": "string"
2077 }
2078 },
2079 "required": [
2080 "apiVersion",
2081 "kind",
2082 "name",
2083 "uid"
2084 ],
2085 "type": "object",
2086 "x-kubernetes-map-type": "atomic"
2087 },
2088 "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
2089 "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
2090 "type": "object"
2091 },
2092 "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
2093 "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
2094 "properties": {
2095 "resourceVersion": {
2096 "description": "Specifies the target ResourceVersion",
2097 "type": "string"
2098 },
2099 "uid": {
2100 "description": "Specifies the target UID.",
2101 "type": "string"
2102 }
2103 },
2104 "type": "object"
2105 },
2106 "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
2107 "description": "Status is a return value for calls that don't return other objects.",
2108 "properties": {
2109 "apiVersion": {
2110 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2111 "type": "string"
2112 },
2113 "code": {
2114 "description": "Suggested HTTP return code for this status, 0 if not set.",
2115 "format": "int32",
2116 "type": "integer"
2117 },
2118 "details": {
2119 "allOf": [
2120 {
2121 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
2122 }
2123 ],
2124 "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.",
2125 "x-kubernetes-list-type": "atomic"
2126 },
2127 "kind": {
2128 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2129 "type": "string"
2130 },
2131 "message": {
2132 "description": "A human-readable description of the status of this operation.",
2133 "type": "string"
2134 },
2135 "metadata": {
2136 "allOf": [
2137 {
2138 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
2139 }
2140 ],
2141 "default": {},
2142 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
2143 },
2144 "reason": {
2145 "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.",
2146 "type": "string"
2147 },
2148 "status": {
2149 "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",
2150 "type": "string"
2151 }
2152 },
2153 "type": "object",
2154 "x-kubernetes-group-version-kind": [
2155 {
2156 "group": "",
2157 "kind": "Status",
2158 "version": "v1"
2159 },
2160 {
2161 "group": "resource.k8s.io",
2162 "kind": "Status",
2163 "version": "v1alpha2"
2164 }
2165 ]
2166 },
2167 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
2168 "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
2169 "properties": {
2170 "field": {
2171 "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\"",
2172 "type": "string"
2173 },
2174 "message": {
2175 "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.",
2176 "type": "string"
2177 },
2178 "reason": {
2179 "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
2180 "type": "string"
2181 }
2182 },
2183 "type": "object"
2184 },
2185 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
2186 "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.",
2187 "properties": {
2188 "causes": {
2189 "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
2190 "items": {
2191 "allOf": [
2192 {
2193 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
2194 }
2195 ],
2196 "default": {}
2197 },
2198 "type": "array",
2199 "x-kubernetes-list-type": "atomic"
2200 },
2201 "group": {
2202 "description": "The group attribute of the resource associated with the status StatusReason.",
2203 "type": "string"
2204 },
2205 "kind": {
2206 "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",
2207 "type": "string"
2208 },
2209 "name": {
2210 "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
2211 "type": "string"
2212 },
2213 "retryAfterSeconds": {
2214 "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.",
2215 "format": "int32",
2216 "type": "integer"
2217 },
2218 "uid": {
2219 "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",
2220 "type": "string"
2221 }
2222 },
2223 "type": "object"
2224 },
2225 "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
2226 "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.",
2227 "format": "date-time",
2228 "type": "string"
2229 },
2230 "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
2231 "description": "Event represents a single event to a watched resource.",
2232 "properties": {
2233 "object": {
2234 "allOf": [
2235 {
2236 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
2237 }
2238 ],
2239 "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."
2240 },
2241 "type": {
2242 "default": "",
2243 "type": "string"
2244 }
2245 },
2246 "required": [
2247 "type",
2248 "object"
2249 ],
2250 "type": "object",
2251 "x-kubernetes-group-version-kind": [
2252 {
2253 "group": "",
2254 "kind": "WatchEvent",
2255 "version": "v1"
2256 },
2257 {
2258 "group": "admission.k8s.io",
2259 "kind": "WatchEvent",
2260 "version": "v1"
2261 },
2262 {
2263 "group": "admission.k8s.io",
2264 "kind": "WatchEvent",
2265 "version": "v1beta1"
2266 },
2267 {
2268 "group": "admissionregistration.k8s.io",
2269 "kind": "WatchEvent",
2270 "version": "v1"
2271 },
2272 {
2273 "group": "admissionregistration.k8s.io",
2274 "kind": "WatchEvent",
2275 "version": "v1alpha1"
2276 },
2277 {
2278 "group": "admissionregistration.k8s.io",
2279 "kind": "WatchEvent",
2280 "version": "v1beta1"
2281 },
2282 {
2283 "group": "apiextensions.k8s.io",
2284 "kind": "WatchEvent",
2285 "version": "v1"
2286 },
2287 {
2288 "group": "apiextensions.k8s.io",
2289 "kind": "WatchEvent",
2290 "version": "v1beta1"
2291 },
2292 {
2293 "group": "apiregistration.k8s.io",
2294 "kind": "WatchEvent",
2295 "version": "v1"
2296 },
2297 {
2298 "group": "apiregistration.k8s.io",
2299 "kind": "WatchEvent",
2300 "version": "v1beta1"
2301 },
2302 {
2303 "group": "apps",
2304 "kind": "WatchEvent",
2305 "version": "v1"
2306 },
2307 {
2308 "group": "apps",
2309 "kind": "WatchEvent",
2310 "version": "v1beta1"
2311 },
2312 {
2313 "group": "apps",
2314 "kind": "WatchEvent",
2315 "version": "v1beta2"
2316 },
2317 {
2318 "group": "authentication.k8s.io",
2319 "kind": "WatchEvent",
2320 "version": "v1"
2321 },
2322 {
2323 "group": "authentication.k8s.io",
2324 "kind": "WatchEvent",
2325 "version": "v1alpha1"
2326 },
2327 {
2328 "group": "authentication.k8s.io",
2329 "kind": "WatchEvent",
2330 "version": "v1beta1"
2331 },
2332 {
2333 "group": "authorization.k8s.io",
2334 "kind": "WatchEvent",
2335 "version": "v1"
2336 },
2337 {
2338 "group": "authorization.k8s.io",
2339 "kind": "WatchEvent",
2340 "version": "v1beta1"
2341 },
2342 {
2343 "group": "autoscaling",
2344 "kind": "WatchEvent",
2345 "version": "v1"
2346 },
2347 {
2348 "group": "autoscaling",
2349 "kind": "WatchEvent",
2350 "version": "v2"
2351 },
2352 {
2353 "group": "autoscaling",
2354 "kind": "WatchEvent",
2355 "version": "v2beta1"
2356 },
2357 {
2358 "group": "autoscaling",
2359 "kind": "WatchEvent",
2360 "version": "v2beta2"
2361 },
2362 {
2363 "group": "batch",
2364 "kind": "WatchEvent",
2365 "version": "v1"
2366 },
2367 {
2368 "group": "batch",
2369 "kind": "WatchEvent",
2370 "version": "v1beta1"
2371 },
2372 {
2373 "group": "certificates.k8s.io",
2374 "kind": "WatchEvent",
2375 "version": "v1"
2376 },
2377 {
2378 "group": "certificates.k8s.io",
2379 "kind": "WatchEvent",
2380 "version": "v1alpha1"
2381 },
2382 {
2383 "group": "certificates.k8s.io",
2384 "kind": "WatchEvent",
2385 "version": "v1beta1"
2386 },
2387 {
2388 "group": "coordination.k8s.io",
2389 "kind": "WatchEvent",
2390 "version": "v1"
2391 },
2392 {
2393 "group": "coordination.k8s.io",
2394 "kind": "WatchEvent",
2395 "version": "v1beta1"
2396 },
2397 {
2398 "group": "discovery.k8s.io",
2399 "kind": "WatchEvent",
2400 "version": "v1"
2401 },
2402 {
2403 "group": "discovery.k8s.io",
2404 "kind": "WatchEvent",
2405 "version": "v1beta1"
2406 },
2407 {
2408 "group": "events.k8s.io",
2409 "kind": "WatchEvent",
2410 "version": "v1"
2411 },
2412 {
2413 "group": "events.k8s.io",
2414 "kind": "WatchEvent",
2415 "version": "v1beta1"
2416 },
2417 {
2418 "group": "extensions",
2419 "kind": "WatchEvent",
2420 "version": "v1beta1"
2421 },
2422 {
2423 "group": "flowcontrol.apiserver.k8s.io",
2424 "kind": "WatchEvent",
2425 "version": "v1"
2426 },
2427 {
2428 "group": "flowcontrol.apiserver.k8s.io",
2429 "kind": "WatchEvent",
2430 "version": "v1beta1"
2431 },
2432 {
2433 "group": "flowcontrol.apiserver.k8s.io",
2434 "kind": "WatchEvent",
2435 "version": "v1beta2"
2436 },
2437 {
2438 "group": "flowcontrol.apiserver.k8s.io",
2439 "kind": "WatchEvent",
2440 "version": "v1beta3"
2441 },
2442 {
2443 "group": "imagepolicy.k8s.io",
2444 "kind": "WatchEvent",
2445 "version": "v1alpha1"
2446 },
2447 {
2448 "group": "internal.apiserver.k8s.io",
2449 "kind": "WatchEvent",
2450 "version": "v1alpha1"
2451 },
2452 {
2453 "group": "networking.k8s.io",
2454 "kind": "WatchEvent",
2455 "version": "v1"
2456 },
2457 {
2458 "group": "networking.k8s.io",
2459 "kind": "WatchEvent",
2460 "version": "v1alpha1"
2461 },
2462 {
2463 "group": "networking.k8s.io",
2464 "kind": "WatchEvent",
2465 "version": "v1beta1"
2466 },
2467 {
2468 "group": "node.k8s.io",
2469 "kind": "WatchEvent",
2470 "version": "v1"
2471 },
2472 {
2473 "group": "node.k8s.io",
2474 "kind": "WatchEvent",
2475 "version": "v1alpha1"
2476 },
2477 {
2478 "group": "node.k8s.io",
2479 "kind": "WatchEvent",
2480 "version": "v1beta1"
2481 },
2482 {
2483 "group": "policy",
2484 "kind": "WatchEvent",
2485 "version": "v1"
2486 },
2487 {
2488 "group": "policy",
2489 "kind": "WatchEvent",
2490 "version": "v1beta1"
2491 },
2492 {
2493 "group": "rbac.authorization.k8s.io",
2494 "kind": "WatchEvent",
2495 "version": "v1"
2496 },
2497 {
2498 "group": "rbac.authorization.k8s.io",
2499 "kind": "WatchEvent",
2500 "version": "v1alpha1"
2501 },
2502 {
2503 "group": "rbac.authorization.k8s.io",
2504 "kind": "WatchEvent",
2505 "version": "v1beta1"
2506 },
2507 {
2508 "group": "resource.k8s.io",
2509 "kind": "WatchEvent",
2510 "version": "v1alpha2"
2511 },
2512 {
2513 "group": "scheduling.k8s.io",
2514 "kind": "WatchEvent",
2515 "version": "v1"
2516 },
2517 {
2518 "group": "scheduling.k8s.io",
2519 "kind": "WatchEvent",
2520 "version": "v1alpha1"
2521 },
2522 {
2523 "group": "scheduling.k8s.io",
2524 "kind": "WatchEvent",
2525 "version": "v1beta1"
2526 },
2527 {
2528 "group": "storage.k8s.io",
2529 "kind": "WatchEvent",
2530 "version": "v1"
2531 },
2532 {
2533 "group": "storage.k8s.io",
2534 "kind": "WatchEvent",
2535 "version": "v1alpha1"
2536 },
2537 {
2538 "group": "storage.k8s.io",
2539 "kind": "WatchEvent",
2540 "version": "v1beta1"
2541 },
2542 {
2543 "group": "storagemigration.k8s.io",
2544 "kind": "WatchEvent",
2545 "version": "v1alpha1"
2546 }
2547 ]
2548 },
2549 "io.k8s.apimachinery.pkg.runtime.RawExtension": {
2550 "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.)",
2551 "type": "object"
2552 }
2553 },
2554 "securitySchemes": {
2555 "BearerToken": {
2556 "description": "Bearer Token authentication",
2557 "in": "header",
2558 "name": "authorization",
2559 "type": "apiKey"
2560 }
2561 }
2562 },
2563 "info": {
2564 "title": "Kubernetes",
2565 "version": "unversioned"
2566 },
2567 "openapi": "3.0.0",
2568 "paths": {
2569 "/apis/resource.k8s.io/v1alpha2/": {
2570 "get": {
2571 "description": "get available resources",
2572 "operationId": "getResourceV1alpha2APIResources",
2573 "responses": {
2574 "200": {
2575 "content": {
2576 "application/json": {
2577 "schema": {
2578 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
2579 }
2580 },
2581 "application/vnd.kubernetes.protobuf": {
2582 "schema": {
2583 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
2584 }
2585 },
2586 "application/yaml": {
2587 "schema": {
2588 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
2589 }
2590 }
2591 },
2592 "description": "OK"
2593 },
2594 "401": {
2595 "description": "Unauthorized"
2596 }
2597 },
2598 "tags": [
2599 "resource_v1alpha2"
2600 ]
2601 }
2602 },
2603 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts": {
2604 "delete": {
2605 "description": "delete collection of PodSchedulingContext",
2606 "operationId": "deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext",
2607 "parameters": [
2608 {
2609 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
2610 "in": "query",
2611 "name": "continue",
2612 "schema": {
2613 "type": "string",
2614 "uniqueItems": true
2615 }
2616 },
2617 {
2618 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
2619 "in": "query",
2620 "name": "dryRun",
2621 "schema": {
2622 "type": "string",
2623 "uniqueItems": true
2624 }
2625 },
2626 {
2627 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
2628 "in": "query",
2629 "name": "fieldSelector",
2630 "schema": {
2631 "type": "string",
2632 "uniqueItems": true
2633 }
2634 },
2635 {
2636 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
2637 "in": "query",
2638 "name": "gracePeriodSeconds",
2639 "schema": {
2640 "type": "integer",
2641 "uniqueItems": true
2642 }
2643 },
2644 {
2645 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
2646 "in": "query",
2647 "name": "labelSelector",
2648 "schema": {
2649 "type": "string",
2650 "uniqueItems": true
2651 }
2652 },
2653 {
2654 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
2655 "in": "query",
2656 "name": "limit",
2657 "schema": {
2658 "type": "integer",
2659 "uniqueItems": true
2660 }
2661 },
2662 {
2663 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
2664 "in": "query",
2665 "name": "orphanDependents",
2666 "schema": {
2667 "type": "boolean",
2668 "uniqueItems": true
2669 }
2670 },
2671 {
2672 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
2673 "in": "query",
2674 "name": "propagationPolicy",
2675 "schema": {
2676 "type": "string",
2677 "uniqueItems": true
2678 }
2679 },
2680 {
2681 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
2682 "in": "query",
2683 "name": "resourceVersion",
2684 "schema": {
2685 "type": "string",
2686 "uniqueItems": true
2687 }
2688 },
2689 {
2690 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
2691 "in": "query",
2692 "name": "resourceVersionMatch",
2693 "schema": {
2694 "type": "string",
2695 "uniqueItems": true
2696 }
2697 },
2698 {
2699 "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.",
2700 "in": "query",
2701 "name": "sendInitialEvents",
2702 "schema": {
2703 "type": "boolean",
2704 "uniqueItems": true
2705 }
2706 },
2707 {
2708 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
2709 "in": "query",
2710 "name": "timeoutSeconds",
2711 "schema": {
2712 "type": "integer",
2713 "uniqueItems": true
2714 }
2715 }
2716 ],
2717 "requestBody": {
2718 "content": {
2719 "*/*": {
2720 "schema": {
2721 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
2722 }
2723 }
2724 }
2725 },
2726 "responses": {
2727 "200": {
2728 "content": {
2729 "application/json": {
2730 "schema": {
2731 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
2732 }
2733 },
2734 "application/vnd.kubernetes.protobuf": {
2735 "schema": {
2736 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
2737 }
2738 },
2739 "application/yaml": {
2740 "schema": {
2741 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
2742 }
2743 }
2744 },
2745 "description": "OK"
2746 },
2747 "401": {
2748 "description": "Unauthorized"
2749 }
2750 },
2751 "tags": [
2752 "resource_v1alpha2"
2753 ],
2754 "x-kubernetes-action": "deletecollection",
2755 "x-kubernetes-group-version-kind": {
2756 "group": "resource.k8s.io",
2757 "kind": "PodSchedulingContext",
2758 "version": "v1alpha2"
2759 }
2760 },
2761 "get": {
2762 "description": "list or watch objects of kind PodSchedulingContext",
2763 "operationId": "listResourceV1alpha2NamespacedPodSchedulingContext",
2764 "parameters": [
2765 {
2766 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
2767 "in": "query",
2768 "name": "allowWatchBookmarks",
2769 "schema": {
2770 "type": "boolean",
2771 "uniqueItems": true
2772 }
2773 },
2774 {
2775 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
2776 "in": "query",
2777 "name": "continue",
2778 "schema": {
2779 "type": "string",
2780 "uniqueItems": true
2781 }
2782 },
2783 {
2784 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
2785 "in": "query",
2786 "name": "fieldSelector",
2787 "schema": {
2788 "type": "string",
2789 "uniqueItems": true
2790 }
2791 },
2792 {
2793 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
2794 "in": "query",
2795 "name": "labelSelector",
2796 "schema": {
2797 "type": "string",
2798 "uniqueItems": true
2799 }
2800 },
2801 {
2802 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
2803 "in": "query",
2804 "name": "limit",
2805 "schema": {
2806 "type": "integer",
2807 "uniqueItems": true
2808 }
2809 },
2810 {
2811 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
2812 "in": "query",
2813 "name": "resourceVersion",
2814 "schema": {
2815 "type": "string",
2816 "uniqueItems": true
2817 }
2818 },
2819 {
2820 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
2821 "in": "query",
2822 "name": "resourceVersionMatch",
2823 "schema": {
2824 "type": "string",
2825 "uniqueItems": true
2826 }
2827 },
2828 {
2829 "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.",
2830 "in": "query",
2831 "name": "sendInitialEvents",
2832 "schema": {
2833 "type": "boolean",
2834 "uniqueItems": true
2835 }
2836 },
2837 {
2838 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
2839 "in": "query",
2840 "name": "timeoutSeconds",
2841 "schema": {
2842 "type": "integer",
2843 "uniqueItems": true
2844 }
2845 },
2846 {
2847 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
2848 "in": "query",
2849 "name": "watch",
2850 "schema": {
2851 "type": "boolean",
2852 "uniqueItems": true
2853 }
2854 }
2855 ],
2856 "responses": {
2857 "200": {
2858 "content": {
2859 "application/json": {
2860 "schema": {
2861 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
2862 }
2863 },
2864 "application/json;stream=watch": {
2865 "schema": {
2866 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
2867 }
2868 },
2869 "application/vnd.kubernetes.protobuf": {
2870 "schema": {
2871 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
2872 }
2873 },
2874 "application/vnd.kubernetes.protobuf;stream=watch": {
2875 "schema": {
2876 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
2877 }
2878 },
2879 "application/yaml": {
2880 "schema": {
2881 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
2882 }
2883 }
2884 },
2885 "description": "OK"
2886 },
2887 "401": {
2888 "description": "Unauthorized"
2889 }
2890 },
2891 "tags": [
2892 "resource_v1alpha2"
2893 ],
2894 "x-kubernetes-action": "list",
2895 "x-kubernetes-group-version-kind": {
2896 "group": "resource.k8s.io",
2897 "kind": "PodSchedulingContext",
2898 "version": "v1alpha2"
2899 }
2900 },
2901 "parameters": [
2902 {
2903 "description": "object name and auth scope, such as for teams and projects",
2904 "in": "path",
2905 "name": "namespace",
2906 "required": true,
2907 "schema": {
2908 "type": "string",
2909 "uniqueItems": true
2910 }
2911 },
2912 {
2913 "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).",
2914 "in": "query",
2915 "name": "pretty",
2916 "schema": {
2917 "type": "string",
2918 "uniqueItems": true
2919 }
2920 }
2921 ],
2922 "post": {
2923 "description": "create a PodSchedulingContext",
2924 "operationId": "createResourceV1alpha2NamespacedPodSchedulingContext",
2925 "parameters": [
2926 {
2927 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
2928 "in": "query",
2929 "name": "dryRun",
2930 "schema": {
2931 "type": "string",
2932 "uniqueItems": true
2933 }
2934 },
2935 {
2936 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
2937 "in": "query",
2938 "name": "fieldManager",
2939 "schema": {
2940 "type": "string",
2941 "uniqueItems": true
2942 }
2943 },
2944 {
2945 "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.",
2946 "in": "query",
2947 "name": "fieldValidation",
2948 "schema": {
2949 "type": "string",
2950 "uniqueItems": true
2951 }
2952 }
2953 ],
2954 "requestBody": {
2955 "content": {
2956 "*/*": {
2957 "schema": {
2958 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2959 }
2960 }
2961 },
2962 "required": true
2963 },
2964 "responses": {
2965 "200": {
2966 "content": {
2967 "application/json": {
2968 "schema": {
2969 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2970 }
2971 },
2972 "application/vnd.kubernetes.protobuf": {
2973 "schema": {
2974 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2975 }
2976 },
2977 "application/yaml": {
2978 "schema": {
2979 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2980 }
2981 }
2982 },
2983 "description": "OK"
2984 },
2985 "201": {
2986 "content": {
2987 "application/json": {
2988 "schema": {
2989 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2990 }
2991 },
2992 "application/vnd.kubernetes.protobuf": {
2993 "schema": {
2994 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
2995 }
2996 },
2997 "application/yaml": {
2998 "schema": {
2999 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3000 }
3001 }
3002 },
3003 "description": "Created"
3004 },
3005 "202": {
3006 "content": {
3007 "application/json": {
3008 "schema": {
3009 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3010 }
3011 },
3012 "application/vnd.kubernetes.protobuf": {
3013 "schema": {
3014 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3015 }
3016 },
3017 "application/yaml": {
3018 "schema": {
3019 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3020 }
3021 }
3022 },
3023 "description": "Accepted"
3024 },
3025 "401": {
3026 "description": "Unauthorized"
3027 }
3028 },
3029 "tags": [
3030 "resource_v1alpha2"
3031 ],
3032 "x-kubernetes-action": "post",
3033 "x-kubernetes-group-version-kind": {
3034 "group": "resource.k8s.io",
3035 "kind": "PodSchedulingContext",
3036 "version": "v1alpha2"
3037 }
3038 }
3039 },
3040 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}": {
3041 "delete": {
3042 "description": "delete a PodSchedulingContext",
3043 "operationId": "deleteResourceV1alpha2NamespacedPodSchedulingContext",
3044 "parameters": [
3045 {
3046 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3047 "in": "query",
3048 "name": "dryRun",
3049 "schema": {
3050 "type": "string",
3051 "uniqueItems": true
3052 }
3053 },
3054 {
3055 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
3056 "in": "query",
3057 "name": "gracePeriodSeconds",
3058 "schema": {
3059 "type": "integer",
3060 "uniqueItems": true
3061 }
3062 },
3063 {
3064 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
3065 "in": "query",
3066 "name": "orphanDependents",
3067 "schema": {
3068 "type": "boolean",
3069 "uniqueItems": true
3070 }
3071 },
3072 {
3073 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
3074 "in": "query",
3075 "name": "propagationPolicy",
3076 "schema": {
3077 "type": "string",
3078 "uniqueItems": true
3079 }
3080 }
3081 ],
3082 "requestBody": {
3083 "content": {
3084 "*/*": {
3085 "schema": {
3086 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
3087 }
3088 }
3089 }
3090 },
3091 "responses": {
3092 "200": {
3093 "content": {
3094 "application/json": {
3095 "schema": {
3096 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3097 }
3098 },
3099 "application/vnd.kubernetes.protobuf": {
3100 "schema": {
3101 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3102 }
3103 },
3104 "application/yaml": {
3105 "schema": {
3106 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3107 }
3108 }
3109 },
3110 "description": "OK"
3111 },
3112 "202": {
3113 "content": {
3114 "application/json": {
3115 "schema": {
3116 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3117 }
3118 },
3119 "application/vnd.kubernetes.protobuf": {
3120 "schema": {
3121 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3122 }
3123 },
3124 "application/yaml": {
3125 "schema": {
3126 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3127 }
3128 }
3129 },
3130 "description": "Accepted"
3131 },
3132 "401": {
3133 "description": "Unauthorized"
3134 }
3135 },
3136 "tags": [
3137 "resource_v1alpha2"
3138 ],
3139 "x-kubernetes-action": "delete",
3140 "x-kubernetes-group-version-kind": {
3141 "group": "resource.k8s.io",
3142 "kind": "PodSchedulingContext",
3143 "version": "v1alpha2"
3144 }
3145 },
3146 "get": {
3147 "description": "read the specified PodSchedulingContext",
3148 "operationId": "readResourceV1alpha2NamespacedPodSchedulingContext",
3149 "responses": {
3150 "200": {
3151 "content": {
3152 "application/json": {
3153 "schema": {
3154 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3155 }
3156 },
3157 "application/vnd.kubernetes.protobuf": {
3158 "schema": {
3159 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3160 }
3161 },
3162 "application/yaml": {
3163 "schema": {
3164 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3165 }
3166 }
3167 },
3168 "description": "OK"
3169 },
3170 "401": {
3171 "description": "Unauthorized"
3172 }
3173 },
3174 "tags": [
3175 "resource_v1alpha2"
3176 ],
3177 "x-kubernetes-action": "get",
3178 "x-kubernetes-group-version-kind": {
3179 "group": "resource.k8s.io",
3180 "kind": "PodSchedulingContext",
3181 "version": "v1alpha2"
3182 }
3183 },
3184 "parameters": [
3185 {
3186 "description": "name of the PodSchedulingContext",
3187 "in": "path",
3188 "name": "name",
3189 "required": true,
3190 "schema": {
3191 "type": "string",
3192 "uniqueItems": true
3193 }
3194 },
3195 {
3196 "description": "object name and auth scope, such as for teams and projects",
3197 "in": "path",
3198 "name": "namespace",
3199 "required": true,
3200 "schema": {
3201 "type": "string",
3202 "uniqueItems": true
3203 }
3204 },
3205 {
3206 "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).",
3207 "in": "query",
3208 "name": "pretty",
3209 "schema": {
3210 "type": "string",
3211 "uniqueItems": true
3212 }
3213 }
3214 ],
3215 "patch": {
3216 "description": "partially update the specified PodSchedulingContext",
3217 "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContext",
3218 "parameters": [
3219 {
3220 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3221 "in": "query",
3222 "name": "dryRun",
3223 "schema": {
3224 "type": "string",
3225 "uniqueItems": true
3226 }
3227 },
3228 {
3229 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
3230 "in": "query",
3231 "name": "fieldManager",
3232 "schema": {
3233 "type": "string",
3234 "uniqueItems": true
3235 }
3236 },
3237 {
3238 "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.",
3239 "in": "query",
3240 "name": "fieldValidation",
3241 "schema": {
3242 "type": "string",
3243 "uniqueItems": true
3244 }
3245 },
3246 {
3247 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
3248 "in": "query",
3249 "name": "force",
3250 "schema": {
3251 "type": "boolean",
3252 "uniqueItems": true
3253 }
3254 }
3255 ],
3256 "requestBody": {
3257 "content": {
3258 "application/apply-patch+yaml": {
3259 "schema": {
3260 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3261 }
3262 },
3263 "application/json-patch+json": {
3264 "schema": {
3265 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3266 }
3267 },
3268 "application/merge-patch+json": {
3269 "schema": {
3270 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3271 }
3272 },
3273 "application/strategic-merge-patch+json": {
3274 "schema": {
3275 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3276 }
3277 }
3278 },
3279 "required": true
3280 },
3281 "responses": {
3282 "200": {
3283 "content": {
3284 "application/json": {
3285 "schema": {
3286 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3287 }
3288 },
3289 "application/vnd.kubernetes.protobuf": {
3290 "schema": {
3291 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3292 }
3293 },
3294 "application/yaml": {
3295 "schema": {
3296 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3297 }
3298 }
3299 },
3300 "description": "OK"
3301 },
3302 "201": {
3303 "content": {
3304 "application/json": {
3305 "schema": {
3306 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3307 }
3308 },
3309 "application/vnd.kubernetes.protobuf": {
3310 "schema": {
3311 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3312 }
3313 },
3314 "application/yaml": {
3315 "schema": {
3316 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3317 }
3318 }
3319 },
3320 "description": "Created"
3321 },
3322 "401": {
3323 "description": "Unauthorized"
3324 }
3325 },
3326 "tags": [
3327 "resource_v1alpha2"
3328 ],
3329 "x-kubernetes-action": "patch",
3330 "x-kubernetes-group-version-kind": {
3331 "group": "resource.k8s.io",
3332 "kind": "PodSchedulingContext",
3333 "version": "v1alpha2"
3334 }
3335 },
3336 "put": {
3337 "description": "replace the specified PodSchedulingContext",
3338 "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContext",
3339 "parameters": [
3340 {
3341 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3342 "in": "query",
3343 "name": "dryRun",
3344 "schema": {
3345 "type": "string",
3346 "uniqueItems": true
3347 }
3348 },
3349 {
3350 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
3351 "in": "query",
3352 "name": "fieldManager",
3353 "schema": {
3354 "type": "string",
3355 "uniqueItems": true
3356 }
3357 },
3358 {
3359 "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.",
3360 "in": "query",
3361 "name": "fieldValidation",
3362 "schema": {
3363 "type": "string",
3364 "uniqueItems": true
3365 }
3366 }
3367 ],
3368 "requestBody": {
3369 "content": {
3370 "*/*": {
3371 "schema": {
3372 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3373 }
3374 }
3375 },
3376 "required": true
3377 },
3378 "responses": {
3379 "200": {
3380 "content": {
3381 "application/json": {
3382 "schema": {
3383 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3384 }
3385 },
3386 "application/vnd.kubernetes.protobuf": {
3387 "schema": {
3388 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3389 }
3390 },
3391 "application/yaml": {
3392 "schema": {
3393 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3394 }
3395 }
3396 },
3397 "description": "OK"
3398 },
3399 "201": {
3400 "content": {
3401 "application/json": {
3402 "schema": {
3403 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3404 }
3405 },
3406 "application/vnd.kubernetes.protobuf": {
3407 "schema": {
3408 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3409 }
3410 },
3411 "application/yaml": {
3412 "schema": {
3413 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3414 }
3415 }
3416 },
3417 "description": "Created"
3418 },
3419 "401": {
3420 "description": "Unauthorized"
3421 }
3422 },
3423 "tags": [
3424 "resource_v1alpha2"
3425 ],
3426 "x-kubernetes-action": "put",
3427 "x-kubernetes-group-version-kind": {
3428 "group": "resource.k8s.io",
3429 "kind": "PodSchedulingContext",
3430 "version": "v1alpha2"
3431 }
3432 }
3433 },
3434 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}/status": {
3435 "get": {
3436 "description": "read status of the specified PodSchedulingContext",
3437 "operationId": "readResourceV1alpha2NamespacedPodSchedulingContextStatus",
3438 "responses": {
3439 "200": {
3440 "content": {
3441 "application/json": {
3442 "schema": {
3443 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3444 }
3445 },
3446 "application/vnd.kubernetes.protobuf": {
3447 "schema": {
3448 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3449 }
3450 },
3451 "application/yaml": {
3452 "schema": {
3453 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3454 }
3455 }
3456 },
3457 "description": "OK"
3458 },
3459 "401": {
3460 "description": "Unauthorized"
3461 }
3462 },
3463 "tags": [
3464 "resource_v1alpha2"
3465 ],
3466 "x-kubernetes-action": "get",
3467 "x-kubernetes-group-version-kind": {
3468 "group": "resource.k8s.io",
3469 "kind": "PodSchedulingContext",
3470 "version": "v1alpha2"
3471 }
3472 },
3473 "parameters": [
3474 {
3475 "description": "name of the PodSchedulingContext",
3476 "in": "path",
3477 "name": "name",
3478 "required": true,
3479 "schema": {
3480 "type": "string",
3481 "uniqueItems": true
3482 }
3483 },
3484 {
3485 "description": "object name and auth scope, such as for teams and projects",
3486 "in": "path",
3487 "name": "namespace",
3488 "required": true,
3489 "schema": {
3490 "type": "string",
3491 "uniqueItems": true
3492 }
3493 },
3494 {
3495 "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).",
3496 "in": "query",
3497 "name": "pretty",
3498 "schema": {
3499 "type": "string",
3500 "uniqueItems": true
3501 }
3502 }
3503 ],
3504 "patch": {
3505 "description": "partially update status of the specified PodSchedulingContext",
3506 "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContextStatus",
3507 "parameters": [
3508 {
3509 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3510 "in": "query",
3511 "name": "dryRun",
3512 "schema": {
3513 "type": "string",
3514 "uniqueItems": true
3515 }
3516 },
3517 {
3518 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
3519 "in": "query",
3520 "name": "fieldManager",
3521 "schema": {
3522 "type": "string",
3523 "uniqueItems": true
3524 }
3525 },
3526 {
3527 "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.",
3528 "in": "query",
3529 "name": "fieldValidation",
3530 "schema": {
3531 "type": "string",
3532 "uniqueItems": true
3533 }
3534 },
3535 {
3536 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
3537 "in": "query",
3538 "name": "force",
3539 "schema": {
3540 "type": "boolean",
3541 "uniqueItems": true
3542 }
3543 }
3544 ],
3545 "requestBody": {
3546 "content": {
3547 "application/apply-patch+yaml": {
3548 "schema": {
3549 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3550 }
3551 },
3552 "application/json-patch+json": {
3553 "schema": {
3554 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3555 }
3556 },
3557 "application/merge-patch+json": {
3558 "schema": {
3559 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3560 }
3561 },
3562 "application/strategic-merge-patch+json": {
3563 "schema": {
3564 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
3565 }
3566 }
3567 },
3568 "required": true
3569 },
3570 "responses": {
3571 "200": {
3572 "content": {
3573 "application/json": {
3574 "schema": {
3575 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3576 }
3577 },
3578 "application/vnd.kubernetes.protobuf": {
3579 "schema": {
3580 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3581 }
3582 },
3583 "application/yaml": {
3584 "schema": {
3585 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3586 }
3587 }
3588 },
3589 "description": "OK"
3590 },
3591 "201": {
3592 "content": {
3593 "application/json": {
3594 "schema": {
3595 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3596 }
3597 },
3598 "application/vnd.kubernetes.protobuf": {
3599 "schema": {
3600 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3601 }
3602 },
3603 "application/yaml": {
3604 "schema": {
3605 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3606 }
3607 }
3608 },
3609 "description": "Created"
3610 },
3611 "401": {
3612 "description": "Unauthorized"
3613 }
3614 },
3615 "tags": [
3616 "resource_v1alpha2"
3617 ],
3618 "x-kubernetes-action": "patch",
3619 "x-kubernetes-group-version-kind": {
3620 "group": "resource.k8s.io",
3621 "kind": "PodSchedulingContext",
3622 "version": "v1alpha2"
3623 }
3624 },
3625 "put": {
3626 "description": "replace status of the specified PodSchedulingContext",
3627 "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContextStatus",
3628 "parameters": [
3629 {
3630 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3631 "in": "query",
3632 "name": "dryRun",
3633 "schema": {
3634 "type": "string",
3635 "uniqueItems": true
3636 }
3637 },
3638 {
3639 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
3640 "in": "query",
3641 "name": "fieldManager",
3642 "schema": {
3643 "type": "string",
3644 "uniqueItems": true
3645 }
3646 },
3647 {
3648 "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.",
3649 "in": "query",
3650 "name": "fieldValidation",
3651 "schema": {
3652 "type": "string",
3653 "uniqueItems": true
3654 }
3655 }
3656 ],
3657 "requestBody": {
3658 "content": {
3659 "*/*": {
3660 "schema": {
3661 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3662 }
3663 }
3664 },
3665 "required": true
3666 },
3667 "responses": {
3668 "200": {
3669 "content": {
3670 "application/json": {
3671 "schema": {
3672 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3673 }
3674 },
3675 "application/vnd.kubernetes.protobuf": {
3676 "schema": {
3677 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3678 }
3679 },
3680 "application/yaml": {
3681 "schema": {
3682 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3683 }
3684 }
3685 },
3686 "description": "OK"
3687 },
3688 "201": {
3689 "content": {
3690 "application/json": {
3691 "schema": {
3692 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3693 }
3694 },
3695 "application/vnd.kubernetes.protobuf": {
3696 "schema": {
3697 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3698 }
3699 },
3700 "application/yaml": {
3701 "schema": {
3702 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext"
3703 }
3704 }
3705 },
3706 "description": "Created"
3707 },
3708 "401": {
3709 "description": "Unauthorized"
3710 }
3711 },
3712 "tags": [
3713 "resource_v1alpha2"
3714 ],
3715 "x-kubernetes-action": "put",
3716 "x-kubernetes-group-version-kind": {
3717 "group": "resource.k8s.io",
3718 "kind": "PodSchedulingContext",
3719 "version": "v1alpha2"
3720 }
3721 }
3722 },
3723 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimparameters": {
3724 "delete": {
3725 "description": "delete collection of ResourceClaimParameters",
3726 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaimParameters",
3727 "parameters": [
3728 {
3729 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
3730 "in": "query",
3731 "name": "continue",
3732 "schema": {
3733 "type": "string",
3734 "uniqueItems": true
3735 }
3736 },
3737 {
3738 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
3739 "in": "query",
3740 "name": "dryRun",
3741 "schema": {
3742 "type": "string",
3743 "uniqueItems": true
3744 }
3745 },
3746 {
3747 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
3748 "in": "query",
3749 "name": "fieldSelector",
3750 "schema": {
3751 "type": "string",
3752 "uniqueItems": true
3753 }
3754 },
3755 {
3756 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
3757 "in": "query",
3758 "name": "gracePeriodSeconds",
3759 "schema": {
3760 "type": "integer",
3761 "uniqueItems": true
3762 }
3763 },
3764 {
3765 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
3766 "in": "query",
3767 "name": "labelSelector",
3768 "schema": {
3769 "type": "string",
3770 "uniqueItems": true
3771 }
3772 },
3773 {
3774 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
3775 "in": "query",
3776 "name": "limit",
3777 "schema": {
3778 "type": "integer",
3779 "uniqueItems": true
3780 }
3781 },
3782 {
3783 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
3784 "in": "query",
3785 "name": "orphanDependents",
3786 "schema": {
3787 "type": "boolean",
3788 "uniqueItems": true
3789 }
3790 },
3791 {
3792 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
3793 "in": "query",
3794 "name": "propagationPolicy",
3795 "schema": {
3796 "type": "string",
3797 "uniqueItems": true
3798 }
3799 },
3800 {
3801 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
3802 "in": "query",
3803 "name": "resourceVersion",
3804 "schema": {
3805 "type": "string",
3806 "uniqueItems": true
3807 }
3808 },
3809 {
3810 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
3811 "in": "query",
3812 "name": "resourceVersionMatch",
3813 "schema": {
3814 "type": "string",
3815 "uniqueItems": true
3816 }
3817 },
3818 {
3819 "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.",
3820 "in": "query",
3821 "name": "sendInitialEvents",
3822 "schema": {
3823 "type": "boolean",
3824 "uniqueItems": true
3825 }
3826 },
3827 {
3828 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
3829 "in": "query",
3830 "name": "timeoutSeconds",
3831 "schema": {
3832 "type": "integer",
3833 "uniqueItems": true
3834 }
3835 }
3836 ],
3837 "requestBody": {
3838 "content": {
3839 "*/*": {
3840 "schema": {
3841 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
3842 }
3843 }
3844 }
3845 },
3846 "responses": {
3847 "200": {
3848 "content": {
3849 "application/json": {
3850 "schema": {
3851 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
3852 }
3853 },
3854 "application/vnd.kubernetes.protobuf": {
3855 "schema": {
3856 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
3857 }
3858 },
3859 "application/yaml": {
3860 "schema": {
3861 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
3862 }
3863 }
3864 },
3865 "description": "OK"
3866 },
3867 "401": {
3868 "description": "Unauthorized"
3869 }
3870 },
3871 "tags": [
3872 "resource_v1alpha2"
3873 ],
3874 "x-kubernetes-action": "deletecollection",
3875 "x-kubernetes-group-version-kind": {
3876 "group": "resource.k8s.io",
3877 "kind": "ResourceClaimParameters",
3878 "version": "v1alpha2"
3879 }
3880 },
3881 "get": {
3882 "description": "list or watch objects of kind ResourceClaimParameters",
3883 "operationId": "listResourceV1alpha2NamespacedResourceClaimParameters",
3884 "parameters": [
3885 {
3886 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
3887 "in": "query",
3888 "name": "allowWatchBookmarks",
3889 "schema": {
3890 "type": "boolean",
3891 "uniqueItems": true
3892 }
3893 },
3894 {
3895 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
3896 "in": "query",
3897 "name": "continue",
3898 "schema": {
3899 "type": "string",
3900 "uniqueItems": true
3901 }
3902 },
3903 {
3904 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
3905 "in": "query",
3906 "name": "fieldSelector",
3907 "schema": {
3908 "type": "string",
3909 "uniqueItems": true
3910 }
3911 },
3912 {
3913 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
3914 "in": "query",
3915 "name": "labelSelector",
3916 "schema": {
3917 "type": "string",
3918 "uniqueItems": true
3919 }
3920 },
3921 {
3922 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
3923 "in": "query",
3924 "name": "limit",
3925 "schema": {
3926 "type": "integer",
3927 "uniqueItems": true
3928 }
3929 },
3930 {
3931 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
3932 "in": "query",
3933 "name": "resourceVersion",
3934 "schema": {
3935 "type": "string",
3936 "uniqueItems": true
3937 }
3938 },
3939 {
3940 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
3941 "in": "query",
3942 "name": "resourceVersionMatch",
3943 "schema": {
3944 "type": "string",
3945 "uniqueItems": true
3946 }
3947 },
3948 {
3949 "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.",
3950 "in": "query",
3951 "name": "sendInitialEvents",
3952 "schema": {
3953 "type": "boolean",
3954 "uniqueItems": true
3955 }
3956 },
3957 {
3958 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
3959 "in": "query",
3960 "name": "timeoutSeconds",
3961 "schema": {
3962 "type": "integer",
3963 "uniqueItems": true
3964 }
3965 },
3966 {
3967 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
3968 "in": "query",
3969 "name": "watch",
3970 "schema": {
3971 "type": "boolean",
3972 "uniqueItems": true
3973 }
3974 }
3975 ],
3976 "responses": {
3977 "200": {
3978 "content": {
3979 "application/json": {
3980 "schema": {
3981 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
3982 }
3983 },
3984 "application/json;stream=watch": {
3985 "schema": {
3986 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
3987 }
3988 },
3989 "application/vnd.kubernetes.protobuf": {
3990 "schema": {
3991 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
3992 }
3993 },
3994 "application/vnd.kubernetes.protobuf;stream=watch": {
3995 "schema": {
3996 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
3997 }
3998 },
3999 "application/yaml": {
4000 "schema": {
4001 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
4002 }
4003 }
4004 },
4005 "description": "OK"
4006 },
4007 "401": {
4008 "description": "Unauthorized"
4009 }
4010 },
4011 "tags": [
4012 "resource_v1alpha2"
4013 ],
4014 "x-kubernetes-action": "list",
4015 "x-kubernetes-group-version-kind": {
4016 "group": "resource.k8s.io",
4017 "kind": "ResourceClaimParameters",
4018 "version": "v1alpha2"
4019 }
4020 },
4021 "parameters": [
4022 {
4023 "description": "object name and auth scope, such as for teams and projects",
4024 "in": "path",
4025 "name": "namespace",
4026 "required": true,
4027 "schema": {
4028 "type": "string",
4029 "uniqueItems": true
4030 }
4031 },
4032 {
4033 "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).",
4034 "in": "query",
4035 "name": "pretty",
4036 "schema": {
4037 "type": "string",
4038 "uniqueItems": true
4039 }
4040 }
4041 ],
4042 "post": {
4043 "description": "create ResourceClaimParameters",
4044 "operationId": "createResourceV1alpha2NamespacedResourceClaimParameters",
4045 "parameters": [
4046 {
4047 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4048 "in": "query",
4049 "name": "dryRun",
4050 "schema": {
4051 "type": "string",
4052 "uniqueItems": true
4053 }
4054 },
4055 {
4056 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
4057 "in": "query",
4058 "name": "fieldManager",
4059 "schema": {
4060 "type": "string",
4061 "uniqueItems": true
4062 }
4063 },
4064 {
4065 "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.",
4066 "in": "query",
4067 "name": "fieldValidation",
4068 "schema": {
4069 "type": "string",
4070 "uniqueItems": true
4071 }
4072 }
4073 ],
4074 "requestBody": {
4075 "content": {
4076 "*/*": {
4077 "schema": {
4078 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4079 }
4080 }
4081 },
4082 "required": true
4083 },
4084 "responses": {
4085 "200": {
4086 "content": {
4087 "application/json": {
4088 "schema": {
4089 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4090 }
4091 },
4092 "application/vnd.kubernetes.protobuf": {
4093 "schema": {
4094 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4095 }
4096 },
4097 "application/yaml": {
4098 "schema": {
4099 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4100 }
4101 }
4102 },
4103 "description": "OK"
4104 },
4105 "201": {
4106 "content": {
4107 "application/json": {
4108 "schema": {
4109 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4110 }
4111 },
4112 "application/vnd.kubernetes.protobuf": {
4113 "schema": {
4114 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4115 }
4116 },
4117 "application/yaml": {
4118 "schema": {
4119 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4120 }
4121 }
4122 },
4123 "description": "Created"
4124 },
4125 "202": {
4126 "content": {
4127 "application/json": {
4128 "schema": {
4129 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4130 }
4131 },
4132 "application/vnd.kubernetes.protobuf": {
4133 "schema": {
4134 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4135 }
4136 },
4137 "application/yaml": {
4138 "schema": {
4139 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4140 }
4141 }
4142 },
4143 "description": "Accepted"
4144 },
4145 "401": {
4146 "description": "Unauthorized"
4147 }
4148 },
4149 "tags": [
4150 "resource_v1alpha2"
4151 ],
4152 "x-kubernetes-action": "post",
4153 "x-kubernetes-group-version-kind": {
4154 "group": "resource.k8s.io",
4155 "kind": "ResourceClaimParameters",
4156 "version": "v1alpha2"
4157 }
4158 }
4159 },
4160 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimparameters/{name}": {
4161 "delete": {
4162 "description": "delete ResourceClaimParameters",
4163 "operationId": "deleteResourceV1alpha2NamespacedResourceClaimParameters",
4164 "parameters": [
4165 {
4166 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4167 "in": "query",
4168 "name": "dryRun",
4169 "schema": {
4170 "type": "string",
4171 "uniqueItems": true
4172 }
4173 },
4174 {
4175 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
4176 "in": "query",
4177 "name": "gracePeriodSeconds",
4178 "schema": {
4179 "type": "integer",
4180 "uniqueItems": true
4181 }
4182 },
4183 {
4184 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
4185 "in": "query",
4186 "name": "orphanDependents",
4187 "schema": {
4188 "type": "boolean",
4189 "uniqueItems": true
4190 }
4191 },
4192 {
4193 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
4194 "in": "query",
4195 "name": "propagationPolicy",
4196 "schema": {
4197 "type": "string",
4198 "uniqueItems": true
4199 }
4200 }
4201 ],
4202 "requestBody": {
4203 "content": {
4204 "*/*": {
4205 "schema": {
4206 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
4207 }
4208 }
4209 }
4210 },
4211 "responses": {
4212 "200": {
4213 "content": {
4214 "application/json": {
4215 "schema": {
4216 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4217 }
4218 },
4219 "application/vnd.kubernetes.protobuf": {
4220 "schema": {
4221 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4222 }
4223 },
4224 "application/yaml": {
4225 "schema": {
4226 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4227 }
4228 }
4229 },
4230 "description": "OK"
4231 },
4232 "202": {
4233 "content": {
4234 "application/json": {
4235 "schema": {
4236 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4237 }
4238 },
4239 "application/vnd.kubernetes.protobuf": {
4240 "schema": {
4241 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4242 }
4243 },
4244 "application/yaml": {
4245 "schema": {
4246 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4247 }
4248 }
4249 },
4250 "description": "Accepted"
4251 },
4252 "401": {
4253 "description": "Unauthorized"
4254 }
4255 },
4256 "tags": [
4257 "resource_v1alpha2"
4258 ],
4259 "x-kubernetes-action": "delete",
4260 "x-kubernetes-group-version-kind": {
4261 "group": "resource.k8s.io",
4262 "kind": "ResourceClaimParameters",
4263 "version": "v1alpha2"
4264 }
4265 },
4266 "get": {
4267 "description": "read the specified ResourceClaimParameters",
4268 "operationId": "readResourceV1alpha2NamespacedResourceClaimParameters",
4269 "responses": {
4270 "200": {
4271 "content": {
4272 "application/json": {
4273 "schema": {
4274 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4275 }
4276 },
4277 "application/vnd.kubernetes.protobuf": {
4278 "schema": {
4279 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4280 }
4281 },
4282 "application/yaml": {
4283 "schema": {
4284 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4285 }
4286 }
4287 },
4288 "description": "OK"
4289 },
4290 "401": {
4291 "description": "Unauthorized"
4292 }
4293 },
4294 "tags": [
4295 "resource_v1alpha2"
4296 ],
4297 "x-kubernetes-action": "get",
4298 "x-kubernetes-group-version-kind": {
4299 "group": "resource.k8s.io",
4300 "kind": "ResourceClaimParameters",
4301 "version": "v1alpha2"
4302 }
4303 },
4304 "parameters": [
4305 {
4306 "description": "name of the ResourceClaimParameters",
4307 "in": "path",
4308 "name": "name",
4309 "required": true,
4310 "schema": {
4311 "type": "string",
4312 "uniqueItems": true
4313 }
4314 },
4315 {
4316 "description": "object name and auth scope, such as for teams and projects",
4317 "in": "path",
4318 "name": "namespace",
4319 "required": true,
4320 "schema": {
4321 "type": "string",
4322 "uniqueItems": true
4323 }
4324 },
4325 {
4326 "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).",
4327 "in": "query",
4328 "name": "pretty",
4329 "schema": {
4330 "type": "string",
4331 "uniqueItems": true
4332 }
4333 }
4334 ],
4335 "patch": {
4336 "description": "partially update the specified ResourceClaimParameters",
4337 "operationId": "patchResourceV1alpha2NamespacedResourceClaimParameters",
4338 "parameters": [
4339 {
4340 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4341 "in": "query",
4342 "name": "dryRun",
4343 "schema": {
4344 "type": "string",
4345 "uniqueItems": true
4346 }
4347 },
4348 {
4349 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
4350 "in": "query",
4351 "name": "fieldManager",
4352 "schema": {
4353 "type": "string",
4354 "uniqueItems": true
4355 }
4356 },
4357 {
4358 "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.",
4359 "in": "query",
4360 "name": "fieldValidation",
4361 "schema": {
4362 "type": "string",
4363 "uniqueItems": true
4364 }
4365 },
4366 {
4367 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
4368 "in": "query",
4369 "name": "force",
4370 "schema": {
4371 "type": "boolean",
4372 "uniqueItems": true
4373 }
4374 }
4375 ],
4376 "requestBody": {
4377 "content": {
4378 "application/apply-patch+yaml": {
4379 "schema": {
4380 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
4381 }
4382 },
4383 "application/json-patch+json": {
4384 "schema": {
4385 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
4386 }
4387 },
4388 "application/merge-patch+json": {
4389 "schema": {
4390 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
4391 }
4392 },
4393 "application/strategic-merge-patch+json": {
4394 "schema": {
4395 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
4396 }
4397 }
4398 },
4399 "required": true
4400 },
4401 "responses": {
4402 "200": {
4403 "content": {
4404 "application/json": {
4405 "schema": {
4406 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4407 }
4408 },
4409 "application/vnd.kubernetes.protobuf": {
4410 "schema": {
4411 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4412 }
4413 },
4414 "application/yaml": {
4415 "schema": {
4416 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4417 }
4418 }
4419 },
4420 "description": "OK"
4421 },
4422 "201": {
4423 "content": {
4424 "application/json": {
4425 "schema": {
4426 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4427 }
4428 },
4429 "application/vnd.kubernetes.protobuf": {
4430 "schema": {
4431 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4432 }
4433 },
4434 "application/yaml": {
4435 "schema": {
4436 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4437 }
4438 }
4439 },
4440 "description": "Created"
4441 },
4442 "401": {
4443 "description": "Unauthorized"
4444 }
4445 },
4446 "tags": [
4447 "resource_v1alpha2"
4448 ],
4449 "x-kubernetes-action": "patch",
4450 "x-kubernetes-group-version-kind": {
4451 "group": "resource.k8s.io",
4452 "kind": "ResourceClaimParameters",
4453 "version": "v1alpha2"
4454 }
4455 },
4456 "put": {
4457 "description": "replace the specified ResourceClaimParameters",
4458 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimParameters",
4459 "parameters": [
4460 {
4461 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4462 "in": "query",
4463 "name": "dryRun",
4464 "schema": {
4465 "type": "string",
4466 "uniqueItems": true
4467 }
4468 },
4469 {
4470 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
4471 "in": "query",
4472 "name": "fieldManager",
4473 "schema": {
4474 "type": "string",
4475 "uniqueItems": true
4476 }
4477 },
4478 {
4479 "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.",
4480 "in": "query",
4481 "name": "fieldValidation",
4482 "schema": {
4483 "type": "string",
4484 "uniqueItems": true
4485 }
4486 }
4487 ],
4488 "requestBody": {
4489 "content": {
4490 "*/*": {
4491 "schema": {
4492 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4493 }
4494 }
4495 },
4496 "required": true
4497 },
4498 "responses": {
4499 "200": {
4500 "content": {
4501 "application/json": {
4502 "schema": {
4503 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4504 }
4505 },
4506 "application/vnd.kubernetes.protobuf": {
4507 "schema": {
4508 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4509 }
4510 },
4511 "application/yaml": {
4512 "schema": {
4513 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4514 }
4515 }
4516 },
4517 "description": "OK"
4518 },
4519 "201": {
4520 "content": {
4521 "application/json": {
4522 "schema": {
4523 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4524 }
4525 },
4526 "application/vnd.kubernetes.protobuf": {
4527 "schema": {
4528 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4529 }
4530 },
4531 "application/yaml": {
4532 "schema": {
4533 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters"
4534 }
4535 }
4536 },
4537 "description": "Created"
4538 },
4539 "401": {
4540 "description": "Unauthorized"
4541 }
4542 },
4543 "tags": [
4544 "resource_v1alpha2"
4545 ],
4546 "x-kubernetes-action": "put",
4547 "x-kubernetes-group-version-kind": {
4548 "group": "resource.k8s.io",
4549 "kind": "ResourceClaimParameters",
4550 "version": "v1alpha2"
4551 }
4552 }
4553 },
4554 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims": {
4555 "delete": {
4556 "description": "delete collection of ResourceClaim",
4557 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaim",
4558 "parameters": [
4559 {
4560 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
4561 "in": "query",
4562 "name": "continue",
4563 "schema": {
4564 "type": "string",
4565 "uniqueItems": true
4566 }
4567 },
4568 {
4569 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4570 "in": "query",
4571 "name": "dryRun",
4572 "schema": {
4573 "type": "string",
4574 "uniqueItems": true
4575 }
4576 },
4577 {
4578 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
4579 "in": "query",
4580 "name": "fieldSelector",
4581 "schema": {
4582 "type": "string",
4583 "uniqueItems": true
4584 }
4585 },
4586 {
4587 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
4588 "in": "query",
4589 "name": "gracePeriodSeconds",
4590 "schema": {
4591 "type": "integer",
4592 "uniqueItems": true
4593 }
4594 },
4595 {
4596 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
4597 "in": "query",
4598 "name": "labelSelector",
4599 "schema": {
4600 "type": "string",
4601 "uniqueItems": true
4602 }
4603 },
4604 {
4605 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
4606 "in": "query",
4607 "name": "limit",
4608 "schema": {
4609 "type": "integer",
4610 "uniqueItems": true
4611 }
4612 },
4613 {
4614 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
4615 "in": "query",
4616 "name": "orphanDependents",
4617 "schema": {
4618 "type": "boolean",
4619 "uniqueItems": true
4620 }
4621 },
4622 {
4623 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
4624 "in": "query",
4625 "name": "propagationPolicy",
4626 "schema": {
4627 "type": "string",
4628 "uniqueItems": true
4629 }
4630 },
4631 {
4632 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
4633 "in": "query",
4634 "name": "resourceVersion",
4635 "schema": {
4636 "type": "string",
4637 "uniqueItems": true
4638 }
4639 },
4640 {
4641 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
4642 "in": "query",
4643 "name": "resourceVersionMatch",
4644 "schema": {
4645 "type": "string",
4646 "uniqueItems": true
4647 }
4648 },
4649 {
4650 "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.",
4651 "in": "query",
4652 "name": "sendInitialEvents",
4653 "schema": {
4654 "type": "boolean",
4655 "uniqueItems": true
4656 }
4657 },
4658 {
4659 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
4660 "in": "query",
4661 "name": "timeoutSeconds",
4662 "schema": {
4663 "type": "integer",
4664 "uniqueItems": true
4665 }
4666 }
4667 ],
4668 "requestBody": {
4669 "content": {
4670 "*/*": {
4671 "schema": {
4672 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
4673 }
4674 }
4675 }
4676 },
4677 "responses": {
4678 "200": {
4679 "content": {
4680 "application/json": {
4681 "schema": {
4682 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
4683 }
4684 },
4685 "application/vnd.kubernetes.protobuf": {
4686 "schema": {
4687 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
4688 }
4689 },
4690 "application/yaml": {
4691 "schema": {
4692 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
4693 }
4694 }
4695 },
4696 "description": "OK"
4697 },
4698 "401": {
4699 "description": "Unauthorized"
4700 }
4701 },
4702 "tags": [
4703 "resource_v1alpha2"
4704 ],
4705 "x-kubernetes-action": "deletecollection",
4706 "x-kubernetes-group-version-kind": {
4707 "group": "resource.k8s.io",
4708 "kind": "ResourceClaim",
4709 "version": "v1alpha2"
4710 }
4711 },
4712 "get": {
4713 "description": "list or watch objects of kind ResourceClaim",
4714 "operationId": "listResourceV1alpha2NamespacedResourceClaim",
4715 "parameters": [
4716 {
4717 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
4718 "in": "query",
4719 "name": "allowWatchBookmarks",
4720 "schema": {
4721 "type": "boolean",
4722 "uniqueItems": true
4723 }
4724 },
4725 {
4726 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
4727 "in": "query",
4728 "name": "continue",
4729 "schema": {
4730 "type": "string",
4731 "uniqueItems": true
4732 }
4733 },
4734 {
4735 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
4736 "in": "query",
4737 "name": "fieldSelector",
4738 "schema": {
4739 "type": "string",
4740 "uniqueItems": true
4741 }
4742 },
4743 {
4744 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
4745 "in": "query",
4746 "name": "labelSelector",
4747 "schema": {
4748 "type": "string",
4749 "uniqueItems": true
4750 }
4751 },
4752 {
4753 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
4754 "in": "query",
4755 "name": "limit",
4756 "schema": {
4757 "type": "integer",
4758 "uniqueItems": true
4759 }
4760 },
4761 {
4762 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
4763 "in": "query",
4764 "name": "resourceVersion",
4765 "schema": {
4766 "type": "string",
4767 "uniqueItems": true
4768 }
4769 },
4770 {
4771 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
4772 "in": "query",
4773 "name": "resourceVersionMatch",
4774 "schema": {
4775 "type": "string",
4776 "uniqueItems": true
4777 }
4778 },
4779 {
4780 "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.",
4781 "in": "query",
4782 "name": "sendInitialEvents",
4783 "schema": {
4784 "type": "boolean",
4785 "uniqueItems": true
4786 }
4787 },
4788 {
4789 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
4790 "in": "query",
4791 "name": "timeoutSeconds",
4792 "schema": {
4793 "type": "integer",
4794 "uniqueItems": true
4795 }
4796 },
4797 {
4798 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
4799 "in": "query",
4800 "name": "watch",
4801 "schema": {
4802 "type": "boolean",
4803 "uniqueItems": true
4804 }
4805 }
4806 ],
4807 "responses": {
4808 "200": {
4809 "content": {
4810 "application/json": {
4811 "schema": {
4812 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
4813 }
4814 },
4815 "application/json;stream=watch": {
4816 "schema": {
4817 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
4818 }
4819 },
4820 "application/vnd.kubernetes.protobuf": {
4821 "schema": {
4822 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
4823 }
4824 },
4825 "application/vnd.kubernetes.protobuf;stream=watch": {
4826 "schema": {
4827 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
4828 }
4829 },
4830 "application/yaml": {
4831 "schema": {
4832 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
4833 }
4834 }
4835 },
4836 "description": "OK"
4837 },
4838 "401": {
4839 "description": "Unauthorized"
4840 }
4841 },
4842 "tags": [
4843 "resource_v1alpha2"
4844 ],
4845 "x-kubernetes-action": "list",
4846 "x-kubernetes-group-version-kind": {
4847 "group": "resource.k8s.io",
4848 "kind": "ResourceClaim",
4849 "version": "v1alpha2"
4850 }
4851 },
4852 "parameters": [
4853 {
4854 "description": "object name and auth scope, such as for teams and projects",
4855 "in": "path",
4856 "name": "namespace",
4857 "required": true,
4858 "schema": {
4859 "type": "string",
4860 "uniqueItems": true
4861 }
4862 },
4863 {
4864 "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).",
4865 "in": "query",
4866 "name": "pretty",
4867 "schema": {
4868 "type": "string",
4869 "uniqueItems": true
4870 }
4871 }
4872 ],
4873 "post": {
4874 "description": "create a ResourceClaim",
4875 "operationId": "createResourceV1alpha2NamespacedResourceClaim",
4876 "parameters": [
4877 {
4878 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4879 "in": "query",
4880 "name": "dryRun",
4881 "schema": {
4882 "type": "string",
4883 "uniqueItems": true
4884 }
4885 },
4886 {
4887 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
4888 "in": "query",
4889 "name": "fieldManager",
4890 "schema": {
4891 "type": "string",
4892 "uniqueItems": true
4893 }
4894 },
4895 {
4896 "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.",
4897 "in": "query",
4898 "name": "fieldValidation",
4899 "schema": {
4900 "type": "string",
4901 "uniqueItems": true
4902 }
4903 }
4904 ],
4905 "requestBody": {
4906 "content": {
4907 "*/*": {
4908 "schema": {
4909 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4910 }
4911 }
4912 },
4913 "required": true
4914 },
4915 "responses": {
4916 "200": {
4917 "content": {
4918 "application/json": {
4919 "schema": {
4920 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4921 }
4922 },
4923 "application/vnd.kubernetes.protobuf": {
4924 "schema": {
4925 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4926 }
4927 },
4928 "application/yaml": {
4929 "schema": {
4930 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4931 }
4932 }
4933 },
4934 "description": "OK"
4935 },
4936 "201": {
4937 "content": {
4938 "application/json": {
4939 "schema": {
4940 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4941 }
4942 },
4943 "application/vnd.kubernetes.protobuf": {
4944 "schema": {
4945 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4946 }
4947 },
4948 "application/yaml": {
4949 "schema": {
4950 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4951 }
4952 }
4953 },
4954 "description": "Created"
4955 },
4956 "202": {
4957 "content": {
4958 "application/json": {
4959 "schema": {
4960 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4961 }
4962 },
4963 "application/vnd.kubernetes.protobuf": {
4964 "schema": {
4965 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4966 }
4967 },
4968 "application/yaml": {
4969 "schema": {
4970 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
4971 }
4972 }
4973 },
4974 "description": "Accepted"
4975 },
4976 "401": {
4977 "description": "Unauthorized"
4978 }
4979 },
4980 "tags": [
4981 "resource_v1alpha2"
4982 ],
4983 "x-kubernetes-action": "post",
4984 "x-kubernetes-group-version-kind": {
4985 "group": "resource.k8s.io",
4986 "kind": "ResourceClaim",
4987 "version": "v1alpha2"
4988 }
4989 }
4990 },
4991 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}": {
4992 "delete": {
4993 "description": "delete a ResourceClaim",
4994 "operationId": "deleteResourceV1alpha2NamespacedResourceClaim",
4995 "parameters": [
4996 {
4997 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
4998 "in": "query",
4999 "name": "dryRun",
5000 "schema": {
5001 "type": "string",
5002 "uniqueItems": true
5003 }
5004 },
5005 {
5006 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
5007 "in": "query",
5008 "name": "gracePeriodSeconds",
5009 "schema": {
5010 "type": "integer",
5011 "uniqueItems": true
5012 }
5013 },
5014 {
5015 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
5016 "in": "query",
5017 "name": "orphanDependents",
5018 "schema": {
5019 "type": "boolean",
5020 "uniqueItems": true
5021 }
5022 },
5023 {
5024 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
5025 "in": "query",
5026 "name": "propagationPolicy",
5027 "schema": {
5028 "type": "string",
5029 "uniqueItems": true
5030 }
5031 }
5032 ],
5033 "requestBody": {
5034 "content": {
5035 "*/*": {
5036 "schema": {
5037 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
5038 }
5039 }
5040 }
5041 },
5042 "responses": {
5043 "200": {
5044 "content": {
5045 "application/json": {
5046 "schema": {
5047 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5048 }
5049 },
5050 "application/vnd.kubernetes.protobuf": {
5051 "schema": {
5052 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5053 }
5054 },
5055 "application/yaml": {
5056 "schema": {
5057 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5058 }
5059 }
5060 },
5061 "description": "OK"
5062 },
5063 "202": {
5064 "content": {
5065 "application/json": {
5066 "schema": {
5067 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5068 }
5069 },
5070 "application/vnd.kubernetes.protobuf": {
5071 "schema": {
5072 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5073 }
5074 },
5075 "application/yaml": {
5076 "schema": {
5077 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5078 }
5079 }
5080 },
5081 "description": "Accepted"
5082 },
5083 "401": {
5084 "description": "Unauthorized"
5085 }
5086 },
5087 "tags": [
5088 "resource_v1alpha2"
5089 ],
5090 "x-kubernetes-action": "delete",
5091 "x-kubernetes-group-version-kind": {
5092 "group": "resource.k8s.io",
5093 "kind": "ResourceClaim",
5094 "version": "v1alpha2"
5095 }
5096 },
5097 "get": {
5098 "description": "read the specified ResourceClaim",
5099 "operationId": "readResourceV1alpha2NamespacedResourceClaim",
5100 "responses": {
5101 "200": {
5102 "content": {
5103 "application/json": {
5104 "schema": {
5105 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5106 }
5107 },
5108 "application/vnd.kubernetes.protobuf": {
5109 "schema": {
5110 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5111 }
5112 },
5113 "application/yaml": {
5114 "schema": {
5115 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5116 }
5117 }
5118 },
5119 "description": "OK"
5120 },
5121 "401": {
5122 "description": "Unauthorized"
5123 }
5124 },
5125 "tags": [
5126 "resource_v1alpha2"
5127 ],
5128 "x-kubernetes-action": "get",
5129 "x-kubernetes-group-version-kind": {
5130 "group": "resource.k8s.io",
5131 "kind": "ResourceClaim",
5132 "version": "v1alpha2"
5133 }
5134 },
5135 "parameters": [
5136 {
5137 "description": "name of the ResourceClaim",
5138 "in": "path",
5139 "name": "name",
5140 "required": true,
5141 "schema": {
5142 "type": "string",
5143 "uniqueItems": true
5144 }
5145 },
5146 {
5147 "description": "object name and auth scope, such as for teams and projects",
5148 "in": "path",
5149 "name": "namespace",
5150 "required": true,
5151 "schema": {
5152 "type": "string",
5153 "uniqueItems": true
5154 }
5155 },
5156 {
5157 "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).",
5158 "in": "query",
5159 "name": "pretty",
5160 "schema": {
5161 "type": "string",
5162 "uniqueItems": true
5163 }
5164 }
5165 ],
5166 "patch": {
5167 "description": "partially update the specified ResourceClaim",
5168 "operationId": "patchResourceV1alpha2NamespacedResourceClaim",
5169 "parameters": [
5170 {
5171 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5172 "in": "query",
5173 "name": "dryRun",
5174 "schema": {
5175 "type": "string",
5176 "uniqueItems": true
5177 }
5178 },
5179 {
5180 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
5181 "in": "query",
5182 "name": "fieldManager",
5183 "schema": {
5184 "type": "string",
5185 "uniqueItems": true
5186 }
5187 },
5188 {
5189 "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.",
5190 "in": "query",
5191 "name": "fieldValidation",
5192 "schema": {
5193 "type": "string",
5194 "uniqueItems": true
5195 }
5196 },
5197 {
5198 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
5199 "in": "query",
5200 "name": "force",
5201 "schema": {
5202 "type": "boolean",
5203 "uniqueItems": true
5204 }
5205 }
5206 ],
5207 "requestBody": {
5208 "content": {
5209 "application/apply-patch+yaml": {
5210 "schema": {
5211 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5212 }
5213 },
5214 "application/json-patch+json": {
5215 "schema": {
5216 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5217 }
5218 },
5219 "application/merge-patch+json": {
5220 "schema": {
5221 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5222 }
5223 },
5224 "application/strategic-merge-patch+json": {
5225 "schema": {
5226 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5227 }
5228 }
5229 },
5230 "required": true
5231 },
5232 "responses": {
5233 "200": {
5234 "content": {
5235 "application/json": {
5236 "schema": {
5237 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5238 }
5239 },
5240 "application/vnd.kubernetes.protobuf": {
5241 "schema": {
5242 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5243 }
5244 },
5245 "application/yaml": {
5246 "schema": {
5247 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5248 }
5249 }
5250 },
5251 "description": "OK"
5252 },
5253 "201": {
5254 "content": {
5255 "application/json": {
5256 "schema": {
5257 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5258 }
5259 },
5260 "application/vnd.kubernetes.protobuf": {
5261 "schema": {
5262 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5263 }
5264 },
5265 "application/yaml": {
5266 "schema": {
5267 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5268 }
5269 }
5270 },
5271 "description": "Created"
5272 },
5273 "401": {
5274 "description": "Unauthorized"
5275 }
5276 },
5277 "tags": [
5278 "resource_v1alpha2"
5279 ],
5280 "x-kubernetes-action": "patch",
5281 "x-kubernetes-group-version-kind": {
5282 "group": "resource.k8s.io",
5283 "kind": "ResourceClaim",
5284 "version": "v1alpha2"
5285 }
5286 },
5287 "put": {
5288 "description": "replace the specified ResourceClaim",
5289 "operationId": "replaceResourceV1alpha2NamespacedResourceClaim",
5290 "parameters": [
5291 {
5292 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5293 "in": "query",
5294 "name": "dryRun",
5295 "schema": {
5296 "type": "string",
5297 "uniqueItems": true
5298 }
5299 },
5300 {
5301 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
5302 "in": "query",
5303 "name": "fieldManager",
5304 "schema": {
5305 "type": "string",
5306 "uniqueItems": true
5307 }
5308 },
5309 {
5310 "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.",
5311 "in": "query",
5312 "name": "fieldValidation",
5313 "schema": {
5314 "type": "string",
5315 "uniqueItems": true
5316 }
5317 }
5318 ],
5319 "requestBody": {
5320 "content": {
5321 "*/*": {
5322 "schema": {
5323 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5324 }
5325 }
5326 },
5327 "required": true
5328 },
5329 "responses": {
5330 "200": {
5331 "content": {
5332 "application/json": {
5333 "schema": {
5334 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5335 }
5336 },
5337 "application/vnd.kubernetes.protobuf": {
5338 "schema": {
5339 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5340 }
5341 },
5342 "application/yaml": {
5343 "schema": {
5344 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5345 }
5346 }
5347 },
5348 "description": "OK"
5349 },
5350 "201": {
5351 "content": {
5352 "application/json": {
5353 "schema": {
5354 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5355 }
5356 },
5357 "application/vnd.kubernetes.protobuf": {
5358 "schema": {
5359 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5360 }
5361 },
5362 "application/yaml": {
5363 "schema": {
5364 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5365 }
5366 }
5367 },
5368 "description": "Created"
5369 },
5370 "401": {
5371 "description": "Unauthorized"
5372 }
5373 },
5374 "tags": [
5375 "resource_v1alpha2"
5376 ],
5377 "x-kubernetes-action": "put",
5378 "x-kubernetes-group-version-kind": {
5379 "group": "resource.k8s.io",
5380 "kind": "ResourceClaim",
5381 "version": "v1alpha2"
5382 }
5383 }
5384 },
5385 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}/status": {
5386 "get": {
5387 "description": "read status of the specified ResourceClaim",
5388 "operationId": "readResourceV1alpha2NamespacedResourceClaimStatus",
5389 "responses": {
5390 "200": {
5391 "content": {
5392 "application/json": {
5393 "schema": {
5394 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5395 }
5396 },
5397 "application/vnd.kubernetes.protobuf": {
5398 "schema": {
5399 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5400 }
5401 },
5402 "application/yaml": {
5403 "schema": {
5404 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5405 }
5406 }
5407 },
5408 "description": "OK"
5409 },
5410 "401": {
5411 "description": "Unauthorized"
5412 }
5413 },
5414 "tags": [
5415 "resource_v1alpha2"
5416 ],
5417 "x-kubernetes-action": "get",
5418 "x-kubernetes-group-version-kind": {
5419 "group": "resource.k8s.io",
5420 "kind": "ResourceClaim",
5421 "version": "v1alpha2"
5422 }
5423 },
5424 "parameters": [
5425 {
5426 "description": "name of the ResourceClaim",
5427 "in": "path",
5428 "name": "name",
5429 "required": true,
5430 "schema": {
5431 "type": "string",
5432 "uniqueItems": true
5433 }
5434 },
5435 {
5436 "description": "object name and auth scope, such as for teams and projects",
5437 "in": "path",
5438 "name": "namespace",
5439 "required": true,
5440 "schema": {
5441 "type": "string",
5442 "uniqueItems": true
5443 }
5444 },
5445 {
5446 "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).",
5447 "in": "query",
5448 "name": "pretty",
5449 "schema": {
5450 "type": "string",
5451 "uniqueItems": true
5452 }
5453 }
5454 ],
5455 "patch": {
5456 "description": "partially update status of the specified ResourceClaim",
5457 "operationId": "patchResourceV1alpha2NamespacedResourceClaimStatus",
5458 "parameters": [
5459 {
5460 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5461 "in": "query",
5462 "name": "dryRun",
5463 "schema": {
5464 "type": "string",
5465 "uniqueItems": true
5466 }
5467 },
5468 {
5469 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
5470 "in": "query",
5471 "name": "fieldManager",
5472 "schema": {
5473 "type": "string",
5474 "uniqueItems": true
5475 }
5476 },
5477 {
5478 "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.",
5479 "in": "query",
5480 "name": "fieldValidation",
5481 "schema": {
5482 "type": "string",
5483 "uniqueItems": true
5484 }
5485 },
5486 {
5487 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
5488 "in": "query",
5489 "name": "force",
5490 "schema": {
5491 "type": "boolean",
5492 "uniqueItems": true
5493 }
5494 }
5495 ],
5496 "requestBody": {
5497 "content": {
5498 "application/apply-patch+yaml": {
5499 "schema": {
5500 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5501 }
5502 },
5503 "application/json-patch+json": {
5504 "schema": {
5505 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5506 }
5507 },
5508 "application/merge-patch+json": {
5509 "schema": {
5510 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5511 }
5512 },
5513 "application/strategic-merge-patch+json": {
5514 "schema": {
5515 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
5516 }
5517 }
5518 },
5519 "required": true
5520 },
5521 "responses": {
5522 "200": {
5523 "content": {
5524 "application/json": {
5525 "schema": {
5526 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5527 }
5528 },
5529 "application/vnd.kubernetes.protobuf": {
5530 "schema": {
5531 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5532 }
5533 },
5534 "application/yaml": {
5535 "schema": {
5536 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5537 }
5538 }
5539 },
5540 "description": "OK"
5541 },
5542 "201": {
5543 "content": {
5544 "application/json": {
5545 "schema": {
5546 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5547 }
5548 },
5549 "application/vnd.kubernetes.protobuf": {
5550 "schema": {
5551 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5552 }
5553 },
5554 "application/yaml": {
5555 "schema": {
5556 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5557 }
5558 }
5559 },
5560 "description": "Created"
5561 },
5562 "401": {
5563 "description": "Unauthorized"
5564 }
5565 },
5566 "tags": [
5567 "resource_v1alpha2"
5568 ],
5569 "x-kubernetes-action": "patch",
5570 "x-kubernetes-group-version-kind": {
5571 "group": "resource.k8s.io",
5572 "kind": "ResourceClaim",
5573 "version": "v1alpha2"
5574 }
5575 },
5576 "put": {
5577 "description": "replace status of the specified ResourceClaim",
5578 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimStatus",
5579 "parameters": [
5580 {
5581 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5582 "in": "query",
5583 "name": "dryRun",
5584 "schema": {
5585 "type": "string",
5586 "uniqueItems": true
5587 }
5588 },
5589 {
5590 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
5591 "in": "query",
5592 "name": "fieldManager",
5593 "schema": {
5594 "type": "string",
5595 "uniqueItems": true
5596 }
5597 },
5598 {
5599 "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.",
5600 "in": "query",
5601 "name": "fieldValidation",
5602 "schema": {
5603 "type": "string",
5604 "uniqueItems": true
5605 }
5606 }
5607 ],
5608 "requestBody": {
5609 "content": {
5610 "*/*": {
5611 "schema": {
5612 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5613 }
5614 }
5615 },
5616 "required": true
5617 },
5618 "responses": {
5619 "200": {
5620 "content": {
5621 "application/json": {
5622 "schema": {
5623 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5624 }
5625 },
5626 "application/vnd.kubernetes.protobuf": {
5627 "schema": {
5628 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5629 }
5630 },
5631 "application/yaml": {
5632 "schema": {
5633 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5634 }
5635 }
5636 },
5637 "description": "OK"
5638 },
5639 "201": {
5640 "content": {
5641 "application/json": {
5642 "schema": {
5643 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5644 }
5645 },
5646 "application/vnd.kubernetes.protobuf": {
5647 "schema": {
5648 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5649 }
5650 },
5651 "application/yaml": {
5652 "schema": {
5653 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim"
5654 }
5655 }
5656 },
5657 "description": "Created"
5658 },
5659 "401": {
5660 "description": "Unauthorized"
5661 }
5662 },
5663 "tags": [
5664 "resource_v1alpha2"
5665 ],
5666 "x-kubernetes-action": "put",
5667 "x-kubernetes-group-version-kind": {
5668 "group": "resource.k8s.io",
5669 "kind": "ResourceClaim",
5670 "version": "v1alpha2"
5671 }
5672 }
5673 },
5674 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates": {
5675 "delete": {
5676 "description": "delete collection of ResourceClaimTemplate",
5677 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate",
5678 "parameters": [
5679 {
5680 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
5681 "in": "query",
5682 "name": "continue",
5683 "schema": {
5684 "type": "string",
5685 "uniqueItems": true
5686 }
5687 },
5688 {
5689 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5690 "in": "query",
5691 "name": "dryRun",
5692 "schema": {
5693 "type": "string",
5694 "uniqueItems": true
5695 }
5696 },
5697 {
5698 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
5699 "in": "query",
5700 "name": "fieldSelector",
5701 "schema": {
5702 "type": "string",
5703 "uniqueItems": true
5704 }
5705 },
5706 {
5707 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
5708 "in": "query",
5709 "name": "gracePeriodSeconds",
5710 "schema": {
5711 "type": "integer",
5712 "uniqueItems": true
5713 }
5714 },
5715 {
5716 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
5717 "in": "query",
5718 "name": "labelSelector",
5719 "schema": {
5720 "type": "string",
5721 "uniqueItems": true
5722 }
5723 },
5724 {
5725 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
5726 "in": "query",
5727 "name": "limit",
5728 "schema": {
5729 "type": "integer",
5730 "uniqueItems": true
5731 }
5732 },
5733 {
5734 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
5735 "in": "query",
5736 "name": "orphanDependents",
5737 "schema": {
5738 "type": "boolean",
5739 "uniqueItems": true
5740 }
5741 },
5742 {
5743 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
5744 "in": "query",
5745 "name": "propagationPolicy",
5746 "schema": {
5747 "type": "string",
5748 "uniqueItems": true
5749 }
5750 },
5751 {
5752 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
5753 "in": "query",
5754 "name": "resourceVersion",
5755 "schema": {
5756 "type": "string",
5757 "uniqueItems": true
5758 }
5759 },
5760 {
5761 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
5762 "in": "query",
5763 "name": "resourceVersionMatch",
5764 "schema": {
5765 "type": "string",
5766 "uniqueItems": true
5767 }
5768 },
5769 {
5770 "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.",
5771 "in": "query",
5772 "name": "sendInitialEvents",
5773 "schema": {
5774 "type": "boolean",
5775 "uniqueItems": true
5776 }
5777 },
5778 {
5779 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
5780 "in": "query",
5781 "name": "timeoutSeconds",
5782 "schema": {
5783 "type": "integer",
5784 "uniqueItems": true
5785 }
5786 }
5787 ],
5788 "requestBody": {
5789 "content": {
5790 "*/*": {
5791 "schema": {
5792 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
5793 }
5794 }
5795 }
5796 },
5797 "responses": {
5798 "200": {
5799 "content": {
5800 "application/json": {
5801 "schema": {
5802 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
5803 }
5804 },
5805 "application/vnd.kubernetes.protobuf": {
5806 "schema": {
5807 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
5808 }
5809 },
5810 "application/yaml": {
5811 "schema": {
5812 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
5813 }
5814 }
5815 },
5816 "description": "OK"
5817 },
5818 "401": {
5819 "description": "Unauthorized"
5820 }
5821 },
5822 "tags": [
5823 "resource_v1alpha2"
5824 ],
5825 "x-kubernetes-action": "deletecollection",
5826 "x-kubernetes-group-version-kind": {
5827 "group": "resource.k8s.io",
5828 "kind": "ResourceClaimTemplate",
5829 "version": "v1alpha2"
5830 }
5831 },
5832 "get": {
5833 "description": "list or watch objects of kind ResourceClaimTemplate",
5834 "operationId": "listResourceV1alpha2NamespacedResourceClaimTemplate",
5835 "parameters": [
5836 {
5837 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
5838 "in": "query",
5839 "name": "allowWatchBookmarks",
5840 "schema": {
5841 "type": "boolean",
5842 "uniqueItems": true
5843 }
5844 },
5845 {
5846 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
5847 "in": "query",
5848 "name": "continue",
5849 "schema": {
5850 "type": "string",
5851 "uniqueItems": true
5852 }
5853 },
5854 {
5855 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
5856 "in": "query",
5857 "name": "fieldSelector",
5858 "schema": {
5859 "type": "string",
5860 "uniqueItems": true
5861 }
5862 },
5863 {
5864 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
5865 "in": "query",
5866 "name": "labelSelector",
5867 "schema": {
5868 "type": "string",
5869 "uniqueItems": true
5870 }
5871 },
5872 {
5873 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
5874 "in": "query",
5875 "name": "limit",
5876 "schema": {
5877 "type": "integer",
5878 "uniqueItems": true
5879 }
5880 },
5881 {
5882 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
5883 "in": "query",
5884 "name": "resourceVersion",
5885 "schema": {
5886 "type": "string",
5887 "uniqueItems": true
5888 }
5889 },
5890 {
5891 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
5892 "in": "query",
5893 "name": "resourceVersionMatch",
5894 "schema": {
5895 "type": "string",
5896 "uniqueItems": true
5897 }
5898 },
5899 {
5900 "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.",
5901 "in": "query",
5902 "name": "sendInitialEvents",
5903 "schema": {
5904 "type": "boolean",
5905 "uniqueItems": true
5906 }
5907 },
5908 {
5909 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
5910 "in": "query",
5911 "name": "timeoutSeconds",
5912 "schema": {
5913 "type": "integer",
5914 "uniqueItems": true
5915 }
5916 },
5917 {
5918 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
5919 "in": "query",
5920 "name": "watch",
5921 "schema": {
5922 "type": "boolean",
5923 "uniqueItems": true
5924 }
5925 }
5926 ],
5927 "responses": {
5928 "200": {
5929 "content": {
5930 "application/json": {
5931 "schema": {
5932 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
5933 }
5934 },
5935 "application/json;stream=watch": {
5936 "schema": {
5937 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
5938 }
5939 },
5940 "application/vnd.kubernetes.protobuf": {
5941 "schema": {
5942 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
5943 }
5944 },
5945 "application/vnd.kubernetes.protobuf;stream=watch": {
5946 "schema": {
5947 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
5948 }
5949 },
5950 "application/yaml": {
5951 "schema": {
5952 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
5953 }
5954 }
5955 },
5956 "description": "OK"
5957 },
5958 "401": {
5959 "description": "Unauthorized"
5960 }
5961 },
5962 "tags": [
5963 "resource_v1alpha2"
5964 ],
5965 "x-kubernetes-action": "list",
5966 "x-kubernetes-group-version-kind": {
5967 "group": "resource.k8s.io",
5968 "kind": "ResourceClaimTemplate",
5969 "version": "v1alpha2"
5970 }
5971 },
5972 "parameters": [
5973 {
5974 "description": "object name and auth scope, such as for teams and projects",
5975 "in": "path",
5976 "name": "namespace",
5977 "required": true,
5978 "schema": {
5979 "type": "string",
5980 "uniqueItems": true
5981 }
5982 },
5983 {
5984 "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).",
5985 "in": "query",
5986 "name": "pretty",
5987 "schema": {
5988 "type": "string",
5989 "uniqueItems": true
5990 }
5991 }
5992 ],
5993 "post": {
5994 "description": "create a ResourceClaimTemplate",
5995 "operationId": "createResourceV1alpha2NamespacedResourceClaimTemplate",
5996 "parameters": [
5997 {
5998 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
5999 "in": "query",
6000 "name": "dryRun",
6001 "schema": {
6002 "type": "string",
6003 "uniqueItems": true
6004 }
6005 },
6006 {
6007 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
6008 "in": "query",
6009 "name": "fieldManager",
6010 "schema": {
6011 "type": "string",
6012 "uniqueItems": true
6013 }
6014 },
6015 {
6016 "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.",
6017 "in": "query",
6018 "name": "fieldValidation",
6019 "schema": {
6020 "type": "string",
6021 "uniqueItems": true
6022 }
6023 }
6024 ],
6025 "requestBody": {
6026 "content": {
6027 "*/*": {
6028 "schema": {
6029 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6030 }
6031 }
6032 },
6033 "required": true
6034 },
6035 "responses": {
6036 "200": {
6037 "content": {
6038 "application/json": {
6039 "schema": {
6040 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6041 }
6042 },
6043 "application/vnd.kubernetes.protobuf": {
6044 "schema": {
6045 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6046 }
6047 },
6048 "application/yaml": {
6049 "schema": {
6050 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6051 }
6052 }
6053 },
6054 "description": "OK"
6055 },
6056 "201": {
6057 "content": {
6058 "application/json": {
6059 "schema": {
6060 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6061 }
6062 },
6063 "application/vnd.kubernetes.protobuf": {
6064 "schema": {
6065 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6066 }
6067 },
6068 "application/yaml": {
6069 "schema": {
6070 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6071 }
6072 }
6073 },
6074 "description": "Created"
6075 },
6076 "202": {
6077 "content": {
6078 "application/json": {
6079 "schema": {
6080 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6081 }
6082 },
6083 "application/vnd.kubernetes.protobuf": {
6084 "schema": {
6085 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6086 }
6087 },
6088 "application/yaml": {
6089 "schema": {
6090 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6091 }
6092 }
6093 },
6094 "description": "Accepted"
6095 },
6096 "401": {
6097 "description": "Unauthorized"
6098 }
6099 },
6100 "tags": [
6101 "resource_v1alpha2"
6102 ],
6103 "x-kubernetes-action": "post",
6104 "x-kubernetes-group-version-kind": {
6105 "group": "resource.k8s.io",
6106 "kind": "ResourceClaimTemplate",
6107 "version": "v1alpha2"
6108 }
6109 }
6110 },
6111 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates/{name}": {
6112 "delete": {
6113 "description": "delete a ResourceClaimTemplate",
6114 "operationId": "deleteResourceV1alpha2NamespacedResourceClaimTemplate",
6115 "parameters": [
6116 {
6117 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6118 "in": "query",
6119 "name": "dryRun",
6120 "schema": {
6121 "type": "string",
6122 "uniqueItems": true
6123 }
6124 },
6125 {
6126 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
6127 "in": "query",
6128 "name": "gracePeriodSeconds",
6129 "schema": {
6130 "type": "integer",
6131 "uniqueItems": true
6132 }
6133 },
6134 {
6135 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
6136 "in": "query",
6137 "name": "orphanDependents",
6138 "schema": {
6139 "type": "boolean",
6140 "uniqueItems": true
6141 }
6142 },
6143 {
6144 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
6145 "in": "query",
6146 "name": "propagationPolicy",
6147 "schema": {
6148 "type": "string",
6149 "uniqueItems": true
6150 }
6151 }
6152 ],
6153 "requestBody": {
6154 "content": {
6155 "*/*": {
6156 "schema": {
6157 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
6158 }
6159 }
6160 }
6161 },
6162 "responses": {
6163 "200": {
6164 "content": {
6165 "application/json": {
6166 "schema": {
6167 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6168 }
6169 },
6170 "application/vnd.kubernetes.protobuf": {
6171 "schema": {
6172 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6173 }
6174 },
6175 "application/yaml": {
6176 "schema": {
6177 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6178 }
6179 }
6180 },
6181 "description": "OK"
6182 },
6183 "202": {
6184 "content": {
6185 "application/json": {
6186 "schema": {
6187 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6188 }
6189 },
6190 "application/vnd.kubernetes.protobuf": {
6191 "schema": {
6192 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6193 }
6194 },
6195 "application/yaml": {
6196 "schema": {
6197 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6198 }
6199 }
6200 },
6201 "description": "Accepted"
6202 },
6203 "401": {
6204 "description": "Unauthorized"
6205 }
6206 },
6207 "tags": [
6208 "resource_v1alpha2"
6209 ],
6210 "x-kubernetes-action": "delete",
6211 "x-kubernetes-group-version-kind": {
6212 "group": "resource.k8s.io",
6213 "kind": "ResourceClaimTemplate",
6214 "version": "v1alpha2"
6215 }
6216 },
6217 "get": {
6218 "description": "read the specified ResourceClaimTemplate",
6219 "operationId": "readResourceV1alpha2NamespacedResourceClaimTemplate",
6220 "responses": {
6221 "200": {
6222 "content": {
6223 "application/json": {
6224 "schema": {
6225 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6226 }
6227 },
6228 "application/vnd.kubernetes.protobuf": {
6229 "schema": {
6230 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6231 }
6232 },
6233 "application/yaml": {
6234 "schema": {
6235 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6236 }
6237 }
6238 },
6239 "description": "OK"
6240 },
6241 "401": {
6242 "description": "Unauthorized"
6243 }
6244 },
6245 "tags": [
6246 "resource_v1alpha2"
6247 ],
6248 "x-kubernetes-action": "get",
6249 "x-kubernetes-group-version-kind": {
6250 "group": "resource.k8s.io",
6251 "kind": "ResourceClaimTemplate",
6252 "version": "v1alpha2"
6253 }
6254 },
6255 "parameters": [
6256 {
6257 "description": "name of the ResourceClaimTemplate",
6258 "in": "path",
6259 "name": "name",
6260 "required": true,
6261 "schema": {
6262 "type": "string",
6263 "uniqueItems": true
6264 }
6265 },
6266 {
6267 "description": "object name and auth scope, such as for teams and projects",
6268 "in": "path",
6269 "name": "namespace",
6270 "required": true,
6271 "schema": {
6272 "type": "string",
6273 "uniqueItems": true
6274 }
6275 },
6276 {
6277 "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).",
6278 "in": "query",
6279 "name": "pretty",
6280 "schema": {
6281 "type": "string",
6282 "uniqueItems": true
6283 }
6284 }
6285 ],
6286 "patch": {
6287 "description": "partially update the specified ResourceClaimTemplate",
6288 "operationId": "patchResourceV1alpha2NamespacedResourceClaimTemplate",
6289 "parameters": [
6290 {
6291 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6292 "in": "query",
6293 "name": "dryRun",
6294 "schema": {
6295 "type": "string",
6296 "uniqueItems": true
6297 }
6298 },
6299 {
6300 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
6301 "in": "query",
6302 "name": "fieldManager",
6303 "schema": {
6304 "type": "string",
6305 "uniqueItems": true
6306 }
6307 },
6308 {
6309 "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.",
6310 "in": "query",
6311 "name": "fieldValidation",
6312 "schema": {
6313 "type": "string",
6314 "uniqueItems": true
6315 }
6316 },
6317 {
6318 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
6319 "in": "query",
6320 "name": "force",
6321 "schema": {
6322 "type": "boolean",
6323 "uniqueItems": true
6324 }
6325 }
6326 ],
6327 "requestBody": {
6328 "content": {
6329 "application/apply-patch+yaml": {
6330 "schema": {
6331 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
6332 }
6333 },
6334 "application/json-patch+json": {
6335 "schema": {
6336 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
6337 }
6338 },
6339 "application/merge-patch+json": {
6340 "schema": {
6341 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
6342 }
6343 },
6344 "application/strategic-merge-patch+json": {
6345 "schema": {
6346 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
6347 }
6348 }
6349 },
6350 "required": true
6351 },
6352 "responses": {
6353 "200": {
6354 "content": {
6355 "application/json": {
6356 "schema": {
6357 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6358 }
6359 },
6360 "application/vnd.kubernetes.protobuf": {
6361 "schema": {
6362 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6363 }
6364 },
6365 "application/yaml": {
6366 "schema": {
6367 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6368 }
6369 }
6370 },
6371 "description": "OK"
6372 },
6373 "201": {
6374 "content": {
6375 "application/json": {
6376 "schema": {
6377 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6378 }
6379 },
6380 "application/vnd.kubernetes.protobuf": {
6381 "schema": {
6382 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6383 }
6384 },
6385 "application/yaml": {
6386 "schema": {
6387 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6388 }
6389 }
6390 },
6391 "description": "Created"
6392 },
6393 "401": {
6394 "description": "Unauthorized"
6395 }
6396 },
6397 "tags": [
6398 "resource_v1alpha2"
6399 ],
6400 "x-kubernetes-action": "patch",
6401 "x-kubernetes-group-version-kind": {
6402 "group": "resource.k8s.io",
6403 "kind": "ResourceClaimTemplate",
6404 "version": "v1alpha2"
6405 }
6406 },
6407 "put": {
6408 "description": "replace the specified ResourceClaimTemplate",
6409 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimTemplate",
6410 "parameters": [
6411 {
6412 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6413 "in": "query",
6414 "name": "dryRun",
6415 "schema": {
6416 "type": "string",
6417 "uniqueItems": true
6418 }
6419 },
6420 {
6421 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
6422 "in": "query",
6423 "name": "fieldManager",
6424 "schema": {
6425 "type": "string",
6426 "uniqueItems": true
6427 }
6428 },
6429 {
6430 "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.",
6431 "in": "query",
6432 "name": "fieldValidation",
6433 "schema": {
6434 "type": "string",
6435 "uniqueItems": true
6436 }
6437 }
6438 ],
6439 "requestBody": {
6440 "content": {
6441 "*/*": {
6442 "schema": {
6443 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6444 }
6445 }
6446 },
6447 "required": true
6448 },
6449 "responses": {
6450 "200": {
6451 "content": {
6452 "application/json": {
6453 "schema": {
6454 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6455 }
6456 },
6457 "application/vnd.kubernetes.protobuf": {
6458 "schema": {
6459 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6460 }
6461 },
6462 "application/yaml": {
6463 "schema": {
6464 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6465 }
6466 }
6467 },
6468 "description": "OK"
6469 },
6470 "201": {
6471 "content": {
6472 "application/json": {
6473 "schema": {
6474 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6475 }
6476 },
6477 "application/vnd.kubernetes.protobuf": {
6478 "schema": {
6479 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6480 }
6481 },
6482 "application/yaml": {
6483 "schema": {
6484 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate"
6485 }
6486 }
6487 },
6488 "description": "Created"
6489 },
6490 "401": {
6491 "description": "Unauthorized"
6492 }
6493 },
6494 "tags": [
6495 "resource_v1alpha2"
6496 ],
6497 "x-kubernetes-action": "put",
6498 "x-kubernetes-group-version-kind": {
6499 "group": "resource.k8s.io",
6500 "kind": "ResourceClaimTemplate",
6501 "version": "v1alpha2"
6502 }
6503 }
6504 },
6505 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclassparameters": {
6506 "delete": {
6507 "description": "delete collection of ResourceClassParameters",
6508 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClassParameters",
6509 "parameters": [
6510 {
6511 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
6512 "in": "query",
6513 "name": "continue",
6514 "schema": {
6515 "type": "string",
6516 "uniqueItems": true
6517 }
6518 },
6519 {
6520 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6521 "in": "query",
6522 "name": "dryRun",
6523 "schema": {
6524 "type": "string",
6525 "uniqueItems": true
6526 }
6527 },
6528 {
6529 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
6530 "in": "query",
6531 "name": "fieldSelector",
6532 "schema": {
6533 "type": "string",
6534 "uniqueItems": true
6535 }
6536 },
6537 {
6538 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
6539 "in": "query",
6540 "name": "gracePeriodSeconds",
6541 "schema": {
6542 "type": "integer",
6543 "uniqueItems": true
6544 }
6545 },
6546 {
6547 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
6548 "in": "query",
6549 "name": "labelSelector",
6550 "schema": {
6551 "type": "string",
6552 "uniqueItems": true
6553 }
6554 },
6555 {
6556 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
6557 "in": "query",
6558 "name": "limit",
6559 "schema": {
6560 "type": "integer",
6561 "uniqueItems": true
6562 }
6563 },
6564 {
6565 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
6566 "in": "query",
6567 "name": "orphanDependents",
6568 "schema": {
6569 "type": "boolean",
6570 "uniqueItems": true
6571 }
6572 },
6573 {
6574 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
6575 "in": "query",
6576 "name": "propagationPolicy",
6577 "schema": {
6578 "type": "string",
6579 "uniqueItems": true
6580 }
6581 },
6582 {
6583 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
6584 "in": "query",
6585 "name": "resourceVersion",
6586 "schema": {
6587 "type": "string",
6588 "uniqueItems": true
6589 }
6590 },
6591 {
6592 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
6593 "in": "query",
6594 "name": "resourceVersionMatch",
6595 "schema": {
6596 "type": "string",
6597 "uniqueItems": true
6598 }
6599 },
6600 {
6601 "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.",
6602 "in": "query",
6603 "name": "sendInitialEvents",
6604 "schema": {
6605 "type": "boolean",
6606 "uniqueItems": true
6607 }
6608 },
6609 {
6610 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
6611 "in": "query",
6612 "name": "timeoutSeconds",
6613 "schema": {
6614 "type": "integer",
6615 "uniqueItems": true
6616 }
6617 }
6618 ],
6619 "requestBody": {
6620 "content": {
6621 "*/*": {
6622 "schema": {
6623 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
6624 }
6625 }
6626 }
6627 },
6628 "responses": {
6629 "200": {
6630 "content": {
6631 "application/json": {
6632 "schema": {
6633 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
6634 }
6635 },
6636 "application/vnd.kubernetes.protobuf": {
6637 "schema": {
6638 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
6639 }
6640 },
6641 "application/yaml": {
6642 "schema": {
6643 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
6644 }
6645 }
6646 },
6647 "description": "OK"
6648 },
6649 "401": {
6650 "description": "Unauthorized"
6651 }
6652 },
6653 "tags": [
6654 "resource_v1alpha2"
6655 ],
6656 "x-kubernetes-action": "deletecollection",
6657 "x-kubernetes-group-version-kind": {
6658 "group": "resource.k8s.io",
6659 "kind": "ResourceClassParameters",
6660 "version": "v1alpha2"
6661 }
6662 },
6663 "get": {
6664 "description": "list or watch objects of kind ResourceClassParameters",
6665 "operationId": "listResourceV1alpha2NamespacedResourceClassParameters",
6666 "parameters": [
6667 {
6668 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
6669 "in": "query",
6670 "name": "allowWatchBookmarks",
6671 "schema": {
6672 "type": "boolean",
6673 "uniqueItems": true
6674 }
6675 },
6676 {
6677 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
6678 "in": "query",
6679 "name": "continue",
6680 "schema": {
6681 "type": "string",
6682 "uniqueItems": true
6683 }
6684 },
6685 {
6686 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
6687 "in": "query",
6688 "name": "fieldSelector",
6689 "schema": {
6690 "type": "string",
6691 "uniqueItems": true
6692 }
6693 },
6694 {
6695 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
6696 "in": "query",
6697 "name": "labelSelector",
6698 "schema": {
6699 "type": "string",
6700 "uniqueItems": true
6701 }
6702 },
6703 {
6704 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
6705 "in": "query",
6706 "name": "limit",
6707 "schema": {
6708 "type": "integer",
6709 "uniqueItems": true
6710 }
6711 },
6712 {
6713 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
6714 "in": "query",
6715 "name": "resourceVersion",
6716 "schema": {
6717 "type": "string",
6718 "uniqueItems": true
6719 }
6720 },
6721 {
6722 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
6723 "in": "query",
6724 "name": "resourceVersionMatch",
6725 "schema": {
6726 "type": "string",
6727 "uniqueItems": true
6728 }
6729 },
6730 {
6731 "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.",
6732 "in": "query",
6733 "name": "sendInitialEvents",
6734 "schema": {
6735 "type": "boolean",
6736 "uniqueItems": true
6737 }
6738 },
6739 {
6740 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
6741 "in": "query",
6742 "name": "timeoutSeconds",
6743 "schema": {
6744 "type": "integer",
6745 "uniqueItems": true
6746 }
6747 },
6748 {
6749 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
6750 "in": "query",
6751 "name": "watch",
6752 "schema": {
6753 "type": "boolean",
6754 "uniqueItems": true
6755 }
6756 }
6757 ],
6758 "responses": {
6759 "200": {
6760 "content": {
6761 "application/json": {
6762 "schema": {
6763 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
6764 }
6765 },
6766 "application/json;stream=watch": {
6767 "schema": {
6768 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
6769 }
6770 },
6771 "application/vnd.kubernetes.protobuf": {
6772 "schema": {
6773 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
6774 }
6775 },
6776 "application/vnd.kubernetes.protobuf;stream=watch": {
6777 "schema": {
6778 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
6779 }
6780 },
6781 "application/yaml": {
6782 "schema": {
6783 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
6784 }
6785 }
6786 },
6787 "description": "OK"
6788 },
6789 "401": {
6790 "description": "Unauthorized"
6791 }
6792 },
6793 "tags": [
6794 "resource_v1alpha2"
6795 ],
6796 "x-kubernetes-action": "list",
6797 "x-kubernetes-group-version-kind": {
6798 "group": "resource.k8s.io",
6799 "kind": "ResourceClassParameters",
6800 "version": "v1alpha2"
6801 }
6802 },
6803 "parameters": [
6804 {
6805 "description": "object name and auth scope, such as for teams and projects",
6806 "in": "path",
6807 "name": "namespace",
6808 "required": true,
6809 "schema": {
6810 "type": "string",
6811 "uniqueItems": true
6812 }
6813 },
6814 {
6815 "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).",
6816 "in": "query",
6817 "name": "pretty",
6818 "schema": {
6819 "type": "string",
6820 "uniqueItems": true
6821 }
6822 }
6823 ],
6824 "post": {
6825 "description": "create ResourceClassParameters",
6826 "operationId": "createResourceV1alpha2NamespacedResourceClassParameters",
6827 "parameters": [
6828 {
6829 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6830 "in": "query",
6831 "name": "dryRun",
6832 "schema": {
6833 "type": "string",
6834 "uniqueItems": true
6835 }
6836 },
6837 {
6838 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
6839 "in": "query",
6840 "name": "fieldManager",
6841 "schema": {
6842 "type": "string",
6843 "uniqueItems": true
6844 }
6845 },
6846 {
6847 "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.",
6848 "in": "query",
6849 "name": "fieldValidation",
6850 "schema": {
6851 "type": "string",
6852 "uniqueItems": true
6853 }
6854 }
6855 ],
6856 "requestBody": {
6857 "content": {
6858 "*/*": {
6859 "schema": {
6860 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6861 }
6862 }
6863 },
6864 "required": true
6865 },
6866 "responses": {
6867 "200": {
6868 "content": {
6869 "application/json": {
6870 "schema": {
6871 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6872 }
6873 },
6874 "application/vnd.kubernetes.protobuf": {
6875 "schema": {
6876 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6877 }
6878 },
6879 "application/yaml": {
6880 "schema": {
6881 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6882 }
6883 }
6884 },
6885 "description": "OK"
6886 },
6887 "201": {
6888 "content": {
6889 "application/json": {
6890 "schema": {
6891 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6892 }
6893 },
6894 "application/vnd.kubernetes.protobuf": {
6895 "schema": {
6896 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6897 }
6898 },
6899 "application/yaml": {
6900 "schema": {
6901 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6902 }
6903 }
6904 },
6905 "description": "Created"
6906 },
6907 "202": {
6908 "content": {
6909 "application/json": {
6910 "schema": {
6911 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6912 }
6913 },
6914 "application/vnd.kubernetes.protobuf": {
6915 "schema": {
6916 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6917 }
6918 },
6919 "application/yaml": {
6920 "schema": {
6921 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6922 }
6923 }
6924 },
6925 "description": "Accepted"
6926 },
6927 "401": {
6928 "description": "Unauthorized"
6929 }
6930 },
6931 "tags": [
6932 "resource_v1alpha2"
6933 ],
6934 "x-kubernetes-action": "post",
6935 "x-kubernetes-group-version-kind": {
6936 "group": "resource.k8s.io",
6937 "kind": "ResourceClassParameters",
6938 "version": "v1alpha2"
6939 }
6940 }
6941 },
6942 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclassparameters/{name}": {
6943 "delete": {
6944 "description": "delete ResourceClassParameters",
6945 "operationId": "deleteResourceV1alpha2NamespacedResourceClassParameters",
6946 "parameters": [
6947 {
6948 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
6949 "in": "query",
6950 "name": "dryRun",
6951 "schema": {
6952 "type": "string",
6953 "uniqueItems": true
6954 }
6955 },
6956 {
6957 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
6958 "in": "query",
6959 "name": "gracePeriodSeconds",
6960 "schema": {
6961 "type": "integer",
6962 "uniqueItems": true
6963 }
6964 },
6965 {
6966 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
6967 "in": "query",
6968 "name": "orphanDependents",
6969 "schema": {
6970 "type": "boolean",
6971 "uniqueItems": true
6972 }
6973 },
6974 {
6975 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
6976 "in": "query",
6977 "name": "propagationPolicy",
6978 "schema": {
6979 "type": "string",
6980 "uniqueItems": true
6981 }
6982 }
6983 ],
6984 "requestBody": {
6985 "content": {
6986 "*/*": {
6987 "schema": {
6988 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
6989 }
6990 }
6991 }
6992 },
6993 "responses": {
6994 "200": {
6995 "content": {
6996 "application/json": {
6997 "schema": {
6998 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
6999 }
7000 },
7001 "application/vnd.kubernetes.protobuf": {
7002 "schema": {
7003 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7004 }
7005 },
7006 "application/yaml": {
7007 "schema": {
7008 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7009 }
7010 }
7011 },
7012 "description": "OK"
7013 },
7014 "202": {
7015 "content": {
7016 "application/json": {
7017 "schema": {
7018 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7019 }
7020 },
7021 "application/vnd.kubernetes.protobuf": {
7022 "schema": {
7023 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7024 }
7025 },
7026 "application/yaml": {
7027 "schema": {
7028 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7029 }
7030 }
7031 },
7032 "description": "Accepted"
7033 },
7034 "401": {
7035 "description": "Unauthorized"
7036 }
7037 },
7038 "tags": [
7039 "resource_v1alpha2"
7040 ],
7041 "x-kubernetes-action": "delete",
7042 "x-kubernetes-group-version-kind": {
7043 "group": "resource.k8s.io",
7044 "kind": "ResourceClassParameters",
7045 "version": "v1alpha2"
7046 }
7047 },
7048 "get": {
7049 "description": "read the specified ResourceClassParameters",
7050 "operationId": "readResourceV1alpha2NamespacedResourceClassParameters",
7051 "responses": {
7052 "200": {
7053 "content": {
7054 "application/json": {
7055 "schema": {
7056 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7057 }
7058 },
7059 "application/vnd.kubernetes.protobuf": {
7060 "schema": {
7061 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7062 }
7063 },
7064 "application/yaml": {
7065 "schema": {
7066 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7067 }
7068 }
7069 },
7070 "description": "OK"
7071 },
7072 "401": {
7073 "description": "Unauthorized"
7074 }
7075 },
7076 "tags": [
7077 "resource_v1alpha2"
7078 ],
7079 "x-kubernetes-action": "get",
7080 "x-kubernetes-group-version-kind": {
7081 "group": "resource.k8s.io",
7082 "kind": "ResourceClassParameters",
7083 "version": "v1alpha2"
7084 }
7085 },
7086 "parameters": [
7087 {
7088 "description": "name of the ResourceClassParameters",
7089 "in": "path",
7090 "name": "name",
7091 "required": true,
7092 "schema": {
7093 "type": "string",
7094 "uniqueItems": true
7095 }
7096 },
7097 {
7098 "description": "object name and auth scope, such as for teams and projects",
7099 "in": "path",
7100 "name": "namespace",
7101 "required": true,
7102 "schema": {
7103 "type": "string",
7104 "uniqueItems": true
7105 }
7106 },
7107 {
7108 "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).",
7109 "in": "query",
7110 "name": "pretty",
7111 "schema": {
7112 "type": "string",
7113 "uniqueItems": true
7114 }
7115 }
7116 ],
7117 "patch": {
7118 "description": "partially update the specified ResourceClassParameters",
7119 "operationId": "patchResourceV1alpha2NamespacedResourceClassParameters",
7120 "parameters": [
7121 {
7122 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
7123 "in": "query",
7124 "name": "dryRun",
7125 "schema": {
7126 "type": "string",
7127 "uniqueItems": true
7128 }
7129 },
7130 {
7131 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
7132 "in": "query",
7133 "name": "fieldManager",
7134 "schema": {
7135 "type": "string",
7136 "uniqueItems": true
7137 }
7138 },
7139 {
7140 "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.",
7141 "in": "query",
7142 "name": "fieldValidation",
7143 "schema": {
7144 "type": "string",
7145 "uniqueItems": true
7146 }
7147 },
7148 {
7149 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
7150 "in": "query",
7151 "name": "force",
7152 "schema": {
7153 "type": "boolean",
7154 "uniqueItems": true
7155 }
7156 }
7157 ],
7158 "requestBody": {
7159 "content": {
7160 "application/apply-patch+yaml": {
7161 "schema": {
7162 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
7163 }
7164 },
7165 "application/json-patch+json": {
7166 "schema": {
7167 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
7168 }
7169 },
7170 "application/merge-patch+json": {
7171 "schema": {
7172 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
7173 }
7174 },
7175 "application/strategic-merge-patch+json": {
7176 "schema": {
7177 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
7178 }
7179 }
7180 },
7181 "required": true
7182 },
7183 "responses": {
7184 "200": {
7185 "content": {
7186 "application/json": {
7187 "schema": {
7188 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7189 }
7190 },
7191 "application/vnd.kubernetes.protobuf": {
7192 "schema": {
7193 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7194 }
7195 },
7196 "application/yaml": {
7197 "schema": {
7198 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7199 }
7200 }
7201 },
7202 "description": "OK"
7203 },
7204 "201": {
7205 "content": {
7206 "application/json": {
7207 "schema": {
7208 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7209 }
7210 },
7211 "application/vnd.kubernetes.protobuf": {
7212 "schema": {
7213 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7214 }
7215 },
7216 "application/yaml": {
7217 "schema": {
7218 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7219 }
7220 }
7221 },
7222 "description": "Created"
7223 },
7224 "401": {
7225 "description": "Unauthorized"
7226 }
7227 },
7228 "tags": [
7229 "resource_v1alpha2"
7230 ],
7231 "x-kubernetes-action": "patch",
7232 "x-kubernetes-group-version-kind": {
7233 "group": "resource.k8s.io",
7234 "kind": "ResourceClassParameters",
7235 "version": "v1alpha2"
7236 }
7237 },
7238 "put": {
7239 "description": "replace the specified ResourceClassParameters",
7240 "operationId": "replaceResourceV1alpha2NamespacedResourceClassParameters",
7241 "parameters": [
7242 {
7243 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
7244 "in": "query",
7245 "name": "dryRun",
7246 "schema": {
7247 "type": "string",
7248 "uniqueItems": true
7249 }
7250 },
7251 {
7252 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
7253 "in": "query",
7254 "name": "fieldManager",
7255 "schema": {
7256 "type": "string",
7257 "uniqueItems": true
7258 }
7259 },
7260 {
7261 "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.",
7262 "in": "query",
7263 "name": "fieldValidation",
7264 "schema": {
7265 "type": "string",
7266 "uniqueItems": true
7267 }
7268 }
7269 ],
7270 "requestBody": {
7271 "content": {
7272 "*/*": {
7273 "schema": {
7274 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7275 }
7276 }
7277 },
7278 "required": true
7279 },
7280 "responses": {
7281 "200": {
7282 "content": {
7283 "application/json": {
7284 "schema": {
7285 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7286 }
7287 },
7288 "application/vnd.kubernetes.protobuf": {
7289 "schema": {
7290 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7291 }
7292 },
7293 "application/yaml": {
7294 "schema": {
7295 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7296 }
7297 }
7298 },
7299 "description": "OK"
7300 },
7301 "201": {
7302 "content": {
7303 "application/json": {
7304 "schema": {
7305 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7306 }
7307 },
7308 "application/vnd.kubernetes.protobuf": {
7309 "schema": {
7310 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7311 }
7312 },
7313 "application/yaml": {
7314 "schema": {
7315 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters"
7316 }
7317 }
7318 },
7319 "description": "Created"
7320 },
7321 "401": {
7322 "description": "Unauthorized"
7323 }
7324 },
7325 "tags": [
7326 "resource_v1alpha2"
7327 ],
7328 "x-kubernetes-action": "put",
7329 "x-kubernetes-group-version-kind": {
7330 "group": "resource.k8s.io",
7331 "kind": "ResourceClassParameters",
7332 "version": "v1alpha2"
7333 }
7334 }
7335 },
7336 "/apis/resource.k8s.io/v1alpha2/podschedulingcontexts": {
7337 "get": {
7338 "description": "list or watch objects of kind PodSchedulingContext",
7339 "operationId": "listResourceV1alpha2PodSchedulingContextForAllNamespaces",
7340 "responses": {
7341 "200": {
7342 "content": {
7343 "application/json": {
7344 "schema": {
7345 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
7346 }
7347 },
7348 "application/json;stream=watch": {
7349 "schema": {
7350 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
7351 }
7352 },
7353 "application/vnd.kubernetes.protobuf": {
7354 "schema": {
7355 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
7356 }
7357 },
7358 "application/vnd.kubernetes.protobuf;stream=watch": {
7359 "schema": {
7360 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
7361 }
7362 },
7363 "application/yaml": {
7364 "schema": {
7365 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList"
7366 }
7367 }
7368 },
7369 "description": "OK"
7370 },
7371 "401": {
7372 "description": "Unauthorized"
7373 }
7374 },
7375 "tags": [
7376 "resource_v1alpha2"
7377 ],
7378 "x-kubernetes-action": "list",
7379 "x-kubernetes-group-version-kind": {
7380 "group": "resource.k8s.io",
7381 "kind": "PodSchedulingContext",
7382 "version": "v1alpha2"
7383 }
7384 },
7385 "parameters": [
7386 {
7387 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
7388 "in": "query",
7389 "name": "allowWatchBookmarks",
7390 "schema": {
7391 "type": "boolean",
7392 "uniqueItems": true
7393 }
7394 },
7395 {
7396 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
7397 "in": "query",
7398 "name": "continue",
7399 "schema": {
7400 "type": "string",
7401 "uniqueItems": true
7402 }
7403 },
7404 {
7405 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
7406 "in": "query",
7407 "name": "fieldSelector",
7408 "schema": {
7409 "type": "string",
7410 "uniqueItems": true
7411 }
7412 },
7413 {
7414 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
7415 "in": "query",
7416 "name": "labelSelector",
7417 "schema": {
7418 "type": "string",
7419 "uniqueItems": true
7420 }
7421 },
7422 {
7423 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
7424 "in": "query",
7425 "name": "limit",
7426 "schema": {
7427 "type": "integer",
7428 "uniqueItems": true
7429 }
7430 },
7431 {
7432 "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).",
7433 "in": "query",
7434 "name": "pretty",
7435 "schema": {
7436 "type": "string",
7437 "uniqueItems": true
7438 }
7439 },
7440 {
7441 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7442 "in": "query",
7443 "name": "resourceVersion",
7444 "schema": {
7445 "type": "string",
7446 "uniqueItems": true
7447 }
7448 },
7449 {
7450 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7451 "in": "query",
7452 "name": "resourceVersionMatch",
7453 "schema": {
7454 "type": "string",
7455 "uniqueItems": true
7456 }
7457 },
7458 {
7459 "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.",
7460 "in": "query",
7461 "name": "sendInitialEvents",
7462 "schema": {
7463 "type": "boolean",
7464 "uniqueItems": true
7465 }
7466 },
7467 {
7468 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
7469 "in": "query",
7470 "name": "timeoutSeconds",
7471 "schema": {
7472 "type": "integer",
7473 "uniqueItems": true
7474 }
7475 },
7476 {
7477 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
7478 "in": "query",
7479 "name": "watch",
7480 "schema": {
7481 "type": "boolean",
7482 "uniqueItems": true
7483 }
7484 }
7485 ]
7486 },
7487 "/apis/resource.k8s.io/v1alpha2/resourceclaimparameters": {
7488 "get": {
7489 "description": "list or watch objects of kind ResourceClaimParameters",
7490 "operationId": "listResourceV1alpha2ResourceClaimParametersForAllNamespaces",
7491 "responses": {
7492 "200": {
7493 "content": {
7494 "application/json": {
7495 "schema": {
7496 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
7497 }
7498 },
7499 "application/json;stream=watch": {
7500 "schema": {
7501 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
7502 }
7503 },
7504 "application/vnd.kubernetes.protobuf": {
7505 "schema": {
7506 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
7507 }
7508 },
7509 "application/vnd.kubernetes.protobuf;stream=watch": {
7510 "schema": {
7511 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
7512 }
7513 },
7514 "application/yaml": {
7515 "schema": {
7516 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList"
7517 }
7518 }
7519 },
7520 "description": "OK"
7521 },
7522 "401": {
7523 "description": "Unauthorized"
7524 }
7525 },
7526 "tags": [
7527 "resource_v1alpha2"
7528 ],
7529 "x-kubernetes-action": "list",
7530 "x-kubernetes-group-version-kind": {
7531 "group": "resource.k8s.io",
7532 "kind": "ResourceClaimParameters",
7533 "version": "v1alpha2"
7534 }
7535 },
7536 "parameters": [
7537 {
7538 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
7539 "in": "query",
7540 "name": "allowWatchBookmarks",
7541 "schema": {
7542 "type": "boolean",
7543 "uniqueItems": true
7544 }
7545 },
7546 {
7547 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
7548 "in": "query",
7549 "name": "continue",
7550 "schema": {
7551 "type": "string",
7552 "uniqueItems": true
7553 }
7554 },
7555 {
7556 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
7557 "in": "query",
7558 "name": "fieldSelector",
7559 "schema": {
7560 "type": "string",
7561 "uniqueItems": true
7562 }
7563 },
7564 {
7565 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
7566 "in": "query",
7567 "name": "labelSelector",
7568 "schema": {
7569 "type": "string",
7570 "uniqueItems": true
7571 }
7572 },
7573 {
7574 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
7575 "in": "query",
7576 "name": "limit",
7577 "schema": {
7578 "type": "integer",
7579 "uniqueItems": true
7580 }
7581 },
7582 {
7583 "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).",
7584 "in": "query",
7585 "name": "pretty",
7586 "schema": {
7587 "type": "string",
7588 "uniqueItems": true
7589 }
7590 },
7591 {
7592 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7593 "in": "query",
7594 "name": "resourceVersion",
7595 "schema": {
7596 "type": "string",
7597 "uniqueItems": true
7598 }
7599 },
7600 {
7601 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7602 "in": "query",
7603 "name": "resourceVersionMatch",
7604 "schema": {
7605 "type": "string",
7606 "uniqueItems": true
7607 }
7608 },
7609 {
7610 "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.",
7611 "in": "query",
7612 "name": "sendInitialEvents",
7613 "schema": {
7614 "type": "boolean",
7615 "uniqueItems": true
7616 }
7617 },
7618 {
7619 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
7620 "in": "query",
7621 "name": "timeoutSeconds",
7622 "schema": {
7623 "type": "integer",
7624 "uniqueItems": true
7625 }
7626 },
7627 {
7628 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
7629 "in": "query",
7630 "name": "watch",
7631 "schema": {
7632 "type": "boolean",
7633 "uniqueItems": true
7634 }
7635 }
7636 ]
7637 },
7638 "/apis/resource.k8s.io/v1alpha2/resourceclaims": {
7639 "get": {
7640 "description": "list or watch objects of kind ResourceClaim",
7641 "operationId": "listResourceV1alpha2ResourceClaimForAllNamespaces",
7642 "responses": {
7643 "200": {
7644 "content": {
7645 "application/json": {
7646 "schema": {
7647 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
7648 }
7649 },
7650 "application/json;stream=watch": {
7651 "schema": {
7652 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
7653 }
7654 },
7655 "application/vnd.kubernetes.protobuf": {
7656 "schema": {
7657 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
7658 }
7659 },
7660 "application/vnd.kubernetes.protobuf;stream=watch": {
7661 "schema": {
7662 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
7663 }
7664 },
7665 "application/yaml": {
7666 "schema": {
7667 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList"
7668 }
7669 }
7670 },
7671 "description": "OK"
7672 },
7673 "401": {
7674 "description": "Unauthorized"
7675 }
7676 },
7677 "tags": [
7678 "resource_v1alpha2"
7679 ],
7680 "x-kubernetes-action": "list",
7681 "x-kubernetes-group-version-kind": {
7682 "group": "resource.k8s.io",
7683 "kind": "ResourceClaim",
7684 "version": "v1alpha2"
7685 }
7686 },
7687 "parameters": [
7688 {
7689 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
7690 "in": "query",
7691 "name": "allowWatchBookmarks",
7692 "schema": {
7693 "type": "boolean",
7694 "uniqueItems": true
7695 }
7696 },
7697 {
7698 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
7699 "in": "query",
7700 "name": "continue",
7701 "schema": {
7702 "type": "string",
7703 "uniqueItems": true
7704 }
7705 },
7706 {
7707 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
7708 "in": "query",
7709 "name": "fieldSelector",
7710 "schema": {
7711 "type": "string",
7712 "uniqueItems": true
7713 }
7714 },
7715 {
7716 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
7717 "in": "query",
7718 "name": "labelSelector",
7719 "schema": {
7720 "type": "string",
7721 "uniqueItems": true
7722 }
7723 },
7724 {
7725 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
7726 "in": "query",
7727 "name": "limit",
7728 "schema": {
7729 "type": "integer",
7730 "uniqueItems": true
7731 }
7732 },
7733 {
7734 "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).",
7735 "in": "query",
7736 "name": "pretty",
7737 "schema": {
7738 "type": "string",
7739 "uniqueItems": true
7740 }
7741 },
7742 {
7743 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7744 "in": "query",
7745 "name": "resourceVersion",
7746 "schema": {
7747 "type": "string",
7748 "uniqueItems": true
7749 }
7750 },
7751 {
7752 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7753 "in": "query",
7754 "name": "resourceVersionMatch",
7755 "schema": {
7756 "type": "string",
7757 "uniqueItems": true
7758 }
7759 },
7760 {
7761 "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.",
7762 "in": "query",
7763 "name": "sendInitialEvents",
7764 "schema": {
7765 "type": "boolean",
7766 "uniqueItems": true
7767 }
7768 },
7769 {
7770 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
7771 "in": "query",
7772 "name": "timeoutSeconds",
7773 "schema": {
7774 "type": "integer",
7775 "uniqueItems": true
7776 }
7777 },
7778 {
7779 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
7780 "in": "query",
7781 "name": "watch",
7782 "schema": {
7783 "type": "boolean",
7784 "uniqueItems": true
7785 }
7786 }
7787 ]
7788 },
7789 "/apis/resource.k8s.io/v1alpha2/resourceclaimtemplates": {
7790 "get": {
7791 "description": "list or watch objects of kind ResourceClaimTemplate",
7792 "operationId": "listResourceV1alpha2ResourceClaimTemplateForAllNamespaces",
7793 "responses": {
7794 "200": {
7795 "content": {
7796 "application/json": {
7797 "schema": {
7798 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
7799 }
7800 },
7801 "application/json;stream=watch": {
7802 "schema": {
7803 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
7804 }
7805 },
7806 "application/vnd.kubernetes.protobuf": {
7807 "schema": {
7808 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
7809 }
7810 },
7811 "application/vnd.kubernetes.protobuf;stream=watch": {
7812 "schema": {
7813 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
7814 }
7815 },
7816 "application/yaml": {
7817 "schema": {
7818 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList"
7819 }
7820 }
7821 },
7822 "description": "OK"
7823 },
7824 "401": {
7825 "description": "Unauthorized"
7826 }
7827 },
7828 "tags": [
7829 "resource_v1alpha2"
7830 ],
7831 "x-kubernetes-action": "list",
7832 "x-kubernetes-group-version-kind": {
7833 "group": "resource.k8s.io",
7834 "kind": "ResourceClaimTemplate",
7835 "version": "v1alpha2"
7836 }
7837 },
7838 "parameters": [
7839 {
7840 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
7841 "in": "query",
7842 "name": "allowWatchBookmarks",
7843 "schema": {
7844 "type": "boolean",
7845 "uniqueItems": true
7846 }
7847 },
7848 {
7849 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
7850 "in": "query",
7851 "name": "continue",
7852 "schema": {
7853 "type": "string",
7854 "uniqueItems": true
7855 }
7856 },
7857 {
7858 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
7859 "in": "query",
7860 "name": "fieldSelector",
7861 "schema": {
7862 "type": "string",
7863 "uniqueItems": true
7864 }
7865 },
7866 {
7867 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
7868 "in": "query",
7869 "name": "labelSelector",
7870 "schema": {
7871 "type": "string",
7872 "uniqueItems": true
7873 }
7874 },
7875 {
7876 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
7877 "in": "query",
7878 "name": "limit",
7879 "schema": {
7880 "type": "integer",
7881 "uniqueItems": true
7882 }
7883 },
7884 {
7885 "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).",
7886 "in": "query",
7887 "name": "pretty",
7888 "schema": {
7889 "type": "string",
7890 "uniqueItems": true
7891 }
7892 },
7893 {
7894 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7895 "in": "query",
7896 "name": "resourceVersion",
7897 "schema": {
7898 "type": "string",
7899 "uniqueItems": true
7900 }
7901 },
7902 {
7903 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
7904 "in": "query",
7905 "name": "resourceVersionMatch",
7906 "schema": {
7907 "type": "string",
7908 "uniqueItems": true
7909 }
7910 },
7911 {
7912 "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.",
7913 "in": "query",
7914 "name": "sendInitialEvents",
7915 "schema": {
7916 "type": "boolean",
7917 "uniqueItems": true
7918 }
7919 },
7920 {
7921 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
7922 "in": "query",
7923 "name": "timeoutSeconds",
7924 "schema": {
7925 "type": "integer",
7926 "uniqueItems": true
7927 }
7928 },
7929 {
7930 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
7931 "in": "query",
7932 "name": "watch",
7933 "schema": {
7934 "type": "boolean",
7935 "uniqueItems": true
7936 }
7937 }
7938 ]
7939 },
7940 "/apis/resource.k8s.io/v1alpha2/resourceclasses": {
7941 "delete": {
7942 "description": "delete collection of ResourceClass",
7943 "operationId": "deleteResourceV1alpha2CollectionResourceClass",
7944 "parameters": [
7945 {
7946 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
7947 "in": "query",
7948 "name": "continue",
7949 "schema": {
7950 "type": "string",
7951 "uniqueItems": true
7952 }
7953 },
7954 {
7955 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
7956 "in": "query",
7957 "name": "dryRun",
7958 "schema": {
7959 "type": "string",
7960 "uniqueItems": true
7961 }
7962 },
7963 {
7964 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
7965 "in": "query",
7966 "name": "fieldSelector",
7967 "schema": {
7968 "type": "string",
7969 "uniqueItems": true
7970 }
7971 },
7972 {
7973 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
7974 "in": "query",
7975 "name": "gracePeriodSeconds",
7976 "schema": {
7977 "type": "integer",
7978 "uniqueItems": true
7979 }
7980 },
7981 {
7982 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
7983 "in": "query",
7984 "name": "labelSelector",
7985 "schema": {
7986 "type": "string",
7987 "uniqueItems": true
7988 }
7989 },
7990 {
7991 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
7992 "in": "query",
7993 "name": "limit",
7994 "schema": {
7995 "type": "integer",
7996 "uniqueItems": true
7997 }
7998 },
7999 {
8000 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
8001 "in": "query",
8002 "name": "orphanDependents",
8003 "schema": {
8004 "type": "boolean",
8005 "uniqueItems": true
8006 }
8007 },
8008 {
8009 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
8010 "in": "query",
8011 "name": "propagationPolicy",
8012 "schema": {
8013 "type": "string",
8014 "uniqueItems": true
8015 }
8016 },
8017 {
8018 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8019 "in": "query",
8020 "name": "resourceVersion",
8021 "schema": {
8022 "type": "string",
8023 "uniqueItems": true
8024 }
8025 },
8026 {
8027 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8028 "in": "query",
8029 "name": "resourceVersionMatch",
8030 "schema": {
8031 "type": "string",
8032 "uniqueItems": true
8033 }
8034 },
8035 {
8036 "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.",
8037 "in": "query",
8038 "name": "sendInitialEvents",
8039 "schema": {
8040 "type": "boolean",
8041 "uniqueItems": true
8042 }
8043 },
8044 {
8045 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
8046 "in": "query",
8047 "name": "timeoutSeconds",
8048 "schema": {
8049 "type": "integer",
8050 "uniqueItems": true
8051 }
8052 }
8053 ],
8054 "requestBody": {
8055 "content": {
8056 "*/*": {
8057 "schema": {
8058 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
8059 }
8060 }
8061 }
8062 },
8063 "responses": {
8064 "200": {
8065 "content": {
8066 "application/json": {
8067 "schema": {
8068 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
8069 }
8070 },
8071 "application/vnd.kubernetes.protobuf": {
8072 "schema": {
8073 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
8074 }
8075 },
8076 "application/yaml": {
8077 "schema": {
8078 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
8079 }
8080 }
8081 },
8082 "description": "OK"
8083 },
8084 "401": {
8085 "description": "Unauthorized"
8086 }
8087 },
8088 "tags": [
8089 "resource_v1alpha2"
8090 ],
8091 "x-kubernetes-action": "deletecollection",
8092 "x-kubernetes-group-version-kind": {
8093 "group": "resource.k8s.io",
8094 "kind": "ResourceClass",
8095 "version": "v1alpha2"
8096 }
8097 },
8098 "get": {
8099 "description": "list or watch objects of kind ResourceClass",
8100 "operationId": "listResourceV1alpha2ResourceClass",
8101 "parameters": [
8102 {
8103 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
8104 "in": "query",
8105 "name": "allowWatchBookmarks",
8106 "schema": {
8107 "type": "boolean",
8108 "uniqueItems": true
8109 }
8110 },
8111 {
8112 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
8113 "in": "query",
8114 "name": "continue",
8115 "schema": {
8116 "type": "string",
8117 "uniqueItems": true
8118 }
8119 },
8120 {
8121 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
8122 "in": "query",
8123 "name": "fieldSelector",
8124 "schema": {
8125 "type": "string",
8126 "uniqueItems": true
8127 }
8128 },
8129 {
8130 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
8131 "in": "query",
8132 "name": "labelSelector",
8133 "schema": {
8134 "type": "string",
8135 "uniqueItems": true
8136 }
8137 },
8138 {
8139 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
8140 "in": "query",
8141 "name": "limit",
8142 "schema": {
8143 "type": "integer",
8144 "uniqueItems": true
8145 }
8146 },
8147 {
8148 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8149 "in": "query",
8150 "name": "resourceVersion",
8151 "schema": {
8152 "type": "string",
8153 "uniqueItems": true
8154 }
8155 },
8156 {
8157 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8158 "in": "query",
8159 "name": "resourceVersionMatch",
8160 "schema": {
8161 "type": "string",
8162 "uniqueItems": true
8163 }
8164 },
8165 {
8166 "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.",
8167 "in": "query",
8168 "name": "sendInitialEvents",
8169 "schema": {
8170 "type": "boolean",
8171 "uniqueItems": true
8172 }
8173 },
8174 {
8175 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
8176 "in": "query",
8177 "name": "timeoutSeconds",
8178 "schema": {
8179 "type": "integer",
8180 "uniqueItems": true
8181 }
8182 },
8183 {
8184 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
8185 "in": "query",
8186 "name": "watch",
8187 "schema": {
8188 "type": "boolean",
8189 "uniqueItems": true
8190 }
8191 }
8192 ],
8193 "responses": {
8194 "200": {
8195 "content": {
8196 "application/json": {
8197 "schema": {
8198 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList"
8199 }
8200 },
8201 "application/json;stream=watch": {
8202 "schema": {
8203 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList"
8204 }
8205 },
8206 "application/vnd.kubernetes.protobuf": {
8207 "schema": {
8208 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList"
8209 }
8210 },
8211 "application/vnd.kubernetes.protobuf;stream=watch": {
8212 "schema": {
8213 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList"
8214 }
8215 },
8216 "application/yaml": {
8217 "schema": {
8218 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList"
8219 }
8220 }
8221 },
8222 "description": "OK"
8223 },
8224 "401": {
8225 "description": "Unauthorized"
8226 }
8227 },
8228 "tags": [
8229 "resource_v1alpha2"
8230 ],
8231 "x-kubernetes-action": "list",
8232 "x-kubernetes-group-version-kind": {
8233 "group": "resource.k8s.io",
8234 "kind": "ResourceClass",
8235 "version": "v1alpha2"
8236 }
8237 },
8238 "parameters": [
8239 {
8240 "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).",
8241 "in": "query",
8242 "name": "pretty",
8243 "schema": {
8244 "type": "string",
8245 "uniqueItems": true
8246 }
8247 }
8248 ],
8249 "post": {
8250 "description": "create a ResourceClass",
8251 "operationId": "createResourceV1alpha2ResourceClass",
8252 "parameters": [
8253 {
8254 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8255 "in": "query",
8256 "name": "dryRun",
8257 "schema": {
8258 "type": "string",
8259 "uniqueItems": true
8260 }
8261 },
8262 {
8263 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
8264 "in": "query",
8265 "name": "fieldManager",
8266 "schema": {
8267 "type": "string",
8268 "uniqueItems": true
8269 }
8270 },
8271 {
8272 "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.",
8273 "in": "query",
8274 "name": "fieldValidation",
8275 "schema": {
8276 "type": "string",
8277 "uniqueItems": true
8278 }
8279 }
8280 ],
8281 "requestBody": {
8282 "content": {
8283 "*/*": {
8284 "schema": {
8285 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8286 }
8287 }
8288 },
8289 "required": true
8290 },
8291 "responses": {
8292 "200": {
8293 "content": {
8294 "application/json": {
8295 "schema": {
8296 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8297 }
8298 },
8299 "application/vnd.kubernetes.protobuf": {
8300 "schema": {
8301 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8302 }
8303 },
8304 "application/yaml": {
8305 "schema": {
8306 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8307 }
8308 }
8309 },
8310 "description": "OK"
8311 },
8312 "201": {
8313 "content": {
8314 "application/json": {
8315 "schema": {
8316 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8317 }
8318 },
8319 "application/vnd.kubernetes.protobuf": {
8320 "schema": {
8321 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8322 }
8323 },
8324 "application/yaml": {
8325 "schema": {
8326 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8327 }
8328 }
8329 },
8330 "description": "Created"
8331 },
8332 "202": {
8333 "content": {
8334 "application/json": {
8335 "schema": {
8336 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8337 }
8338 },
8339 "application/vnd.kubernetes.protobuf": {
8340 "schema": {
8341 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8342 }
8343 },
8344 "application/yaml": {
8345 "schema": {
8346 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8347 }
8348 }
8349 },
8350 "description": "Accepted"
8351 },
8352 "401": {
8353 "description": "Unauthorized"
8354 }
8355 },
8356 "tags": [
8357 "resource_v1alpha2"
8358 ],
8359 "x-kubernetes-action": "post",
8360 "x-kubernetes-group-version-kind": {
8361 "group": "resource.k8s.io",
8362 "kind": "ResourceClass",
8363 "version": "v1alpha2"
8364 }
8365 }
8366 },
8367 "/apis/resource.k8s.io/v1alpha2/resourceclasses/{name}": {
8368 "delete": {
8369 "description": "delete a ResourceClass",
8370 "operationId": "deleteResourceV1alpha2ResourceClass",
8371 "parameters": [
8372 {
8373 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8374 "in": "query",
8375 "name": "dryRun",
8376 "schema": {
8377 "type": "string",
8378 "uniqueItems": true
8379 }
8380 },
8381 {
8382 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
8383 "in": "query",
8384 "name": "gracePeriodSeconds",
8385 "schema": {
8386 "type": "integer",
8387 "uniqueItems": true
8388 }
8389 },
8390 {
8391 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
8392 "in": "query",
8393 "name": "orphanDependents",
8394 "schema": {
8395 "type": "boolean",
8396 "uniqueItems": true
8397 }
8398 },
8399 {
8400 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
8401 "in": "query",
8402 "name": "propagationPolicy",
8403 "schema": {
8404 "type": "string",
8405 "uniqueItems": true
8406 }
8407 }
8408 ],
8409 "requestBody": {
8410 "content": {
8411 "*/*": {
8412 "schema": {
8413 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
8414 }
8415 }
8416 }
8417 },
8418 "responses": {
8419 "200": {
8420 "content": {
8421 "application/json": {
8422 "schema": {
8423 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8424 }
8425 },
8426 "application/vnd.kubernetes.protobuf": {
8427 "schema": {
8428 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8429 }
8430 },
8431 "application/yaml": {
8432 "schema": {
8433 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8434 }
8435 }
8436 },
8437 "description": "OK"
8438 },
8439 "202": {
8440 "content": {
8441 "application/json": {
8442 "schema": {
8443 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8444 }
8445 },
8446 "application/vnd.kubernetes.protobuf": {
8447 "schema": {
8448 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8449 }
8450 },
8451 "application/yaml": {
8452 "schema": {
8453 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8454 }
8455 }
8456 },
8457 "description": "Accepted"
8458 },
8459 "401": {
8460 "description": "Unauthorized"
8461 }
8462 },
8463 "tags": [
8464 "resource_v1alpha2"
8465 ],
8466 "x-kubernetes-action": "delete",
8467 "x-kubernetes-group-version-kind": {
8468 "group": "resource.k8s.io",
8469 "kind": "ResourceClass",
8470 "version": "v1alpha2"
8471 }
8472 },
8473 "get": {
8474 "description": "read the specified ResourceClass",
8475 "operationId": "readResourceV1alpha2ResourceClass",
8476 "responses": {
8477 "200": {
8478 "content": {
8479 "application/json": {
8480 "schema": {
8481 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8482 }
8483 },
8484 "application/vnd.kubernetes.protobuf": {
8485 "schema": {
8486 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8487 }
8488 },
8489 "application/yaml": {
8490 "schema": {
8491 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8492 }
8493 }
8494 },
8495 "description": "OK"
8496 },
8497 "401": {
8498 "description": "Unauthorized"
8499 }
8500 },
8501 "tags": [
8502 "resource_v1alpha2"
8503 ],
8504 "x-kubernetes-action": "get",
8505 "x-kubernetes-group-version-kind": {
8506 "group": "resource.k8s.io",
8507 "kind": "ResourceClass",
8508 "version": "v1alpha2"
8509 }
8510 },
8511 "parameters": [
8512 {
8513 "description": "name of the ResourceClass",
8514 "in": "path",
8515 "name": "name",
8516 "required": true,
8517 "schema": {
8518 "type": "string",
8519 "uniqueItems": true
8520 }
8521 },
8522 {
8523 "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).",
8524 "in": "query",
8525 "name": "pretty",
8526 "schema": {
8527 "type": "string",
8528 "uniqueItems": true
8529 }
8530 }
8531 ],
8532 "patch": {
8533 "description": "partially update the specified ResourceClass",
8534 "operationId": "patchResourceV1alpha2ResourceClass",
8535 "parameters": [
8536 {
8537 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8538 "in": "query",
8539 "name": "dryRun",
8540 "schema": {
8541 "type": "string",
8542 "uniqueItems": true
8543 }
8544 },
8545 {
8546 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
8547 "in": "query",
8548 "name": "fieldManager",
8549 "schema": {
8550 "type": "string",
8551 "uniqueItems": true
8552 }
8553 },
8554 {
8555 "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.",
8556 "in": "query",
8557 "name": "fieldValidation",
8558 "schema": {
8559 "type": "string",
8560 "uniqueItems": true
8561 }
8562 },
8563 {
8564 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
8565 "in": "query",
8566 "name": "force",
8567 "schema": {
8568 "type": "boolean",
8569 "uniqueItems": true
8570 }
8571 }
8572 ],
8573 "requestBody": {
8574 "content": {
8575 "application/apply-patch+yaml": {
8576 "schema": {
8577 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
8578 }
8579 },
8580 "application/json-patch+json": {
8581 "schema": {
8582 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
8583 }
8584 },
8585 "application/merge-patch+json": {
8586 "schema": {
8587 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
8588 }
8589 },
8590 "application/strategic-merge-patch+json": {
8591 "schema": {
8592 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
8593 }
8594 }
8595 },
8596 "required": true
8597 },
8598 "responses": {
8599 "200": {
8600 "content": {
8601 "application/json": {
8602 "schema": {
8603 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8604 }
8605 },
8606 "application/vnd.kubernetes.protobuf": {
8607 "schema": {
8608 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8609 }
8610 },
8611 "application/yaml": {
8612 "schema": {
8613 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8614 }
8615 }
8616 },
8617 "description": "OK"
8618 },
8619 "201": {
8620 "content": {
8621 "application/json": {
8622 "schema": {
8623 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8624 }
8625 },
8626 "application/vnd.kubernetes.protobuf": {
8627 "schema": {
8628 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8629 }
8630 },
8631 "application/yaml": {
8632 "schema": {
8633 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8634 }
8635 }
8636 },
8637 "description": "Created"
8638 },
8639 "401": {
8640 "description": "Unauthorized"
8641 }
8642 },
8643 "tags": [
8644 "resource_v1alpha2"
8645 ],
8646 "x-kubernetes-action": "patch",
8647 "x-kubernetes-group-version-kind": {
8648 "group": "resource.k8s.io",
8649 "kind": "ResourceClass",
8650 "version": "v1alpha2"
8651 }
8652 },
8653 "put": {
8654 "description": "replace the specified ResourceClass",
8655 "operationId": "replaceResourceV1alpha2ResourceClass",
8656 "parameters": [
8657 {
8658 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8659 "in": "query",
8660 "name": "dryRun",
8661 "schema": {
8662 "type": "string",
8663 "uniqueItems": true
8664 }
8665 },
8666 {
8667 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
8668 "in": "query",
8669 "name": "fieldManager",
8670 "schema": {
8671 "type": "string",
8672 "uniqueItems": true
8673 }
8674 },
8675 {
8676 "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.",
8677 "in": "query",
8678 "name": "fieldValidation",
8679 "schema": {
8680 "type": "string",
8681 "uniqueItems": true
8682 }
8683 }
8684 ],
8685 "requestBody": {
8686 "content": {
8687 "*/*": {
8688 "schema": {
8689 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8690 }
8691 }
8692 },
8693 "required": true
8694 },
8695 "responses": {
8696 "200": {
8697 "content": {
8698 "application/json": {
8699 "schema": {
8700 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8701 }
8702 },
8703 "application/vnd.kubernetes.protobuf": {
8704 "schema": {
8705 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8706 }
8707 },
8708 "application/yaml": {
8709 "schema": {
8710 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8711 }
8712 }
8713 },
8714 "description": "OK"
8715 },
8716 "201": {
8717 "content": {
8718 "application/json": {
8719 "schema": {
8720 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8721 }
8722 },
8723 "application/vnd.kubernetes.protobuf": {
8724 "schema": {
8725 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8726 }
8727 },
8728 "application/yaml": {
8729 "schema": {
8730 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass"
8731 }
8732 }
8733 },
8734 "description": "Created"
8735 },
8736 "401": {
8737 "description": "Unauthorized"
8738 }
8739 },
8740 "tags": [
8741 "resource_v1alpha2"
8742 ],
8743 "x-kubernetes-action": "put",
8744 "x-kubernetes-group-version-kind": {
8745 "group": "resource.k8s.io",
8746 "kind": "ResourceClass",
8747 "version": "v1alpha2"
8748 }
8749 }
8750 },
8751 "/apis/resource.k8s.io/v1alpha2/resourceclassparameters": {
8752 "get": {
8753 "description": "list or watch objects of kind ResourceClassParameters",
8754 "operationId": "listResourceV1alpha2ResourceClassParametersForAllNamespaces",
8755 "responses": {
8756 "200": {
8757 "content": {
8758 "application/json": {
8759 "schema": {
8760 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
8761 }
8762 },
8763 "application/json;stream=watch": {
8764 "schema": {
8765 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
8766 }
8767 },
8768 "application/vnd.kubernetes.protobuf": {
8769 "schema": {
8770 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
8771 }
8772 },
8773 "application/vnd.kubernetes.protobuf;stream=watch": {
8774 "schema": {
8775 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
8776 }
8777 },
8778 "application/yaml": {
8779 "schema": {
8780 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList"
8781 }
8782 }
8783 },
8784 "description": "OK"
8785 },
8786 "401": {
8787 "description": "Unauthorized"
8788 }
8789 },
8790 "tags": [
8791 "resource_v1alpha2"
8792 ],
8793 "x-kubernetes-action": "list",
8794 "x-kubernetes-group-version-kind": {
8795 "group": "resource.k8s.io",
8796 "kind": "ResourceClassParameters",
8797 "version": "v1alpha2"
8798 }
8799 },
8800 "parameters": [
8801 {
8802 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
8803 "in": "query",
8804 "name": "allowWatchBookmarks",
8805 "schema": {
8806 "type": "boolean",
8807 "uniqueItems": true
8808 }
8809 },
8810 {
8811 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
8812 "in": "query",
8813 "name": "continue",
8814 "schema": {
8815 "type": "string",
8816 "uniqueItems": true
8817 }
8818 },
8819 {
8820 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
8821 "in": "query",
8822 "name": "fieldSelector",
8823 "schema": {
8824 "type": "string",
8825 "uniqueItems": true
8826 }
8827 },
8828 {
8829 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
8830 "in": "query",
8831 "name": "labelSelector",
8832 "schema": {
8833 "type": "string",
8834 "uniqueItems": true
8835 }
8836 },
8837 {
8838 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
8839 "in": "query",
8840 "name": "limit",
8841 "schema": {
8842 "type": "integer",
8843 "uniqueItems": true
8844 }
8845 },
8846 {
8847 "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).",
8848 "in": "query",
8849 "name": "pretty",
8850 "schema": {
8851 "type": "string",
8852 "uniqueItems": true
8853 }
8854 },
8855 {
8856 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8857 "in": "query",
8858 "name": "resourceVersion",
8859 "schema": {
8860 "type": "string",
8861 "uniqueItems": true
8862 }
8863 },
8864 {
8865 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8866 "in": "query",
8867 "name": "resourceVersionMatch",
8868 "schema": {
8869 "type": "string",
8870 "uniqueItems": true
8871 }
8872 },
8873 {
8874 "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.",
8875 "in": "query",
8876 "name": "sendInitialEvents",
8877 "schema": {
8878 "type": "boolean",
8879 "uniqueItems": true
8880 }
8881 },
8882 {
8883 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
8884 "in": "query",
8885 "name": "timeoutSeconds",
8886 "schema": {
8887 "type": "integer",
8888 "uniqueItems": true
8889 }
8890 },
8891 {
8892 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
8893 "in": "query",
8894 "name": "watch",
8895 "schema": {
8896 "type": "boolean",
8897 "uniqueItems": true
8898 }
8899 }
8900 ]
8901 },
8902 "/apis/resource.k8s.io/v1alpha2/resourceslices": {
8903 "delete": {
8904 "description": "delete collection of ResourceSlice",
8905 "operationId": "deleteResourceV1alpha2CollectionResourceSlice",
8906 "parameters": [
8907 {
8908 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
8909 "in": "query",
8910 "name": "continue",
8911 "schema": {
8912 "type": "string",
8913 "uniqueItems": true
8914 }
8915 },
8916 {
8917 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
8918 "in": "query",
8919 "name": "dryRun",
8920 "schema": {
8921 "type": "string",
8922 "uniqueItems": true
8923 }
8924 },
8925 {
8926 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
8927 "in": "query",
8928 "name": "fieldSelector",
8929 "schema": {
8930 "type": "string",
8931 "uniqueItems": true
8932 }
8933 },
8934 {
8935 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
8936 "in": "query",
8937 "name": "gracePeriodSeconds",
8938 "schema": {
8939 "type": "integer",
8940 "uniqueItems": true
8941 }
8942 },
8943 {
8944 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
8945 "in": "query",
8946 "name": "labelSelector",
8947 "schema": {
8948 "type": "string",
8949 "uniqueItems": true
8950 }
8951 },
8952 {
8953 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
8954 "in": "query",
8955 "name": "limit",
8956 "schema": {
8957 "type": "integer",
8958 "uniqueItems": true
8959 }
8960 },
8961 {
8962 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
8963 "in": "query",
8964 "name": "orphanDependents",
8965 "schema": {
8966 "type": "boolean",
8967 "uniqueItems": true
8968 }
8969 },
8970 {
8971 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
8972 "in": "query",
8973 "name": "propagationPolicy",
8974 "schema": {
8975 "type": "string",
8976 "uniqueItems": true
8977 }
8978 },
8979 {
8980 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8981 "in": "query",
8982 "name": "resourceVersion",
8983 "schema": {
8984 "type": "string",
8985 "uniqueItems": true
8986 }
8987 },
8988 {
8989 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
8990 "in": "query",
8991 "name": "resourceVersionMatch",
8992 "schema": {
8993 "type": "string",
8994 "uniqueItems": true
8995 }
8996 },
8997 {
8998 "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.",
8999 "in": "query",
9000 "name": "sendInitialEvents",
9001 "schema": {
9002 "type": "boolean",
9003 "uniqueItems": true
9004 }
9005 },
9006 {
9007 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
9008 "in": "query",
9009 "name": "timeoutSeconds",
9010 "schema": {
9011 "type": "integer",
9012 "uniqueItems": true
9013 }
9014 }
9015 ],
9016 "requestBody": {
9017 "content": {
9018 "*/*": {
9019 "schema": {
9020 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
9021 }
9022 }
9023 }
9024 },
9025 "responses": {
9026 "200": {
9027 "content": {
9028 "application/json": {
9029 "schema": {
9030 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
9031 }
9032 },
9033 "application/vnd.kubernetes.protobuf": {
9034 "schema": {
9035 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
9036 }
9037 },
9038 "application/yaml": {
9039 "schema": {
9040 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
9041 }
9042 }
9043 },
9044 "description": "OK"
9045 },
9046 "401": {
9047 "description": "Unauthorized"
9048 }
9049 },
9050 "tags": [
9051 "resource_v1alpha2"
9052 ],
9053 "x-kubernetes-action": "deletecollection",
9054 "x-kubernetes-group-version-kind": {
9055 "group": "resource.k8s.io",
9056 "kind": "ResourceSlice",
9057 "version": "v1alpha2"
9058 }
9059 },
9060 "get": {
9061 "description": "list or watch objects of kind ResourceSlice",
9062 "operationId": "listResourceV1alpha2ResourceSlice",
9063 "parameters": [
9064 {
9065 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
9066 "in": "query",
9067 "name": "allowWatchBookmarks",
9068 "schema": {
9069 "type": "boolean",
9070 "uniqueItems": true
9071 }
9072 },
9073 {
9074 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
9075 "in": "query",
9076 "name": "continue",
9077 "schema": {
9078 "type": "string",
9079 "uniqueItems": true
9080 }
9081 },
9082 {
9083 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
9084 "in": "query",
9085 "name": "fieldSelector",
9086 "schema": {
9087 "type": "string",
9088 "uniqueItems": true
9089 }
9090 },
9091 {
9092 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
9093 "in": "query",
9094 "name": "labelSelector",
9095 "schema": {
9096 "type": "string",
9097 "uniqueItems": true
9098 }
9099 },
9100 {
9101 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
9102 "in": "query",
9103 "name": "limit",
9104 "schema": {
9105 "type": "integer",
9106 "uniqueItems": true
9107 }
9108 },
9109 {
9110 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9111 "in": "query",
9112 "name": "resourceVersion",
9113 "schema": {
9114 "type": "string",
9115 "uniqueItems": true
9116 }
9117 },
9118 {
9119 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9120 "in": "query",
9121 "name": "resourceVersionMatch",
9122 "schema": {
9123 "type": "string",
9124 "uniqueItems": true
9125 }
9126 },
9127 {
9128 "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.",
9129 "in": "query",
9130 "name": "sendInitialEvents",
9131 "schema": {
9132 "type": "boolean",
9133 "uniqueItems": true
9134 }
9135 },
9136 {
9137 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
9138 "in": "query",
9139 "name": "timeoutSeconds",
9140 "schema": {
9141 "type": "integer",
9142 "uniqueItems": true
9143 }
9144 },
9145 {
9146 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
9147 "in": "query",
9148 "name": "watch",
9149 "schema": {
9150 "type": "boolean",
9151 "uniqueItems": true
9152 }
9153 }
9154 ],
9155 "responses": {
9156 "200": {
9157 "content": {
9158 "application/json": {
9159 "schema": {
9160 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList"
9161 }
9162 },
9163 "application/json;stream=watch": {
9164 "schema": {
9165 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList"
9166 }
9167 },
9168 "application/vnd.kubernetes.protobuf": {
9169 "schema": {
9170 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList"
9171 }
9172 },
9173 "application/vnd.kubernetes.protobuf;stream=watch": {
9174 "schema": {
9175 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList"
9176 }
9177 },
9178 "application/yaml": {
9179 "schema": {
9180 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList"
9181 }
9182 }
9183 },
9184 "description": "OK"
9185 },
9186 "401": {
9187 "description": "Unauthorized"
9188 }
9189 },
9190 "tags": [
9191 "resource_v1alpha2"
9192 ],
9193 "x-kubernetes-action": "list",
9194 "x-kubernetes-group-version-kind": {
9195 "group": "resource.k8s.io",
9196 "kind": "ResourceSlice",
9197 "version": "v1alpha2"
9198 }
9199 },
9200 "parameters": [
9201 {
9202 "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).",
9203 "in": "query",
9204 "name": "pretty",
9205 "schema": {
9206 "type": "string",
9207 "uniqueItems": true
9208 }
9209 }
9210 ],
9211 "post": {
9212 "description": "create a ResourceSlice",
9213 "operationId": "createResourceV1alpha2ResourceSlice",
9214 "parameters": [
9215 {
9216 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
9217 "in": "query",
9218 "name": "dryRun",
9219 "schema": {
9220 "type": "string",
9221 "uniqueItems": true
9222 }
9223 },
9224 {
9225 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
9226 "in": "query",
9227 "name": "fieldManager",
9228 "schema": {
9229 "type": "string",
9230 "uniqueItems": true
9231 }
9232 },
9233 {
9234 "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.",
9235 "in": "query",
9236 "name": "fieldValidation",
9237 "schema": {
9238 "type": "string",
9239 "uniqueItems": true
9240 }
9241 }
9242 ],
9243 "requestBody": {
9244 "content": {
9245 "*/*": {
9246 "schema": {
9247 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9248 }
9249 }
9250 },
9251 "required": true
9252 },
9253 "responses": {
9254 "200": {
9255 "content": {
9256 "application/json": {
9257 "schema": {
9258 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9259 }
9260 },
9261 "application/vnd.kubernetes.protobuf": {
9262 "schema": {
9263 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9264 }
9265 },
9266 "application/yaml": {
9267 "schema": {
9268 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9269 }
9270 }
9271 },
9272 "description": "OK"
9273 },
9274 "201": {
9275 "content": {
9276 "application/json": {
9277 "schema": {
9278 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9279 }
9280 },
9281 "application/vnd.kubernetes.protobuf": {
9282 "schema": {
9283 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9284 }
9285 },
9286 "application/yaml": {
9287 "schema": {
9288 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9289 }
9290 }
9291 },
9292 "description": "Created"
9293 },
9294 "202": {
9295 "content": {
9296 "application/json": {
9297 "schema": {
9298 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9299 }
9300 },
9301 "application/vnd.kubernetes.protobuf": {
9302 "schema": {
9303 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9304 }
9305 },
9306 "application/yaml": {
9307 "schema": {
9308 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9309 }
9310 }
9311 },
9312 "description": "Accepted"
9313 },
9314 "401": {
9315 "description": "Unauthorized"
9316 }
9317 },
9318 "tags": [
9319 "resource_v1alpha2"
9320 ],
9321 "x-kubernetes-action": "post",
9322 "x-kubernetes-group-version-kind": {
9323 "group": "resource.k8s.io",
9324 "kind": "ResourceSlice",
9325 "version": "v1alpha2"
9326 }
9327 }
9328 },
9329 "/apis/resource.k8s.io/v1alpha2/resourceslices/{name}": {
9330 "delete": {
9331 "description": "delete a ResourceSlice",
9332 "operationId": "deleteResourceV1alpha2ResourceSlice",
9333 "parameters": [
9334 {
9335 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
9336 "in": "query",
9337 "name": "dryRun",
9338 "schema": {
9339 "type": "string",
9340 "uniqueItems": true
9341 }
9342 },
9343 {
9344 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
9345 "in": "query",
9346 "name": "gracePeriodSeconds",
9347 "schema": {
9348 "type": "integer",
9349 "uniqueItems": true
9350 }
9351 },
9352 {
9353 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
9354 "in": "query",
9355 "name": "orphanDependents",
9356 "schema": {
9357 "type": "boolean",
9358 "uniqueItems": true
9359 }
9360 },
9361 {
9362 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
9363 "in": "query",
9364 "name": "propagationPolicy",
9365 "schema": {
9366 "type": "string",
9367 "uniqueItems": true
9368 }
9369 }
9370 ],
9371 "requestBody": {
9372 "content": {
9373 "*/*": {
9374 "schema": {
9375 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
9376 }
9377 }
9378 }
9379 },
9380 "responses": {
9381 "200": {
9382 "content": {
9383 "application/json": {
9384 "schema": {
9385 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9386 }
9387 },
9388 "application/vnd.kubernetes.protobuf": {
9389 "schema": {
9390 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9391 }
9392 },
9393 "application/yaml": {
9394 "schema": {
9395 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9396 }
9397 }
9398 },
9399 "description": "OK"
9400 },
9401 "202": {
9402 "content": {
9403 "application/json": {
9404 "schema": {
9405 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9406 }
9407 },
9408 "application/vnd.kubernetes.protobuf": {
9409 "schema": {
9410 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9411 }
9412 },
9413 "application/yaml": {
9414 "schema": {
9415 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9416 }
9417 }
9418 },
9419 "description": "Accepted"
9420 },
9421 "401": {
9422 "description": "Unauthorized"
9423 }
9424 },
9425 "tags": [
9426 "resource_v1alpha2"
9427 ],
9428 "x-kubernetes-action": "delete",
9429 "x-kubernetes-group-version-kind": {
9430 "group": "resource.k8s.io",
9431 "kind": "ResourceSlice",
9432 "version": "v1alpha2"
9433 }
9434 },
9435 "get": {
9436 "description": "read the specified ResourceSlice",
9437 "operationId": "readResourceV1alpha2ResourceSlice",
9438 "responses": {
9439 "200": {
9440 "content": {
9441 "application/json": {
9442 "schema": {
9443 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9444 }
9445 },
9446 "application/vnd.kubernetes.protobuf": {
9447 "schema": {
9448 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9449 }
9450 },
9451 "application/yaml": {
9452 "schema": {
9453 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9454 }
9455 }
9456 },
9457 "description": "OK"
9458 },
9459 "401": {
9460 "description": "Unauthorized"
9461 }
9462 },
9463 "tags": [
9464 "resource_v1alpha2"
9465 ],
9466 "x-kubernetes-action": "get",
9467 "x-kubernetes-group-version-kind": {
9468 "group": "resource.k8s.io",
9469 "kind": "ResourceSlice",
9470 "version": "v1alpha2"
9471 }
9472 },
9473 "parameters": [
9474 {
9475 "description": "name of the ResourceSlice",
9476 "in": "path",
9477 "name": "name",
9478 "required": true,
9479 "schema": {
9480 "type": "string",
9481 "uniqueItems": true
9482 }
9483 },
9484 {
9485 "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).",
9486 "in": "query",
9487 "name": "pretty",
9488 "schema": {
9489 "type": "string",
9490 "uniqueItems": true
9491 }
9492 }
9493 ],
9494 "patch": {
9495 "description": "partially update the specified ResourceSlice",
9496 "operationId": "patchResourceV1alpha2ResourceSlice",
9497 "parameters": [
9498 {
9499 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
9500 "in": "query",
9501 "name": "dryRun",
9502 "schema": {
9503 "type": "string",
9504 "uniqueItems": true
9505 }
9506 },
9507 {
9508 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
9509 "in": "query",
9510 "name": "fieldManager",
9511 "schema": {
9512 "type": "string",
9513 "uniqueItems": true
9514 }
9515 },
9516 {
9517 "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.",
9518 "in": "query",
9519 "name": "fieldValidation",
9520 "schema": {
9521 "type": "string",
9522 "uniqueItems": true
9523 }
9524 },
9525 {
9526 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
9527 "in": "query",
9528 "name": "force",
9529 "schema": {
9530 "type": "boolean",
9531 "uniqueItems": true
9532 }
9533 }
9534 ],
9535 "requestBody": {
9536 "content": {
9537 "application/apply-patch+yaml": {
9538 "schema": {
9539 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
9540 }
9541 },
9542 "application/json-patch+json": {
9543 "schema": {
9544 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
9545 }
9546 },
9547 "application/merge-patch+json": {
9548 "schema": {
9549 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
9550 }
9551 },
9552 "application/strategic-merge-patch+json": {
9553 "schema": {
9554 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
9555 }
9556 }
9557 },
9558 "required": true
9559 },
9560 "responses": {
9561 "200": {
9562 "content": {
9563 "application/json": {
9564 "schema": {
9565 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9566 }
9567 },
9568 "application/vnd.kubernetes.protobuf": {
9569 "schema": {
9570 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9571 }
9572 },
9573 "application/yaml": {
9574 "schema": {
9575 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9576 }
9577 }
9578 },
9579 "description": "OK"
9580 },
9581 "201": {
9582 "content": {
9583 "application/json": {
9584 "schema": {
9585 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9586 }
9587 },
9588 "application/vnd.kubernetes.protobuf": {
9589 "schema": {
9590 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9591 }
9592 },
9593 "application/yaml": {
9594 "schema": {
9595 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9596 }
9597 }
9598 },
9599 "description": "Created"
9600 },
9601 "401": {
9602 "description": "Unauthorized"
9603 }
9604 },
9605 "tags": [
9606 "resource_v1alpha2"
9607 ],
9608 "x-kubernetes-action": "patch",
9609 "x-kubernetes-group-version-kind": {
9610 "group": "resource.k8s.io",
9611 "kind": "ResourceSlice",
9612 "version": "v1alpha2"
9613 }
9614 },
9615 "put": {
9616 "description": "replace the specified ResourceSlice",
9617 "operationId": "replaceResourceV1alpha2ResourceSlice",
9618 "parameters": [
9619 {
9620 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
9621 "in": "query",
9622 "name": "dryRun",
9623 "schema": {
9624 "type": "string",
9625 "uniqueItems": true
9626 }
9627 },
9628 {
9629 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
9630 "in": "query",
9631 "name": "fieldManager",
9632 "schema": {
9633 "type": "string",
9634 "uniqueItems": true
9635 }
9636 },
9637 {
9638 "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.",
9639 "in": "query",
9640 "name": "fieldValidation",
9641 "schema": {
9642 "type": "string",
9643 "uniqueItems": true
9644 }
9645 }
9646 ],
9647 "requestBody": {
9648 "content": {
9649 "*/*": {
9650 "schema": {
9651 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9652 }
9653 }
9654 },
9655 "required": true
9656 },
9657 "responses": {
9658 "200": {
9659 "content": {
9660 "application/json": {
9661 "schema": {
9662 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9663 }
9664 },
9665 "application/vnd.kubernetes.protobuf": {
9666 "schema": {
9667 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9668 }
9669 },
9670 "application/yaml": {
9671 "schema": {
9672 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9673 }
9674 }
9675 },
9676 "description": "OK"
9677 },
9678 "201": {
9679 "content": {
9680 "application/json": {
9681 "schema": {
9682 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9683 }
9684 },
9685 "application/vnd.kubernetes.protobuf": {
9686 "schema": {
9687 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9688 }
9689 },
9690 "application/yaml": {
9691 "schema": {
9692 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice"
9693 }
9694 }
9695 },
9696 "description": "Created"
9697 },
9698 "401": {
9699 "description": "Unauthorized"
9700 }
9701 },
9702 "tags": [
9703 "resource_v1alpha2"
9704 ],
9705 "x-kubernetes-action": "put",
9706 "x-kubernetes-group-version-kind": {
9707 "group": "resource.k8s.io",
9708 "kind": "ResourceSlice",
9709 "version": "v1alpha2"
9710 }
9711 }
9712 },
9713 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts": {
9714 "get": {
9715 "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.",
9716 "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContextList",
9717 "responses": {
9718 "200": {
9719 "content": {
9720 "application/json": {
9721 "schema": {
9722 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9723 }
9724 },
9725 "application/json;stream=watch": {
9726 "schema": {
9727 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9728 }
9729 },
9730 "application/vnd.kubernetes.protobuf": {
9731 "schema": {
9732 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9733 }
9734 },
9735 "application/vnd.kubernetes.protobuf;stream=watch": {
9736 "schema": {
9737 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9738 }
9739 },
9740 "application/yaml": {
9741 "schema": {
9742 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9743 }
9744 }
9745 },
9746 "description": "OK"
9747 },
9748 "401": {
9749 "description": "Unauthorized"
9750 }
9751 },
9752 "tags": [
9753 "resource_v1alpha2"
9754 ],
9755 "x-kubernetes-action": "watchlist",
9756 "x-kubernetes-group-version-kind": {
9757 "group": "resource.k8s.io",
9758 "kind": "PodSchedulingContext",
9759 "version": "v1alpha2"
9760 }
9761 },
9762 "parameters": [
9763 {
9764 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
9765 "in": "query",
9766 "name": "allowWatchBookmarks",
9767 "schema": {
9768 "type": "boolean",
9769 "uniqueItems": true
9770 }
9771 },
9772 {
9773 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
9774 "in": "query",
9775 "name": "continue",
9776 "schema": {
9777 "type": "string",
9778 "uniqueItems": true
9779 }
9780 },
9781 {
9782 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
9783 "in": "query",
9784 "name": "fieldSelector",
9785 "schema": {
9786 "type": "string",
9787 "uniqueItems": true
9788 }
9789 },
9790 {
9791 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
9792 "in": "query",
9793 "name": "labelSelector",
9794 "schema": {
9795 "type": "string",
9796 "uniqueItems": true
9797 }
9798 },
9799 {
9800 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
9801 "in": "query",
9802 "name": "limit",
9803 "schema": {
9804 "type": "integer",
9805 "uniqueItems": true
9806 }
9807 },
9808 {
9809 "description": "object name and auth scope, such as for teams and projects",
9810 "in": "path",
9811 "name": "namespace",
9812 "required": true,
9813 "schema": {
9814 "type": "string",
9815 "uniqueItems": true
9816 }
9817 },
9818 {
9819 "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).",
9820 "in": "query",
9821 "name": "pretty",
9822 "schema": {
9823 "type": "string",
9824 "uniqueItems": true
9825 }
9826 },
9827 {
9828 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9829 "in": "query",
9830 "name": "resourceVersion",
9831 "schema": {
9832 "type": "string",
9833 "uniqueItems": true
9834 }
9835 },
9836 {
9837 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
9838 "in": "query",
9839 "name": "resourceVersionMatch",
9840 "schema": {
9841 "type": "string",
9842 "uniqueItems": true
9843 }
9844 },
9845 {
9846 "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.",
9847 "in": "query",
9848 "name": "sendInitialEvents",
9849 "schema": {
9850 "type": "boolean",
9851 "uniqueItems": true
9852 }
9853 },
9854 {
9855 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
9856 "in": "query",
9857 "name": "timeoutSeconds",
9858 "schema": {
9859 "type": "integer",
9860 "uniqueItems": true
9861 }
9862 },
9863 {
9864 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
9865 "in": "query",
9866 "name": "watch",
9867 "schema": {
9868 "type": "boolean",
9869 "uniqueItems": true
9870 }
9871 }
9872 ]
9873 },
9874 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts/{name}": {
9875 "get": {
9876 "description": "watch changes to an object of kind PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
9877 "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContext",
9878 "responses": {
9879 "200": {
9880 "content": {
9881 "application/json": {
9882 "schema": {
9883 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9884 }
9885 },
9886 "application/json;stream=watch": {
9887 "schema": {
9888 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9889 }
9890 },
9891 "application/vnd.kubernetes.protobuf": {
9892 "schema": {
9893 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9894 }
9895 },
9896 "application/vnd.kubernetes.protobuf;stream=watch": {
9897 "schema": {
9898 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9899 }
9900 },
9901 "application/yaml": {
9902 "schema": {
9903 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
9904 }
9905 }
9906 },
9907 "description": "OK"
9908 },
9909 "401": {
9910 "description": "Unauthorized"
9911 }
9912 },
9913 "tags": [
9914 "resource_v1alpha2"
9915 ],
9916 "x-kubernetes-action": "watch",
9917 "x-kubernetes-group-version-kind": {
9918 "group": "resource.k8s.io",
9919 "kind": "PodSchedulingContext",
9920 "version": "v1alpha2"
9921 }
9922 },
9923 "parameters": [
9924 {
9925 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
9926 "in": "query",
9927 "name": "allowWatchBookmarks",
9928 "schema": {
9929 "type": "boolean",
9930 "uniqueItems": true
9931 }
9932 },
9933 {
9934 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
9935 "in": "query",
9936 "name": "continue",
9937 "schema": {
9938 "type": "string",
9939 "uniqueItems": true
9940 }
9941 },
9942 {
9943 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
9944 "in": "query",
9945 "name": "fieldSelector",
9946 "schema": {
9947 "type": "string",
9948 "uniqueItems": true
9949 }
9950 },
9951 {
9952 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
9953 "in": "query",
9954 "name": "labelSelector",
9955 "schema": {
9956 "type": "string",
9957 "uniqueItems": true
9958 }
9959 },
9960 {
9961 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
9962 "in": "query",
9963 "name": "limit",
9964 "schema": {
9965 "type": "integer",
9966 "uniqueItems": true
9967 }
9968 },
9969 {
9970 "description": "name of the PodSchedulingContext",
9971 "in": "path",
9972 "name": "name",
9973 "required": true,
9974 "schema": {
9975 "type": "string",
9976 "uniqueItems": true
9977 }
9978 },
9979 {
9980 "description": "object name and auth scope, such as for teams and projects",
9981 "in": "path",
9982 "name": "namespace",
9983 "required": true,
9984 "schema": {
9985 "type": "string",
9986 "uniqueItems": true
9987 }
9988 },
9989 {
9990 "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).",
9991 "in": "query",
9992 "name": "pretty",
9993 "schema": {
9994 "type": "string",
9995 "uniqueItems": true
9996 }
9997 },
9998 {
9999 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10000 "in": "query",
10001 "name": "resourceVersion",
10002 "schema": {
10003 "type": "string",
10004 "uniqueItems": true
10005 }
10006 },
10007 {
10008 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10009 "in": "query",
10010 "name": "resourceVersionMatch",
10011 "schema": {
10012 "type": "string",
10013 "uniqueItems": true
10014 }
10015 },
10016 {
10017 "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.",
10018 "in": "query",
10019 "name": "sendInitialEvents",
10020 "schema": {
10021 "type": "boolean",
10022 "uniqueItems": true
10023 }
10024 },
10025 {
10026 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10027 "in": "query",
10028 "name": "timeoutSeconds",
10029 "schema": {
10030 "type": "integer",
10031 "uniqueItems": true
10032 }
10033 },
10034 {
10035 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10036 "in": "query",
10037 "name": "watch",
10038 "schema": {
10039 "type": "boolean",
10040 "uniqueItems": true
10041 }
10042 }
10043 ]
10044 },
10045 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimparameters": {
10046 "get": {
10047 "description": "watch individual changes to a list of ResourceClaimParameters. deprecated: use the 'watch' parameter with a list operation instead.",
10048 "operationId": "watchResourceV1alpha2NamespacedResourceClaimParametersList",
10049 "responses": {
10050 "200": {
10051 "content": {
10052 "application/json": {
10053 "schema": {
10054 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10055 }
10056 },
10057 "application/json;stream=watch": {
10058 "schema": {
10059 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10060 }
10061 },
10062 "application/vnd.kubernetes.protobuf": {
10063 "schema": {
10064 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10065 }
10066 },
10067 "application/vnd.kubernetes.protobuf;stream=watch": {
10068 "schema": {
10069 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10070 }
10071 },
10072 "application/yaml": {
10073 "schema": {
10074 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10075 }
10076 }
10077 },
10078 "description": "OK"
10079 },
10080 "401": {
10081 "description": "Unauthorized"
10082 }
10083 },
10084 "tags": [
10085 "resource_v1alpha2"
10086 ],
10087 "x-kubernetes-action": "watchlist",
10088 "x-kubernetes-group-version-kind": {
10089 "group": "resource.k8s.io",
10090 "kind": "ResourceClaimParameters",
10091 "version": "v1alpha2"
10092 }
10093 },
10094 "parameters": [
10095 {
10096 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10097 "in": "query",
10098 "name": "allowWatchBookmarks",
10099 "schema": {
10100 "type": "boolean",
10101 "uniqueItems": true
10102 }
10103 },
10104 {
10105 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10106 "in": "query",
10107 "name": "continue",
10108 "schema": {
10109 "type": "string",
10110 "uniqueItems": true
10111 }
10112 },
10113 {
10114 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10115 "in": "query",
10116 "name": "fieldSelector",
10117 "schema": {
10118 "type": "string",
10119 "uniqueItems": true
10120 }
10121 },
10122 {
10123 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10124 "in": "query",
10125 "name": "labelSelector",
10126 "schema": {
10127 "type": "string",
10128 "uniqueItems": true
10129 }
10130 },
10131 {
10132 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10133 "in": "query",
10134 "name": "limit",
10135 "schema": {
10136 "type": "integer",
10137 "uniqueItems": true
10138 }
10139 },
10140 {
10141 "description": "object name and auth scope, such as for teams and projects",
10142 "in": "path",
10143 "name": "namespace",
10144 "required": true,
10145 "schema": {
10146 "type": "string",
10147 "uniqueItems": true
10148 }
10149 },
10150 {
10151 "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).",
10152 "in": "query",
10153 "name": "pretty",
10154 "schema": {
10155 "type": "string",
10156 "uniqueItems": true
10157 }
10158 },
10159 {
10160 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10161 "in": "query",
10162 "name": "resourceVersion",
10163 "schema": {
10164 "type": "string",
10165 "uniqueItems": true
10166 }
10167 },
10168 {
10169 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10170 "in": "query",
10171 "name": "resourceVersionMatch",
10172 "schema": {
10173 "type": "string",
10174 "uniqueItems": true
10175 }
10176 },
10177 {
10178 "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.",
10179 "in": "query",
10180 "name": "sendInitialEvents",
10181 "schema": {
10182 "type": "boolean",
10183 "uniqueItems": true
10184 }
10185 },
10186 {
10187 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10188 "in": "query",
10189 "name": "timeoutSeconds",
10190 "schema": {
10191 "type": "integer",
10192 "uniqueItems": true
10193 }
10194 },
10195 {
10196 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10197 "in": "query",
10198 "name": "watch",
10199 "schema": {
10200 "type": "boolean",
10201 "uniqueItems": true
10202 }
10203 }
10204 ]
10205 },
10206 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimparameters/{name}": {
10207 "get": {
10208 "description": "watch changes to an object of kind ResourceClaimParameters. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
10209 "operationId": "watchResourceV1alpha2NamespacedResourceClaimParameters",
10210 "responses": {
10211 "200": {
10212 "content": {
10213 "application/json": {
10214 "schema": {
10215 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10216 }
10217 },
10218 "application/json;stream=watch": {
10219 "schema": {
10220 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10221 }
10222 },
10223 "application/vnd.kubernetes.protobuf": {
10224 "schema": {
10225 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10226 }
10227 },
10228 "application/vnd.kubernetes.protobuf;stream=watch": {
10229 "schema": {
10230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10231 }
10232 },
10233 "application/yaml": {
10234 "schema": {
10235 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10236 }
10237 }
10238 },
10239 "description": "OK"
10240 },
10241 "401": {
10242 "description": "Unauthorized"
10243 }
10244 },
10245 "tags": [
10246 "resource_v1alpha2"
10247 ],
10248 "x-kubernetes-action": "watch",
10249 "x-kubernetes-group-version-kind": {
10250 "group": "resource.k8s.io",
10251 "kind": "ResourceClaimParameters",
10252 "version": "v1alpha2"
10253 }
10254 },
10255 "parameters": [
10256 {
10257 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10258 "in": "query",
10259 "name": "allowWatchBookmarks",
10260 "schema": {
10261 "type": "boolean",
10262 "uniqueItems": true
10263 }
10264 },
10265 {
10266 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10267 "in": "query",
10268 "name": "continue",
10269 "schema": {
10270 "type": "string",
10271 "uniqueItems": true
10272 }
10273 },
10274 {
10275 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10276 "in": "query",
10277 "name": "fieldSelector",
10278 "schema": {
10279 "type": "string",
10280 "uniqueItems": true
10281 }
10282 },
10283 {
10284 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10285 "in": "query",
10286 "name": "labelSelector",
10287 "schema": {
10288 "type": "string",
10289 "uniqueItems": true
10290 }
10291 },
10292 {
10293 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10294 "in": "query",
10295 "name": "limit",
10296 "schema": {
10297 "type": "integer",
10298 "uniqueItems": true
10299 }
10300 },
10301 {
10302 "description": "name of the ResourceClaimParameters",
10303 "in": "path",
10304 "name": "name",
10305 "required": true,
10306 "schema": {
10307 "type": "string",
10308 "uniqueItems": true
10309 }
10310 },
10311 {
10312 "description": "object name and auth scope, such as for teams and projects",
10313 "in": "path",
10314 "name": "namespace",
10315 "required": true,
10316 "schema": {
10317 "type": "string",
10318 "uniqueItems": true
10319 }
10320 },
10321 {
10322 "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).",
10323 "in": "query",
10324 "name": "pretty",
10325 "schema": {
10326 "type": "string",
10327 "uniqueItems": true
10328 }
10329 },
10330 {
10331 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10332 "in": "query",
10333 "name": "resourceVersion",
10334 "schema": {
10335 "type": "string",
10336 "uniqueItems": true
10337 }
10338 },
10339 {
10340 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10341 "in": "query",
10342 "name": "resourceVersionMatch",
10343 "schema": {
10344 "type": "string",
10345 "uniqueItems": true
10346 }
10347 },
10348 {
10349 "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.",
10350 "in": "query",
10351 "name": "sendInitialEvents",
10352 "schema": {
10353 "type": "boolean",
10354 "uniqueItems": true
10355 }
10356 },
10357 {
10358 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10359 "in": "query",
10360 "name": "timeoutSeconds",
10361 "schema": {
10362 "type": "integer",
10363 "uniqueItems": true
10364 }
10365 },
10366 {
10367 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10368 "in": "query",
10369 "name": "watch",
10370 "schema": {
10371 "type": "boolean",
10372 "uniqueItems": true
10373 }
10374 }
10375 ]
10376 },
10377 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims": {
10378 "get": {
10379 "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.",
10380 "operationId": "watchResourceV1alpha2NamespacedResourceClaimList",
10381 "responses": {
10382 "200": {
10383 "content": {
10384 "application/json": {
10385 "schema": {
10386 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10387 }
10388 },
10389 "application/json;stream=watch": {
10390 "schema": {
10391 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10392 }
10393 },
10394 "application/vnd.kubernetes.protobuf": {
10395 "schema": {
10396 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10397 }
10398 },
10399 "application/vnd.kubernetes.protobuf;stream=watch": {
10400 "schema": {
10401 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10402 }
10403 },
10404 "application/yaml": {
10405 "schema": {
10406 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10407 }
10408 }
10409 },
10410 "description": "OK"
10411 },
10412 "401": {
10413 "description": "Unauthorized"
10414 }
10415 },
10416 "tags": [
10417 "resource_v1alpha2"
10418 ],
10419 "x-kubernetes-action": "watchlist",
10420 "x-kubernetes-group-version-kind": {
10421 "group": "resource.k8s.io",
10422 "kind": "ResourceClaim",
10423 "version": "v1alpha2"
10424 }
10425 },
10426 "parameters": [
10427 {
10428 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10429 "in": "query",
10430 "name": "allowWatchBookmarks",
10431 "schema": {
10432 "type": "boolean",
10433 "uniqueItems": true
10434 }
10435 },
10436 {
10437 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10438 "in": "query",
10439 "name": "continue",
10440 "schema": {
10441 "type": "string",
10442 "uniqueItems": true
10443 }
10444 },
10445 {
10446 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10447 "in": "query",
10448 "name": "fieldSelector",
10449 "schema": {
10450 "type": "string",
10451 "uniqueItems": true
10452 }
10453 },
10454 {
10455 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10456 "in": "query",
10457 "name": "labelSelector",
10458 "schema": {
10459 "type": "string",
10460 "uniqueItems": true
10461 }
10462 },
10463 {
10464 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10465 "in": "query",
10466 "name": "limit",
10467 "schema": {
10468 "type": "integer",
10469 "uniqueItems": true
10470 }
10471 },
10472 {
10473 "description": "object name and auth scope, such as for teams and projects",
10474 "in": "path",
10475 "name": "namespace",
10476 "required": true,
10477 "schema": {
10478 "type": "string",
10479 "uniqueItems": true
10480 }
10481 },
10482 {
10483 "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).",
10484 "in": "query",
10485 "name": "pretty",
10486 "schema": {
10487 "type": "string",
10488 "uniqueItems": true
10489 }
10490 },
10491 {
10492 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10493 "in": "query",
10494 "name": "resourceVersion",
10495 "schema": {
10496 "type": "string",
10497 "uniqueItems": true
10498 }
10499 },
10500 {
10501 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10502 "in": "query",
10503 "name": "resourceVersionMatch",
10504 "schema": {
10505 "type": "string",
10506 "uniqueItems": true
10507 }
10508 },
10509 {
10510 "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.",
10511 "in": "query",
10512 "name": "sendInitialEvents",
10513 "schema": {
10514 "type": "boolean",
10515 "uniqueItems": true
10516 }
10517 },
10518 {
10519 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10520 "in": "query",
10521 "name": "timeoutSeconds",
10522 "schema": {
10523 "type": "integer",
10524 "uniqueItems": true
10525 }
10526 },
10527 {
10528 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10529 "in": "query",
10530 "name": "watch",
10531 "schema": {
10532 "type": "boolean",
10533 "uniqueItems": true
10534 }
10535 }
10536 ]
10537 },
10538 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims/{name}": {
10539 "get": {
10540 "description": "watch changes to an object of kind ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
10541 "operationId": "watchResourceV1alpha2NamespacedResourceClaim",
10542 "responses": {
10543 "200": {
10544 "content": {
10545 "application/json": {
10546 "schema": {
10547 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10548 }
10549 },
10550 "application/json;stream=watch": {
10551 "schema": {
10552 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10553 }
10554 },
10555 "application/vnd.kubernetes.protobuf": {
10556 "schema": {
10557 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10558 }
10559 },
10560 "application/vnd.kubernetes.protobuf;stream=watch": {
10561 "schema": {
10562 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10563 }
10564 },
10565 "application/yaml": {
10566 "schema": {
10567 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10568 }
10569 }
10570 },
10571 "description": "OK"
10572 },
10573 "401": {
10574 "description": "Unauthorized"
10575 }
10576 },
10577 "tags": [
10578 "resource_v1alpha2"
10579 ],
10580 "x-kubernetes-action": "watch",
10581 "x-kubernetes-group-version-kind": {
10582 "group": "resource.k8s.io",
10583 "kind": "ResourceClaim",
10584 "version": "v1alpha2"
10585 }
10586 },
10587 "parameters": [
10588 {
10589 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10590 "in": "query",
10591 "name": "allowWatchBookmarks",
10592 "schema": {
10593 "type": "boolean",
10594 "uniqueItems": true
10595 }
10596 },
10597 {
10598 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10599 "in": "query",
10600 "name": "continue",
10601 "schema": {
10602 "type": "string",
10603 "uniqueItems": true
10604 }
10605 },
10606 {
10607 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10608 "in": "query",
10609 "name": "fieldSelector",
10610 "schema": {
10611 "type": "string",
10612 "uniqueItems": true
10613 }
10614 },
10615 {
10616 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10617 "in": "query",
10618 "name": "labelSelector",
10619 "schema": {
10620 "type": "string",
10621 "uniqueItems": true
10622 }
10623 },
10624 {
10625 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10626 "in": "query",
10627 "name": "limit",
10628 "schema": {
10629 "type": "integer",
10630 "uniqueItems": true
10631 }
10632 },
10633 {
10634 "description": "name of the ResourceClaim",
10635 "in": "path",
10636 "name": "name",
10637 "required": true,
10638 "schema": {
10639 "type": "string",
10640 "uniqueItems": true
10641 }
10642 },
10643 {
10644 "description": "object name and auth scope, such as for teams and projects",
10645 "in": "path",
10646 "name": "namespace",
10647 "required": true,
10648 "schema": {
10649 "type": "string",
10650 "uniqueItems": true
10651 }
10652 },
10653 {
10654 "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).",
10655 "in": "query",
10656 "name": "pretty",
10657 "schema": {
10658 "type": "string",
10659 "uniqueItems": true
10660 }
10661 },
10662 {
10663 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10664 "in": "query",
10665 "name": "resourceVersion",
10666 "schema": {
10667 "type": "string",
10668 "uniqueItems": true
10669 }
10670 },
10671 {
10672 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10673 "in": "query",
10674 "name": "resourceVersionMatch",
10675 "schema": {
10676 "type": "string",
10677 "uniqueItems": true
10678 }
10679 },
10680 {
10681 "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.",
10682 "in": "query",
10683 "name": "sendInitialEvents",
10684 "schema": {
10685 "type": "boolean",
10686 "uniqueItems": true
10687 }
10688 },
10689 {
10690 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10691 "in": "query",
10692 "name": "timeoutSeconds",
10693 "schema": {
10694 "type": "integer",
10695 "uniqueItems": true
10696 }
10697 },
10698 {
10699 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10700 "in": "query",
10701 "name": "watch",
10702 "schema": {
10703 "type": "boolean",
10704 "uniqueItems": true
10705 }
10706 }
10707 ]
10708 },
10709 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates": {
10710 "get": {
10711 "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
10712 "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplateList",
10713 "responses": {
10714 "200": {
10715 "content": {
10716 "application/json": {
10717 "schema": {
10718 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10719 }
10720 },
10721 "application/json;stream=watch": {
10722 "schema": {
10723 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10724 }
10725 },
10726 "application/vnd.kubernetes.protobuf": {
10727 "schema": {
10728 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10729 }
10730 },
10731 "application/vnd.kubernetes.protobuf;stream=watch": {
10732 "schema": {
10733 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10734 }
10735 },
10736 "application/yaml": {
10737 "schema": {
10738 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10739 }
10740 }
10741 },
10742 "description": "OK"
10743 },
10744 "401": {
10745 "description": "Unauthorized"
10746 }
10747 },
10748 "tags": [
10749 "resource_v1alpha2"
10750 ],
10751 "x-kubernetes-action": "watchlist",
10752 "x-kubernetes-group-version-kind": {
10753 "group": "resource.k8s.io",
10754 "kind": "ResourceClaimTemplate",
10755 "version": "v1alpha2"
10756 }
10757 },
10758 "parameters": [
10759 {
10760 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10761 "in": "query",
10762 "name": "allowWatchBookmarks",
10763 "schema": {
10764 "type": "boolean",
10765 "uniqueItems": true
10766 }
10767 },
10768 {
10769 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10770 "in": "query",
10771 "name": "continue",
10772 "schema": {
10773 "type": "string",
10774 "uniqueItems": true
10775 }
10776 },
10777 {
10778 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10779 "in": "query",
10780 "name": "fieldSelector",
10781 "schema": {
10782 "type": "string",
10783 "uniqueItems": true
10784 }
10785 },
10786 {
10787 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10788 "in": "query",
10789 "name": "labelSelector",
10790 "schema": {
10791 "type": "string",
10792 "uniqueItems": true
10793 }
10794 },
10795 {
10796 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10797 "in": "query",
10798 "name": "limit",
10799 "schema": {
10800 "type": "integer",
10801 "uniqueItems": true
10802 }
10803 },
10804 {
10805 "description": "object name and auth scope, such as for teams and projects",
10806 "in": "path",
10807 "name": "namespace",
10808 "required": true,
10809 "schema": {
10810 "type": "string",
10811 "uniqueItems": true
10812 }
10813 },
10814 {
10815 "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).",
10816 "in": "query",
10817 "name": "pretty",
10818 "schema": {
10819 "type": "string",
10820 "uniqueItems": true
10821 }
10822 },
10823 {
10824 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10825 "in": "query",
10826 "name": "resourceVersion",
10827 "schema": {
10828 "type": "string",
10829 "uniqueItems": true
10830 }
10831 },
10832 {
10833 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10834 "in": "query",
10835 "name": "resourceVersionMatch",
10836 "schema": {
10837 "type": "string",
10838 "uniqueItems": true
10839 }
10840 },
10841 {
10842 "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.",
10843 "in": "query",
10844 "name": "sendInitialEvents",
10845 "schema": {
10846 "type": "boolean",
10847 "uniqueItems": true
10848 }
10849 },
10850 {
10851 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
10852 "in": "query",
10853 "name": "timeoutSeconds",
10854 "schema": {
10855 "type": "integer",
10856 "uniqueItems": true
10857 }
10858 },
10859 {
10860 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
10861 "in": "query",
10862 "name": "watch",
10863 "schema": {
10864 "type": "boolean",
10865 "uniqueItems": true
10866 }
10867 }
10868 ]
10869 },
10870 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates/{name}": {
10871 "get": {
10872 "description": "watch changes to an object of kind ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
10873 "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplate",
10874 "responses": {
10875 "200": {
10876 "content": {
10877 "application/json": {
10878 "schema": {
10879 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10880 }
10881 },
10882 "application/json;stream=watch": {
10883 "schema": {
10884 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10885 }
10886 },
10887 "application/vnd.kubernetes.protobuf": {
10888 "schema": {
10889 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10890 }
10891 },
10892 "application/vnd.kubernetes.protobuf;stream=watch": {
10893 "schema": {
10894 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10895 }
10896 },
10897 "application/yaml": {
10898 "schema": {
10899 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
10900 }
10901 }
10902 },
10903 "description": "OK"
10904 },
10905 "401": {
10906 "description": "Unauthorized"
10907 }
10908 },
10909 "tags": [
10910 "resource_v1alpha2"
10911 ],
10912 "x-kubernetes-action": "watch",
10913 "x-kubernetes-group-version-kind": {
10914 "group": "resource.k8s.io",
10915 "kind": "ResourceClaimTemplate",
10916 "version": "v1alpha2"
10917 }
10918 },
10919 "parameters": [
10920 {
10921 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
10922 "in": "query",
10923 "name": "allowWatchBookmarks",
10924 "schema": {
10925 "type": "boolean",
10926 "uniqueItems": true
10927 }
10928 },
10929 {
10930 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
10931 "in": "query",
10932 "name": "continue",
10933 "schema": {
10934 "type": "string",
10935 "uniqueItems": true
10936 }
10937 },
10938 {
10939 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
10940 "in": "query",
10941 "name": "fieldSelector",
10942 "schema": {
10943 "type": "string",
10944 "uniqueItems": true
10945 }
10946 },
10947 {
10948 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
10949 "in": "query",
10950 "name": "labelSelector",
10951 "schema": {
10952 "type": "string",
10953 "uniqueItems": true
10954 }
10955 },
10956 {
10957 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
10958 "in": "query",
10959 "name": "limit",
10960 "schema": {
10961 "type": "integer",
10962 "uniqueItems": true
10963 }
10964 },
10965 {
10966 "description": "name of the ResourceClaimTemplate",
10967 "in": "path",
10968 "name": "name",
10969 "required": true,
10970 "schema": {
10971 "type": "string",
10972 "uniqueItems": true
10973 }
10974 },
10975 {
10976 "description": "object name and auth scope, such as for teams and projects",
10977 "in": "path",
10978 "name": "namespace",
10979 "required": true,
10980 "schema": {
10981 "type": "string",
10982 "uniqueItems": true
10983 }
10984 },
10985 {
10986 "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).",
10987 "in": "query",
10988 "name": "pretty",
10989 "schema": {
10990 "type": "string",
10991 "uniqueItems": true
10992 }
10993 },
10994 {
10995 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
10996 "in": "query",
10997 "name": "resourceVersion",
10998 "schema": {
10999 "type": "string",
11000 "uniqueItems": true
11001 }
11002 },
11003 {
11004 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11005 "in": "query",
11006 "name": "resourceVersionMatch",
11007 "schema": {
11008 "type": "string",
11009 "uniqueItems": true
11010 }
11011 },
11012 {
11013 "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.",
11014 "in": "query",
11015 "name": "sendInitialEvents",
11016 "schema": {
11017 "type": "boolean",
11018 "uniqueItems": true
11019 }
11020 },
11021 {
11022 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11023 "in": "query",
11024 "name": "timeoutSeconds",
11025 "schema": {
11026 "type": "integer",
11027 "uniqueItems": true
11028 }
11029 },
11030 {
11031 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11032 "in": "query",
11033 "name": "watch",
11034 "schema": {
11035 "type": "boolean",
11036 "uniqueItems": true
11037 }
11038 }
11039 ]
11040 },
11041 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclassparameters": {
11042 "get": {
11043 "description": "watch individual changes to a list of ResourceClassParameters. deprecated: use the 'watch' parameter with a list operation instead.",
11044 "operationId": "watchResourceV1alpha2NamespacedResourceClassParametersList",
11045 "responses": {
11046 "200": {
11047 "content": {
11048 "application/json": {
11049 "schema": {
11050 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11051 }
11052 },
11053 "application/json;stream=watch": {
11054 "schema": {
11055 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11056 }
11057 },
11058 "application/vnd.kubernetes.protobuf": {
11059 "schema": {
11060 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11061 }
11062 },
11063 "application/vnd.kubernetes.protobuf;stream=watch": {
11064 "schema": {
11065 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11066 }
11067 },
11068 "application/yaml": {
11069 "schema": {
11070 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11071 }
11072 }
11073 },
11074 "description": "OK"
11075 },
11076 "401": {
11077 "description": "Unauthorized"
11078 }
11079 },
11080 "tags": [
11081 "resource_v1alpha2"
11082 ],
11083 "x-kubernetes-action": "watchlist",
11084 "x-kubernetes-group-version-kind": {
11085 "group": "resource.k8s.io",
11086 "kind": "ResourceClassParameters",
11087 "version": "v1alpha2"
11088 }
11089 },
11090 "parameters": [
11091 {
11092 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11093 "in": "query",
11094 "name": "allowWatchBookmarks",
11095 "schema": {
11096 "type": "boolean",
11097 "uniqueItems": true
11098 }
11099 },
11100 {
11101 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11102 "in": "query",
11103 "name": "continue",
11104 "schema": {
11105 "type": "string",
11106 "uniqueItems": true
11107 }
11108 },
11109 {
11110 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11111 "in": "query",
11112 "name": "fieldSelector",
11113 "schema": {
11114 "type": "string",
11115 "uniqueItems": true
11116 }
11117 },
11118 {
11119 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11120 "in": "query",
11121 "name": "labelSelector",
11122 "schema": {
11123 "type": "string",
11124 "uniqueItems": true
11125 }
11126 },
11127 {
11128 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11129 "in": "query",
11130 "name": "limit",
11131 "schema": {
11132 "type": "integer",
11133 "uniqueItems": true
11134 }
11135 },
11136 {
11137 "description": "object name and auth scope, such as for teams and projects",
11138 "in": "path",
11139 "name": "namespace",
11140 "required": true,
11141 "schema": {
11142 "type": "string",
11143 "uniqueItems": true
11144 }
11145 },
11146 {
11147 "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).",
11148 "in": "query",
11149 "name": "pretty",
11150 "schema": {
11151 "type": "string",
11152 "uniqueItems": true
11153 }
11154 },
11155 {
11156 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11157 "in": "query",
11158 "name": "resourceVersion",
11159 "schema": {
11160 "type": "string",
11161 "uniqueItems": true
11162 }
11163 },
11164 {
11165 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11166 "in": "query",
11167 "name": "resourceVersionMatch",
11168 "schema": {
11169 "type": "string",
11170 "uniqueItems": true
11171 }
11172 },
11173 {
11174 "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.",
11175 "in": "query",
11176 "name": "sendInitialEvents",
11177 "schema": {
11178 "type": "boolean",
11179 "uniqueItems": true
11180 }
11181 },
11182 {
11183 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11184 "in": "query",
11185 "name": "timeoutSeconds",
11186 "schema": {
11187 "type": "integer",
11188 "uniqueItems": true
11189 }
11190 },
11191 {
11192 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11193 "in": "query",
11194 "name": "watch",
11195 "schema": {
11196 "type": "boolean",
11197 "uniqueItems": true
11198 }
11199 }
11200 ]
11201 },
11202 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclassparameters/{name}": {
11203 "get": {
11204 "description": "watch changes to an object of kind ResourceClassParameters. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
11205 "operationId": "watchResourceV1alpha2NamespacedResourceClassParameters",
11206 "responses": {
11207 "200": {
11208 "content": {
11209 "application/json": {
11210 "schema": {
11211 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11212 }
11213 },
11214 "application/json;stream=watch": {
11215 "schema": {
11216 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11217 }
11218 },
11219 "application/vnd.kubernetes.protobuf": {
11220 "schema": {
11221 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11222 }
11223 },
11224 "application/vnd.kubernetes.protobuf;stream=watch": {
11225 "schema": {
11226 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11227 }
11228 },
11229 "application/yaml": {
11230 "schema": {
11231 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11232 }
11233 }
11234 },
11235 "description": "OK"
11236 },
11237 "401": {
11238 "description": "Unauthorized"
11239 }
11240 },
11241 "tags": [
11242 "resource_v1alpha2"
11243 ],
11244 "x-kubernetes-action": "watch",
11245 "x-kubernetes-group-version-kind": {
11246 "group": "resource.k8s.io",
11247 "kind": "ResourceClassParameters",
11248 "version": "v1alpha2"
11249 }
11250 },
11251 "parameters": [
11252 {
11253 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11254 "in": "query",
11255 "name": "allowWatchBookmarks",
11256 "schema": {
11257 "type": "boolean",
11258 "uniqueItems": true
11259 }
11260 },
11261 {
11262 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11263 "in": "query",
11264 "name": "continue",
11265 "schema": {
11266 "type": "string",
11267 "uniqueItems": true
11268 }
11269 },
11270 {
11271 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11272 "in": "query",
11273 "name": "fieldSelector",
11274 "schema": {
11275 "type": "string",
11276 "uniqueItems": true
11277 }
11278 },
11279 {
11280 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11281 "in": "query",
11282 "name": "labelSelector",
11283 "schema": {
11284 "type": "string",
11285 "uniqueItems": true
11286 }
11287 },
11288 {
11289 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11290 "in": "query",
11291 "name": "limit",
11292 "schema": {
11293 "type": "integer",
11294 "uniqueItems": true
11295 }
11296 },
11297 {
11298 "description": "name of the ResourceClassParameters",
11299 "in": "path",
11300 "name": "name",
11301 "required": true,
11302 "schema": {
11303 "type": "string",
11304 "uniqueItems": true
11305 }
11306 },
11307 {
11308 "description": "object name and auth scope, such as for teams and projects",
11309 "in": "path",
11310 "name": "namespace",
11311 "required": true,
11312 "schema": {
11313 "type": "string",
11314 "uniqueItems": true
11315 }
11316 },
11317 {
11318 "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).",
11319 "in": "query",
11320 "name": "pretty",
11321 "schema": {
11322 "type": "string",
11323 "uniqueItems": true
11324 }
11325 },
11326 {
11327 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11328 "in": "query",
11329 "name": "resourceVersion",
11330 "schema": {
11331 "type": "string",
11332 "uniqueItems": true
11333 }
11334 },
11335 {
11336 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11337 "in": "query",
11338 "name": "resourceVersionMatch",
11339 "schema": {
11340 "type": "string",
11341 "uniqueItems": true
11342 }
11343 },
11344 {
11345 "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.",
11346 "in": "query",
11347 "name": "sendInitialEvents",
11348 "schema": {
11349 "type": "boolean",
11350 "uniqueItems": true
11351 }
11352 },
11353 {
11354 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11355 "in": "query",
11356 "name": "timeoutSeconds",
11357 "schema": {
11358 "type": "integer",
11359 "uniqueItems": true
11360 }
11361 },
11362 {
11363 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11364 "in": "query",
11365 "name": "watch",
11366 "schema": {
11367 "type": "boolean",
11368 "uniqueItems": true
11369 }
11370 }
11371 ]
11372 },
11373 "/apis/resource.k8s.io/v1alpha2/watch/podschedulingcontexts": {
11374 "get": {
11375 "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.",
11376 "operationId": "watchResourceV1alpha2PodSchedulingContextListForAllNamespaces",
11377 "responses": {
11378 "200": {
11379 "content": {
11380 "application/json": {
11381 "schema": {
11382 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11383 }
11384 },
11385 "application/json;stream=watch": {
11386 "schema": {
11387 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11388 }
11389 },
11390 "application/vnd.kubernetes.protobuf": {
11391 "schema": {
11392 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11393 }
11394 },
11395 "application/vnd.kubernetes.protobuf;stream=watch": {
11396 "schema": {
11397 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11398 }
11399 },
11400 "application/yaml": {
11401 "schema": {
11402 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11403 }
11404 }
11405 },
11406 "description": "OK"
11407 },
11408 "401": {
11409 "description": "Unauthorized"
11410 }
11411 },
11412 "tags": [
11413 "resource_v1alpha2"
11414 ],
11415 "x-kubernetes-action": "watchlist",
11416 "x-kubernetes-group-version-kind": {
11417 "group": "resource.k8s.io",
11418 "kind": "PodSchedulingContext",
11419 "version": "v1alpha2"
11420 }
11421 },
11422 "parameters": [
11423 {
11424 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11425 "in": "query",
11426 "name": "allowWatchBookmarks",
11427 "schema": {
11428 "type": "boolean",
11429 "uniqueItems": true
11430 }
11431 },
11432 {
11433 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11434 "in": "query",
11435 "name": "continue",
11436 "schema": {
11437 "type": "string",
11438 "uniqueItems": true
11439 }
11440 },
11441 {
11442 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11443 "in": "query",
11444 "name": "fieldSelector",
11445 "schema": {
11446 "type": "string",
11447 "uniqueItems": true
11448 }
11449 },
11450 {
11451 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11452 "in": "query",
11453 "name": "labelSelector",
11454 "schema": {
11455 "type": "string",
11456 "uniqueItems": true
11457 }
11458 },
11459 {
11460 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11461 "in": "query",
11462 "name": "limit",
11463 "schema": {
11464 "type": "integer",
11465 "uniqueItems": true
11466 }
11467 },
11468 {
11469 "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).",
11470 "in": "query",
11471 "name": "pretty",
11472 "schema": {
11473 "type": "string",
11474 "uniqueItems": true
11475 }
11476 },
11477 {
11478 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11479 "in": "query",
11480 "name": "resourceVersion",
11481 "schema": {
11482 "type": "string",
11483 "uniqueItems": true
11484 }
11485 },
11486 {
11487 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11488 "in": "query",
11489 "name": "resourceVersionMatch",
11490 "schema": {
11491 "type": "string",
11492 "uniqueItems": true
11493 }
11494 },
11495 {
11496 "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.",
11497 "in": "query",
11498 "name": "sendInitialEvents",
11499 "schema": {
11500 "type": "boolean",
11501 "uniqueItems": true
11502 }
11503 },
11504 {
11505 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11506 "in": "query",
11507 "name": "timeoutSeconds",
11508 "schema": {
11509 "type": "integer",
11510 "uniqueItems": true
11511 }
11512 },
11513 {
11514 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11515 "in": "query",
11516 "name": "watch",
11517 "schema": {
11518 "type": "boolean",
11519 "uniqueItems": true
11520 }
11521 }
11522 ]
11523 },
11524 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaimparameters": {
11525 "get": {
11526 "description": "watch individual changes to a list of ResourceClaimParameters. deprecated: use the 'watch' parameter with a list operation instead.",
11527 "operationId": "watchResourceV1alpha2ResourceClaimParametersListForAllNamespaces",
11528 "responses": {
11529 "200": {
11530 "content": {
11531 "application/json": {
11532 "schema": {
11533 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11534 }
11535 },
11536 "application/json;stream=watch": {
11537 "schema": {
11538 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11539 }
11540 },
11541 "application/vnd.kubernetes.protobuf": {
11542 "schema": {
11543 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11544 }
11545 },
11546 "application/vnd.kubernetes.protobuf;stream=watch": {
11547 "schema": {
11548 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11549 }
11550 },
11551 "application/yaml": {
11552 "schema": {
11553 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11554 }
11555 }
11556 },
11557 "description": "OK"
11558 },
11559 "401": {
11560 "description": "Unauthorized"
11561 }
11562 },
11563 "tags": [
11564 "resource_v1alpha2"
11565 ],
11566 "x-kubernetes-action": "watchlist",
11567 "x-kubernetes-group-version-kind": {
11568 "group": "resource.k8s.io",
11569 "kind": "ResourceClaimParameters",
11570 "version": "v1alpha2"
11571 }
11572 },
11573 "parameters": [
11574 {
11575 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11576 "in": "query",
11577 "name": "allowWatchBookmarks",
11578 "schema": {
11579 "type": "boolean",
11580 "uniqueItems": true
11581 }
11582 },
11583 {
11584 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11585 "in": "query",
11586 "name": "continue",
11587 "schema": {
11588 "type": "string",
11589 "uniqueItems": true
11590 }
11591 },
11592 {
11593 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11594 "in": "query",
11595 "name": "fieldSelector",
11596 "schema": {
11597 "type": "string",
11598 "uniqueItems": true
11599 }
11600 },
11601 {
11602 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11603 "in": "query",
11604 "name": "labelSelector",
11605 "schema": {
11606 "type": "string",
11607 "uniqueItems": true
11608 }
11609 },
11610 {
11611 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11612 "in": "query",
11613 "name": "limit",
11614 "schema": {
11615 "type": "integer",
11616 "uniqueItems": true
11617 }
11618 },
11619 {
11620 "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).",
11621 "in": "query",
11622 "name": "pretty",
11623 "schema": {
11624 "type": "string",
11625 "uniqueItems": true
11626 }
11627 },
11628 {
11629 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11630 "in": "query",
11631 "name": "resourceVersion",
11632 "schema": {
11633 "type": "string",
11634 "uniqueItems": true
11635 }
11636 },
11637 {
11638 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11639 "in": "query",
11640 "name": "resourceVersionMatch",
11641 "schema": {
11642 "type": "string",
11643 "uniqueItems": true
11644 }
11645 },
11646 {
11647 "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.",
11648 "in": "query",
11649 "name": "sendInitialEvents",
11650 "schema": {
11651 "type": "boolean",
11652 "uniqueItems": true
11653 }
11654 },
11655 {
11656 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11657 "in": "query",
11658 "name": "timeoutSeconds",
11659 "schema": {
11660 "type": "integer",
11661 "uniqueItems": true
11662 }
11663 },
11664 {
11665 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11666 "in": "query",
11667 "name": "watch",
11668 "schema": {
11669 "type": "boolean",
11670 "uniqueItems": true
11671 }
11672 }
11673 ]
11674 },
11675 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaims": {
11676 "get": {
11677 "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.",
11678 "operationId": "watchResourceV1alpha2ResourceClaimListForAllNamespaces",
11679 "responses": {
11680 "200": {
11681 "content": {
11682 "application/json": {
11683 "schema": {
11684 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11685 }
11686 },
11687 "application/json;stream=watch": {
11688 "schema": {
11689 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11690 }
11691 },
11692 "application/vnd.kubernetes.protobuf": {
11693 "schema": {
11694 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11695 }
11696 },
11697 "application/vnd.kubernetes.protobuf;stream=watch": {
11698 "schema": {
11699 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11700 }
11701 },
11702 "application/yaml": {
11703 "schema": {
11704 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11705 }
11706 }
11707 },
11708 "description": "OK"
11709 },
11710 "401": {
11711 "description": "Unauthorized"
11712 }
11713 },
11714 "tags": [
11715 "resource_v1alpha2"
11716 ],
11717 "x-kubernetes-action": "watchlist",
11718 "x-kubernetes-group-version-kind": {
11719 "group": "resource.k8s.io",
11720 "kind": "ResourceClaim",
11721 "version": "v1alpha2"
11722 }
11723 },
11724 "parameters": [
11725 {
11726 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11727 "in": "query",
11728 "name": "allowWatchBookmarks",
11729 "schema": {
11730 "type": "boolean",
11731 "uniqueItems": true
11732 }
11733 },
11734 {
11735 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11736 "in": "query",
11737 "name": "continue",
11738 "schema": {
11739 "type": "string",
11740 "uniqueItems": true
11741 }
11742 },
11743 {
11744 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11745 "in": "query",
11746 "name": "fieldSelector",
11747 "schema": {
11748 "type": "string",
11749 "uniqueItems": true
11750 }
11751 },
11752 {
11753 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11754 "in": "query",
11755 "name": "labelSelector",
11756 "schema": {
11757 "type": "string",
11758 "uniqueItems": true
11759 }
11760 },
11761 {
11762 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11763 "in": "query",
11764 "name": "limit",
11765 "schema": {
11766 "type": "integer",
11767 "uniqueItems": true
11768 }
11769 },
11770 {
11771 "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).",
11772 "in": "query",
11773 "name": "pretty",
11774 "schema": {
11775 "type": "string",
11776 "uniqueItems": true
11777 }
11778 },
11779 {
11780 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11781 "in": "query",
11782 "name": "resourceVersion",
11783 "schema": {
11784 "type": "string",
11785 "uniqueItems": true
11786 }
11787 },
11788 {
11789 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11790 "in": "query",
11791 "name": "resourceVersionMatch",
11792 "schema": {
11793 "type": "string",
11794 "uniqueItems": true
11795 }
11796 },
11797 {
11798 "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.",
11799 "in": "query",
11800 "name": "sendInitialEvents",
11801 "schema": {
11802 "type": "boolean",
11803 "uniqueItems": true
11804 }
11805 },
11806 {
11807 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11808 "in": "query",
11809 "name": "timeoutSeconds",
11810 "schema": {
11811 "type": "integer",
11812 "uniqueItems": true
11813 }
11814 },
11815 {
11816 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11817 "in": "query",
11818 "name": "watch",
11819 "schema": {
11820 "type": "boolean",
11821 "uniqueItems": true
11822 }
11823 }
11824 ]
11825 },
11826 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaimtemplates": {
11827 "get": {
11828 "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
11829 "operationId": "watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces",
11830 "responses": {
11831 "200": {
11832 "content": {
11833 "application/json": {
11834 "schema": {
11835 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11836 }
11837 },
11838 "application/json;stream=watch": {
11839 "schema": {
11840 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11841 }
11842 },
11843 "application/vnd.kubernetes.protobuf": {
11844 "schema": {
11845 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11846 }
11847 },
11848 "application/vnd.kubernetes.protobuf;stream=watch": {
11849 "schema": {
11850 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11851 }
11852 },
11853 "application/yaml": {
11854 "schema": {
11855 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11856 }
11857 }
11858 },
11859 "description": "OK"
11860 },
11861 "401": {
11862 "description": "Unauthorized"
11863 }
11864 },
11865 "tags": [
11866 "resource_v1alpha2"
11867 ],
11868 "x-kubernetes-action": "watchlist",
11869 "x-kubernetes-group-version-kind": {
11870 "group": "resource.k8s.io",
11871 "kind": "ResourceClaimTemplate",
11872 "version": "v1alpha2"
11873 }
11874 },
11875 "parameters": [
11876 {
11877 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
11878 "in": "query",
11879 "name": "allowWatchBookmarks",
11880 "schema": {
11881 "type": "boolean",
11882 "uniqueItems": true
11883 }
11884 },
11885 {
11886 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
11887 "in": "query",
11888 "name": "continue",
11889 "schema": {
11890 "type": "string",
11891 "uniqueItems": true
11892 }
11893 },
11894 {
11895 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
11896 "in": "query",
11897 "name": "fieldSelector",
11898 "schema": {
11899 "type": "string",
11900 "uniqueItems": true
11901 }
11902 },
11903 {
11904 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
11905 "in": "query",
11906 "name": "labelSelector",
11907 "schema": {
11908 "type": "string",
11909 "uniqueItems": true
11910 }
11911 },
11912 {
11913 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
11914 "in": "query",
11915 "name": "limit",
11916 "schema": {
11917 "type": "integer",
11918 "uniqueItems": true
11919 }
11920 },
11921 {
11922 "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).",
11923 "in": "query",
11924 "name": "pretty",
11925 "schema": {
11926 "type": "string",
11927 "uniqueItems": true
11928 }
11929 },
11930 {
11931 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11932 "in": "query",
11933 "name": "resourceVersion",
11934 "schema": {
11935 "type": "string",
11936 "uniqueItems": true
11937 }
11938 },
11939 {
11940 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
11941 "in": "query",
11942 "name": "resourceVersionMatch",
11943 "schema": {
11944 "type": "string",
11945 "uniqueItems": true
11946 }
11947 },
11948 {
11949 "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.",
11950 "in": "query",
11951 "name": "sendInitialEvents",
11952 "schema": {
11953 "type": "boolean",
11954 "uniqueItems": true
11955 }
11956 },
11957 {
11958 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
11959 "in": "query",
11960 "name": "timeoutSeconds",
11961 "schema": {
11962 "type": "integer",
11963 "uniqueItems": true
11964 }
11965 },
11966 {
11967 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
11968 "in": "query",
11969 "name": "watch",
11970 "schema": {
11971 "type": "boolean",
11972 "uniqueItems": true
11973 }
11974 }
11975 ]
11976 },
11977 "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses": {
11978 "get": {
11979 "description": "watch individual changes to a list of ResourceClass. deprecated: use the 'watch' parameter with a list operation instead.",
11980 "operationId": "watchResourceV1alpha2ResourceClassList",
11981 "responses": {
11982 "200": {
11983 "content": {
11984 "application/json": {
11985 "schema": {
11986 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11987 }
11988 },
11989 "application/json;stream=watch": {
11990 "schema": {
11991 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11992 }
11993 },
11994 "application/vnd.kubernetes.protobuf": {
11995 "schema": {
11996 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
11997 }
11998 },
11999 "application/vnd.kubernetes.protobuf;stream=watch": {
12000 "schema": {
12001 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12002 }
12003 },
12004 "application/yaml": {
12005 "schema": {
12006 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12007 }
12008 }
12009 },
12010 "description": "OK"
12011 },
12012 "401": {
12013 "description": "Unauthorized"
12014 }
12015 },
12016 "tags": [
12017 "resource_v1alpha2"
12018 ],
12019 "x-kubernetes-action": "watchlist",
12020 "x-kubernetes-group-version-kind": {
12021 "group": "resource.k8s.io",
12022 "kind": "ResourceClass",
12023 "version": "v1alpha2"
12024 }
12025 },
12026 "parameters": [
12027 {
12028 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12029 "in": "query",
12030 "name": "allowWatchBookmarks",
12031 "schema": {
12032 "type": "boolean",
12033 "uniqueItems": true
12034 }
12035 },
12036 {
12037 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12038 "in": "query",
12039 "name": "continue",
12040 "schema": {
12041 "type": "string",
12042 "uniqueItems": true
12043 }
12044 },
12045 {
12046 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12047 "in": "query",
12048 "name": "fieldSelector",
12049 "schema": {
12050 "type": "string",
12051 "uniqueItems": true
12052 }
12053 },
12054 {
12055 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12056 "in": "query",
12057 "name": "labelSelector",
12058 "schema": {
12059 "type": "string",
12060 "uniqueItems": true
12061 }
12062 },
12063 {
12064 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12065 "in": "query",
12066 "name": "limit",
12067 "schema": {
12068 "type": "integer",
12069 "uniqueItems": true
12070 }
12071 },
12072 {
12073 "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).",
12074 "in": "query",
12075 "name": "pretty",
12076 "schema": {
12077 "type": "string",
12078 "uniqueItems": true
12079 }
12080 },
12081 {
12082 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12083 "in": "query",
12084 "name": "resourceVersion",
12085 "schema": {
12086 "type": "string",
12087 "uniqueItems": true
12088 }
12089 },
12090 {
12091 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12092 "in": "query",
12093 "name": "resourceVersionMatch",
12094 "schema": {
12095 "type": "string",
12096 "uniqueItems": true
12097 }
12098 },
12099 {
12100 "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.",
12101 "in": "query",
12102 "name": "sendInitialEvents",
12103 "schema": {
12104 "type": "boolean",
12105 "uniqueItems": true
12106 }
12107 },
12108 {
12109 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12110 "in": "query",
12111 "name": "timeoutSeconds",
12112 "schema": {
12113 "type": "integer",
12114 "uniqueItems": true
12115 }
12116 },
12117 {
12118 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12119 "in": "query",
12120 "name": "watch",
12121 "schema": {
12122 "type": "boolean",
12123 "uniqueItems": true
12124 }
12125 }
12126 ]
12127 },
12128 "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses/{name}": {
12129 "get": {
12130 "description": "watch changes to an object of kind ResourceClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
12131 "operationId": "watchResourceV1alpha2ResourceClass",
12132 "responses": {
12133 "200": {
12134 "content": {
12135 "application/json": {
12136 "schema": {
12137 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12138 }
12139 },
12140 "application/json;stream=watch": {
12141 "schema": {
12142 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12143 }
12144 },
12145 "application/vnd.kubernetes.protobuf": {
12146 "schema": {
12147 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12148 }
12149 },
12150 "application/vnd.kubernetes.protobuf;stream=watch": {
12151 "schema": {
12152 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12153 }
12154 },
12155 "application/yaml": {
12156 "schema": {
12157 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12158 }
12159 }
12160 },
12161 "description": "OK"
12162 },
12163 "401": {
12164 "description": "Unauthorized"
12165 }
12166 },
12167 "tags": [
12168 "resource_v1alpha2"
12169 ],
12170 "x-kubernetes-action": "watch",
12171 "x-kubernetes-group-version-kind": {
12172 "group": "resource.k8s.io",
12173 "kind": "ResourceClass",
12174 "version": "v1alpha2"
12175 }
12176 },
12177 "parameters": [
12178 {
12179 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12180 "in": "query",
12181 "name": "allowWatchBookmarks",
12182 "schema": {
12183 "type": "boolean",
12184 "uniqueItems": true
12185 }
12186 },
12187 {
12188 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12189 "in": "query",
12190 "name": "continue",
12191 "schema": {
12192 "type": "string",
12193 "uniqueItems": true
12194 }
12195 },
12196 {
12197 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12198 "in": "query",
12199 "name": "fieldSelector",
12200 "schema": {
12201 "type": "string",
12202 "uniqueItems": true
12203 }
12204 },
12205 {
12206 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12207 "in": "query",
12208 "name": "labelSelector",
12209 "schema": {
12210 "type": "string",
12211 "uniqueItems": true
12212 }
12213 },
12214 {
12215 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12216 "in": "query",
12217 "name": "limit",
12218 "schema": {
12219 "type": "integer",
12220 "uniqueItems": true
12221 }
12222 },
12223 {
12224 "description": "name of the ResourceClass",
12225 "in": "path",
12226 "name": "name",
12227 "required": true,
12228 "schema": {
12229 "type": "string",
12230 "uniqueItems": true
12231 }
12232 },
12233 {
12234 "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).",
12235 "in": "query",
12236 "name": "pretty",
12237 "schema": {
12238 "type": "string",
12239 "uniqueItems": true
12240 }
12241 },
12242 {
12243 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12244 "in": "query",
12245 "name": "resourceVersion",
12246 "schema": {
12247 "type": "string",
12248 "uniqueItems": true
12249 }
12250 },
12251 {
12252 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12253 "in": "query",
12254 "name": "resourceVersionMatch",
12255 "schema": {
12256 "type": "string",
12257 "uniqueItems": true
12258 }
12259 },
12260 {
12261 "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.",
12262 "in": "query",
12263 "name": "sendInitialEvents",
12264 "schema": {
12265 "type": "boolean",
12266 "uniqueItems": true
12267 }
12268 },
12269 {
12270 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12271 "in": "query",
12272 "name": "timeoutSeconds",
12273 "schema": {
12274 "type": "integer",
12275 "uniqueItems": true
12276 }
12277 },
12278 {
12279 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12280 "in": "query",
12281 "name": "watch",
12282 "schema": {
12283 "type": "boolean",
12284 "uniqueItems": true
12285 }
12286 }
12287 ]
12288 },
12289 "/apis/resource.k8s.io/v1alpha2/watch/resourceclassparameters": {
12290 "get": {
12291 "description": "watch individual changes to a list of ResourceClassParameters. deprecated: use the 'watch' parameter with a list operation instead.",
12292 "operationId": "watchResourceV1alpha2ResourceClassParametersListForAllNamespaces",
12293 "responses": {
12294 "200": {
12295 "content": {
12296 "application/json": {
12297 "schema": {
12298 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12299 }
12300 },
12301 "application/json;stream=watch": {
12302 "schema": {
12303 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12304 }
12305 },
12306 "application/vnd.kubernetes.protobuf": {
12307 "schema": {
12308 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12309 }
12310 },
12311 "application/vnd.kubernetes.protobuf;stream=watch": {
12312 "schema": {
12313 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12314 }
12315 },
12316 "application/yaml": {
12317 "schema": {
12318 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12319 }
12320 }
12321 },
12322 "description": "OK"
12323 },
12324 "401": {
12325 "description": "Unauthorized"
12326 }
12327 },
12328 "tags": [
12329 "resource_v1alpha2"
12330 ],
12331 "x-kubernetes-action": "watchlist",
12332 "x-kubernetes-group-version-kind": {
12333 "group": "resource.k8s.io",
12334 "kind": "ResourceClassParameters",
12335 "version": "v1alpha2"
12336 }
12337 },
12338 "parameters": [
12339 {
12340 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12341 "in": "query",
12342 "name": "allowWatchBookmarks",
12343 "schema": {
12344 "type": "boolean",
12345 "uniqueItems": true
12346 }
12347 },
12348 {
12349 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12350 "in": "query",
12351 "name": "continue",
12352 "schema": {
12353 "type": "string",
12354 "uniqueItems": true
12355 }
12356 },
12357 {
12358 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12359 "in": "query",
12360 "name": "fieldSelector",
12361 "schema": {
12362 "type": "string",
12363 "uniqueItems": true
12364 }
12365 },
12366 {
12367 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12368 "in": "query",
12369 "name": "labelSelector",
12370 "schema": {
12371 "type": "string",
12372 "uniqueItems": true
12373 }
12374 },
12375 {
12376 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12377 "in": "query",
12378 "name": "limit",
12379 "schema": {
12380 "type": "integer",
12381 "uniqueItems": true
12382 }
12383 },
12384 {
12385 "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).",
12386 "in": "query",
12387 "name": "pretty",
12388 "schema": {
12389 "type": "string",
12390 "uniqueItems": true
12391 }
12392 },
12393 {
12394 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12395 "in": "query",
12396 "name": "resourceVersion",
12397 "schema": {
12398 "type": "string",
12399 "uniqueItems": true
12400 }
12401 },
12402 {
12403 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12404 "in": "query",
12405 "name": "resourceVersionMatch",
12406 "schema": {
12407 "type": "string",
12408 "uniqueItems": true
12409 }
12410 },
12411 {
12412 "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.",
12413 "in": "query",
12414 "name": "sendInitialEvents",
12415 "schema": {
12416 "type": "boolean",
12417 "uniqueItems": true
12418 }
12419 },
12420 {
12421 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12422 "in": "query",
12423 "name": "timeoutSeconds",
12424 "schema": {
12425 "type": "integer",
12426 "uniqueItems": true
12427 }
12428 },
12429 {
12430 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12431 "in": "query",
12432 "name": "watch",
12433 "schema": {
12434 "type": "boolean",
12435 "uniqueItems": true
12436 }
12437 }
12438 ]
12439 },
12440 "/apis/resource.k8s.io/v1alpha2/watch/resourceslices": {
12441 "get": {
12442 "description": "watch individual changes to a list of ResourceSlice. deprecated: use the 'watch' parameter with a list operation instead.",
12443 "operationId": "watchResourceV1alpha2ResourceSliceList",
12444 "responses": {
12445 "200": {
12446 "content": {
12447 "application/json": {
12448 "schema": {
12449 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12450 }
12451 },
12452 "application/json;stream=watch": {
12453 "schema": {
12454 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12455 }
12456 },
12457 "application/vnd.kubernetes.protobuf": {
12458 "schema": {
12459 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12460 }
12461 },
12462 "application/vnd.kubernetes.protobuf;stream=watch": {
12463 "schema": {
12464 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12465 }
12466 },
12467 "application/yaml": {
12468 "schema": {
12469 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12470 }
12471 }
12472 },
12473 "description": "OK"
12474 },
12475 "401": {
12476 "description": "Unauthorized"
12477 }
12478 },
12479 "tags": [
12480 "resource_v1alpha2"
12481 ],
12482 "x-kubernetes-action": "watchlist",
12483 "x-kubernetes-group-version-kind": {
12484 "group": "resource.k8s.io",
12485 "kind": "ResourceSlice",
12486 "version": "v1alpha2"
12487 }
12488 },
12489 "parameters": [
12490 {
12491 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12492 "in": "query",
12493 "name": "allowWatchBookmarks",
12494 "schema": {
12495 "type": "boolean",
12496 "uniqueItems": true
12497 }
12498 },
12499 {
12500 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12501 "in": "query",
12502 "name": "continue",
12503 "schema": {
12504 "type": "string",
12505 "uniqueItems": true
12506 }
12507 },
12508 {
12509 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12510 "in": "query",
12511 "name": "fieldSelector",
12512 "schema": {
12513 "type": "string",
12514 "uniqueItems": true
12515 }
12516 },
12517 {
12518 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12519 "in": "query",
12520 "name": "labelSelector",
12521 "schema": {
12522 "type": "string",
12523 "uniqueItems": true
12524 }
12525 },
12526 {
12527 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12528 "in": "query",
12529 "name": "limit",
12530 "schema": {
12531 "type": "integer",
12532 "uniqueItems": true
12533 }
12534 },
12535 {
12536 "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).",
12537 "in": "query",
12538 "name": "pretty",
12539 "schema": {
12540 "type": "string",
12541 "uniqueItems": true
12542 }
12543 },
12544 {
12545 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12546 "in": "query",
12547 "name": "resourceVersion",
12548 "schema": {
12549 "type": "string",
12550 "uniqueItems": true
12551 }
12552 },
12553 {
12554 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12555 "in": "query",
12556 "name": "resourceVersionMatch",
12557 "schema": {
12558 "type": "string",
12559 "uniqueItems": true
12560 }
12561 },
12562 {
12563 "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.",
12564 "in": "query",
12565 "name": "sendInitialEvents",
12566 "schema": {
12567 "type": "boolean",
12568 "uniqueItems": true
12569 }
12570 },
12571 {
12572 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12573 "in": "query",
12574 "name": "timeoutSeconds",
12575 "schema": {
12576 "type": "integer",
12577 "uniqueItems": true
12578 }
12579 },
12580 {
12581 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12582 "in": "query",
12583 "name": "watch",
12584 "schema": {
12585 "type": "boolean",
12586 "uniqueItems": true
12587 }
12588 }
12589 ]
12590 },
12591 "/apis/resource.k8s.io/v1alpha2/watch/resourceslices/{name}": {
12592 "get": {
12593 "description": "watch changes to an object of kind ResourceSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
12594 "operationId": "watchResourceV1alpha2ResourceSlice",
12595 "responses": {
12596 "200": {
12597 "content": {
12598 "application/json": {
12599 "schema": {
12600 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12601 }
12602 },
12603 "application/json;stream=watch": {
12604 "schema": {
12605 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12606 }
12607 },
12608 "application/vnd.kubernetes.protobuf": {
12609 "schema": {
12610 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12611 }
12612 },
12613 "application/vnd.kubernetes.protobuf;stream=watch": {
12614 "schema": {
12615 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12616 }
12617 },
12618 "application/yaml": {
12619 "schema": {
12620 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
12621 }
12622 }
12623 },
12624 "description": "OK"
12625 },
12626 "401": {
12627 "description": "Unauthorized"
12628 }
12629 },
12630 "tags": [
12631 "resource_v1alpha2"
12632 ],
12633 "x-kubernetes-action": "watch",
12634 "x-kubernetes-group-version-kind": {
12635 "group": "resource.k8s.io",
12636 "kind": "ResourceSlice",
12637 "version": "v1alpha2"
12638 }
12639 },
12640 "parameters": [
12641 {
12642 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
12643 "in": "query",
12644 "name": "allowWatchBookmarks",
12645 "schema": {
12646 "type": "boolean",
12647 "uniqueItems": true
12648 }
12649 },
12650 {
12651 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
12652 "in": "query",
12653 "name": "continue",
12654 "schema": {
12655 "type": "string",
12656 "uniqueItems": true
12657 }
12658 },
12659 {
12660 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
12661 "in": "query",
12662 "name": "fieldSelector",
12663 "schema": {
12664 "type": "string",
12665 "uniqueItems": true
12666 }
12667 },
12668 {
12669 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
12670 "in": "query",
12671 "name": "labelSelector",
12672 "schema": {
12673 "type": "string",
12674 "uniqueItems": true
12675 }
12676 },
12677 {
12678 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
12679 "in": "query",
12680 "name": "limit",
12681 "schema": {
12682 "type": "integer",
12683 "uniqueItems": true
12684 }
12685 },
12686 {
12687 "description": "name of the ResourceSlice",
12688 "in": "path",
12689 "name": "name",
12690 "required": true,
12691 "schema": {
12692 "type": "string",
12693 "uniqueItems": true
12694 }
12695 },
12696 {
12697 "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).",
12698 "in": "query",
12699 "name": "pretty",
12700 "schema": {
12701 "type": "string",
12702 "uniqueItems": true
12703 }
12704 },
12705 {
12706 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12707 "in": "query",
12708 "name": "resourceVersion",
12709 "schema": {
12710 "type": "string",
12711 "uniqueItems": true
12712 }
12713 },
12714 {
12715 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
12716 "in": "query",
12717 "name": "resourceVersionMatch",
12718 "schema": {
12719 "type": "string",
12720 "uniqueItems": true
12721 }
12722 },
12723 {
12724 "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.",
12725 "in": "query",
12726 "name": "sendInitialEvents",
12727 "schema": {
12728 "type": "boolean",
12729 "uniqueItems": true
12730 }
12731 },
12732 {
12733 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
12734 "in": "query",
12735 "name": "timeoutSeconds",
12736 "schema": {
12737 "type": "integer",
12738 "uniqueItems": true
12739 }
12740 },
12741 {
12742 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
12743 "in": "query",
12744 "name": "watch",
12745 "schema": {
12746 "type": "boolean",
12747 "uniqueItems": true
12748 }
12749 }
12750 ]
12751 }
12752 }
12753}
View as plain text