k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json (about) 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 in NamedResourcesAttributeValue 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 "default": "", 1209 "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.", 1210 "type": "string" 1211 }, 1212 "structuredData": { 1213 "allOf": [ 1214 { 1215 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.StructuredResourceHandle" 1216 } 1217 ], 1218 "description": "If StructuredData is set, then it needs to be used instead of Data." 1219 } 1220 }, 1221 "required": [ 1222 "driverName" 1223 ], 1224 "type": "object" 1225 }, 1226 "io.k8s.api.resource.v1alpha2.ResourceRequest": { 1227 "description": "ResourceRequest is a request for resources from one particular driver.", 1228 "properties": { 1229 "namedResources": { 1230 "allOf": [ 1231 { 1232 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesRequest" 1233 } 1234 ], 1235 "description": "NamedResources describes a request for resources with the named resources model." 1236 }, 1237 "vendorParameters": { 1238 "allOf": [ 1239 { 1240 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 1241 } 1242 ], 1243 "description": "VendorParameters are arbitrary setup parameters for the requested resource. They are ignored while allocating a claim." 1244 } 1245 }, 1246 "type": "object" 1247 }, 1248 "io.k8s.api.resource.v1alpha2.ResourceSlice": { 1249 "description": "ResourceSlice provides information about available resources on individual nodes.", 1250 "properties": { 1251 "apiVersion": { 1252 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1253 "type": "string" 1254 }, 1255 "driverName": { 1256 "default": "", 1257 "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.", 1258 "type": "string" 1259 }, 1260 "kind": { 1261 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1262 "type": "string" 1263 }, 1264 "metadata": { 1265 "allOf": [ 1266 { 1267 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 1268 } 1269 ], 1270 "default": {}, 1271 "description": "Standard object metadata" 1272 }, 1273 "namedResources": { 1274 "allOf": [ 1275 { 1276 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.NamedResourcesResources" 1277 } 1278 ], 1279 "description": "NamedResources describes available resources using the named resources model." 1280 }, 1281 "nodeName": { 1282 "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.", 1283 "type": "string" 1284 } 1285 }, 1286 "required": [ 1287 "driverName" 1288 ], 1289 "type": "object", 1290 "x-kubernetes-group-version-kind": [ 1291 { 1292 "group": "resource.k8s.io", 1293 "kind": "ResourceSlice", 1294 "version": "v1alpha2" 1295 } 1296 ] 1297 }, 1298 "io.k8s.api.resource.v1alpha2.ResourceSliceList": { 1299 "description": "ResourceSliceList is a collection of ResourceSlices.", 1300 "properties": { 1301 "apiVersion": { 1302 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1303 "type": "string" 1304 }, 1305 "items": { 1306 "description": "Items is the list of node resource capacity objects.", 1307 "items": { 1308 "allOf": [ 1309 { 1310 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 1311 } 1312 ], 1313 "default": {} 1314 }, 1315 "type": "array" 1316 }, 1317 "kind": { 1318 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1319 "type": "string" 1320 }, 1321 "metadata": { 1322 "allOf": [ 1323 { 1324 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 1325 } 1326 ], 1327 "default": {}, 1328 "description": "Standard list metadata" 1329 } 1330 }, 1331 "required": [ 1332 "items" 1333 ], 1334 "type": "object", 1335 "x-kubernetes-group-version-kind": [ 1336 { 1337 "group": "resource.k8s.io", 1338 "kind": "ResourceSliceList", 1339 "version": "v1alpha2" 1340 } 1341 ] 1342 }, 1343 "io.k8s.api.resource.v1alpha2.StructuredResourceHandle": { 1344 "description": "StructuredResourceHandle is the in-tree representation of the allocation result.", 1345 "properties": { 1346 "nodeName": { 1347 "description": "NodeName is the name of the node providing the necessary resources if the resources are local to a node.", 1348 "type": "string" 1349 }, 1350 "results": { 1351 "description": "Results lists all allocated driver resources.", 1352 "items": { 1353 "allOf": [ 1354 { 1355 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.DriverAllocationResult" 1356 } 1357 ], 1358 "default": {} 1359 }, 1360 "type": "array", 1361 "x-kubernetes-list-type": "atomic" 1362 }, 1363 "vendorClaimParameters": { 1364 "allOf": [ 1365 { 1366 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 1367 } 1368 ], 1369 "description": "VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated." 1370 }, 1371 "vendorClassParameters": { 1372 "allOf": [ 1373 { 1374 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 1375 } 1376 ], 1377 "description": "VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated." 1378 } 1379 }, 1380 "required": [ 1381 "results" 1382 ], 1383 "type": "object" 1384 }, 1385 "io.k8s.api.resource.v1alpha2.VendorParameters": { 1386 "description": "VendorParameters are opaque parameters for one particular driver.", 1387 "properties": { 1388 "driverName": { 1389 "description": "DriverName is the name used by the DRA driver kubelet plugin.", 1390 "type": "string" 1391 }, 1392 "parameters": { 1393 "allOf": [ 1394 { 1395 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 1396 } 1397 ], 1398 "description": "Parameters can be arbitrary setup parameters. They are ignored while allocating a claim." 1399 } 1400 }, 1401 "type": "object" 1402 }, 1403 "io.k8s.apimachinery.pkg.api.resource.Quantity": { 1404 "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.", 1405 "oneOf": [ 1406 { 1407 "type": "string" 1408 }, 1409 { 1410 "type": "number" 1411 } 1412 ] 1413 }, 1414 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": { 1415 "description": "APIResource specifies the name of a resource and whether it is namespaced.", 1416 "properties": { 1417 "categories": { 1418 "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", 1419 "items": { 1420 "default": "", 1421 "type": "string" 1422 }, 1423 "type": "array", 1424 "x-kubernetes-list-type": "atomic" 1425 }, 1426 "group": { 1427 "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\".", 1428 "type": "string" 1429 }, 1430 "kind": { 1431 "default": "", 1432 "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", 1433 "type": "string" 1434 }, 1435 "name": { 1436 "default": "", 1437 "description": "name is the plural name of the resource.", 1438 "type": "string" 1439 }, 1440 "namespaced": { 1441 "default": false, 1442 "description": "namespaced indicates if a resource is namespaced or not.", 1443 "type": "boolean" 1444 }, 1445 "shortNames": { 1446 "description": "shortNames is a list of suggested short names of the resource.", 1447 "items": { 1448 "default": "", 1449 "type": "string" 1450 }, 1451 "type": "array", 1452 "x-kubernetes-list-type": "atomic" 1453 }, 1454 "singularName": { 1455 "default": "", 1456 "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.", 1457 "type": "string" 1458 }, 1459 "storageVersionHash": { 1460 "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.", 1461 "type": "string" 1462 }, 1463 "verbs": { 1464 "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", 1465 "items": { 1466 "default": "", 1467 "type": "string" 1468 }, 1469 "type": "array" 1470 }, 1471 "version": { 1472 "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)\".", 1473 "type": "string" 1474 } 1475 }, 1476 "required": [ 1477 "name", 1478 "singularName", 1479 "namespaced", 1480 "kind", 1481 "verbs" 1482 ], 1483 "type": "object" 1484 }, 1485 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": { 1486 "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.", 1487 "properties": { 1488 "apiVersion": { 1489 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1490 "type": "string" 1491 }, 1492 "groupVersion": { 1493 "default": "", 1494 "description": "groupVersion is the group and version this APIResourceList is for.", 1495 "type": "string" 1496 }, 1497 "kind": { 1498 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1499 "type": "string" 1500 }, 1501 "resources": { 1502 "description": "resources contains the name of the resources and if they are namespaced.", 1503 "items": { 1504 "allOf": [ 1505 { 1506 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource" 1507 } 1508 ], 1509 "default": {} 1510 }, 1511 "type": "array", 1512 "x-kubernetes-list-type": "atomic" 1513 } 1514 }, 1515 "required": [ 1516 "groupVersion", 1517 "resources" 1518 ], 1519 "type": "object", 1520 "x-kubernetes-group-version-kind": [ 1521 { 1522 "group": "", 1523 "kind": "APIResourceList", 1524 "version": "v1" 1525 } 1526 ] 1527 }, 1528 "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": { 1529 "description": "DeleteOptions may be provided when deleting an API object.", 1530 "properties": { 1531 "apiVersion": { 1532 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1533 "type": "string" 1534 }, 1535 "dryRun": { 1536 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 1537 "items": { 1538 "default": "", 1539 "type": "string" 1540 }, 1541 "type": "array", 1542 "x-kubernetes-list-type": "atomic" 1543 }, 1544 "gracePeriodSeconds": { 1545 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 1546 "format": "int64", 1547 "type": "integer" 1548 }, 1549 "kind": { 1550 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1551 "type": "string" 1552 }, 1553 "orphanDependents": { 1554 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 1555 "type": "boolean" 1556 }, 1557 "preconditions": { 1558 "allOf": [ 1559 { 1560 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions" 1561 } 1562 ], 1563 "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned." 1564 }, 1565 "propagationPolicy": { 1566 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 1567 "type": "string" 1568 } 1569 }, 1570 "type": "object", 1571 "x-kubernetes-group-version-kind": [ 1572 { 1573 "group": "", 1574 "kind": "DeleteOptions", 1575 "version": "v1" 1576 }, 1577 { 1578 "group": "admission.k8s.io", 1579 "kind": "DeleteOptions", 1580 "version": "v1" 1581 }, 1582 { 1583 "group": "admission.k8s.io", 1584 "kind": "DeleteOptions", 1585 "version": "v1beta1" 1586 }, 1587 { 1588 "group": "admissionregistration.k8s.io", 1589 "kind": "DeleteOptions", 1590 "version": "v1" 1591 }, 1592 { 1593 "group": "admissionregistration.k8s.io", 1594 "kind": "DeleteOptions", 1595 "version": "v1alpha1" 1596 }, 1597 { 1598 "group": "admissionregistration.k8s.io", 1599 "kind": "DeleteOptions", 1600 "version": "v1beta1" 1601 }, 1602 { 1603 "group": "apiextensions.k8s.io", 1604 "kind": "DeleteOptions", 1605 "version": "v1" 1606 }, 1607 { 1608 "group": "apiextensions.k8s.io", 1609 "kind": "DeleteOptions", 1610 "version": "v1beta1" 1611 }, 1612 { 1613 "group": "apiregistration.k8s.io", 1614 "kind": "DeleteOptions", 1615 "version": "v1" 1616 }, 1617 { 1618 "group": "apiregistration.k8s.io", 1619 "kind": "DeleteOptions", 1620 "version": "v1beta1" 1621 }, 1622 { 1623 "group": "apps", 1624 "kind": "DeleteOptions", 1625 "version": "v1" 1626 }, 1627 { 1628 "group": "apps", 1629 "kind": "DeleteOptions", 1630 "version": "v1beta1" 1631 }, 1632 { 1633 "group": "apps", 1634 "kind": "DeleteOptions", 1635 "version": "v1beta2" 1636 }, 1637 { 1638 "group": "authentication.k8s.io", 1639 "kind": "DeleteOptions", 1640 "version": "v1" 1641 }, 1642 { 1643 "group": "authentication.k8s.io", 1644 "kind": "DeleteOptions", 1645 "version": "v1alpha1" 1646 }, 1647 { 1648 "group": "authentication.k8s.io", 1649 "kind": "DeleteOptions", 1650 "version": "v1beta1" 1651 }, 1652 { 1653 "group": "authorization.k8s.io", 1654 "kind": "DeleteOptions", 1655 "version": "v1" 1656 }, 1657 { 1658 "group": "authorization.k8s.io", 1659 "kind": "DeleteOptions", 1660 "version": "v1beta1" 1661 }, 1662 { 1663 "group": "autoscaling", 1664 "kind": "DeleteOptions", 1665 "version": "v1" 1666 }, 1667 { 1668 "group": "autoscaling", 1669 "kind": "DeleteOptions", 1670 "version": "v2" 1671 }, 1672 { 1673 "group": "autoscaling", 1674 "kind": "DeleteOptions", 1675 "version": "v2beta1" 1676 }, 1677 { 1678 "group": "autoscaling", 1679 "kind": "DeleteOptions", 1680 "version": "v2beta2" 1681 }, 1682 { 1683 "group": "batch", 1684 "kind": "DeleteOptions", 1685 "version": "v1" 1686 }, 1687 { 1688 "group": "batch", 1689 "kind": "DeleteOptions", 1690 "version": "v1beta1" 1691 }, 1692 { 1693 "group": "certificates.k8s.io", 1694 "kind": "DeleteOptions", 1695 "version": "v1" 1696 }, 1697 { 1698 "group": "certificates.k8s.io", 1699 "kind": "DeleteOptions", 1700 "version": "v1alpha1" 1701 }, 1702 { 1703 "group": "certificates.k8s.io", 1704 "kind": "DeleteOptions", 1705 "version": "v1beta1" 1706 }, 1707 { 1708 "group": "coordination.k8s.io", 1709 "kind": "DeleteOptions", 1710 "version": "v1" 1711 }, 1712 { 1713 "group": "coordination.k8s.io", 1714 "kind": "DeleteOptions", 1715 "version": "v1beta1" 1716 }, 1717 { 1718 "group": "discovery.k8s.io", 1719 "kind": "DeleteOptions", 1720 "version": "v1" 1721 }, 1722 { 1723 "group": "discovery.k8s.io", 1724 "kind": "DeleteOptions", 1725 "version": "v1beta1" 1726 }, 1727 { 1728 "group": "events.k8s.io", 1729 "kind": "DeleteOptions", 1730 "version": "v1" 1731 }, 1732 { 1733 "group": "events.k8s.io", 1734 "kind": "DeleteOptions", 1735 "version": "v1beta1" 1736 }, 1737 { 1738 "group": "extensions", 1739 "kind": "DeleteOptions", 1740 "version": "v1beta1" 1741 }, 1742 { 1743 "group": "flowcontrol.apiserver.k8s.io", 1744 "kind": "DeleteOptions", 1745 "version": "v1" 1746 }, 1747 { 1748 "group": "flowcontrol.apiserver.k8s.io", 1749 "kind": "DeleteOptions", 1750 "version": "v1beta1" 1751 }, 1752 { 1753 "group": "flowcontrol.apiserver.k8s.io", 1754 "kind": "DeleteOptions", 1755 "version": "v1beta2" 1756 }, 1757 { 1758 "group": "flowcontrol.apiserver.k8s.io", 1759 "kind": "DeleteOptions", 1760 "version": "v1beta3" 1761 }, 1762 { 1763 "group": "imagepolicy.k8s.io", 1764 "kind": "DeleteOptions", 1765 "version": "v1alpha1" 1766 }, 1767 { 1768 "group": "internal.apiserver.k8s.io", 1769 "kind": "DeleteOptions", 1770 "version": "v1alpha1" 1771 }, 1772 { 1773 "group": "networking.k8s.io", 1774 "kind": "DeleteOptions", 1775 "version": "v1" 1776 }, 1777 { 1778 "group": "networking.k8s.io", 1779 "kind": "DeleteOptions", 1780 "version": "v1alpha1" 1781 }, 1782 { 1783 "group": "networking.k8s.io", 1784 "kind": "DeleteOptions", 1785 "version": "v1beta1" 1786 }, 1787 { 1788 "group": "node.k8s.io", 1789 "kind": "DeleteOptions", 1790 "version": "v1" 1791 }, 1792 { 1793 "group": "node.k8s.io", 1794 "kind": "DeleteOptions", 1795 "version": "v1alpha1" 1796 }, 1797 { 1798 "group": "node.k8s.io", 1799 "kind": "DeleteOptions", 1800 "version": "v1beta1" 1801 }, 1802 { 1803 "group": "policy", 1804 "kind": "DeleteOptions", 1805 "version": "v1" 1806 }, 1807 { 1808 "group": "policy", 1809 "kind": "DeleteOptions", 1810 "version": "v1beta1" 1811 }, 1812 { 1813 "group": "rbac.authorization.k8s.io", 1814 "kind": "DeleteOptions", 1815 "version": "v1" 1816 }, 1817 { 1818 "group": "rbac.authorization.k8s.io", 1819 "kind": "DeleteOptions", 1820 "version": "v1alpha1" 1821 }, 1822 { 1823 "group": "rbac.authorization.k8s.io", 1824 "kind": "DeleteOptions", 1825 "version": "v1beta1" 1826 }, 1827 { 1828 "group": "resource.k8s.io", 1829 "kind": "DeleteOptions", 1830 "version": "v1alpha2" 1831 }, 1832 { 1833 "group": "scheduling.k8s.io", 1834 "kind": "DeleteOptions", 1835 "version": "v1" 1836 }, 1837 { 1838 "group": "scheduling.k8s.io", 1839 "kind": "DeleteOptions", 1840 "version": "v1alpha1" 1841 }, 1842 { 1843 "group": "scheduling.k8s.io", 1844 "kind": "DeleteOptions", 1845 "version": "v1beta1" 1846 }, 1847 { 1848 "group": "storage.k8s.io", 1849 "kind": "DeleteOptions", 1850 "version": "v1" 1851 }, 1852 { 1853 "group": "storage.k8s.io", 1854 "kind": "DeleteOptions", 1855 "version": "v1alpha1" 1856 }, 1857 { 1858 "group": "storage.k8s.io", 1859 "kind": "DeleteOptions", 1860 "version": "v1beta1" 1861 }, 1862 { 1863 "group": "storagemigration.k8s.io", 1864 "kind": "DeleteOptions", 1865 "version": "v1alpha1" 1866 } 1867 ] 1868 }, 1869 "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": { 1870 "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", 1871 "type": "object" 1872 }, 1873 "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": { 1874 "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", 1875 "properties": { 1876 "continue": { 1877 "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.", 1878 "type": "string" 1879 }, 1880 "remainingItemCount": { 1881 "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.", 1882 "format": "int64", 1883 "type": "integer" 1884 }, 1885 "resourceVersion": { 1886 "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", 1887 "type": "string" 1888 }, 1889 "selfLink": { 1890 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", 1891 "type": "string" 1892 } 1893 }, 1894 "type": "object" 1895 }, 1896 "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": { 1897 "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", 1898 "properties": { 1899 "apiVersion": { 1900 "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.", 1901 "type": "string" 1902 }, 1903 "fieldsType": { 1904 "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", 1905 "type": "string" 1906 }, 1907 "fieldsV1": { 1908 "allOf": [ 1909 { 1910 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1" 1911 } 1912 ], 1913 "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." 1914 }, 1915 "manager": { 1916 "description": "Manager is an identifier of the workflow managing these fields.", 1917 "type": "string" 1918 }, 1919 "operation": { 1920 "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'.", 1921 "type": "string" 1922 }, 1923 "subresource": { 1924 "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.", 1925 "type": "string" 1926 }, 1927 "time": { 1928 "allOf": [ 1929 { 1930 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 1931 } 1932 ], 1933 "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." 1934 } 1935 }, 1936 "type": "object" 1937 }, 1938 "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": { 1939 "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", 1940 "properties": { 1941 "annotations": { 1942 "additionalProperties": { 1943 "default": "", 1944 "type": "string" 1945 }, 1946 "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", 1947 "type": "object" 1948 }, 1949 "creationTimestamp": { 1950 "allOf": [ 1951 { 1952 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 1953 } 1954 ], 1955 "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" 1956 }, 1957 "deletionGracePeriodSeconds": { 1958 "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.", 1959 "format": "int64", 1960 "type": "integer" 1961 }, 1962 "deletionTimestamp": { 1963 "allOf": [ 1964 { 1965 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 1966 } 1967 ], 1968 "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" 1969 }, 1970 "finalizers": { 1971 "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.", 1972 "items": { 1973 "default": "", 1974 "type": "string" 1975 }, 1976 "type": "array", 1977 "x-kubernetes-list-type": "set", 1978 "x-kubernetes-patch-strategy": "merge" 1979 }, 1980 "generateName": { 1981 "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", 1982 "type": "string" 1983 }, 1984 "generation": { 1985 "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", 1986 "format": "int64", 1987 "type": "integer" 1988 }, 1989 "labels": { 1990 "additionalProperties": { 1991 "default": "", 1992 "type": "string" 1993 }, 1994 "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", 1995 "type": "object" 1996 }, 1997 "managedFields": { 1998 "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.", 1999 "items": { 2000 "allOf": [ 2001 { 2002 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry" 2003 } 2004 ], 2005 "default": {} 2006 }, 2007 "type": "array", 2008 "x-kubernetes-list-type": "atomic" 2009 }, 2010 "name": { 2011 "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", 2012 "type": "string" 2013 }, 2014 "namespace": { 2015 "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", 2016 "type": "string" 2017 }, 2018 "ownerReferences": { 2019 "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.", 2020 "items": { 2021 "allOf": [ 2022 { 2023 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference" 2024 } 2025 ], 2026 "default": {} 2027 }, 2028 "type": "array", 2029 "x-kubernetes-list-map-keys": [ 2030 "uid" 2031 ], 2032 "x-kubernetes-list-type": "map", 2033 "x-kubernetes-patch-merge-key": "uid", 2034 "x-kubernetes-patch-strategy": "merge" 2035 }, 2036 "resourceVersion": { 2037 "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", 2038 "type": "string" 2039 }, 2040 "selfLink": { 2041 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", 2042 "type": "string" 2043 }, 2044 "uid": { 2045 "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", 2046 "type": "string" 2047 } 2048 }, 2049 "type": "object" 2050 }, 2051 "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": { 2052 "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.", 2053 "properties": { 2054 "apiVersion": { 2055 "default": "", 2056 "description": "API version of the referent.", 2057 "type": "string" 2058 }, 2059 "blockOwnerDeletion": { 2060 "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.", 2061 "type": "boolean" 2062 }, 2063 "controller": { 2064 "description": "If true, this reference points to the managing controller.", 2065 "type": "boolean" 2066 }, 2067 "kind": { 2068 "default": "", 2069 "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 2070 "type": "string" 2071 }, 2072 "name": { 2073 "default": "", 2074 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names", 2075 "type": "string" 2076 }, 2077 "uid": { 2078 "default": "", 2079 "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", 2080 "type": "string" 2081 } 2082 }, 2083 "required": [ 2084 "apiVersion", 2085 "kind", 2086 "name", 2087 "uid" 2088 ], 2089 "type": "object", 2090 "x-kubernetes-map-type": "atomic" 2091 }, 2092 "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { 2093 "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", 2094 "type": "object" 2095 }, 2096 "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": { 2097 "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", 2098 "properties": { 2099 "resourceVersion": { 2100 "description": "Specifies the target ResourceVersion", 2101 "type": "string" 2102 }, 2103 "uid": { 2104 "description": "Specifies the target UID.", 2105 "type": "string" 2106 } 2107 }, 2108 "type": "object" 2109 }, 2110 "io.k8s.apimachinery.pkg.apis.meta.v1.Status": { 2111 "description": "Status is a return value for calls that don't return other objects.", 2112 "properties": { 2113 "apiVersion": { 2114 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 2115 "type": "string" 2116 }, 2117 "code": { 2118 "description": "Suggested HTTP return code for this status, 0 if not set.", 2119 "format": "int32", 2120 "type": "integer" 2121 }, 2122 "details": { 2123 "allOf": [ 2124 { 2125 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails" 2126 } 2127 ], 2128 "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.", 2129 "x-kubernetes-list-type": "atomic" 2130 }, 2131 "kind": { 2132 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 2133 "type": "string" 2134 }, 2135 "message": { 2136 "description": "A human-readable description of the status of this operation.", 2137 "type": "string" 2138 }, 2139 "metadata": { 2140 "allOf": [ 2141 { 2142 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 2143 } 2144 ], 2145 "default": {}, 2146 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" 2147 }, 2148 "reason": { 2149 "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.", 2150 "type": "string" 2151 }, 2152 "status": { 2153 "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", 2154 "type": "string" 2155 } 2156 }, 2157 "type": "object", 2158 "x-kubernetes-group-version-kind": [ 2159 { 2160 "group": "", 2161 "kind": "Status", 2162 "version": "v1" 2163 }, 2164 { 2165 "group": "resource.k8s.io", 2166 "kind": "Status", 2167 "version": "v1alpha2" 2168 } 2169 ] 2170 }, 2171 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": { 2172 "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", 2173 "properties": { 2174 "field": { 2175 "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\"", 2176 "type": "string" 2177 }, 2178 "message": { 2179 "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", 2180 "type": "string" 2181 }, 2182 "reason": { 2183 "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.", 2184 "type": "string" 2185 } 2186 }, 2187 "type": "object" 2188 }, 2189 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": { 2190 "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.", 2191 "properties": { 2192 "causes": { 2193 "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", 2194 "items": { 2195 "allOf": [ 2196 { 2197 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause" 2198 } 2199 ], 2200 "default": {} 2201 }, 2202 "type": "array", 2203 "x-kubernetes-list-type": "atomic" 2204 }, 2205 "group": { 2206 "description": "The group attribute of the resource associated with the status StatusReason.", 2207 "type": "string" 2208 }, 2209 "kind": { 2210 "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", 2211 "type": "string" 2212 }, 2213 "name": { 2214 "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", 2215 "type": "string" 2216 }, 2217 "retryAfterSeconds": { 2218 "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.", 2219 "format": "int32", 2220 "type": "integer" 2221 }, 2222 "uid": { 2223 "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", 2224 "type": "string" 2225 } 2226 }, 2227 "type": "object" 2228 }, 2229 "io.k8s.apimachinery.pkg.apis.meta.v1.Time": { 2230 "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.", 2231 "format": "date-time", 2232 "type": "string" 2233 }, 2234 "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": { 2235 "description": "Event represents a single event to a watched resource.", 2236 "properties": { 2237 "object": { 2238 "allOf": [ 2239 { 2240 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 2241 } 2242 ], 2243 "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." 2244 }, 2245 "type": { 2246 "default": "", 2247 "type": "string" 2248 } 2249 }, 2250 "required": [ 2251 "type", 2252 "object" 2253 ], 2254 "type": "object", 2255 "x-kubernetes-group-version-kind": [ 2256 { 2257 "group": "", 2258 "kind": "WatchEvent", 2259 "version": "v1" 2260 }, 2261 { 2262 "group": "admission.k8s.io", 2263 "kind": "WatchEvent", 2264 "version": "v1" 2265 }, 2266 { 2267 "group": "admission.k8s.io", 2268 "kind": "WatchEvent", 2269 "version": "v1beta1" 2270 }, 2271 { 2272 "group": "admissionregistration.k8s.io", 2273 "kind": "WatchEvent", 2274 "version": "v1" 2275 }, 2276 { 2277 "group": "admissionregistration.k8s.io", 2278 "kind": "WatchEvent", 2279 "version": "v1alpha1" 2280 }, 2281 { 2282 "group": "admissionregistration.k8s.io", 2283 "kind": "WatchEvent", 2284 "version": "v1beta1" 2285 }, 2286 { 2287 "group": "apiextensions.k8s.io", 2288 "kind": "WatchEvent", 2289 "version": "v1" 2290 }, 2291 { 2292 "group": "apiextensions.k8s.io", 2293 "kind": "WatchEvent", 2294 "version": "v1beta1" 2295 }, 2296 { 2297 "group": "apiregistration.k8s.io", 2298 "kind": "WatchEvent", 2299 "version": "v1" 2300 }, 2301 { 2302 "group": "apiregistration.k8s.io", 2303 "kind": "WatchEvent", 2304 "version": "v1beta1" 2305 }, 2306 { 2307 "group": "apps", 2308 "kind": "WatchEvent", 2309 "version": "v1" 2310 }, 2311 { 2312 "group": "apps", 2313 "kind": "WatchEvent", 2314 "version": "v1beta1" 2315 }, 2316 { 2317 "group": "apps", 2318 "kind": "WatchEvent", 2319 "version": "v1beta2" 2320 }, 2321 { 2322 "group": "authentication.k8s.io", 2323 "kind": "WatchEvent", 2324 "version": "v1" 2325 }, 2326 { 2327 "group": "authentication.k8s.io", 2328 "kind": "WatchEvent", 2329 "version": "v1alpha1" 2330 }, 2331 { 2332 "group": "authentication.k8s.io", 2333 "kind": "WatchEvent", 2334 "version": "v1beta1" 2335 }, 2336 { 2337 "group": "authorization.k8s.io", 2338 "kind": "WatchEvent", 2339 "version": "v1" 2340 }, 2341 { 2342 "group": "authorization.k8s.io", 2343 "kind": "WatchEvent", 2344 "version": "v1beta1" 2345 }, 2346 { 2347 "group": "autoscaling", 2348 "kind": "WatchEvent", 2349 "version": "v1" 2350 }, 2351 { 2352 "group": "autoscaling", 2353 "kind": "WatchEvent", 2354 "version": "v2" 2355 }, 2356 { 2357 "group": "autoscaling", 2358 "kind": "WatchEvent", 2359 "version": "v2beta1" 2360 }, 2361 { 2362 "group": "autoscaling", 2363 "kind": "WatchEvent", 2364 "version": "v2beta2" 2365 }, 2366 { 2367 "group": "batch", 2368 "kind": "WatchEvent", 2369 "version": "v1" 2370 }, 2371 { 2372 "group": "batch", 2373 "kind": "WatchEvent", 2374 "version": "v1beta1" 2375 }, 2376 { 2377 "group": "certificates.k8s.io", 2378 "kind": "WatchEvent", 2379 "version": "v1" 2380 }, 2381 { 2382 "group": "certificates.k8s.io", 2383 "kind": "WatchEvent", 2384 "version": "v1alpha1" 2385 }, 2386 { 2387 "group": "certificates.k8s.io", 2388 "kind": "WatchEvent", 2389 "version": "v1beta1" 2390 }, 2391 { 2392 "group": "coordination.k8s.io", 2393 "kind": "WatchEvent", 2394 "version": "v1" 2395 }, 2396 { 2397 "group": "coordination.k8s.io", 2398 "kind": "WatchEvent", 2399 "version": "v1beta1" 2400 }, 2401 { 2402 "group": "discovery.k8s.io", 2403 "kind": "WatchEvent", 2404 "version": "v1" 2405 }, 2406 { 2407 "group": "discovery.k8s.io", 2408 "kind": "WatchEvent", 2409 "version": "v1beta1" 2410 }, 2411 { 2412 "group": "events.k8s.io", 2413 "kind": "WatchEvent", 2414 "version": "v1" 2415 }, 2416 { 2417 "group": "events.k8s.io", 2418 "kind": "WatchEvent", 2419 "version": "v1beta1" 2420 }, 2421 { 2422 "group": "extensions", 2423 "kind": "WatchEvent", 2424 "version": "v1beta1" 2425 }, 2426 { 2427 "group": "flowcontrol.apiserver.k8s.io", 2428 "kind": "WatchEvent", 2429 "version": "v1" 2430 }, 2431 { 2432 "group": "flowcontrol.apiserver.k8s.io", 2433 "kind": "WatchEvent", 2434 "version": "v1beta1" 2435 }, 2436 { 2437 "group": "flowcontrol.apiserver.k8s.io", 2438 "kind": "WatchEvent", 2439 "version": "v1beta2" 2440 }, 2441 { 2442 "group": "flowcontrol.apiserver.k8s.io", 2443 "kind": "WatchEvent", 2444 "version": "v1beta3" 2445 }, 2446 { 2447 "group": "imagepolicy.k8s.io", 2448 "kind": "WatchEvent", 2449 "version": "v1alpha1" 2450 }, 2451 { 2452 "group": "internal.apiserver.k8s.io", 2453 "kind": "WatchEvent", 2454 "version": "v1alpha1" 2455 }, 2456 { 2457 "group": "networking.k8s.io", 2458 "kind": "WatchEvent", 2459 "version": "v1" 2460 }, 2461 { 2462 "group": "networking.k8s.io", 2463 "kind": "WatchEvent", 2464 "version": "v1alpha1" 2465 }, 2466 { 2467 "group": "networking.k8s.io", 2468 "kind": "WatchEvent", 2469 "version": "v1beta1" 2470 }, 2471 { 2472 "group": "node.k8s.io", 2473 "kind": "WatchEvent", 2474 "version": "v1" 2475 }, 2476 { 2477 "group": "node.k8s.io", 2478 "kind": "WatchEvent", 2479 "version": "v1alpha1" 2480 }, 2481 { 2482 "group": "node.k8s.io", 2483 "kind": "WatchEvent", 2484 "version": "v1beta1" 2485 }, 2486 { 2487 "group": "policy", 2488 "kind": "WatchEvent", 2489 "version": "v1" 2490 }, 2491 { 2492 "group": "policy", 2493 "kind": "WatchEvent", 2494 "version": "v1beta1" 2495 }, 2496 { 2497 "group": "rbac.authorization.k8s.io", 2498 "kind": "WatchEvent", 2499 "version": "v1" 2500 }, 2501 { 2502 "group": "rbac.authorization.k8s.io", 2503 "kind": "WatchEvent", 2504 "version": "v1alpha1" 2505 }, 2506 { 2507 "group": "rbac.authorization.k8s.io", 2508 "kind": "WatchEvent", 2509 "version": "v1beta1" 2510 }, 2511 { 2512 "group": "resource.k8s.io", 2513 "kind": "WatchEvent", 2514 "version": "v1alpha2" 2515 }, 2516 { 2517 "group": "scheduling.k8s.io", 2518 "kind": "WatchEvent", 2519 "version": "v1" 2520 }, 2521 { 2522 "group": "scheduling.k8s.io", 2523 "kind": "WatchEvent", 2524 "version": "v1alpha1" 2525 }, 2526 { 2527 "group": "scheduling.k8s.io", 2528 "kind": "WatchEvent", 2529 "version": "v1beta1" 2530 }, 2531 { 2532 "group": "storage.k8s.io", 2533 "kind": "WatchEvent", 2534 "version": "v1" 2535 }, 2536 { 2537 "group": "storage.k8s.io", 2538 "kind": "WatchEvent", 2539 "version": "v1alpha1" 2540 }, 2541 { 2542 "group": "storage.k8s.io", 2543 "kind": "WatchEvent", 2544 "version": "v1beta1" 2545 }, 2546 { 2547 "group": "storagemigration.k8s.io", 2548 "kind": "WatchEvent", 2549 "version": "v1alpha1" 2550 } 2551 ] 2552 }, 2553 "io.k8s.apimachinery.pkg.runtime.RawExtension": { 2554 "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.)", 2555 "type": "object" 2556 } 2557 }, 2558 "securitySchemes": { 2559 "BearerToken": { 2560 "description": "Bearer Token authentication", 2561 "in": "header", 2562 "name": "authorization", 2563 "type": "apiKey" 2564 } 2565 } 2566 }, 2567 "info": { 2568 "title": "Kubernetes", 2569 "version": "unversioned" 2570 }, 2571 "openapi": "3.0.0", 2572 "paths": { 2573 "/apis/resource.k8s.io/v1alpha2/": { 2574 "get": { 2575 "description": "get available resources", 2576 "operationId": "getResourceV1alpha2APIResources", 2577 "responses": { 2578 "200": { 2579 "content": { 2580 "application/json": { 2581 "schema": { 2582 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 2583 } 2584 }, 2585 "application/vnd.kubernetes.protobuf": { 2586 "schema": { 2587 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 2588 } 2589 }, 2590 "application/yaml": { 2591 "schema": { 2592 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 2593 } 2594 } 2595 }, 2596 "description": "OK" 2597 }, 2598 "401": { 2599 "description": "Unauthorized" 2600 } 2601 }, 2602 "tags": [ 2603 "resource_v1alpha2" 2604 ] 2605 } 2606 }, 2607 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts": { 2608 "delete": { 2609 "description": "delete collection of PodSchedulingContext", 2610 "operationId": "deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext", 2611 "parameters": [ 2612 { 2613 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 2614 "in": "query", 2615 "name": "continue", 2616 "schema": { 2617 "type": "string", 2618 "uniqueItems": true 2619 } 2620 }, 2621 { 2622 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 2623 "in": "query", 2624 "name": "dryRun", 2625 "schema": { 2626 "type": "string", 2627 "uniqueItems": true 2628 } 2629 }, 2630 { 2631 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 2632 "in": "query", 2633 "name": "fieldSelector", 2634 "schema": { 2635 "type": "string", 2636 "uniqueItems": true 2637 } 2638 }, 2639 { 2640 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 2641 "in": "query", 2642 "name": "gracePeriodSeconds", 2643 "schema": { 2644 "type": "integer", 2645 "uniqueItems": true 2646 } 2647 }, 2648 { 2649 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 2650 "in": "query", 2651 "name": "labelSelector", 2652 "schema": { 2653 "type": "string", 2654 "uniqueItems": true 2655 } 2656 }, 2657 { 2658 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 2659 "in": "query", 2660 "name": "limit", 2661 "schema": { 2662 "type": "integer", 2663 "uniqueItems": true 2664 } 2665 }, 2666 { 2667 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 2668 "in": "query", 2669 "name": "orphanDependents", 2670 "schema": { 2671 "type": "boolean", 2672 "uniqueItems": true 2673 } 2674 }, 2675 { 2676 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 2677 "in": "query", 2678 "name": "propagationPolicy", 2679 "schema": { 2680 "type": "string", 2681 "uniqueItems": true 2682 } 2683 }, 2684 { 2685 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 2686 "in": "query", 2687 "name": "resourceVersion", 2688 "schema": { 2689 "type": "string", 2690 "uniqueItems": true 2691 } 2692 }, 2693 { 2694 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 2695 "in": "query", 2696 "name": "resourceVersionMatch", 2697 "schema": { 2698 "type": "string", 2699 "uniqueItems": true 2700 } 2701 }, 2702 { 2703 "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.", 2704 "in": "query", 2705 "name": "sendInitialEvents", 2706 "schema": { 2707 "type": "boolean", 2708 "uniqueItems": true 2709 } 2710 }, 2711 { 2712 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 2713 "in": "query", 2714 "name": "timeoutSeconds", 2715 "schema": { 2716 "type": "integer", 2717 "uniqueItems": true 2718 } 2719 } 2720 ], 2721 "requestBody": { 2722 "content": { 2723 "*/*": { 2724 "schema": { 2725 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 2726 } 2727 } 2728 } 2729 }, 2730 "responses": { 2731 "200": { 2732 "content": { 2733 "application/json": { 2734 "schema": { 2735 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 2736 } 2737 }, 2738 "application/vnd.kubernetes.protobuf": { 2739 "schema": { 2740 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 2741 } 2742 }, 2743 "application/yaml": { 2744 "schema": { 2745 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 2746 } 2747 } 2748 }, 2749 "description": "OK" 2750 }, 2751 "401": { 2752 "description": "Unauthorized" 2753 } 2754 }, 2755 "tags": [ 2756 "resource_v1alpha2" 2757 ], 2758 "x-kubernetes-action": "deletecollection", 2759 "x-kubernetes-group-version-kind": { 2760 "group": "resource.k8s.io", 2761 "kind": "PodSchedulingContext", 2762 "version": "v1alpha2" 2763 } 2764 }, 2765 "get": { 2766 "description": "list or watch objects of kind PodSchedulingContext", 2767 "operationId": "listResourceV1alpha2NamespacedPodSchedulingContext", 2768 "parameters": [ 2769 { 2770 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 2771 "in": "query", 2772 "name": "allowWatchBookmarks", 2773 "schema": { 2774 "type": "boolean", 2775 "uniqueItems": true 2776 } 2777 }, 2778 { 2779 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 2780 "in": "query", 2781 "name": "continue", 2782 "schema": { 2783 "type": "string", 2784 "uniqueItems": true 2785 } 2786 }, 2787 { 2788 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 2789 "in": "query", 2790 "name": "fieldSelector", 2791 "schema": { 2792 "type": "string", 2793 "uniqueItems": true 2794 } 2795 }, 2796 { 2797 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 2798 "in": "query", 2799 "name": "labelSelector", 2800 "schema": { 2801 "type": "string", 2802 "uniqueItems": true 2803 } 2804 }, 2805 { 2806 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 2807 "in": "query", 2808 "name": "limit", 2809 "schema": { 2810 "type": "integer", 2811 "uniqueItems": true 2812 } 2813 }, 2814 { 2815 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 2816 "in": "query", 2817 "name": "resourceVersion", 2818 "schema": { 2819 "type": "string", 2820 "uniqueItems": true 2821 } 2822 }, 2823 { 2824 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 2825 "in": "query", 2826 "name": "resourceVersionMatch", 2827 "schema": { 2828 "type": "string", 2829 "uniqueItems": true 2830 } 2831 }, 2832 { 2833 "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.", 2834 "in": "query", 2835 "name": "sendInitialEvents", 2836 "schema": { 2837 "type": "boolean", 2838 "uniqueItems": true 2839 } 2840 }, 2841 { 2842 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 2843 "in": "query", 2844 "name": "timeoutSeconds", 2845 "schema": { 2846 "type": "integer", 2847 "uniqueItems": true 2848 } 2849 }, 2850 { 2851 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 2852 "in": "query", 2853 "name": "watch", 2854 "schema": { 2855 "type": "boolean", 2856 "uniqueItems": true 2857 } 2858 } 2859 ], 2860 "responses": { 2861 "200": { 2862 "content": { 2863 "application/json": { 2864 "schema": { 2865 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 2866 } 2867 }, 2868 "application/json;stream=watch": { 2869 "schema": { 2870 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 2871 } 2872 }, 2873 "application/vnd.kubernetes.protobuf": { 2874 "schema": { 2875 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 2876 } 2877 }, 2878 "application/vnd.kubernetes.protobuf;stream=watch": { 2879 "schema": { 2880 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 2881 } 2882 }, 2883 "application/yaml": { 2884 "schema": { 2885 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 2886 } 2887 } 2888 }, 2889 "description": "OK" 2890 }, 2891 "401": { 2892 "description": "Unauthorized" 2893 } 2894 }, 2895 "tags": [ 2896 "resource_v1alpha2" 2897 ], 2898 "x-kubernetes-action": "list", 2899 "x-kubernetes-group-version-kind": { 2900 "group": "resource.k8s.io", 2901 "kind": "PodSchedulingContext", 2902 "version": "v1alpha2" 2903 } 2904 }, 2905 "parameters": [ 2906 { 2907 "description": "object name and auth scope, such as for teams and projects", 2908 "in": "path", 2909 "name": "namespace", 2910 "required": true, 2911 "schema": { 2912 "type": "string", 2913 "uniqueItems": true 2914 } 2915 }, 2916 { 2917 "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).", 2918 "in": "query", 2919 "name": "pretty", 2920 "schema": { 2921 "type": "string", 2922 "uniqueItems": true 2923 } 2924 } 2925 ], 2926 "post": { 2927 "description": "create a PodSchedulingContext", 2928 "operationId": "createResourceV1alpha2NamespacedPodSchedulingContext", 2929 "parameters": [ 2930 { 2931 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 2932 "in": "query", 2933 "name": "dryRun", 2934 "schema": { 2935 "type": "string", 2936 "uniqueItems": true 2937 } 2938 }, 2939 { 2940 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 2941 "in": "query", 2942 "name": "fieldManager", 2943 "schema": { 2944 "type": "string", 2945 "uniqueItems": true 2946 } 2947 }, 2948 { 2949 "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.", 2950 "in": "query", 2951 "name": "fieldValidation", 2952 "schema": { 2953 "type": "string", 2954 "uniqueItems": true 2955 } 2956 } 2957 ], 2958 "requestBody": { 2959 "content": { 2960 "*/*": { 2961 "schema": { 2962 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2963 } 2964 } 2965 }, 2966 "required": true 2967 }, 2968 "responses": { 2969 "200": { 2970 "content": { 2971 "application/json": { 2972 "schema": { 2973 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2974 } 2975 }, 2976 "application/vnd.kubernetes.protobuf": { 2977 "schema": { 2978 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2979 } 2980 }, 2981 "application/yaml": { 2982 "schema": { 2983 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2984 } 2985 } 2986 }, 2987 "description": "OK" 2988 }, 2989 "201": { 2990 "content": { 2991 "application/json": { 2992 "schema": { 2993 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2994 } 2995 }, 2996 "application/vnd.kubernetes.protobuf": { 2997 "schema": { 2998 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 2999 } 3000 }, 3001 "application/yaml": { 3002 "schema": { 3003 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3004 } 3005 } 3006 }, 3007 "description": "Created" 3008 }, 3009 "202": { 3010 "content": { 3011 "application/json": { 3012 "schema": { 3013 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3014 } 3015 }, 3016 "application/vnd.kubernetes.protobuf": { 3017 "schema": { 3018 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3019 } 3020 }, 3021 "application/yaml": { 3022 "schema": { 3023 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3024 } 3025 } 3026 }, 3027 "description": "Accepted" 3028 }, 3029 "401": { 3030 "description": "Unauthorized" 3031 } 3032 }, 3033 "tags": [ 3034 "resource_v1alpha2" 3035 ], 3036 "x-kubernetes-action": "post", 3037 "x-kubernetes-group-version-kind": { 3038 "group": "resource.k8s.io", 3039 "kind": "PodSchedulingContext", 3040 "version": "v1alpha2" 3041 } 3042 } 3043 }, 3044 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}": { 3045 "delete": { 3046 "description": "delete a PodSchedulingContext", 3047 "operationId": "deleteResourceV1alpha2NamespacedPodSchedulingContext", 3048 "parameters": [ 3049 { 3050 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3051 "in": "query", 3052 "name": "dryRun", 3053 "schema": { 3054 "type": "string", 3055 "uniqueItems": true 3056 } 3057 }, 3058 { 3059 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 3060 "in": "query", 3061 "name": "gracePeriodSeconds", 3062 "schema": { 3063 "type": "integer", 3064 "uniqueItems": true 3065 } 3066 }, 3067 { 3068 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 3069 "in": "query", 3070 "name": "orphanDependents", 3071 "schema": { 3072 "type": "boolean", 3073 "uniqueItems": true 3074 } 3075 }, 3076 { 3077 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 3078 "in": "query", 3079 "name": "propagationPolicy", 3080 "schema": { 3081 "type": "string", 3082 "uniqueItems": true 3083 } 3084 } 3085 ], 3086 "requestBody": { 3087 "content": { 3088 "*/*": { 3089 "schema": { 3090 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 3091 } 3092 } 3093 } 3094 }, 3095 "responses": { 3096 "200": { 3097 "content": { 3098 "application/json": { 3099 "schema": { 3100 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3101 } 3102 }, 3103 "application/vnd.kubernetes.protobuf": { 3104 "schema": { 3105 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3106 } 3107 }, 3108 "application/yaml": { 3109 "schema": { 3110 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3111 } 3112 } 3113 }, 3114 "description": "OK" 3115 }, 3116 "202": { 3117 "content": { 3118 "application/json": { 3119 "schema": { 3120 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3121 } 3122 }, 3123 "application/vnd.kubernetes.protobuf": { 3124 "schema": { 3125 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3126 } 3127 }, 3128 "application/yaml": { 3129 "schema": { 3130 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3131 } 3132 } 3133 }, 3134 "description": "Accepted" 3135 }, 3136 "401": { 3137 "description": "Unauthorized" 3138 } 3139 }, 3140 "tags": [ 3141 "resource_v1alpha2" 3142 ], 3143 "x-kubernetes-action": "delete", 3144 "x-kubernetes-group-version-kind": { 3145 "group": "resource.k8s.io", 3146 "kind": "PodSchedulingContext", 3147 "version": "v1alpha2" 3148 } 3149 }, 3150 "get": { 3151 "description": "read the specified PodSchedulingContext", 3152 "operationId": "readResourceV1alpha2NamespacedPodSchedulingContext", 3153 "responses": { 3154 "200": { 3155 "content": { 3156 "application/json": { 3157 "schema": { 3158 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3159 } 3160 }, 3161 "application/vnd.kubernetes.protobuf": { 3162 "schema": { 3163 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3164 } 3165 }, 3166 "application/yaml": { 3167 "schema": { 3168 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3169 } 3170 } 3171 }, 3172 "description": "OK" 3173 }, 3174 "401": { 3175 "description": "Unauthorized" 3176 } 3177 }, 3178 "tags": [ 3179 "resource_v1alpha2" 3180 ], 3181 "x-kubernetes-action": "get", 3182 "x-kubernetes-group-version-kind": { 3183 "group": "resource.k8s.io", 3184 "kind": "PodSchedulingContext", 3185 "version": "v1alpha2" 3186 } 3187 }, 3188 "parameters": [ 3189 { 3190 "description": "name of the PodSchedulingContext", 3191 "in": "path", 3192 "name": "name", 3193 "required": true, 3194 "schema": { 3195 "type": "string", 3196 "uniqueItems": true 3197 } 3198 }, 3199 { 3200 "description": "object name and auth scope, such as for teams and projects", 3201 "in": "path", 3202 "name": "namespace", 3203 "required": true, 3204 "schema": { 3205 "type": "string", 3206 "uniqueItems": true 3207 } 3208 }, 3209 { 3210 "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).", 3211 "in": "query", 3212 "name": "pretty", 3213 "schema": { 3214 "type": "string", 3215 "uniqueItems": true 3216 } 3217 } 3218 ], 3219 "patch": { 3220 "description": "partially update the specified PodSchedulingContext", 3221 "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContext", 3222 "parameters": [ 3223 { 3224 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3225 "in": "query", 3226 "name": "dryRun", 3227 "schema": { 3228 "type": "string", 3229 "uniqueItems": true 3230 } 3231 }, 3232 { 3233 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 3234 "in": "query", 3235 "name": "fieldManager", 3236 "schema": { 3237 "type": "string", 3238 "uniqueItems": true 3239 } 3240 }, 3241 { 3242 "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.", 3243 "in": "query", 3244 "name": "fieldValidation", 3245 "schema": { 3246 "type": "string", 3247 "uniqueItems": true 3248 } 3249 }, 3250 { 3251 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 3252 "in": "query", 3253 "name": "force", 3254 "schema": { 3255 "type": "boolean", 3256 "uniqueItems": true 3257 } 3258 } 3259 ], 3260 "requestBody": { 3261 "content": { 3262 "application/apply-patch+yaml": { 3263 "schema": { 3264 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3265 } 3266 }, 3267 "application/json-patch+json": { 3268 "schema": { 3269 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3270 } 3271 }, 3272 "application/merge-patch+json": { 3273 "schema": { 3274 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3275 } 3276 }, 3277 "application/strategic-merge-patch+json": { 3278 "schema": { 3279 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3280 } 3281 } 3282 }, 3283 "required": true 3284 }, 3285 "responses": { 3286 "200": { 3287 "content": { 3288 "application/json": { 3289 "schema": { 3290 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3291 } 3292 }, 3293 "application/vnd.kubernetes.protobuf": { 3294 "schema": { 3295 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3296 } 3297 }, 3298 "application/yaml": { 3299 "schema": { 3300 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3301 } 3302 } 3303 }, 3304 "description": "OK" 3305 }, 3306 "201": { 3307 "content": { 3308 "application/json": { 3309 "schema": { 3310 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3311 } 3312 }, 3313 "application/vnd.kubernetes.protobuf": { 3314 "schema": { 3315 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3316 } 3317 }, 3318 "application/yaml": { 3319 "schema": { 3320 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3321 } 3322 } 3323 }, 3324 "description": "Created" 3325 }, 3326 "401": { 3327 "description": "Unauthorized" 3328 } 3329 }, 3330 "tags": [ 3331 "resource_v1alpha2" 3332 ], 3333 "x-kubernetes-action": "patch", 3334 "x-kubernetes-group-version-kind": { 3335 "group": "resource.k8s.io", 3336 "kind": "PodSchedulingContext", 3337 "version": "v1alpha2" 3338 } 3339 }, 3340 "put": { 3341 "description": "replace the specified PodSchedulingContext", 3342 "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContext", 3343 "parameters": [ 3344 { 3345 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3346 "in": "query", 3347 "name": "dryRun", 3348 "schema": { 3349 "type": "string", 3350 "uniqueItems": true 3351 } 3352 }, 3353 { 3354 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 3355 "in": "query", 3356 "name": "fieldManager", 3357 "schema": { 3358 "type": "string", 3359 "uniqueItems": true 3360 } 3361 }, 3362 { 3363 "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.", 3364 "in": "query", 3365 "name": "fieldValidation", 3366 "schema": { 3367 "type": "string", 3368 "uniqueItems": true 3369 } 3370 } 3371 ], 3372 "requestBody": { 3373 "content": { 3374 "*/*": { 3375 "schema": { 3376 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3377 } 3378 } 3379 }, 3380 "required": true 3381 }, 3382 "responses": { 3383 "200": { 3384 "content": { 3385 "application/json": { 3386 "schema": { 3387 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3388 } 3389 }, 3390 "application/vnd.kubernetes.protobuf": { 3391 "schema": { 3392 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3393 } 3394 }, 3395 "application/yaml": { 3396 "schema": { 3397 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3398 } 3399 } 3400 }, 3401 "description": "OK" 3402 }, 3403 "201": { 3404 "content": { 3405 "application/json": { 3406 "schema": { 3407 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3408 } 3409 }, 3410 "application/vnd.kubernetes.protobuf": { 3411 "schema": { 3412 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3413 } 3414 }, 3415 "application/yaml": { 3416 "schema": { 3417 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3418 } 3419 } 3420 }, 3421 "description": "Created" 3422 }, 3423 "401": { 3424 "description": "Unauthorized" 3425 } 3426 }, 3427 "tags": [ 3428 "resource_v1alpha2" 3429 ], 3430 "x-kubernetes-action": "put", 3431 "x-kubernetes-group-version-kind": { 3432 "group": "resource.k8s.io", 3433 "kind": "PodSchedulingContext", 3434 "version": "v1alpha2" 3435 } 3436 } 3437 }, 3438 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}/status": { 3439 "get": { 3440 "description": "read status of the specified PodSchedulingContext", 3441 "operationId": "readResourceV1alpha2NamespacedPodSchedulingContextStatus", 3442 "responses": { 3443 "200": { 3444 "content": { 3445 "application/json": { 3446 "schema": { 3447 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3448 } 3449 }, 3450 "application/vnd.kubernetes.protobuf": { 3451 "schema": { 3452 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3453 } 3454 }, 3455 "application/yaml": { 3456 "schema": { 3457 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3458 } 3459 } 3460 }, 3461 "description": "OK" 3462 }, 3463 "401": { 3464 "description": "Unauthorized" 3465 } 3466 }, 3467 "tags": [ 3468 "resource_v1alpha2" 3469 ], 3470 "x-kubernetes-action": "get", 3471 "x-kubernetes-group-version-kind": { 3472 "group": "resource.k8s.io", 3473 "kind": "PodSchedulingContext", 3474 "version": "v1alpha2" 3475 } 3476 }, 3477 "parameters": [ 3478 { 3479 "description": "name of the PodSchedulingContext", 3480 "in": "path", 3481 "name": "name", 3482 "required": true, 3483 "schema": { 3484 "type": "string", 3485 "uniqueItems": true 3486 } 3487 }, 3488 { 3489 "description": "object name and auth scope, such as for teams and projects", 3490 "in": "path", 3491 "name": "namespace", 3492 "required": true, 3493 "schema": { 3494 "type": "string", 3495 "uniqueItems": true 3496 } 3497 }, 3498 { 3499 "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).", 3500 "in": "query", 3501 "name": "pretty", 3502 "schema": { 3503 "type": "string", 3504 "uniqueItems": true 3505 } 3506 } 3507 ], 3508 "patch": { 3509 "description": "partially update status of the specified PodSchedulingContext", 3510 "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContextStatus", 3511 "parameters": [ 3512 { 3513 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3514 "in": "query", 3515 "name": "dryRun", 3516 "schema": { 3517 "type": "string", 3518 "uniqueItems": true 3519 } 3520 }, 3521 { 3522 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 3523 "in": "query", 3524 "name": "fieldManager", 3525 "schema": { 3526 "type": "string", 3527 "uniqueItems": true 3528 } 3529 }, 3530 { 3531 "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.", 3532 "in": "query", 3533 "name": "fieldValidation", 3534 "schema": { 3535 "type": "string", 3536 "uniqueItems": true 3537 } 3538 }, 3539 { 3540 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 3541 "in": "query", 3542 "name": "force", 3543 "schema": { 3544 "type": "boolean", 3545 "uniqueItems": true 3546 } 3547 } 3548 ], 3549 "requestBody": { 3550 "content": { 3551 "application/apply-patch+yaml": { 3552 "schema": { 3553 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3554 } 3555 }, 3556 "application/json-patch+json": { 3557 "schema": { 3558 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3559 } 3560 }, 3561 "application/merge-patch+json": { 3562 "schema": { 3563 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3564 } 3565 }, 3566 "application/strategic-merge-patch+json": { 3567 "schema": { 3568 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 3569 } 3570 } 3571 }, 3572 "required": true 3573 }, 3574 "responses": { 3575 "200": { 3576 "content": { 3577 "application/json": { 3578 "schema": { 3579 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3580 } 3581 }, 3582 "application/vnd.kubernetes.protobuf": { 3583 "schema": { 3584 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3585 } 3586 }, 3587 "application/yaml": { 3588 "schema": { 3589 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3590 } 3591 } 3592 }, 3593 "description": "OK" 3594 }, 3595 "201": { 3596 "content": { 3597 "application/json": { 3598 "schema": { 3599 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3600 } 3601 }, 3602 "application/vnd.kubernetes.protobuf": { 3603 "schema": { 3604 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3605 } 3606 }, 3607 "application/yaml": { 3608 "schema": { 3609 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3610 } 3611 } 3612 }, 3613 "description": "Created" 3614 }, 3615 "401": { 3616 "description": "Unauthorized" 3617 } 3618 }, 3619 "tags": [ 3620 "resource_v1alpha2" 3621 ], 3622 "x-kubernetes-action": "patch", 3623 "x-kubernetes-group-version-kind": { 3624 "group": "resource.k8s.io", 3625 "kind": "PodSchedulingContext", 3626 "version": "v1alpha2" 3627 } 3628 }, 3629 "put": { 3630 "description": "replace status of the specified PodSchedulingContext", 3631 "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContextStatus", 3632 "parameters": [ 3633 { 3634 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3635 "in": "query", 3636 "name": "dryRun", 3637 "schema": { 3638 "type": "string", 3639 "uniqueItems": true 3640 } 3641 }, 3642 { 3643 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 3644 "in": "query", 3645 "name": "fieldManager", 3646 "schema": { 3647 "type": "string", 3648 "uniqueItems": true 3649 } 3650 }, 3651 { 3652 "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.", 3653 "in": "query", 3654 "name": "fieldValidation", 3655 "schema": { 3656 "type": "string", 3657 "uniqueItems": true 3658 } 3659 } 3660 ], 3661 "requestBody": { 3662 "content": { 3663 "*/*": { 3664 "schema": { 3665 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3666 } 3667 } 3668 }, 3669 "required": true 3670 }, 3671 "responses": { 3672 "200": { 3673 "content": { 3674 "application/json": { 3675 "schema": { 3676 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3677 } 3678 }, 3679 "application/vnd.kubernetes.protobuf": { 3680 "schema": { 3681 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3682 } 3683 }, 3684 "application/yaml": { 3685 "schema": { 3686 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3687 } 3688 } 3689 }, 3690 "description": "OK" 3691 }, 3692 "201": { 3693 "content": { 3694 "application/json": { 3695 "schema": { 3696 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3697 } 3698 }, 3699 "application/vnd.kubernetes.protobuf": { 3700 "schema": { 3701 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3702 } 3703 }, 3704 "application/yaml": { 3705 "schema": { 3706 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" 3707 } 3708 } 3709 }, 3710 "description": "Created" 3711 }, 3712 "401": { 3713 "description": "Unauthorized" 3714 } 3715 }, 3716 "tags": [ 3717 "resource_v1alpha2" 3718 ], 3719 "x-kubernetes-action": "put", 3720 "x-kubernetes-group-version-kind": { 3721 "group": "resource.k8s.io", 3722 "kind": "PodSchedulingContext", 3723 "version": "v1alpha2" 3724 } 3725 } 3726 }, 3727 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimparameters": { 3728 "delete": { 3729 "description": "delete collection of ResourceClaimParameters", 3730 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaimParameters", 3731 "parameters": [ 3732 { 3733 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 3734 "in": "query", 3735 "name": "continue", 3736 "schema": { 3737 "type": "string", 3738 "uniqueItems": true 3739 } 3740 }, 3741 { 3742 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 3743 "in": "query", 3744 "name": "dryRun", 3745 "schema": { 3746 "type": "string", 3747 "uniqueItems": true 3748 } 3749 }, 3750 { 3751 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 3752 "in": "query", 3753 "name": "fieldSelector", 3754 "schema": { 3755 "type": "string", 3756 "uniqueItems": true 3757 } 3758 }, 3759 { 3760 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 3761 "in": "query", 3762 "name": "gracePeriodSeconds", 3763 "schema": { 3764 "type": "integer", 3765 "uniqueItems": true 3766 } 3767 }, 3768 { 3769 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 3770 "in": "query", 3771 "name": "labelSelector", 3772 "schema": { 3773 "type": "string", 3774 "uniqueItems": true 3775 } 3776 }, 3777 { 3778 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 3779 "in": "query", 3780 "name": "limit", 3781 "schema": { 3782 "type": "integer", 3783 "uniqueItems": true 3784 } 3785 }, 3786 { 3787 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 3788 "in": "query", 3789 "name": "orphanDependents", 3790 "schema": { 3791 "type": "boolean", 3792 "uniqueItems": true 3793 } 3794 }, 3795 { 3796 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 3797 "in": "query", 3798 "name": "propagationPolicy", 3799 "schema": { 3800 "type": "string", 3801 "uniqueItems": true 3802 } 3803 }, 3804 { 3805 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 3806 "in": "query", 3807 "name": "resourceVersion", 3808 "schema": { 3809 "type": "string", 3810 "uniqueItems": true 3811 } 3812 }, 3813 { 3814 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 3815 "in": "query", 3816 "name": "resourceVersionMatch", 3817 "schema": { 3818 "type": "string", 3819 "uniqueItems": true 3820 } 3821 }, 3822 { 3823 "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.", 3824 "in": "query", 3825 "name": "sendInitialEvents", 3826 "schema": { 3827 "type": "boolean", 3828 "uniqueItems": true 3829 } 3830 }, 3831 { 3832 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 3833 "in": "query", 3834 "name": "timeoutSeconds", 3835 "schema": { 3836 "type": "integer", 3837 "uniqueItems": true 3838 } 3839 } 3840 ], 3841 "requestBody": { 3842 "content": { 3843 "*/*": { 3844 "schema": { 3845 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 3846 } 3847 } 3848 } 3849 }, 3850 "responses": { 3851 "200": { 3852 "content": { 3853 "application/json": { 3854 "schema": { 3855 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 3856 } 3857 }, 3858 "application/vnd.kubernetes.protobuf": { 3859 "schema": { 3860 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 3861 } 3862 }, 3863 "application/yaml": { 3864 "schema": { 3865 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 3866 } 3867 } 3868 }, 3869 "description": "OK" 3870 }, 3871 "401": { 3872 "description": "Unauthorized" 3873 } 3874 }, 3875 "tags": [ 3876 "resource_v1alpha2" 3877 ], 3878 "x-kubernetes-action": "deletecollection", 3879 "x-kubernetes-group-version-kind": { 3880 "group": "resource.k8s.io", 3881 "kind": "ResourceClaimParameters", 3882 "version": "v1alpha2" 3883 } 3884 }, 3885 "get": { 3886 "description": "list or watch objects of kind ResourceClaimParameters", 3887 "operationId": "listResourceV1alpha2NamespacedResourceClaimParameters", 3888 "parameters": [ 3889 { 3890 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 3891 "in": "query", 3892 "name": "allowWatchBookmarks", 3893 "schema": { 3894 "type": "boolean", 3895 "uniqueItems": true 3896 } 3897 }, 3898 { 3899 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 3900 "in": "query", 3901 "name": "continue", 3902 "schema": { 3903 "type": "string", 3904 "uniqueItems": true 3905 } 3906 }, 3907 { 3908 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 3909 "in": "query", 3910 "name": "fieldSelector", 3911 "schema": { 3912 "type": "string", 3913 "uniqueItems": true 3914 } 3915 }, 3916 { 3917 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 3918 "in": "query", 3919 "name": "labelSelector", 3920 "schema": { 3921 "type": "string", 3922 "uniqueItems": true 3923 } 3924 }, 3925 { 3926 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 3927 "in": "query", 3928 "name": "limit", 3929 "schema": { 3930 "type": "integer", 3931 "uniqueItems": true 3932 } 3933 }, 3934 { 3935 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 3936 "in": "query", 3937 "name": "resourceVersion", 3938 "schema": { 3939 "type": "string", 3940 "uniqueItems": true 3941 } 3942 }, 3943 { 3944 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 3945 "in": "query", 3946 "name": "resourceVersionMatch", 3947 "schema": { 3948 "type": "string", 3949 "uniqueItems": true 3950 } 3951 }, 3952 { 3953 "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.", 3954 "in": "query", 3955 "name": "sendInitialEvents", 3956 "schema": { 3957 "type": "boolean", 3958 "uniqueItems": true 3959 } 3960 }, 3961 { 3962 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 3963 "in": "query", 3964 "name": "timeoutSeconds", 3965 "schema": { 3966 "type": "integer", 3967 "uniqueItems": true 3968 } 3969 }, 3970 { 3971 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 3972 "in": "query", 3973 "name": "watch", 3974 "schema": { 3975 "type": "boolean", 3976 "uniqueItems": true 3977 } 3978 } 3979 ], 3980 "responses": { 3981 "200": { 3982 "content": { 3983 "application/json": { 3984 "schema": { 3985 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 3986 } 3987 }, 3988 "application/json;stream=watch": { 3989 "schema": { 3990 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 3991 } 3992 }, 3993 "application/vnd.kubernetes.protobuf": { 3994 "schema": { 3995 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 3996 } 3997 }, 3998 "application/vnd.kubernetes.protobuf;stream=watch": { 3999 "schema": { 4000 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 4001 } 4002 }, 4003 "application/yaml": { 4004 "schema": { 4005 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 4006 } 4007 } 4008 }, 4009 "description": "OK" 4010 }, 4011 "401": { 4012 "description": "Unauthorized" 4013 } 4014 }, 4015 "tags": [ 4016 "resource_v1alpha2" 4017 ], 4018 "x-kubernetes-action": "list", 4019 "x-kubernetes-group-version-kind": { 4020 "group": "resource.k8s.io", 4021 "kind": "ResourceClaimParameters", 4022 "version": "v1alpha2" 4023 } 4024 }, 4025 "parameters": [ 4026 { 4027 "description": "object name and auth scope, such as for teams and projects", 4028 "in": "path", 4029 "name": "namespace", 4030 "required": true, 4031 "schema": { 4032 "type": "string", 4033 "uniqueItems": true 4034 } 4035 }, 4036 { 4037 "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).", 4038 "in": "query", 4039 "name": "pretty", 4040 "schema": { 4041 "type": "string", 4042 "uniqueItems": true 4043 } 4044 } 4045 ], 4046 "post": { 4047 "description": "create ResourceClaimParameters", 4048 "operationId": "createResourceV1alpha2NamespacedResourceClaimParameters", 4049 "parameters": [ 4050 { 4051 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4052 "in": "query", 4053 "name": "dryRun", 4054 "schema": { 4055 "type": "string", 4056 "uniqueItems": true 4057 } 4058 }, 4059 { 4060 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 4061 "in": "query", 4062 "name": "fieldManager", 4063 "schema": { 4064 "type": "string", 4065 "uniqueItems": true 4066 } 4067 }, 4068 { 4069 "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.", 4070 "in": "query", 4071 "name": "fieldValidation", 4072 "schema": { 4073 "type": "string", 4074 "uniqueItems": true 4075 } 4076 } 4077 ], 4078 "requestBody": { 4079 "content": { 4080 "*/*": { 4081 "schema": { 4082 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4083 } 4084 } 4085 }, 4086 "required": true 4087 }, 4088 "responses": { 4089 "200": { 4090 "content": { 4091 "application/json": { 4092 "schema": { 4093 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4094 } 4095 }, 4096 "application/vnd.kubernetes.protobuf": { 4097 "schema": { 4098 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4099 } 4100 }, 4101 "application/yaml": { 4102 "schema": { 4103 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4104 } 4105 } 4106 }, 4107 "description": "OK" 4108 }, 4109 "201": { 4110 "content": { 4111 "application/json": { 4112 "schema": { 4113 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4114 } 4115 }, 4116 "application/vnd.kubernetes.protobuf": { 4117 "schema": { 4118 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4119 } 4120 }, 4121 "application/yaml": { 4122 "schema": { 4123 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4124 } 4125 } 4126 }, 4127 "description": "Created" 4128 }, 4129 "202": { 4130 "content": { 4131 "application/json": { 4132 "schema": { 4133 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4134 } 4135 }, 4136 "application/vnd.kubernetes.protobuf": { 4137 "schema": { 4138 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4139 } 4140 }, 4141 "application/yaml": { 4142 "schema": { 4143 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4144 } 4145 } 4146 }, 4147 "description": "Accepted" 4148 }, 4149 "401": { 4150 "description": "Unauthorized" 4151 } 4152 }, 4153 "tags": [ 4154 "resource_v1alpha2" 4155 ], 4156 "x-kubernetes-action": "post", 4157 "x-kubernetes-group-version-kind": { 4158 "group": "resource.k8s.io", 4159 "kind": "ResourceClaimParameters", 4160 "version": "v1alpha2" 4161 } 4162 } 4163 }, 4164 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimparameters/{name}": { 4165 "delete": { 4166 "description": "delete ResourceClaimParameters", 4167 "operationId": "deleteResourceV1alpha2NamespacedResourceClaimParameters", 4168 "parameters": [ 4169 { 4170 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4171 "in": "query", 4172 "name": "dryRun", 4173 "schema": { 4174 "type": "string", 4175 "uniqueItems": true 4176 } 4177 }, 4178 { 4179 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 4180 "in": "query", 4181 "name": "gracePeriodSeconds", 4182 "schema": { 4183 "type": "integer", 4184 "uniqueItems": true 4185 } 4186 }, 4187 { 4188 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 4189 "in": "query", 4190 "name": "orphanDependents", 4191 "schema": { 4192 "type": "boolean", 4193 "uniqueItems": true 4194 } 4195 }, 4196 { 4197 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 4198 "in": "query", 4199 "name": "propagationPolicy", 4200 "schema": { 4201 "type": "string", 4202 "uniqueItems": true 4203 } 4204 } 4205 ], 4206 "requestBody": { 4207 "content": { 4208 "*/*": { 4209 "schema": { 4210 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 4211 } 4212 } 4213 } 4214 }, 4215 "responses": { 4216 "200": { 4217 "content": { 4218 "application/json": { 4219 "schema": { 4220 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4221 } 4222 }, 4223 "application/vnd.kubernetes.protobuf": { 4224 "schema": { 4225 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4226 } 4227 }, 4228 "application/yaml": { 4229 "schema": { 4230 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4231 } 4232 } 4233 }, 4234 "description": "OK" 4235 }, 4236 "202": { 4237 "content": { 4238 "application/json": { 4239 "schema": { 4240 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4241 } 4242 }, 4243 "application/vnd.kubernetes.protobuf": { 4244 "schema": { 4245 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4246 } 4247 }, 4248 "application/yaml": { 4249 "schema": { 4250 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4251 } 4252 } 4253 }, 4254 "description": "Accepted" 4255 }, 4256 "401": { 4257 "description": "Unauthorized" 4258 } 4259 }, 4260 "tags": [ 4261 "resource_v1alpha2" 4262 ], 4263 "x-kubernetes-action": "delete", 4264 "x-kubernetes-group-version-kind": { 4265 "group": "resource.k8s.io", 4266 "kind": "ResourceClaimParameters", 4267 "version": "v1alpha2" 4268 } 4269 }, 4270 "get": { 4271 "description": "read the specified ResourceClaimParameters", 4272 "operationId": "readResourceV1alpha2NamespacedResourceClaimParameters", 4273 "responses": { 4274 "200": { 4275 "content": { 4276 "application/json": { 4277 "schema": { 4278 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4279 } 4280 }, 4281 "application/vnd.kubernetes.protobuf": { 4282 "schema": { 4283 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4284 } 4285 }, 4286 "application/yaml": { 4287 "schema": { 4288 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4289 } 4290 } 4291 }, 4292 "description": "OK" 4293 }, 4294 "401": { 4295 "description": "Unauthorized" 4296 } 4297 }, 4298 "tags": [ 4299 "resource_v1alpha2" 4300 ], 4301 "x-kubernetes-action": "get", 4302 "x-kubernetes-group-version-kind": { 4303 "group": "resource.k8s.io", 4304 "kind": "ResourceClaimParameters", 4305 "version": "v1alpha2" 4306 } 4307 }, 4308 "parameters": [ 4309 { 4310 "description": "name of the ResourceClaimParameters", 4311 "in": "path", 4312 "name": "name", 4313 "required": true, 4314 "schema": { 4315 "type": "string", 4316 "uniqueItems": true 4317 } 4318 }, 4319 { 4320 "description": "object name and auth scope, such as for teams and projects", 4321 "in": "path", 4322 "name": "namespace", 4323 "required": true, 4324 "schema": { 4325 "type": "string", 4326 "uniqueItems": true 4327 } 4328 }, 4329 { 4330 "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).", 4331 "in": "query", 4332 "name": "pretty", 4333 "schema": { 4334 "type": "string", 4335 "uniqueItems": true 4336 } 4337 } 4338 ], 4339 "patch": { 4340 "description": "partially update the specified ResourceClaimParameters", 4341 "operationId": "patchResourceV1alpha2NamespacedResourceClaimParameters", 4342 "parameters": [ 4343 { 4344 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4345 "in": "query", 4346 "name": "dryRun", 4347 "schema": { 4348 "type": "string", 4349 "uniqueItems": true 4350 } 4351 }, 4352 { 4353 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 4354 "in": "query", 4355 "name": "fieldManager", 4356 "schema": { 4357 "type": "string", 4358 "uniqueItems": true 4359 } 4360 }, 4361 { 4362 "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.", 4363 "in": "query", 4364 "name": "fieldValidation", 4365 "schema": { 4366 "type": "string", 4367 "uniqueItems": true 4368 } 4369 }, 4370 { 4371 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 4372 "in": "query", 4373 "name": "force", 4374 "schema": { 4375 "type": "boolean", 4376 "uniqueItems": true 4377 } 4378 } 4379 ], 4380 "requestBody": { 4381 "content": { 4382 "application/apply-patch+yaml": { 4383 "schema": { 4384 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 4385 } 4386 }, 4387 "application/json-patch+json": { 4388 "schema": { 4389 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 4390 } 4391 }, 4392 "application/merge-patch+json": { 4393 "schema": { 4394 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 4395 } 4396 }, 4397 "application/strategic-merge-patch+json": { 4398 "schema": { 4399 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 4400 } 4401 } 4402 }, 4403 "required": true 4404 }, 4405 "responses": { 4406 "200": { 4407 "content": { 4408 "application/json": { 4409 "schema": { 4410 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4411 } 4412 }, 4413 "application/vnd.kubernetes.protobuf": { 4414 "schema": { 4415 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4416 } 4417 }, 4418 "application/yaml": { 4419 "schema": { 4420 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4421 } 4422 } 4423 }, 4424 "description": "OK" 4425 }, 4426 "201": { 4427 "content": { 4428 "application/json": { 4429 "schema": { 4430 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4431 } 4432 }, 4433 "application/vnd.kubernetes.protobuf": { 4434 "schema": { 4435 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4436 } 4437 }, 4438 "application/yaml": { 4439 "schema": { 4440 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4441 } 4442 } 4443 }, 4444 "description": "Created" 4445 }, 4446 "401": { 4447 "description": "Unauthorized" 4448 } 4449 }, 4450 "tags": [ 4451 "resource_v1alpha2" 4452 ], 4453 "x-kubernetes-action": "patch", 4454 "x-kubernetes-group-version-kind": { 4455 "group": "resource.k8s.io", 4456 "kind": "ResourceClaimParameters", 4457 "version": "v1alpha2" 4458 } 4459 }, 4460 "put": { 4461 "description": "replace the specified ResourceClaimParameters", 4462 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimParameters", 4463 "parameters": [ 4464 { 4465 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4466 "in": "query", 4467 "name": "dryRun", 4468 "schema": { 4469 "type": "string", 4470 "uniqueItems": true 4471 } 4472 }, 4473 { 4474 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 4475 "in": "query", 4476 "name": "fieldManager", 4477 "schema": { 4478 "type": "string", 4479 "uniqueItems": true 4480 } 4481 }, 4482 { 4483 "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.", 4484 "in": "query", 4485 "name": "fieldValidation", 4486 "schema": { 4487 "type": "string", 4488 "uniqueItems": true 4489 } 4490 } 4491 ], 4492 "requestBody": { 4493 "content": { 4494 "*/*": { 4495 "schema": { 4496 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4497 } 4498 } 4499 }, 4500 "required": true 4501 }, 4502 "responses": { 4503 "200": { 4504 "content": { 4505 "application/json": { 4506 "schema": { 4507 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4508 } 4509 }, 4510 "application/vnd.kubernetes.protobuf": { 4511 "schema": { 4512 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4513 } 4514 }, 4515 "application/yaml": { 4516 "schema": { 4517 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4518 } 4519 } 4520 }, 4521 "description": "OK" 4522 }, 4523 "201": { 4524 "content": { 4525 "application/json": { 4526 "schema": { 4527 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4528 } 4529 }, 4530 "application/vnd.kubernetes.protobuf": { 4531 "schema": { 4532 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4533 } 4534 }, 4535 "application/yaml": { 4536 "schema": { 4537 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParameters" 4538 } 4539 } 4540 }, 4541 "description": "Created" 4542 }, 4543 "401": { 4544 "description": "Unauthorized" 4545 } 4546 }, 4547 "tags": [ 4548 "resource_v1alpha2" 4549 ], 4550 "x-kubernetes-action": "put", 4551 "x-kubernetes-group-version-kind": { 4552 "group": "resource.k8s.io", 4553 "kind": "ResourceClaimParameters", 4554 "version": "v1alpha2" 4555 } 4556 } 4557 }, 4558 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims": { 4559 "delete": { 4560 "description": "delete collection of ResourceClaim", 4561 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaim", 4562 "parameters": [ 4563 { 4564 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 4565 "in": "query", 4566 "name": "continue", 4567 "schema": { 4568 "type": "string", 4569 "uniqueItems": true 4570 } 4571 }, 4572 { 4573 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4574 "in": "query", 4575 "name": "dryRun", 4576 "schema": { 4577 "type": "string", 4578 "uniqueItems": true 4579 } 4580 }, 4581 { 4582 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 4583 "in": "query", 4584 "name": "fieldSelector", 4585 "schema": { 4586 "type": "string", 4587 "uniqueItems": true 4588 } 4589 }, 4590 { 4591 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 4592 "in": "query", 4593 "name": "gracePeriodSeconds", 4594 "schema": { 4595 "type": "integer", 4596 "uniqueItems": true 4597 } 4598 }, 4599 { 4600 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 4601 "in": "query", 4602 "name": "labelSelector", 4603 "schema": { 4604 "type": "string", 4605 "uniqueItems": true 4606 } 4607 }, 4608 { 4609 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 4610 "in": "query", 4611 "name": "limit", 4612 "schema": { 4613 "type": "integer", 4614 "uniqueItems": true 4615 } 4616 }, 4617 { 4618 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 4619 "in": "query", 4620 "name": "orphanDependents", 4621 "schema": { 4622 "type": "boolean", 4623 "uniqueItems": true 4624 } 4625 }, 4626 { 4627 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 4628 "in": "query", 4629 "name": "propagationPolicy", 4630 "schema": { 4631 "type": "string", 4632 "uniqueItems": true 4633 } 4634 }, 4635 { 4636 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 4637 "in": "query", 4638 "name": "resourceVersion", 4639 "schema": { 4640 "type": "string", 4641 "uniqueItems": true 4642 } 4643 }, 4644 { 4645 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 4646 "in": "query", 4647 "name": "resourceVersionMatch", 4648 "schema": { 4649 "type": "string", 4650 "uniqueItems": true 4651 } 4652 }, 4653 { 4654 "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.", 4655 "in": "query", 4656 "name": "sendInitialEvents", 4657 "schema": { 4658 "type": "boolean", 4659 "uniqueItems": true 4660 } 4661 }, 4662 { 4663 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 4664 "in": "query", 4665 "name": "timeoutSeconds", 4666 "schema": { 4667 "type": "integer", 4668 "uniqueItems": true 4669 } 4670 } 4671 ], 4672 "requestBody": { 4673 "content": { 4674 "*/*": { 4675 "schema": { 4676 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 4677 } 4678 } 4679 } 4680 }, 4681 "responses": { 4682 "200": { 4683 "content": { 4684 "application/json": { 4685 "schema": { 4686 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 4687 } 4688 }, 4689 "application/vnd.kubernetes.protobuf": { 4690 "schema": { 4691 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 4692 } 4693 }, 4694 "application/yaml": { 4695 "schema": { 4696 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 4697 } 4698 } 4699 }, 4700 "description": "OK" 4701 }, 4702 "401": { 4703 "description": "Unauthorized" 4704 } 4705 }, 4706 "tags": [ 4707 "resource_v1alpha2" 4708 ], 4709 "x-kubernetes-action": "deletecollection", 4710 "x-kubernetes-group-version-kind": { 4711 "group": "resource.k8s.io", 4712 "kind": "ResourceClaim", 4713 "version": "v1alpha2" 4714 } 4715 }, 4716 "get": { 4717 "description": "list or watch objects of kind ResourceClaim", 4718 "operationId": "listResourceV1alpha2NamespacedResourceClaim", 4719 "parameters": [ 4720 { 4721 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 4722 "in": "query", 4723 "name": "allowWatchBookmarks", 4724 "schema": { 4725 "type": "boolean", 4726 "uniqueItems": true 4727 } 4728 }, 4729 { 4730 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 4731 "in": "query", 4732 "name": "continue", 4733 "schema": { 4734 "type": "string", 4735 "uniqueItems": true 4736 } 4737 }, 4738 { 4739 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 4740 "in": "query", 4741 "name": "fieldSelector", 4742 "schema": { 4743 "type": "string", 4744 "uniqueItems": true 4745 } 4746 }, 4747 { 4748 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 4749 "in": "query", 4750 "name": "labelSelector", 4751 "schema": { 4752 "type": "string", 4753 "uniqueItems": true 4754 } 4755 }, 4756 { 4757 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 4758 "in": "query", 4759 "name": "limit", 4760 "schema": { 4761 "type": "integer", 4762 "uniqueItems": true 4763 } 4764 }, 4765 { 4766 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 4767 "in": "query", 4768 "name": "resourceVersion", 4769 "schema": { 4770 "type": "string", 4771 "uniqueItems": true 4772 } 4773 }, 4774 { 4775 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 4776 "in": "query", 4777 "name": "resourceVersionMatch", 4778 "schema": { 4779 "type": "string", 4780 "uniqueItems": true 4781 } 4782 }, 4783 { 4784 "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.", 4785 "in": "query", 4786 "name": "sendInitialEvents", 4787 "schema": { 4788 "type": "boolean", 4789 "uniqueItems": true 4790 } 4791 }, 4792 { 4793 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 4794 "in": "query", 4795 "name": "timeoutSeconds", 4796 "schema": { 4797 "type": "integer", 4798 "uniqueItems": true 4799 } 4800 }, 4801 { 4802 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 4803 "in": "query", 4804 "name": "watch", 4805 "schema": { 4806 "type": "boolean", 4807 "uniqueItems": true 4808 } 4809 } 4810 ], 4811 "responses": { 4812 "200": { 4813 "content": { 4814 "application/json": { 4815 "schema": { 4816 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 4817 } 4818 }, 4819 "application/json;stream=watch": { 4820 "schema": { 4821 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 4822 } 4823 }, 4824 "application/vnd.kubernetes.protobuf": { 4825 "schema": { 4826 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 4827 } 4828 }, 4829 "application/vnd.kubernetes.protobuf;stream=watch": { 4830 "schema": { 4831 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 4832 } 4833 }, 4834 "application/yaml": { 4835 "schema": { 4836 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 4837 } 4838 } 4839 }, 4840 "description": "OK" 4841 }, 4842 "401": { 4843 "description": "Unauthorized" 4844 } 4845 }, 4846 "tags": [ 4847 "resource_v1alpha2" 4848 ], 4849 "x-kubernetes-action": "list", 4850 "x-kubernetes-group-version-kind": { 4851 "group": "resource.k8s.io", 4852 "kind": "ResourceClaim", 4853 "version": "v1alpha2" 4854 } 4855 }, 4856 "parameters": [ 4857 { 4858 "description": "object name and auth scope, such as for teams and projects", 4859 "in": "path", 4860 "name": "namespace", 4861 "required": true, 4862 "schema": { 4863 "type": "string", 4864 "uniqueItems": true 4865 } 4866 }, 4867 { 4868 "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).", 4869 "in": "query", 4870 "name": "pretty", 4871 "schema": { 4872 "type": "string", 4873 "uniqueItems": true 4874 } 4875 } 4876 ], 4877 "post": { 4878 "description": "create a ResourceClaim", 4879 "operationId": "createResourceV1alpha2NamespacedResourceClaim", 4880 "parameters": [ 4881 { 4882 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 4883 "in": "query", 4884 "name": "dryRun", 4885 "schema": { 4886 "type": "string", 4887 "uniqueItems": true 4888 } 4889 }, 4890 { 4891 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 4892 "in": "query", 4893 "name": "fieldManager", 4894 "schema": { 4895 "type": "string", 4896 "uniqueItems": true 4897 } 4898 }, 4899 { 4900 "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.", 4901 "in": "query", 4902 "name": "fieldValidation", 4903 "schema": { 4904 "type": "string", 4905 "uniqueItems": true 4906 } 4907 } 4908 ], 4909 "requestBody": { 4910 "content": { 4911 "*/*": { 4912 "schema": { 4913 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4914 } 4915 } 4916 }, 4917 "required": true 4918 }, 4919 "responses": { 4920 "200": { 4921 "content": { 4922 "application/json": { 4923 "schema": { 4924 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4925 } 4926 }, 4927 "application/vnd.kubernetes.protobuf": { 4928 "schema": { 4929 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4930 } 4931 }, 4932 "application/yaml": { 4933 "schema": { 4934 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4935 } 4936 } 4937 }, 4938 "description": "OK" 4939 }, 4940 "201": { 4941 "content": { 4942 "application/json": { 4943 "schema": { 4944 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4945 } 4946 }, 4947 "application/vnd.kubernetes.protobuf": { 4948 "schema": { 4949 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4950 } 4951 }, 4952 "application/yaml": { 4953 "schema": { 4954 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4955 } 4956 } 4957 }, 4958 "description": "Created" 4959 }, 4960 "202": { 4961 "content": { 4962 "application/json": { 4963 "schema": { 4964 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4965 } 4966 }, 4967 "application/vnd.kubernetes.protobuf": { 4968 "schema": { 4969 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4970 } 4971 }, 4972 "application/yaml": { 4973 "schema": { 4974 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 4975 } 4976 } 4977 }, 4978 "description": "Accepted" 4979 }, 4980 "401": { 4981 "description": "Unauthorized" 4982 } 4983 }, 4984 "tags": [ 4985 "resource_v1alpha2" 4986 ], 4987 "x-kubernetes-action": "post", 4988 "x-kubernetes-group-version-kind": { 4989 "group": "resource.k8s.io", 4990 "kind": "ResourceClaim", 4991 "version": "v1alpha2" 4992 } 4993 } 4994 }, 4995 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}": { 4996 "delete": { 4997 "description": "delete a ResourceClaim", 4998 "operationId": "deleteResourceV1alpha2NamespacedResourceClaim", 4999 "parameters": [ 5000 { 5001 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5002 "in": "query", 5003 "name": "dryRun", 5004 "schema": { 5005 "type": "string", 5006 "uniqueItems": true 5007 } 5008 }, 5009 { 5010 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 5011 "in": "query", 5012 "name": "gracePeriodSeconds", 5013 "schema": { 5014 "type": "integer", 5015 "uniqueItems": true 5016 } 5017 }, 5018 { 5019 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 5020 "in": "query", 5021 "name": "orphanDependents", 5022 "schema": { 5023 "type": "boolean", 5024 "uniqueItems": true 5025 } 5026 }, 5027 { 5028 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 5029 "in": "query", 5030 "name": "propagationPolicy", 5031 "schema": { 5032 "type": "string", 5033 "uniqueItems": true 5034 } 5035 } 5036 ], 5037 "requestBody": { 5038 "content": { 5039 "*/*": { 5040 "schema": { 5041 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 5042 } 5043 } 5044 } 5045 }, 5046 "responses": { 5047 "200": { 5048 "content": { 5049 "application/json": { 5050 "schema": { 5051 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5052 } 5053 }, 5054 "application/vnd.kubernetes.protobuf": { 5055 "schema": { 5056 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5057 } 5058 }, 5059 "application/yaml": { 5060 "schema": { 5061 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5062 } 5063 } 5064 }, 5065 "description": "OK" 5066 }, 5067 "202": { 5068 "content": { 5069 "application/json": { 5070 "schema": { 5071 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5072 } 5073 }, 5074 "application/vnd.kubernetes.protobuf": { 5075 "schema": { 5076 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5077 } 5078 }, 5079 "application/yaml": { 5080 "schema": { 5081 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5082 } 5083 } 5084 }, 5085 "description": "Accepted" 5086 }, 5087 "401": { 5088 "description": "Unauthorized" 5089 } 5090 }, 5091 "tags": [ 5092 "resource_v1alpha2" 5093 ], 5094 "x-kubernetes-action": "delete", 5095 "x-kubernetes-group-version-kind": { 5096 "group": "resource.k8s.io", 5097 "kind": "ResourceClaim", 5098 "version": "v1alpha2" 5099 } 5100 }, 5101 "get": { 5102 "description": "read the specified ResourceClaim", 5103 "operationId": "readResourceV1alpha2NamespacedResourceClaim", 5104 "responses": { 5105 "200": { 5106 "content": { 5107 "application/json": { 5108 "schema": { 5109 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5110 } 5111 }, 5112 "application/vnd.kubernetes.protobuf": { 5113 "schema": { 5114 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5115 } 5116 }, 5117 "application/yaml": { 5118 "schema": { 5119 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5120 } 5121 } 5122 }, 5123 "description": "OK" 5124 }, 5125 "401": { 5126 "description": "Unauthorized" 5127 } 5128 }, 5129 "tags": [ 5130 "resource_v1alpha2" 5131 ], 5132 "x-kubernetes-action": "get", 5133 "x-kubernetes-group-version-kind": { 5134 "group": "resource.k8s.io", 5135 "kind": "ResourceClaim", 5136 "version": "v1alpha2" 5137 } 5138 }, 5139 "parameters": [ 5140 { 5141 "description": "name of the ResourceClaim", 5142 "in": "path", 5143 "name": "name", 5144 "required": true, 5145 "schema": { 5146 "type": "string", 5147 "uniqueItems": true 5148 } 5149 }, 5150 { 5151 "description": "object name and auth scope, such as for teams and projects", 5152 "in": "path", 5153 "name": "namespace", 5154 "required": true, 5155 "schema": { 5156 "type": "string", 5157 "uniqueItems": true 5158 } 5159 }, 5160 { 5161 "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).", 5162 "in": "query", 5163 "name": "pretty", 5164 "schema": { 5165 "type": "string", 5166 "uniqueItems": true 5167 } 5168 } 5169 ], 5170 "patch": { 5171 "description": "partially update the specified ResourceClaim", 5172 "operationId": "patchResourceV1alpha2NamespacedResourceClaim", 5173 "parameters": [ 5174 { 5175 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5176 "in": "query", 5177 "name": "dryRun", 5178 "schema": { 5179 "type": "string", 5180 "uniqueItems": true 5181 } 5182 }, 5183 { 5184 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 5185 "in": "query", 5186 "name": "fieldManager", 5187 "schema": { 5188 "type": "string", 5189 "uniqueItems": true 5190 } 5191 }, 5192 { 5193 "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.", 5194 "in": "query", 5195 "name": "fieldValidation", 5196 "schema": { 5197 "type": "string", 5198 "uniqueItems": true 5199 } 5200 }, 5201 { 5202 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 5203 "in": "query", 5204 "name": "force", 5205 "schema": { 5206 "type": "boolean", 5207 "uniqueItems": true 5208 } 5209 } 5210 ], 5211 "requestBody": { 5212 "content": { 5213 "application/apply-patch+yaml": { 5214 "schema": { 5215 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5216 } 5217 }, 5218 "application/json-patch+json": { 5219 "schema": { 5220 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5221 } 5222 }, 5223 "application/merge-patch+json": { 5224 "schema": { 5225 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5226 } 5227 }, 5228 "application/strategic-merge-patch+json": { 5229 "schema": { 5230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5231 } 5232 } 5233 }, 5234 "required": true 5235 }, 5236 "responses": { 5237 "200": { 5238 "content": { 5239 "application/json": { 5240 "schema": { 5241 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5242 } 5243 }, 5244 "application/vnd.kubernetes.protobuf": { 5245 "schema": { 5246 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5247 } 5248 }, 5249 "application/yaml": { 5250 "schema": { 5251 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5252 } 5253 } 5254 }, 5255 "description": "OK" 5256 }, 5257 "201": { 5258 "content": { 5259 "application/json": { 5260 "schema": { 5261 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5262 } 5263 }, 5264 "application/vnd.kubernetes.protobuf": { 5265 "schema": { 5266 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5267 } 5268 }, 5269 "application/yaml": { 5270 "schema": { 5271 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5272 } 5273 } 5274 }, 5275 "description": "Created" 5276 }, 5277 "401": { 5278 "description": "Unauthorized" 5279 } 5280 }, 5281 "tags": [ 5282 "resource_v1alpha2" 5283 ], 5284 "x-kubernetes-action": "patch", 5285 "x-kubernetes-group-version-kind": { 5286 "group": "resource.k8s.io", 5287 "kind": "ResourceClaim", 5288 "version": "v1alpha2" 5289 } 5290 }, 5291 "put": { 5292 "description": "replace the specified ResourceClaim", 5293 "operationId": "replaceResourceV1alpha2NamespacedResourceClaim", 5294 "parameters": [ 5295 { 5296 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5297 "in": "query", 5298 "name": "dryRun", 5299 "schema": { 5300 "type": "string", 5301 "uniqueItems": true 5302 } 5303 }, 5304 { 5305 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 5306 "in": "query", 5307 "name": "fieldManager", 5308 "schema": { 5309 "type": "string", 5310 "uniqueItems": true 5311 } 5312 }, 5313 { 5314 "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.", 5315 "in": "query", 5316 "name": "fieldValidation", 5317 "schema": { 5318 "type": "string", 5319 "uniqueItems": true 5320 } 5321 } 5322 ], 5323 "requestBody": { 5324 "content": { 5325 "*/*": { 5326 "schema": { 5327 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5328 } 5329 } 5330 }, 5331 "required": true 5332 }, 5333 "responses": { 5334 "200": { 5335 "content": { 5336 "application/json": { 5337 "schema": { 5338 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5339 } 5340 }, 5341 "application/vnd.kubernetes.protobuf": { 5342 "schema": { 5343 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5344 } 5345 }, 5346 "application/yaml": { 5347 "schema": { 5348 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5349 } 5350 } 5351 }, 5352 "description": "OK" 5353 }, 5354 "201": { 5355 "content": { 5356 "application/json": { 5357 "schema": { 5358 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5359 } 5360 }, 5361 "application/vnd.kubernetes.protobuf": { 5362 "schema": { 5363 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5364 } 5365 }, 5366 "application/yaml": { 5367 "schema": { 5368 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5369 } 5370 } 5371 }, 5372 "description": "Created" 5373 }, 5374 "401": { 5375 "description": "Unauthorized" 5376 } 5377 }, 5378 "tags": [ 5379 "resource_v1alpha2" 5380 ], 5381 "x-kubernetes-action": "put", 5382 "x-kubernetes-group-version-kind": { 5383 "group": "resource.k8s.io", 5384 "kind": "ResourceClaim", 5385 "version": "v1alpha2" 5386 } 5387 } 5388 }, 5389 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}/status": { 5390 "get": { 5391 "description": "read status of the specified ResourceClaim", 5392 "operationId": "readResourceV1alpha2NamespacedResourceClaimStatus", 5393 "responses": { 5394 "200": { 5395 "content": { 5396 "application/json": { 5397 "schema": { 5398 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5399 } 5400 }, 5401 "application/vnd.kubernetes.protobuf": { 5402 "schema": { 5403 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5404 } 5405 }, 5406 "application/yaml": { 5407 "schema": { 5408 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5409 } 5410 } 5411 }, 5412 "description": "OK" 5413 }, 5414 "401": { 5415 "description": "Unauthorized" 5416 } 5417 }, 5418 "tags": [ 5419 "resource_v1alpha2" 5420 ], 5421 "x-kubernetes-action": "get", 5422 "x-kubernetes-group-version-kind": { 5423 "group": "resource.k8s.io", 5424 "kind": "ResourceClaim", 5425 "version": "v1alpha2" 5426 } 5427 }, 5428 "parameters": [ 5429 { 5430 "description": "name of the ResourceClaim", 5431 "in": "path", 5432 "name": "name", 5433 "required": true, 5434 "schema": { 5435 "type": "string", 5436 "uniqueItems": true 5437 } 5438 }, 5439 { 5440 "description": "object name and auth scope, such as for teams and projects", 5441 "in": "path", 5442 "name": "namespace", 5443 "required": true, 5444 "schema": { 5445 "type": "string", 5446 "uniqueItems": true 5447 } 5448 }, 5449 { 5450 "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).", 5451 "in": "query", 5452 "name": "pretty", 5453 "schema": { 5454 "type": "string", 5455 "uniqueItems": true 5456 } 5457 } 5458 ], 5459 "patch": { 5460 "description": "partially update status of the specified ResourceClaim", 5461 "operationId": "patchResourceV1alpha2NamespacedResourceClaimStatus", 5462 "parameters": [ 5463 { 5464 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5465 "in": "query", 5466 "name": "dryRun", 5467 "schema": { 5468 "type": "string", 5469 "uniqueItems": true 5470 } 5471 }, 5472 { 5473 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 5474 "in": "query", 5475 "name": "fieldManager", 5476 "schema": { 5477 "type": "string", 5478 "uniqueItems": true 5479 } 5480 }, 5481 { 5482 "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.", 5483 "in": "query", 5484 "name": "fieldValidation", 5485 "schema": { 5486 "type": "string", 5487 "uniqueItems": true 5488 } 5489 }, 5490 { 5491 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 5492 "in": "query", 5493 "name": "force", 5494 "schema": { 5495 "type": "boolean", 5496 "uniqueItems": true 5497 } 5498 } 5499 ], 5500 "requestBody": { 5501 "content": { 5502 "application/apply-patch+yaml": { 5503 "schema": { 5504 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5505 } 5506 }, 5507 "application/json-patch+json": { 5508 "schema": { 5509 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5510 } 5511 }, 5512 "application/merge-patch+json": { 5513 "schema": { 5514 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5515 } 5516 }, 5517 "application/strategic-merge-patch+json": { 5518 "schema": { 5519 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 5520 } 5521 } 5522 }, 5523 "required": true 5524 }, 5525 "responses": { 5526 "200": { 5527 "content": { 5528 "application/json": { 5529 "schema": { 5530 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5531 } 5532 }, 5533 "application/vnd.kubernetes.protobuf": { 5534 "schema": { 5535 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5536 } 5537 }, 5538 "application/yaml": { 5539 "schema": { 5540 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5541 } 5542 } 5543 }, 5544 "description": "OK" 5545 }, 5546 "201": { 5547 "content": { 5548 "application/json": { 5549 "schema": { 5550 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5551 } 5552 }, 5553 "application/vnd.kubernetes.protobuf": { 5554 "schema": { 5555 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5556 } 5557 }, 5558 "application/yaml": { 5559 "schema": { 5560 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5561 } 5562 } 5563 }, 5564 "description": "Created" 5565 }, 5566 "401": { 5567 "description": "Unauthorized" 5568 } 5569 }, 5570 "tags": [ 5571 "resource_v1alpha2" 5572 ], 5573 "x-kubernetes-action": "patch", 5574 "x-kubernetes-group-version-kind": { 5575 "group": "resource.k8s.io", 5576 "kind": "ResourceClaim", 5577 "version": "v1alpha2" 5578 } 5579 }, 5580 "put": { 5581 "description": "replace status of the specified ResourceClaim", 5582 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimStatus", 5583 "parameters": [ 5584 { 5585 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5586 "in": "query", 5587 "name": "dryRun", 5588 "schema": { 5589 "type": "string", 5590 "uniqueItems": true 5591 } 5592 }, 5593 { 5594 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 5595 "in": "query", 5596 "name": "fieldManager", 5597 "schema": { 5598 "type": "string", 5599 "uniqueItems": true 5600 } 5601 }, 5602 { 5603 "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.", 5604 "in": "query", 5605 "name": "fieldValidation", 5606 "schema": { 5607 "type": "string", 5608 "uniqueItems": true 5609 } 5610 } 5611 ], 5612 "requestBody": { 5613 "content": { 5614 "*/*": { 5615 "schema": { 5616 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5617 } 5618 } 5619 }, 5620 "required": true 5621 }, 5622 "responses": { 5623 "200": { 5624 "content": { 5625 "application/json": { 5626 "schema": { 5627 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5628 } 5629 }, 5630 "application/vnd.kubernetes.protobuf": { 5631 "schema": { 5632 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5633 } 5634 }, 5635 "application/yaml": { 5636 "schema": { 5637 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5638 } 5639 } 5640 }, 5641 "description": "OK" 5642 }, 5643 "201": { 5644 "content": { 5645 "application/json": { 5646 "schema": { 5647 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5648 } 5649 }, 5650 "application/vnd.kubernetes.protobuf": { 5651 "schema": { 5652 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5653 } 5654 }, 5655 "application/yaml": { 5656 "schema": { 5657 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" 5658 } 5659 } 5660 }, 5661 "description": "Created" 5662 }, 5663 "401": { 5664 "description": "Unauthorized" 5665 } 5666 }, 5667 "tags": [ 5668 "resource_v1alpha2" 5669 ], 5670 "x-kubernetes-action": "put", 5671 "x-kubernetes-group-version-kind": { 5672 "group": "resource.k8s.io", 5673 "kind": "ResourceClaim", 5674 "version": "v1alpha2" 5675 } 5676 } 5677 }, 5678 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates": { 5679 "delete": { 5680 "description": "delete collection of ResourceClaimTemplate", 5681 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate", 5682 "parameters": [ 5683 { 5684 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 5685 "in": "query", 5686 "name": "continue", 5687 "schema": { 5688 "type": "string", 5689 "uniqueItems": true 5690 } 5691 }, 5692 { 5693 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5694 "in": "query", 5695 "name": "dryRun", 5696 "schema": { 5697 "type": "string", 5698 "uniqueItems": true 5699 } 5700 }, 5701 { 5702 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 5703 "in": "query", 5704 "name": "fieldSelector", 5705 "schema": { 5706 "type": "string", 5707 "uniqueItems": true 5708 } 5709 }, 5710 { 5711 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 5712 "in": "query", 5713 "name": "gracePeriodSeconds", 5714 "schema": { 5715 "type": "integer", 5716 "uniqueItems": true 5717 } 5718 }, 5719 { 5720 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 5721 "in": "query", 5722 "name": "labelSelector", 5723 "schema": { 5724 "type": "string", 5725 "uniqueItems": true 5726 } 5727 }, 5728 { 5729 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 5730 "in": "query", 5731 "name": "limit", 5732 "schema": { 5733 "type": "integer", 5734 "uniqueItems": true 5735 } 5736 }, 5737 { 5738 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 5739 "in": "query", 5740 "name": "orphanDependents", 5741 "schema": { 5742 "type": "boolean", 5743 "uniqueItems": true 5744 } 5745 }, 5746 { 5747 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 5748 "in": "query", 5749 "name": "propagationPolicy", 5750 "schema": { 5751 "type": "string", 5752 "uniqueItems": true 5753 } 5754 }, 5755 { 5756 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 5757 "in": "query", 5758 "name": "resourceVersion", 5759 "schema": { 5760 "type": "string", 5761 "uniqueItems": true 5762 } 5763 }, 5764 { 5765 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 5766 "in": "query", 5767 "name": "resourceVersionMatch", 5768 "schema": { 5769 "type": "string", 5770 "uniqueItems": true 5771 } 5772 }, 5773 { 5774 "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.", 5775 "in": "query", 5776 "name": "sendInitialEvents", 5777 "schema": { 5778 "type": "boolean", 5779 "uniqueItems": true 5780 } 5781 }, 5782 { 5783 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 5784 "in": "query", 5785 "name": "timeoutSeconds", 5786 "schema": { 5787 "type": "integer", 5788 "uniqueItems": true 5789 } 5790 } 5791 ], 5792 "requestBody": { 5793 "content": { 5794 "*/*": { 5795 "schema": { 5796 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 5797 } 5798 } 5799 } 5800 }, 5801 "responses": { 5802 "200": { 5803 "content": { 5804 "application/json": { 5805 "schema": { 5806 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 5807 } 5808 }, 5809 "application/vnd.kubernetes.protobuf": { 5810 "schema": { 5811 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 5812 } 5813 }, 5814 "application/yaml": { 5815 "schema": { 5816 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 5817 } 5818 } 5819 }, 5820 "description": "OK" 5821 }, 5822 "401": { 5823 "description": "Unauthorized" 5824 } 5825 }, 5826 "tags": [ 5827 "resource_v1alpha2" 5828 ], 5829 "x-kubernetes-action": "deletecollection", 5830 "x-kubernetes-group-version-kind": { 5831 "group": "resource.k8s.io", 5832 "kind": "ResourceClaimTemplate", 5833 "version": "v1alpha2" 5834 } 5835 }, 5836 "get": { 5837 "description": "list or watch objects of kind ResourceClaimTemplate", 5838 "operationId": "listResourceV1alpha2NamespacedResourceClaimTemplate", 5839 "parameters": [ 5840 { 5841 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 5842 "in": "query", 5843 "name": "allowWatchBookmarks", 5844 "schema": { 5845 "type": "boolean", 5846 "uniqueItems": true 5847 } 5848 }, 5849 { 5850 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 5851 "in": "query", 5852 "name": "continue", 5853 "schema": { 5854 "type": "string", 5855 "uniqueItems": true 5856 } 5857 }, 5858 { 5859 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 5860 "in": "query", 5861 "name": "fieldSelector", 5862 "schema": { 5863 "type": "string", 5864 "uniqueItems": true 5865 } 5866 }, 5867 { 5868 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 5869 "in": "query", 5870 "name": "labelSelector", 5871 "schema": { 5872 "type": "string", 5873 "uniqueItems": true 5874 } 5875 }, 5876 { 5877 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 5878 "in": "query", 5879 "name": "limit", 5880 "schema": { 5881 "type": "integer", 5882 "uniqueItems": true 5883 } 5884 }, 5885 { 5886 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 5887 "in": "query", 5888 "name": "resourceVersion", 5889 "schema": { 5890 "type": "string", 5891 "uniqueItems": true 5892 } 5893 }, 5894 { 5895 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 5896 "in": "query", 5897 "name": "resourceVersionMatch", 5898 "schema": { 5899 "type": "string", 5900 "uniqueItems": true 5901 } 5902 }, 5903 { 5904 "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.", 5905 "in": "query", 5906 "name": "sendInitialEvents", 5907 "schema": { 5908 "type": "boolean", 5909 "uniqueItems": true 5910 } 5911 }, 5912 { 5913 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 5914 "in": "query", 5915 "name": "timeoutSeconds", 5916 "schema": { 5917 "type": "integer", 5918 "uniqueItems": true 5919 } 5920 }, 5921 { 5922 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 5923 "in": "query", 5924 "name": "watch", 5925 "schema": { 5926 "type": "boolean", 5927 "uniqueItems": true 5928 } 5929 } 5930 ], 5931 "responses": { 5932 "200": { 5933 "content": { 5934 "application/json": { 5935 "schema": { 5936 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 5937 } 5938 }, 5939 "application/json;stream=watch": { 5940 "schema": { 5941 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 5942 } 5943 }, 5944 "application/vnd.kubernetes.protobuf": { 5945 "schema": { 5946 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 5947 } 5948 }, 5949 "application/vnd.kubernetes.protobuf;stream=watch": { 5950 "schema": { 5951 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 5952 } 5953 }, 5954 "application/yaml": { 5955 "schema": { 5956 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 5957 } 5958 } 5959 }, 5960 "description": "OK" 5961 }, 5962 "401": { 5963 "description": "Unauthorized" 5964 } 5965 }, 5966 "tags": [ 5967 "resource_v1alpha2" 5968 ], 5969 "x-kubernetes-action": "list", 5970 "x-kubernetes-group-version-kind": { 5971 "group": "resource.k8s.io", 5972 "kind": "ResourceClaimTemplate", 5973 "version": "v1alpha2" 5974 } 5975 }, 5976 "parameters": [ 5977 { 5978 "description": "object name and auth scope, such as for teams and projects", 5979 "in": "path", 5980 "name": "namespace", 5981 "required": true, 5982 "schema": { 5983 "type": "string", 5984 "uniqueItems": true 5985 } 5986 }, 5987 { 5988 "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).", 5989 "in": "query", 5990 "name": "pretty", 5991 "schema": { 5992 "type": "string", 5993 "uniqueItems": true 5994 } 5995 } 5996 ], 5997 "post": { 5998 "description": "create a ResourceClaimTemplate", 5999 "operationId": "createResourceV1alpha2NamespacedResourceClaimTemplate", 6000 "parameters": [ 6001 { 6002 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6003 "in": "query", 6004 "name": "dryRun", 6005 "schema": { 6006 "type": "string", 6007 "uniqueItems": true 6008 } 6009 }, 6010 { 6011 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 6012 "in": "query", 6013 "name": "fieldManager", 6014 "schema": { 6015 "type": "string", 6016 "uniqueItems": true 6017 } 6018 }, 6019 { 6020 "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.", 6021 "in": "query", 6022 "name": "fieldValidation", 6023 "schema": { 6024 "type": "string", 6025 "uniqueItems": true 6026 } 6027 } 6028 ], 6029 "requestBody": { 6030 "content": { 6031 "*/*": { 6032 "schema": { 6033 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6034 } 6035 } 6036 }, 6037 "required": true 6038 }, 6039 "responses": { 6040 "200": { 6041 "content": { 6042 "application/json": { 6043 "schema": { 6044 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6045 } 6046 }, 6047 "application/vnd.kubernetes.protobuf": { 6048 "schema": { 6049 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6050 } 6051 }, 6052 "application/yaml": { 6053 "schema": { 6054 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6055 } 6056 } 6057 }, 6058 "description": "OK" 6059 }, 6060 "201": { 6061 "content": { 6062 "application/json": { 6063 "schema": { 6064 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6065 } 6066 }, 6067 "application/vnd.kubernetes.protobuf": { 6068 "schema": { 6069 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6070 } 6071 }, 6072 "application/yaml": { 6073 "schema": { 6074 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6075 } 6076 } 6077 }, 6078 "description": "Created" 6079 }, 6080 "202": { 6081 "content": { 6082 "application/json": { 6083 "schema": { 6084 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6085 } 6086 }, 6087 "application/vnd.kubernetes.protobuf": { 6088 "schema": { 6089 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6090 } 6091 }, 6092 "application/yaml": { 6093 "schema": { 6094 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6095 } 6096 } 6097 }, 6098 "description": "Accepted" 6099 }, 6100 "401": { 6101 "description": "Unauthorized" 6102 } 6103 }, 6104 "tags": [ 6105 "resource_v1alpha2" 6106 ], 6107 "x-kubernetes-action": "post", 6108 "x-kubernetes-group-version-kind": { 6109 "group": "resource.k8s.io", 6110 "kind": "ResourceClaimTemplate", 6111 "version": "v1alpha2" 6112 } 6113 } 6114 }, 6115 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates/{name}": { 6116 "delete": { 6117 "description": "delete a ResourceClaimTemplate", 6118 "operationId": "deleteResourceV1alpha2NamespacedResourceClaimTemplate", 6119 "parameters": [ 6120 { 6121 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6122 "in": "query", 6123 "name": "dryRun", 6124 "schema": { 6125 "type": "string", 6126 "uniqueItems": true 6127 } 6128 }, 6129 { 6130 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 6131 "in": "query", 6132 "name": "gracePeriodSeconds", 6133 "schema": { 6134 "type": "integer", 6135 "uniqueItems": true 6136 } 6137 }, 6138 { 6139 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 6140 "in": "query", 6141 "name": "orphanDependents", 6142 "schema": { 6143 "type": "boolean", 6144 "uniqueItems": true 6145 } 6146 }, 6147 { 6148 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 6149 "in": "query", 6150 "name": "propagationPolicy", 6151 "schema": { 6152 "type": "string", 6153 "uniqueItems": true 6154 } 6155 } 6156 ], 6157 "requestBody": { 6158 "content": { 6159 "*/*": { 6160 "schema": { 6161 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 6162 } 6163 } 6164 } 6165 }, 6166 "responses": { 6167 "200": { 6168 "content": { 6169 "application/json": { 6170 "schema": { 6171 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6172 } 6173 }, 6174 "application/vnd.kubernetes.protobuf": { 6175 "schema": { 6176 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6177 } 6178 }, 6179 "application/yaml": { 6180 "schema": { 6181 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6182 } 6183 } 6184 }, 6185 "description": "OK" 6186 }, 6187 "202": { 6188 "content": { 6189 "application/json": { 6190 "schema": { 6191 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6192 } 6193 }, 6194 "application/vnd.kubernetes.protobuf": { 6195 "schema": { 6196 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6197 } 6198 }, 6199 "application/yaml": { 6200 "schema": { 6201 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6202 } 6203 } 6204 }, 6205 "description": "Accepted" 6206 }, 6207 "401": { 6208 "description": "Unauthorized" 6209 } 6210 }, 6211 "tags": [ 6212 "resource_v1alpha2" 6213 ], 6214 "x-kubernetes-action": "delete", 6215 "x-kubernetes-group-version-kind": { 6216 "group": "resource.k8s.io", 6217 "kind": "ResourceClaimTemplate", 6218 "version": "v1alpha2" 6219 } 6220 }, 6221 "get": { 6222 "description": "read the specified ResourceClaimTemplate", 6223 "operationId": "readResourceV1alpha2NamespacedResourceClaimTemplate", 6224 "responses": { 6225 "200": { 6226 "content": { 6227 "application/json": { 6228 "schema": { 6229 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6230 } 6231 }, 6232 "application/vnd.kubernetes.protobuf": { 6233 "schema": { 6234 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6235 } 6236 }, 6237 "application/yaml": { 6238 "schema": { 6239 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6240 } 6241 } 6242 }, 6243 "description": "OK" 6244 }, 6245 "401": { 6246 "description": "Unauthorized" 6247 } 6248 }, 6249 "tags": [ 6250 "resource_v1alpha2" 6251 ], 6252 "x-kubernetes-action": "get", 6253 "x-kubernetes-group-version-kind": { 6254 "group": "resource.k8s.io", 6255 "kind": "ResourceClaimTemplate", 6256 "version": "v1alpha2" 6257 } 6258 }, 6259 "parameters": [ 6260 { 6261 "description": "name of the ResourceClaimTemplate", 6262 "in": "path", 6263 "name": "name", 6264 "required": true, 6265 "schema": { 6266 "type": "string", 6267 "uniqueItems": true 6268 } 6269 }, 6270 { 6271 "description": "object name and auth scope, such as for teams and projects", 6272 "in": "path", 6273 "name": "namespace", 6274 "required": true, 6275 "schema": { 6276 "type": "string", 6277 "uniqueItems": true 6278 } 6279 }, 6280 { 6281 "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).", 6282 "in": "query", 6283 "name": "pretty", 6284 "schema": { 6285 "type": "string", 6286 "uniqueItems": true 6287 } 6288 } 6289 ], 6290 "patch": { 6291 "description": "partially update the specified ResourceClaimTemplate", 6292 "operationId": "patchResourceV1alpha2NamespacedResourceClaimTemplate", 6293 "parameters": [ 6294 { 6295 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6296 "in": "query", 6297 "name": "dryRun", 6298 "schema": { 6299 "type": "string", 6300 "uniqueItems": true 6301 } 6302 }, 6303 { 6304 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 6305 "in": "query", 6306 "name": "fieldManager", 6307 "schema": { 6308 "type": "string", 6309 "uniqueItems": true 6310 } 6311 }, 6312 { 6313 "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.", 6314 "in": "query", 6315 "name": "fieldValidation", 6316 "schema": { 6317 "type": "string", 6318 "uniqueItems": true 6319 } 6320 }, 6321 { 6322 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 6323 "in": "query", 6324 "name": "force", 6325 "schema": { 6326 "type": "boolean", 6327 "uniqueItems": true 6328 } 6329 } 6330 ], 6331 "requestBody": { 6332 "content": { 6333 "application/apply-patch+yaml": { 6334 "schema": { 6335 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 6336 } 6337 }, 6338 "application/json-patch+json": { 6339 "schema": { 6340 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 6341 } 6342 }, 6343 "application/merge-patch+json": { 6344 "schema": { 6345 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 6346 } 6347 }, 6348 "application/strategic-merge-patch+json": { 6349 "schema": { 6350 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 6351 } 6352 } 6353 }, 6354 "required": true 6355 }, 6356 "responses": { 6357 "200": { 6358 "content": { 6359 "application/json": { 6360 "schema": { 6361 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6362 } 6363 }, 6364 "application/vnd.kubernetes.protobuf": { 6365 "schema": { 6366 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6367 } 6368 }, 6369 "application/yaml": { 6370 "schema": { 6371 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6372 } 6373 } 6374 }, 6375 "description": "OK" 6376 }, 6377 "201": { 6378 "content": { 6379 "application/json": { 6380 "schema": { 6381 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6382 } 6383 }, 6384 "application/vnd.kubernetes.protobuf": { 6385 "schema": { 6386 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6387 } 6388 }, 6389 "application/yaml": { 6390 "schema": { 6391 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6392 } 6393 } 6394 }, 6395 "description": "Created" 6396 }, 6397 "401": { 6398 "description": "Unauthorized" 6399 } 6400 }, 6401 "tags": [ 6402 "resource_v1alpha2" 6403 ], 6404 "x-kubernetes-action": "patch", 6405 "x-kubernetes-group-version-kind": { 6406 "group": "resource.k8s.io", 6407 "kind": "ResourceClaimTemplate", 6408 "version": "v1alpha2" 6409 } 6410 }, 6411 "put": { 6412 "description": "replace the specified ResourceClaimTemplate", 6413 "operationId": "replaceResourceV1alpha2NamespacedResourceClaimTemplate", 6414 "parameters": [ 6415 { 6416 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6417 "in": "query", 6418 "name": "dryRun", 6419 "schema": { 6420 "type": "string", 6421 "uniqueItems": true 6422 } 6423 }, 6424 { 6425 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 6426 "in": "query", 6427 "name": "fieldManager", 6428 "schema": { 6429 "type": "string", 6430 "uniqueItems": true 6431 } 6432 }, 6433 { 6434 "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.", 6435 "in": "query", 6436 "name": "fieldValidation", 6437 "schema": { 6438 "type": "string", 6439 "uniqueItems": true 6440 } 6441 } 6442 ], 6443 "requestBody": { 6444 "content": { 6445 "*/*": { 6446 "schema": { 6447 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6448 } 6449 } 6450 }, 6451 "required": true 6452 }, 6453 "responses": { 6454 "200": { 6455 "content": { 6456 "application/json": { 6457 "schema": { 6458 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6459 } 6460 }, 6461 "application/vnd.kubernetes.protobuf": { 6462 "schema": { 6463 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6464 } 6465 }, 6466 "application/yaml": { 6467 "schema": { 6468 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6469 } 6470 } 6471 }, 6472 "description": "OK" 6473 }, 6474 "201": { 6475 "content": { 6476 "application/json": { 6477 "schema": { 6478 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6479 } 6480 }, 6481 "application/vnd.kubernetes.protobuf": { 6482 "schema": { 6483 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6484 } 6485 }, 6486 "application/yaml": { 6487 "schema": { 6488 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" 6489 } 6490 } 6491 }, 6492 "description": "Created" 6493 }, 6494 "401": { 6495 "description": "Unauthorized" 6496 } 6497 }, 6498 "tags": [ 6499 "resource_v1alpha2" 6500 ], 6501 "x-kubernetes-action": "put", 6502 "x-kubernetes-group-version-kind": { 6503 "group": "resource.k8s.io", 6504 "kind": "ResourceClaimTemplate", 6505 "version": "v1alpha2" 6506 } 6507 } 6508 }, 6509 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclassparameters": { 6510 "delete": { 6511 "description": "delete collection of ResourceClassParameters", 6512 "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClassParameters", 6513 "parameters": [ 6514 { 6515 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6516 "in": "query", 6517 "name": "continue", 6518 "schema": { 6519 "type": "string", 6520 "uniqueItems": true 6521 } 6522 }, 6523 { 6524 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6525 "in": "query", 6526 "name": "dryRun", 6527 "schema": { 6528 "type": "string", 6529 "uniqueItems": true 6530 } 6531 }, 6532 { 6533 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6534 "in": "query", 6535 "name": "fieldSelector", 6536 "schema": { 6537 "type": "string", 6538 "uniqueItems": true 6539 } 6540 }, 6541 { 6542 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 6543 "in": "query", 6544 "name": "gracePeriodSeconds", 6545 "schema": { 6546 "type": "integer", 6547 "uniqueItems": true 6548 } 6549 }, 6550 { 6551 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6552 "in": "query", 6553 "name": "labelSelector", 6554 "schema": { 6555 "type": "string", 6556 "uniqueItems": true 6557 } 6558 }, 6559 { 6560 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6561 "in": "query", 6562 "name": "limit", 6563 "schema": { 6564 "type": "integer", 6565 "uniqueItems": true 6566 } 6567 }, 6568 { 6569 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 6570 "in": "query", 6571 "name": "orphanDependents", 6572 "schema": { 6573 "type": "boolean", 6574 "uniqueItems": true 6575 } 6576 }, 6577 { 6578 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 6579 "in": "query", 6580 "name": "propagationPolicy", 6581 "schema": { 6582 "type": "string", 6583 "uniqueItems": true 6584 } 6585 }, 6586 { 6587 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6588 "in": "query", 6589 "name": "resourceVersion", 6590 "schema": { 6591 "type": "string", 6592 "uniqueItems": true 6593 } 6594 }, 6595 { 6596 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6597 "in": "query", 6598 "name": "resourceVersionMatch", 6599 "schema": { 6600 "type": "string", 6601 "uniqueItems": true 6602 } 6603 }, 6604 { 6605 "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.", 6606 "in": "query", 6607 "name": "sendInitialEvents", 6608 "schema": { 6609 "type": "boolean", 6610 "uniqueItems": true 6611 } 6612 }, 6613 { 6614 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6615 "in": "query", 6616 "name": "timeoutSeconds", 6617 "schema": { 6618 "type": "integer", 6619 "uniqueItems": true 6620 } 6621 } 6622 ], 6623 "requestBody": { 6624 "content": { 6625 "*/*": { 6626 "schema": { 6627 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 6628 } 6629 } 6630 } 6631 }, 6632 "responses": { 6633 "200": { 6634 "content": { 6635 "application/json": { 6636 "schema": { 6637 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6638 } 6639 }, 6640 "application/vnd.kubernetes.protobuf": { 6641 "schema": { 6642 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6643 } 6644 }, 6645 "application/yaml": { 6646 "schema": { 6647 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6648 } 6649 } 6650 }, 6651 "description": "OK" 6652 }, 6653 "401": { 6654 "description": "Unauthorized" 6655 } 6656 }, 6657 "tags": [ 6658 "resource_v1alpha2" 6659 ], 6660 "x-kubernetes-action": "deletecollection", 6661 "x-kubernetes-group-version-kind": { 6662 "group": "resource.k8s.io", 6663 "kind": "ResourceClassParameters", 6664 "version": "v1alpha2" 6665 } 6666 }, 6667 "get": { 6668 "description": "list or watch objects of kind ResourceClassParameters", 6669 "operationId": "listResourceV1alpha2NamespacedResourceClassParameters", 6670 "parameters": [ 6671 { 6672 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 6673 "in": "query", 6674 "name": "allowWatchBookmarks", 6675 "schema": { 6676 "type": "boolean", 6677 "uniqueItems": true 6678 } 6679 }, 6680 { 6681 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6682 "in": "query", 6683 "name": "continue", 6684 "schema": { 6685 "type": "string", 6686 "uniqueItems": true 6687 } 6688 }, 6689 { 6690 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6691 "in": "query", 6692 "name": "fieldSelector", 6693 "schema": { 6694 "type": "string", 6695 "uniqueItems": true 6696 } 6697 }, 6698 { 6699 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6700 "in": "query", 6701 "name": "labelSelector", 6702 "schema": { 6703 "type": "string", 6704 "uniqueItems": true 6705 } 6706 }, 6707 { 6708 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6709 "in": "query", 6710 "name": "limit", 6711 "schema": { 6712 "type": "integer", 6713 "uniqueItems": true 6714 } 6715 }, 6716 { 6717 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6718 "in": "query", 6719 "name": "resourceVersion", 6720 "schema": { 6721 "type": "string", 6722 "uniqueItems": true 6723 } 6724 }, 6725 { 6726 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6727 "in": "query", 6728 "name": "resourceVersionMatch", 6729 "schema": { 6730 "type": "string", 6731 "uniqueItems": true 6732 } 6733 }, 6734 { 6735 "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.", 6736 "in": "query", 6737 "name": "sendInitialEvents", 6738 "schema": { 6739 "type": "boolean", 6740 "uniqueItems": true 6741 } 6742 }, 6743 { 6744 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6745 "in": "query", 6746 "name": "timeoutSeconds", 6747 "schema": { 6748 "type": "integer", 6749 "uniqueItems": true 6750 } 6751 }, 6752 { 6753 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 6754 "in": "query", 6755 "name": "watch", 6756 "schema": { 6757 "type": "boolean", 6758 "uniqueItems": true 6759 } 6760 } 6761 ], 6762 "responses": { 6763 "200": { 6764 "content": { 6765 "application/json": { 6766 "schema": { 6767 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 6768 } 6769 }, 6770 "application/json;stream=watch": { 6771 "schema": { 6772 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 6773 } 6774 }, 6775 "application/vnd.kubernetes.protobuf": { 6776 "schema": { 6777 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 6778 } 6779 }, 6780 "application/vnd.kubernetes.protobuf;stream=watch": { 6781 "schema": { 6782 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 6783 } 6784 }, 6785 "application/yaml": { 6786 "schema": { 6787 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 6788 } 6789 } 6790 }, 6791 "description": "OK" 6792 }, 6793 "401": { 6794 "description": "Unauthorized" 6795 } 6796 }, 6797 "tags": [ 6798 "resource_v1alpha2" 6799 ], 6800 "x-kubernetes-action": "list", 6801 "x-kubernetes-group-version-kind": { 6802 "group": "resource.k8s.io", 6803 "kind": "ResourceClassParameters", 6804 "version": "v1alpha2" 6805 } 6806 }, 6807 "parameters": [ 6808 { 6809 "description": "object name and auth scope, such as for teams and projects", 6810 "in": "path", 6811 "name": "namespace", 6812 "required": true, 6813 "schema": { 6814 "type": "string", 6815 "uniqueItems": true 6816 } 6817 }, 6818 { 6819 "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).", 6820 "in": "query", 6821 "name": "pretty", 6822 "schema": { 6823 "type": "string", 6824 "uniqueItems": true 6825 } 6826 } 6827 ], 6828 "post": { 6829 "description": "create ResourceClassParameters", 6830 "operationId": "createResourceV1alpha2NamespacedResourceClassParameters", 6831 "parameters": [ 6832 { 6833 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6834 "in": "query", 6835 "name": "dryRun", 6836 "schema": { 6837 "type": "string", 6838 "uniqueItems": true 6839 } 6840 }, 6841 { 6842 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 6843 "in": "query", 6844 "name": "fieldManager", 6845 "schema": { 6846 "type": "string", 6847 "uniqueItems": true 6848 } 6849 }, 6850 { 6851 "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.", 6852 "in": "query", 6853 "name": "fieldValidation", 6854 "schema": { 6855 "type": "string", 6856 "uniqueItems": true 6857 } 6858 } 6859 ], 6860 "requestBody": { 6861 "content": { 6862 "*/*": { 6863 "schema": { 6864 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6865 } 6866 } 6867 }, 6868 "required": true 6869 }, 6870 "responses": { 6871 "200": { 6872 "content": { 6873 "application/json": { 6874 "schema": { 6875 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6876 } 6877 }, 6878 "application/vnd.kubernetes.protobuf": { 6879 "schema": { 6880 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6881 } 6882 }, 6883 "application/yaml": { 6884 "schema": { 6885 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6886 } 6887 } 6888 }, 6889 "description": "OK" 6890 }, 6891 "201": { 6892 "content": { 6893 "application/json": { 6894 "schema": { 6895 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6896 } 6897 }, 6898 "application/vnd.kubernetes.protobuf": { 6899 "schema": { 6900 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6901 } 6902 }, 6903 "application/yaml": { 6904 "schema": { 6905 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6906 } 6907 } 6908 }, 6909 "description": "Created" 6910 }, 6911 "202": { 6912 "content": { 6913 "application/json": { 6914 "schema": { 6915 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6916 } 6917 }, 6918 "application/vnd.kubernetes.protobuf": { 6919 "schema": { 6920 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6921 } 6922 }, 6923 "application/yaml": { 6924 "schema": { 6925 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 6926 } 6927 } 6928 }, 6929 "description": "Accepted" 6930 }, 6931 "401": { 6932 "description": "Unauthorized" 6933 } 6934 }, 6935 "tags": [ 6936 "resource_v1alpha2" 6937 ], 6938 "x-kubernetes-action": "post", 6939 "x-kubernetes-group-version-kind": { 6940 "group": "resource.k8s.io", 6941 "kind": "ResourceClassParameters", 6942 "version": "v1alpha2" 6943 } 6944 } 6945 }, 6946 "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclassparameters/{name}": { 6947 "delete": { 6948 "description": "delete ResourceClassParameters", 6949 "operationId": "deleteResourceV1alpha2NamespacedResourceClassParameters", 6950 "parameters": [ 6951 { 6952 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6953 "in": "query", 6954 "name": "dryRun", 6955 "schema": { 6956 "type": "string", 6957 "uniqueItems": true 6958 } 6959 }, 6960 { 6961 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 6962 "in": "query", 6963 "name": "gracePeriodSeconds", 6964 "schema": { 6965 "type": "integer", 6966 "uniqueItems": true 6967 } 6968 }, 6969 { 6970 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 6971 "in": "query", 6972 "name": "orphanDependents", 6973 "schema": { 6974 "type": "boolean", 6975 "uniqueItems": true 6976 } 6977 }, 6978 { 6979 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 6980 "in": "query", 6981 "name": "propagationPolicy", 6982 "schema": { 6983 "type": "string", 6984 "uniqueItems": true 6985 } 6986 } 6987 ], 6988 "requestBody": { 6989 "content": { 6990 "*/*": { 6991 "schema": { 6992 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 6993 } 6994 } 6995 } 6996 }, 6997 "responses": { 6998 "200": { 6999 "content": { 7000 "application/json": { 7001 "schema": { 7002 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7003 } 7004 }, 7005 "application/vnd.kubernetes.protobuf": { 7006 "schema": { 7007 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7008 } 7009 }, 7010 "application/yaml": { 7011 "schema": { 7012 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7013 } 7014 } 7015 }, 7016 "description": "OK" 7017 }, 7018 "202": { 7019 "content": { 7020 "application/json": { 7021 "schema": { 7022 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7023 } 7024 }, 7025 "application/vnd.kubernetes.protobuf": { 7026 "schema": { 7027 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7028 } 7029 }, 7030 "application/yaml": { 7031 "schema": { 7032 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7033 } 7034 } 7035 }, 7036 "description": "Accepted" 7037 }, 7038 "401": { 7039 "description": "Unauthorized" 7040 } 7041 }, 7042 "tags": [ 7043 "resource_v1alpha2" 7044 ], 7045 "x-kubernetes-action": "delete", 7046 "x-kubernetes-group-version-kind": { 7047 "group": "resource.k8s.io", 7048 "kind": "ResourceClassParameters", 7049 "version": "v1alpha2" 7050 } 7051 }, 7052 "get": { 7053 "description": "read the specified ResourceClassParameters", 7054 "operationId": "readResourceV1alpha2NamespacedResourceClassParameters", 7055 "responses": { 7056 "200": { 7057 "content": { 7058 "application/json": { 7059 "schema": { 7060 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7061 } 7062 }, 7063 "application/vnd.kubernetes.protobuf": { 7064 "schema": { 7065 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7066 } 7067 }, 7068 "application/yaml": { 7069 "schema": { 7070 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7071 } 7072 } 7073 }, 7074 "description": "OK" 7075 }, 7076 "401": { 7077 "description": "Unauthorized" 7078 } 7079 }, 7080 "tags": [ 7081 "resource_v1alpha2" 7082 ], 7083 "x-kubernetes-action": "get", 7084 "x-kubernetes-group-version-kind": { 7085 "group": "resource.k8s.io", 7086 "kind": "ResourceClassParameters", 7087 "version": "v1alpha2" 7088 } 7089 }, 7090 "parameters": [ 7091 { 7092 "description": "name of the ResourceClassParameters", 7093 "in": "path", 7094 "name": "name", 7095 "required": true, 7096 "schema": { 7097 "type": "string", 7098 "uniqueItems": true 7099 } 7100 }, 7101 { 7102 "description": "object name and auth scope, such as for teams and projects", 7103 "in": "path", 7104 "name": "namespace", 7105 "required": true, 7106 "schema": { 7107 "type": "string", 7108 "uniqueItems": true 7109 } 7110 }, 7111 { 7112 "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).", 7113 "in": "query", 7114 "name": "pretty", 7115 "schema": { 7116 "type": "string", 7117 "uniqueItems": true 7118 } 7119 } 7120 ], 7121 "patch": { 7122 "description": "partially update the specified ResourceClassParameters", 7123 "operationId": "patchResourceV1alpha2NamespacedResourceClassParameters", 7124 "parameters": [ 7125 { 7126 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7127 "in": "query", 7128 "name": "dryRun", 7129 "schema": { 7130 "type": "string", 7131 "uniqueItems": true 7132 } 7133 }, 7134 { 7135 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 7136 "in": "query", 7137 "name": "fieldManager", 7138 "schema": { 7139 "type": "string", 7140 "uniqueItems": true 7141 } 7142 }, 7143 { 7144 "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.", 7145 "in": "query", 7146 "name": "fieldValidation", 7147 "schema": { 7148 "type": "string", 7149 "uniqueItems": true 7150 } 7151 }, 7152 { 7153 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 7154 "in": "query", 7155 "name": "force", 7156 "schema": { 7157 "type": "boolean", 7158 "uniqueItems": true 7159 } 7160 } 7161 ], 7162 "requestBody": { 7163 "content": { 7164 "application/apply-patch+yaml": { 7165 "schema": { 7166 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7167 } 7168 }, 7169 "application/json-patch+json": { 7170 "schema": { 7171 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7172 } 7173 }, 7174 "application/merge-patch+json": { 7175 "schema": { 7176 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7177 } 7178 }, 7179 "application/strategic-merge-patch+json": { 7180 "schema": { 7181 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7182 } 7183 } 7184 }, 7185 "required": true 7186 }, 7187 "responses": { 7188 "200": { 7189 "content": { 7190 "application/json": { 7191 "schema": { 7192 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7193 } 7194 }, 7195 "application/vnd.kubernetes.protobuf": { 7196 "schema": { 7197 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7198 } 7199 }, 7200 "application/yaml": { 7201 "schema": { 7202 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7203 } 7204 } 7205 }, 7206 "description": "OK" 7207 }, 7208 "201": { 7209 "content": { 7210 "application/json": { 7211 "schema": { 7212 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7213 } 7214 }, 7215 "application/vnd.kubernetes.protobuf": { 7216 "schema": { 7217 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7218 } 7219 }, 7220 "application/yaml": { 7221 "schema": { 7222 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7223 } 7224 } 7225 }, 7226 "description": "Created" 7227 }, 7228 "401": { 7229 "description": "Unauthorized" 7230 } 7231 }, 7232 "tags": [ 7233 "resource_v1alpha2" 7234 ], 7235 "x-kubernetes-action": "patch", 7236 "x-kubernetes-group-version-kind": { 7237 "group": "resource.k8s.io", 7238 "kind": "ResourceClassParameters", 7239 "version": "v1alpha2" 7240 } 7241 }, 7242 "put": { 7243 "description": "replace the specified ResourceClassParameters", 7244 "operationId": "replaceResourceV1alpha2NamespacedResourceClassParameters", 7245 "parameters": [ 7246 { 7247 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7248 "in": "query", 7249 "name": "dryRun", 7250 "schema": { 7251 "type": "string", 7252 "uniqueItems": true 7253 } 7254 }, 7255 { 7256 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 7257 "in": "query", 7258 "name": "fieldManager", 7259 "schema": { 7260 "type": "string", 7261 "uniqueItems": true 7262 } 7263 }, 7264 { 7265 "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.", 7266 "in": "query", 7267 "name": "fieldValidation", 7268 "schema": { 7269 "type": "string", 7270 "uniqueItems": true 7271 } 7272 } 7273 ], 7274 "requestBody": { 7275 "content": { 7276 "*/*": { 7277 "schema": { 7278 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7279 } 7280 } 7281 }, 7282 "required": true 7283 }, 7284 "responses": { 7285 "200": { 7286 "content": { 7287 "application/json": { 7288 "schema": { 7289 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7290 } 7291 }, 7292 "application/vnd.kubernetes.protobuf": { 7293 "schema": { 7294 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7295 } 7296 }, 7297 "application/yaml": { 7298 "schema": { 7299 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7300 } 7301 } 7302 }, 7303 "description": "OK" 7304 }, 7305 "201": { 7306 "content": { 7307 "application/json": { 7308 "schema": { 7309 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7310 } 7311 }, 7312 "application/vnd.kubernetes.protobuf": { 7313 "schema": { 7314 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7315 } 7316 }, 7317 "application/yaml": { 7318 "schema": { 7319 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParameters" 7320 } 7321 } 7322 }, 7323 "description": "Created" 7324 }, 7325 "401": { 7326 "description": "Unauthorized" 7327 } 7328 }, 7329 "tags": [ 7330 "resource_v1alpha2" 7331 ], 7332 "x-kubernetes-action": "put", 7333 "x-kubernetes-group-version-kind": { 7334 "group": "resource.k8s.io", 7335 "kind": "ResourceClassParameters", 7336 "version": "v1alpha2" 7337 } 7338 } 7339 }, 7340 "/apis/resource.k8s.io/v1alpha2/podschedulingcontexts": { 7341 "get": { 7342 "description": "list or watch objects of kind PodSchedulingContext", 7343 "operationId": "listResourceV1alpha2PodSchedulingContextForAllNamespaces", 7344 "responses": { 7345 "200": { 7346 "content": { 7347 "application/json": { 7348 "schema": { 7349 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 7350 } 7351 }, 7352 "application/json;stream=watch": { 7353 "schema": { 7354 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 7355 } 7356 }, 7357 "application/vnd.kubernetes.protobuf": { 7358 "schema": { 7359 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 7360 } 7361 }, 7362 "application/vnd.kubernetes.protobuf;stream=watch": { 7363 "schema": { 7364 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 7365 } 7366 }, 7367 "application/yaml": { 7368 "schema": { 7369 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" 7370 } 7371 } 7372 }, 7373 "description": "OK" 7374 }, 7375 "401": { 7376 "description": "Unauthorized" 7377 } 7378 }, 7379 "tags": [ 7380 "resource_v1alpha2" 7381 ], 7382 "x-kubernetes-action": "list", 7383 "x-kubernetes-group-version-kind": { 7384 "group": "resource.k8s.io", 7385 "kind": "PodSchedulingContext", 7386 "version": "v1alpha2" 7387 } 7388 }, 7389 "parameters": [ 7390 { 7391 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 7392 "in": "query", 7393 "name": "allowWatchBookmarks", 7394 "schema": { 7395 "type": "boolean", 7396 "uniqueItems": true 7397 } 7398 }, 7399 { 7400 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7401 "in": "query", 7402 "name": "continue", 7403 "schema": { 7404 "type": "string", 7405 "uniqueItems": true 7406 } 7407 }, 7408 { 7409 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7410 "in": "query", 7411 "name": "fieldSelector", 7412 "schema": { 7413 "type": "string", 7414 "uniqueItems": true 7415 } 7416 }, 7417 { 7418 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7419 "in": "query", 7420 "name": "labelSelector", 7421 "schema": { 7422 "type": "string", 7423 "uniqueItems": true 7424 } 7425 }, 7426 { 7427 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7428 "in": "query", 7429 "name": "limit", 7430 "schema": { 7431 "type": "integer", 7432 "uniqueItems": true 7433 } 7434 }, 7435 { 7436 "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).", 7437 "in": "query", 7438 "name": "pretty", 7439 "schema": { 7440 "type": "string", 7441 "uniqueItems": true 7442 } 7443 }, 7444 { 7445 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7446 "in": "query", 7447 "name": "resourceVersion", 7448 "schema": { 7449 "type": "string", 7450 "uniqueItems": true 7451 } 7452 }, 7453 { 7454 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7455 "in": "query", 7456 "name": "resourceVersionMatch", 7457 "schema": { 7458 "type": "string", 7459 "uniqueItems": true 7460 } 7461 }, 7462 { 7463 "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.", 7464 "in": "query", 7465 "name": "sendInitialEvents", 7466 "schema": { 7467 "type": "boolean", 7468 "uniqueItems": true 7469 } 7470 }, 7471 { 7472 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7473 "in": "query", 7474 "name": "timeoutSeconds", 7475 "schema": { 7476 "type": "integer", 7477 "uniqueItems": true 7478 } 7479 }, 7480 { 7481 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 7482 "in": "query", 7483 "name": "watch", 7484 "schema": { 7485 "type": "boolean", 7486 "uniqueItems": true 7487 } 7488 } 7489 ] 7490 }, 7491 "/apis/resource.k8s.io/v1alpha2/resourceclaimparameters": { 7492 "get": { 7493 "description": "list or watch objects of kind ResourceClaimParameters", 7494 "operationId": "listResourceV1alpha2ResourceClaimParametersForAllNamespaces", 7495 "responses": { 7496 "200": { 7497 "content": { 7498 "application/json": { 7499 "schema": { 7500 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 7501 } 7502 }, 7503 "application/json;stream=watch": { 7504 "schema": { 7505 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 7506 } 7507 }, 7508 "application/vnd.kubernetes.protobuf": { 7509 "schema": { 7510 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 7511 } 7512 }, 7513 "application/vnd.kubernetes.protobuf;stream=watch": { 7514 "schema": { 7515 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 7516 } 7517 }, 7518 "application/yaml": { 7519 "schema": { 7520 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersList" 7521 } 7522 } 7523 }, 7524 "description": "OK" 7525 }, 7526 "401": { 7527 "description": "Unauthorized" 7528 } 7529 }, 7530 "tags": [ 7531 "resource_v1alpha2" 7532 ], 7533 "x-kubernetes-action": "list", 7534 "x-kubernetes-group-version-kind": { 7535 "group": "resource.k8s.io", 7536 "kind": "ResourceClaimParameters", 7537 "version": "v1alpha2" 7538 } 7539 }, 7540 "parameters": [ 7541 { 7542 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 7543 "in": "query", 7544 "name": "allowWatchBookmarks", 7545 "schema": { 7546 "type": "boolean", 7547 "uniqueItems": true 7548 } 7549 }, 7550 { 7551 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7552 "in": "query", 7553 "name": "continue", 7554 "schema": { 7555 "type": "string", 7556 "uniqueItems": true 7557 } 7558 }, 7559 { 7560 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7561 "in": "query", 7562 "name": "fieldSelector", 7563 "schema": { 7564 "type": "string", 7565 "uniqueItems": true 7566 } 7567 }, 7568 { 7569 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7570 "in": "query", 7571 "name": "labelSelector", 7572 "schema": { 7573 "type": "string", 7574 "uniqueItems": true 7575 } 7576 }, 7577 { 7578 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7579 "in": "query", 7580 "name": "limit", 7581 "schema": { 7582 "type": "integer", 7583 "uniqueItems": true 7584 } 7585 }, 7586 { 7587 "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).", 7588 "in": "query", 7589 "name": "pretty", 7590 "schema": { 7591 "type": "string", 7592 "uniqueItems": true 7593 } 7594 }, 7595 { 7596 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7597 "in": "query", 7598 "name": "resourceVersion", 7599 "schema": { 7600 "type": "string", 7601 "uniqueItems": true 7602 } 7603 }, 7604 { 7605 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7606 "in": "query", 7607 "name": "resourceVersionMatch", 7608 "schema": { 7609 "type": "string", 7610 "uniqueItems": true 7611 } 7612 }, 7613 { 7614 "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.", 7615 "in": "query", 7616 "name": "sendInitialEvents", 7617 "schema": { 7618 "type": "boolean", 7619 "uniqueItems": true 7620 } 7621 }, 7622 { 7623 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7624 "in": "query", 7625 "name": "timeoutSeconds", 7626 "schema": { 7627 "type": "integer", 7628 "uniqueItems": true 7629 } 7630 }, 7631 { 7632 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 7633 "in": "query", 7634 "name": "watch", 7635 "schema": { 7636 "type": "boolean", 7637 "uniqueItems": true 7638 } 7639 } 7640 ] 7641 }, 7642 "/apis/resource.k8s.io/v1alpha2/resourceclaims": { 7643 "get": { 7644 "description": "list or watch objects of kind ResourceClaim", 7645 "operationId": "listResourceV1alpha2ResourceClaimForAllNamespaces", 7646 "responses": { 7647 "200": { 7648 "content": { 7649 "application/json": { 7650 "schema": { 7651 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 7652 } 7653 }, 7654 "application/json;stream=watch": { 7655 "schema": { 7656 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 7657 } 7658 }, 7659 "application/vnd.kubernetes.protobuf": { 7660 "schema": { 7661 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 7662 } 7663 }, 7664 "application/vnd.kubernetes.protobuf;stream=watch": { 7665 "schema": { 7666 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 7667 } 7668 }, 7669 "application/yaml": { 7670 "schema": { 7671 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" 7672 } 7673 } 7674 }, 7675 "description": "OK" 7676 }, 7677 "401": { 7678 "description": "Unauthorized" 7679 } 7680 }, 7681 "tags": [ 7682 "resource_v1alpha2" 7683 ], 7684 "x-kubernetes-action": "list", 7685 "x-kubernetes-group-version-kind": { 7686 "group": "resource.k8s.io", 7687 "kind": "ResourceClaim", 7688 "version": "v1alpha2" 7689 } 7690 }, 7691 "parameters": [ 7692 { 7693 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 7694 "in": "query", 7695 "name": "allowWatchBookmarks", 7696 "schema": { 7697 "type": "boolean", 7698 "uniqueItems": true 7699 } 7700 }, 7701 { 7702 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7703 "in": "query", 7704 "name": "continue", 7705 "schema": { 7706 "type": "string", 7707 "uniqueItems": true 7708 } 7709 }, 7710 { 7711 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7712 "in": "query", 7713 "name": "fieldSelector", 7714 "schema": { 7715 "type": "string", 7716 "uniqueItems": true 7717 } 7718 }, 7719 { 7720 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7721 "in": "query", 7722 "name": "labelSelector", 7723 "schema": { 7724 "type": "string", 7725 "uniqueItems": true 7726 } 7727 }, 7728 { 7729 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7730 "in": "query", 7731 "name": "limit", 7732 "schema": { 7733 "type": "integer", 7734 "uniqueItems": true 7735 } 7736 }, 7737 { 7738 "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).", 7739 "in": "query", 7740 "name": "pretty", 7741 "schema": { 7742 "type": "string", 7743 "uniqueItems": true 7744 } 7745 }, 7746 { 7747 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7748 "in": "query", 7749 "name": "resourceVersion", 7750 "schema": { 7751 "type": "string", 7752 "uniqueItems": true 7753 } 7754 }, 7755 { 7756 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7757 "in": "query", 7758 "name": "resourceVersionMatch", 7759 "schema": { 7760 "type": "string", 7761 "uniqueItems": true 7762 } 7763 }, 7764 { 7765 "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.", 7766 "in": "query", 7767 "name": "sendInitialEvents", 7768 "schema": { 7769 "type": "boolean", 7770 "uniqueItems": true 7771 } 7772 }, 7773 { 7774 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7775 "in": "query", 7776 "name": "timeoutSeconds", 7777 "schema": { 7778 "type": "integer", 7779 "uniqueItems": true 7780 } 7781 }, 7782 { 7783 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 7784 "in": "query", 7785 "name": "watch", 7786 "schema": { 7787 "type": "boolean", 7788 "uniqueItems": true 7789 } 7790 } 7791 ] 7792 }, 7793 "/apis/resource.k8s.io/v1alpha2/resourceclaimtemplates": { 7794 "get": { 7795 "description": "list or watch objects of kind ResourceClaimTemplate", 7796 "operationId": "listResourceV1alpha2ResourceClaimTemplateForAllNamespaces", 7797 "responses": { 7798 "200": { 7799 "content": { 7800 "application/json": { 7801 "schema": { 7802 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 7803 } 7804 }, 7805 "application/json;stream=watch": { 7806 "schema": { 7807 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 7808 } 7809 }, 7810 "application/vnd.kubernetes.protobuf": { 7811 "schema": { 7812 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 7813 } 7814 }, 7815 "application/vnd.kubernetes.protobuf;stream=watch": { 7816 "schema": { 7817 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 7818 } 7819 }, 7820 "application/yaml": { 7821 "schema": { 7822 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" 7823 } 7824 } 7825 }, 7826 "description": "OK" 7827 }, 7828 "401": { 7829 "description": "Unauthorized" 7830 } 7831 }, 7832 "tags": [ 7833 "resource_v1alpha2" 7834 ], 7835 "x-kubernetes-action": "list", 7836 "x-kubernetes-group-version-kind": { 7837 "group": "resource.k8s.io", 7838 "kind": "ResourceClaimTemplate", 7839 "version": "v1alpha2" 7840 } 7841 }, 7842 "parameters": [ 7843 { 7844 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 7845 "in": "query", 7846 "name": "allowWatchBookmarks", 7847 "schema": { 7848 "type": "boolean", 7849 "uniqueItems": true 7850 } 7851 }, 7852 { 7853 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7854 "in": "query", 7855 "name": "continue", 7856 "schema": { 7857 "type": "string", 7858 "uniqueItems": true 7859 } 7860 }, 7861 { 7862 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7863 "in": "query", 7864 "name": "fieldSelector", 7865 "schema": { 7866 "type": "string", 7867 "uniqueItems": true 7868 } 7869 }, 7870 { 7871 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7872 "in": "query", 7873 "name": "labelSelector", 7874 "schema": { 7875 "type": "string", 7876 "uniqueItems": true 7877 } 7878 }, 7879 { 7880 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7881 "in": "query", 7882 "name": "limit", 7883 "schema": { 7884 "type": "integer", 7885 "uniqueItems": true 7886 } 7887 }, 7888 { 7889 "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).", 7890 "in": "query", 7891 "name": "pretty", 7892 "schema": { 7893 "type": "string", 7894 "uniqueItems": true 7895 } 7896 }, 7897 { 7898 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7899 "in": "query", 7900 "name": "resourceVersion", 7901 "schema": { 7902 "type": "string", 7903 "uniqueItems": true 7904 } 7905 }, 7906 { 7907 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7908 "in": "query", 7909 "name": "resourceVersionMatch", 7910 "schema": { 7911 "type": "string", 7912 "uniqueItems": true 7913 } 7914 }, 7915 { 7916 "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.", 7917 "in": "query", 7918 "name": "sendInitialEvents", 7919 "schema": { 7920 "type": "boolean", 7921 "uniqueItems": true 7922 } 7923 }, 7924 { 7925 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7926 "in": "query", 7927 "name": "timeoutSeconds", 7928 "schema": { 7929 "type": "integer", 7930 "uniqueItems": true 7931 } 7932 }, 7933 { 7934 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 7935 "in": "query", 7936 "name": "watch", 7937 "schema": { 7938 "type": "boolean", 7939 "uniqueItems": true 7940 } 7941 } 7942 ] 7943 }, 7944 "/apis/resource.k8s.io/v1alpha2/resourceclasses": { 7945 "delete": { 7946 "description": "delete collection of ResourceClass", 7947 "operationId": "deleteResourceV1alpha2CollectionResourceClass", 7948 "parameters": [ 7949 { 7950 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7951 "in": "query", 7952 "name": "continue", 7953 "schema": { 7954 "type": "string", 7955 "uniqueItems": true 7956 } 7957 }, 7958 { 7959 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7960 "in": "query", 7961 "name": "dryRun", 7962 "schema": { 7963 "type": "string", 7964 "uniqueItems": true 7965 } 7966 }, 7967 { 7968 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7969 "in": "query", 7970 "name": "fieldSelector", 7971 "schema": { 7972 "type": "string", 7973 "uniqueItems": true 7974 } 7975 }, 7976 { 7977 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 7978 "in": "query", 7979 "name": "gracePeriodSeconds", 7980 "schema": { 7981 "type": "integer", 7982 "uniqueItems": true 7983 } 7984 }, 7985 { 7986 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7987 "in": "query", 7988 "name": "labelSelector", 7989 "schema": { 7990 "type": "string", 7991 "uniqueItems": true 7992 } 7993 }, 7994 { 7995 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7996 "in": "query", 7997 "name": "limit", 7998 "schema": { 7999 "type": "integer", 8000 "uniqueItems": true 8001 } 8002 }, 8003 { 8004 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 8005 "in": "query", 8006 "name": "orphanDependents", 8007 "schema": { 8008 "type": "boolean", 8009 "uniqueItems": true 8010 } 8011 }, 8012 { 8013 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 8014 "in": "query", 8015 "name": "propagationPolicy", 8016 "schema": { 8017 "type": "string", 8018 "uniqueItems": true 8019 } 8020 }, 8021 { 8022 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8023 "in": "query", 8024 "name": "resourceVersion", 8025 "schema": { 8026 "type": "string", 8027 "uniqueItems": true 8028 } 8029 }, 8030 { 8031 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8032 "in": "query", 8033 "name": "resourceVersionMatch", 8034 "schema": { 8035 "type": "string", 8036 "uniqueItems": true 8037 } 8038 }, 8039 { 8040 "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.", 8041 "in": "query", 8042 "name": "sendInitialEvents", 8043 "schema": { 8044 "type": "boolean", 8045 "uniqueItems": true 8046 } 8047 }, 8048 { 8049 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 8050 "in": "query", 8051 "name": "timeoutSeconds", 8052 "schema": { 8053 "type": "integer", 8054 "uniqueItems": true 8055 } 8056 } 8057 ], 8058 "requestBody": { 8059 "content": { 8060 "*/*": { 8061 "schema": { 8062 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 8063 } 8064 } 8065 } 8066 }, 8067 "responses": { 8068 "200": { 8069 "content": { 8070 "application/json": { 8071 "schema": { 8072 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8073 } 8074 }, 8075 "application/vnd.kubernetes.protobuf": { 8076 "schema": { 8077 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8078 } 8079 }, 8080 "application/yaml": { 8081 "schema": { 8082 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8083 } 8084 } 8085 }, 8086 "description": "OK" 8087 }, 8088 "401": { 8089 "description": "Unauthorized" 8090 } 8091 }, 8092 "tags": [ 8093 "resource_v1alpha2" 8094 ], 8095 "x-kubernetes-action": "deletecollection", 8096 "x-kubernetes-group-version-kind": { 8097 "group": "resource.k8s.io", 8098 "kind": "ResourceClass", 8099 "version": "v1alpha2" 8100 } 8101 }, 8102 "get": { 8103 "description": "list or watch objects of kind ResourceClass", 8104 "operationId": "listResourceV1alpha2ResourceClass", 8105 "parameters": [ 8106 { 8107 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 8108 "in": "query", 8109 "name": "allowWatchBookmarks", 8110 "schema": { 8111 "type": "boolean", 8112 "uniqueItems": true 8113 } 8114 }, 8115 { 8116 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 8117 "in": "query", 8118 "name": "continue", 8119 "schema": { 8120 "type": "string", 8121 "uniqueItems": true 8122 } 8123 }, 8124 { 8125 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 8126 "in": "query", 8127 "name": "fieldSelector", 8128 "schema": { 8129 "type": "string", 8130 "uniqueItems": true 8131 } 8132 }, 8133 { 8134 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 8135 "in": "query", 8136 "name": "labelSelector", 8137 "schema": { 8138 "type": "string", 8139 "uniqueItems": true 8140 } 8141 }, 8142 { 8143 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 8144 "in": "query", 8145 "name": "limit", 8146 "schema": { 8147 "type": "integer", 8148 "uniqueItems": true 8149 } 8150 }, 8151 { 8152 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8153 "in": "query", 8154 "name": "resourceVersion", 8155 "schema": { 8156 "type": "string", 8157 "uniqueItems": true 8158 } 8159 }, 8160 { 8161 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8162 "in": "query", 8163 "name": "resourceVersionMatch", 8164 "schema": { 8165 "type": "string", 8166 "uniqueItems": true 8167 } 8168 }, 8169 { 8170 "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.", 8171 "in": "query", 8172 "name": "sendInitialEvents", 8173 "schema": { 8174 "type": "boolean", 8175 "uniqueItems": true 8176 } 8177 }, 8178 { 8179 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 8180 "in": "query", 8181 "name": "timeoutSeconds", 8182 "schema": { 8183 "type": "integer", 8184 "uniqueItems": true 8185 } 8186 }, 8187 { 8188 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 8189 "in": "query", 8190 "name": "watch", 8191 "schema": { 8192 "type": "boolean", 8193 "uniqueItems": true 8194 } 8195 } 8196 ], 8197 "responses": { 8198 "200": { 8199 "content": { 8200 "application/json": { 8201 "schema": { 8202 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" 8203 } 8204 }, 8205 "application/json;stream=watch": { 8206 "schema": { 8207 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" 8208 } 8209 }, 8210 "application/vnd.kubernetes.protobuf": { 8211 "schema": { 8212 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" 8213 } 8214 }, 8215 "application/vnd.kubernetes.protobuf;stream=watch": { 8216 "schema": { 8217 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" 8218 } 8219 }, 8220 "application/yaml": { 8221 "schema": { 8222 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" 8223 } 8224 } 8225 }, 8226 "description": "OK" 8227 }, 8228 "401": { 8229 "description": "Unauthorized" 8230 } 8231 }, 8232 "tags": [ 8233 "resource_v1alpha2" 8234 ], 8235 "x-kubernetes-action": "list", 8236 "x-kubernetes-group-version-kind": { 8237 "group": "resource.k8s.io", 8238 "kind": "ResourceClass", 8239 "version": "v1alpha2" 8240 } 8241 }, 8242 "parameters": [ 8243 { 8244 "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).", 8245 "in": "query", 8246 "name": "pretty", 8247 "schema": { 8248 "type": "string", 8249 "uniqueItems": true 8250 } 8251 } 8252 ], 8253 "post": { 8254 "description": "create a ResourceClass", 8255 "operationId": "createResourceV1alpha2ResourceClass", 8256 "parameters": [ 8257 { 8258 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8259 "in": "query", 8260 "name": "dryRun", 8261 "schema": { 8262 "type": "string", 8263 "uniqueItems": true 8264 } 8265 }, 8266 { 8267 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 8268 "in": "query", 8269 "name": "fieldManager", 8270 "schema": { 8271 "type": "string", 8272 "uniqueItems": true 8273 } 8274 }, 8275 { 8276 "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.", 8277 "in": "query", 8278 "name": "fieldValidation", 8279 "schema": { 8280 "type": "string", 8281 "uniqueItems": true 8282 } 8283 } 8284 ], 8285 "requestBody": { 8286 "content": { 8287 "*/*": { 8288 "schema": { 8289 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8290 } 8291 } 8292 }, 8293 "required": true 8294 }, 8295 "responses": { 8296 "200": { 8297 "content": { 8298 "application/json": { 8299 "schema": { 8300 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8301 } 8302 }, 8303 "application/vnd.kubernetes.protobuf": { 8304 "schema": { 8305 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8306 } 8307 }, 8308 "application/yaml": { 8309 "schema": { 8310 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8311 } 8312 } 8313 }, 8314 "description": "OK" 8315 }, 8316 "201": { 8317 "content": { 8318 "application/json": { 8319 "schema": { 8320 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8321 } 8322 }, 8323 "application/vnd.kubernetes.protobuf": { 8324 "schema": { 8325 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8326 } 8327 }, 8328 "application/yaml": { 8329 "schema": { 8330 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8331 } 8332 } 8333 }, 8334 "description": "Created" 8335 }, 8336 "202": { 8337 "content": { 8338 "application/json": { 8339 "schema": { 8340 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8341 } 8342 }, 8343 "application/vnd.kubernetes.protobuf": { 8344 "schema": { 8345 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8346 } 8347 }, 8348 "application/yaml": { 8349 "schema": { 8350 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8351 } 8352 } 8353 }, 8354 "description": "Accepted" 8355 }, 8356 "401": { 8357 "description": "Unauthorized" 8358 } 8359 }, 8360 "tags": [ 8361 "resource_v1alpha2" 8362 ], 8363 "x-kubernetes-action": "post", 8364 "x-kubernetes-group-version-kind": { 8365 "group": "resource.k8s.io", 8366 "kind": "ResourceClass", 8367 "version": "v1alpha2" 8368 } 8369 } 8370 }, 8371 "/apis/resource.k8s.io/v1alpha2/resourceclasses/{name}": { 8372 "delete": { 8373 "description": "delete a ResourceClass", 8374 "operationId": "deleteResourceV1alpha2ResourceClass", 8375 "parameters": [ 8376 { 8377 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8378 "in": "query", 8379 "name": "dryRun", 8380 "schema": { 8381 "type": "string", 8382 "uniqueItems": true 8383 } 8384 }, 8385 { 8386 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 8387 "in": "query", 8388 "name": "gracePeriodSeconds", 8389 "schema": { 8390 "type": "integer", 8391 "uniqueItems": true 8392 } 8393 }, 8394 { 8395 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 8396 "in": "query", 8397 "name": "orphanDependents", 8398 "schema": { 8399 "type": "boolean", 8400 "uniqueItems": true 8401 } 8402 }, 8403 { 8404 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 8405 "in": "query", 8406 "name": "propagationPolicy", 8407 "schema": { 8408 "type": "string", 8409 "uniqueItems": true 8410 } 8411 } 8412 ], 8413 "requestBody": { 8414 "content": { 8415 "*/*": { 8416 "schema": { 8417 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 8418 } 8419 } 8420 } 8421 }, 8422 "responses": { 8423 "200": { 8424 "content": { 8425 "application/json": { 8426 "schema": { 8427 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8428 } 8429 }, 8430 "application/vnd.kubernetes.protobuf": { 8431 "schema": { 8432 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8433 } 8434 }, 8435 "application/yaml": { 8436 "schema": { 8437 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8438 } 8439 } 8440 }, 8441 "description": "OK" 8442 }, 8443 "202": { 8444 "content": { 8445 "application/json": { 8446 "schema": { 8447 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8448 } 8449 }, 8450 "application/vnd.kubernetes.protobuf": { 8451 "schema": { 8452 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8453 } 8454 }, 8455 "application/yaml": { 8456 "schema": { 8457 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8458 } 8459 } 8460 }, 8461 "description": "Accepted" 8462 }, 8463 "401": { 8464 "description": "Unauthorized" 8465 } 8466 }, 8467 "tags": [ 8468 "resource_v1alpha2" 8469 ], 8470 "x-kubernetes-action": "delete", 8471 "x-kubernetes-group-version-kind": { 8472 "group": "resource.k8s.io", 8473 "kind": "ResourceClass", 8474 "version": "v1alpha2" 8475 } 8476 }, 8477 "get": { 8478 "description": "read the specified ResourceClass", 8479 "operationId": "readResourceV1alpha2ResourceClass", 8480 "responses": { 8481 "200": { 8482 "content": { 8483 "application/json": { 8484 "schema": { 8485 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8486 } 8487 }, 8488 "application/vnd.kubernetes.protobuf": { 8489 "schema": { 8490 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8491 } 8492 }, 8493 "application/yaml": { 8494 "schema": { 8495 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8496 } 8497 } 8498 }, 8499 "description": "OK" 8500 }, 8501 "401": { 8502 "description": "Unauthorized" 8503 } 8504 }, 8505 "tags": [ 8506 "resource_v1alpha2" 8507 ], 8508 "x-kubernetes-action": "get", 8509 "x-kubernetes-group-version-kind": { 8510 "group": "resource.k8s.io", 8511 "kind": "ResourceClass", 8512 "version": "v1alpha2" 8513 } 8514 }, 8515 "parameters": [ 8516 { 8517 "description": "name of the ResourceClass", 8518 "in": "path", 8519 "name": "name", 8520 "required": true, 8521 "schema": { 8522 "type": "string", 8523 "uniqueItems": true 8524 } 8525 }, 8526 { 8527 "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).", 8528 "in": "query", 8529 "name": "pretty", 8530 "schema": { 8531 "type": "string", 8532 "uniqueItems": true 8533 } 8534 } 8535 ], 8536 "patch": { 8537 "description": "partially update the specified ResourceClass", 8538 "operationId": "patchResourceV1alpha2ResourceClass", 8539 "parameters": [ 8540 { 8541 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8542 "in": "query", 8543 "name": "dryRun", 8544 "schema": { 8545 "type": "string", 8546 "uniqueItems": true 8547 } 8548 }, 8549 { 8550 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 8551 "in": "query", 8552 "name": "fieldManager", 8553 "schema": { 8554 "type": "string", 8555 "uniqueItems": true 8556 } 8557 }, 8558 { 8559 "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.", 8560 "in": "query", 8561 "name": "fieldValidation", 8562 "schema": { 8563 "type": "string", 8564 "uniqueItems": true 8565 } 8566 }, 8567 { 8568 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 8569 "in": "query", 8570 "name": "force", 8571 "schema": { 8572 "type": "boolean", 8573 "uniqueItems": true 8574 } 8575 } 8576 ], 8577 "requestBody": { 8578 "content": { 8579 "application/apply-patch+yaml": { 8580 "schema": { 8581 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8582 } 8583 }, 8584 "application/json-patch+json": { 8585 "schema": { 8586 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8587 } 8588 }, 8589 "application/merge-patch+json": { 8590 "schema": { 8591 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8592 } 8593 }, 8594 "application/strategic-merge-patch+json": { 8595 "schema": { 8596 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8597 } 8598 } 8599 }, 8600 "required": true 8601 }, 8602 "responses": { 8603 "200": { 8604 "content": { 8605 "application/json": { 8606 "schema": { 8607 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8608 } 8609 }, 8610 "application/vnd.kubernetes.protobuf": { 8611 "schema": { 8612 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8613 } 8614 }, 8615 "application/yaml": { 8616 "schema": { 8617 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8618 } 8619 } 8620 }, 8621 "description": "OK" 8622 }, 8623 "201": { 8624 "content": { 8625 "application/json": { 8626 "schema": { 8627 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8628 } 8629 }, 8630 "application/vnd.kubernetes.protobuf": { 8631 "schema": { 8632 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8633 } 8634 }, 8635 "application/yaml": { 8636 "schema": { 8637 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8638 } 8639 } 8640 }, 8641 "description": "Created" 8642 }, 8643 "401": { 8644 "description": "Unauthorized" 8645 } 8646 }, 8647 "tags": [ 8648 "resource_v1alpha2" 8649 ], 8650 "x-kubernetes-action": "patch", 8651 "x-kubernetes-group-version-kind": { 8652 "group": "resource.k8s.io", 8653 "kind": "ResourceClass", 8654 "version": "v1alpha2" 8655 } 8656 }, 8657 "put": { 8658 "description": "replace the specified ResourceClass", 8659 "operationId": "replaceResourceV1alpha2ResourceClass", 8660 "parameters": [ 8661 { 8662 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8663 "in": "query", 8664 "name": "dryRun", 8665 "schema": { 8666 "type": "string", 8667 "uniqueItems": true 8668 } 8669 }, 8670 { 8671 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 8672 "in": "query", 8673 "name": "fieldManager", 8674 "schema": { 8675 "type": "string", 8676 "uniqueItems": true 8677 } 8678 }, 8679 { 8680 "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.", 8681 "in": "query", 8682 "name": "fieldValidation", 8683 "schema": { 8684 "type": "string", 8685 "uniqueItems": true 8686 } 8687 } 8688 ], 8689 "requestBody": { 8690 "content": { 8691 "*/*": { 8692 "schema": { 8693 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8694 } 8695 } 8696 }, 8697 "required": true 8698 }, 8699 "responses": { 8700 "200": { 8701 "content": { 8702 "application/json": { 8703 "schema": { 8704 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8705 } 8706 }, 8707 "application/vnd.kubernetes.protobuf": { 8708 "schema": { 8709 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8710 } 8711 }, 8712 "application/yaml": { 8713 "schema": { 8714 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8715 } 8716 } 8717 }, 8718 "description": "OK" 8719 }, 8720 "201": { 8721 "content": { 8722 "application/json": { 8723 "schema": { 8724 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8725 } 8726 }, 8727 "application/vnd.kubernetes.protobuf": { 8728 "schema": { 8729 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8730 } 8731 }, 8732 "application/yaml": { 8733 "schema": { 8734 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" 8735 } 8736 } 8737 }, 8738 "description": "Created" 8739 }, 8740 "401": { 8741 "description": "Unauthorized" 8742 } 8743 }, 8744 "tags": [ 8745 "resource_v1alpha2" 8746 ], 8747 "x-kubernetes-action": "put", 8748 "x-kubernetes-group-version-kind": { 8749 "group": "resource.k8s.io", 8750 "kind": "ResourceClass", 8751 "version": "v1alpha2" 8752 } 8753 } 8754 }, 8755 "/apis/resource.k8s.io/v1alpha2/resourceclassparameters": { 8756 "get": { 8757 "description": "list or watch objects of kind ResourceClassParameters", 8758 "operationId": "listResourceV1alpha2ResourceClassParametersForAllNamespaces", 8759 "responses": { 8760 "200": { 8761 "content": { 8762 "application/json": { 8763 "schema": { 8764 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 8765 } 8766 }, 8767 "application/json;stream=watch": { 8768 "schema": { 8769 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 8770 } 8771 }, 8772 "application/vnd.kubernetes.protobuf": { 8773 "schema": { 8774 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 8775 } 8776 }, 8777 "application/vnd.kubernetes.protobuf;stream=watch": { 8778 "schema": { 8779 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 8780 } 8781 }, 8782 "application/yaml": { 8783 "schema": { 8784 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersList" 8785 } 8786 } 8787 }, 8788 "description": "OK" 8789 }, 8790 "401": { 8791 "description": "Unauthorized" 8792 } 8793 }, 8794 "tags": [ 8795 "resource_v1alpha2" 8796 ], 8797 "x-kubernetes-action": "list", 8798 "x-kubernetes-group-version-kind": { 8799 "group": "resource.k8s.io", 8800 "kind": "ResourceClassParameters", 8801 "version": "v1alpha2" 8802 } 8803 }, 8804 "parameters": [ 8805 { 8806 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 8807 "in": "query", 8808 "name": "allowWatchBookmarks", 8809 "schema": { 8810 "type": "boolean", 8811 "uniqueItems": true 8812 } 8813 }, 8814 { 8815 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 8816 "in": "query", 8817 "name": "continue", 8818 "schema": { 8819 "type": "string", 8820 "uniqueItems": true 8821 } 8822 }, 8823 { 8824 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 8825 "in": "query", 8826 "name": "fieldSelector", 8827 "schema": { 8828 "type": "string", 8829 "uniqueItems": true 8830 } 8831 }, 8832 { 8833 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 8834 "in": "query", 8835 "name": "labelSelector", 8836 "schema": { 8837 "type": "string", 8838 "uniqueItems": true 8839 } 8840 }, 8841 { 8842 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 8843 "in": "query", 8844 "name": "limit", 8845 "schema": { 8846 "type": "integer", 8847 "uniqueItems": true 8848 } 8849 }, 8850 { 8851 "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).", 8852 "in": "query", 8853 "name": "pretty", 8854 "schema": { 8855 "type": "string", 8856 "uniqueItems": true 8857 } 8858 }, 8859 { 8860 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8861 "in": "query", 8862 "name": "resourceVersion", 8863 "schema": { 8864 "type": "string", 8865 "uniqueItems": true 8866 } 8867 }, 8868 { 8869 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8870 "in": "query", 8871 "name": "resourceVersionMatch", 8872 "schema": { 8873 "type": "string", 8874 "uniqueItems": true 8875 } 8876 }, 8877 { 8878 "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.", 8879 "in": "query", 8880 "name": "sendInitialEvents", 8881 "schema": { 8882 "type": "boolean", 8883 "uniqueItems": true 8884 } 8885 }, 8886 { 8887 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 8888 "in": "query", 8889 "name": "timeoutSeconds", 8890 "schema": { 8891 "type": "integer", 8892 "uniqueItems": true 8893 } 8894 }, 8895 { 8896 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 8897 "in": "query", 8898 "name": "watch", 8899 "schema": { 8900 "type": "boolean", 8901 "uniqueItems": true 8902 } 8903 } 8904 ] 8905 }, 8906 "/apis/resource.k8s.io/v1alpha2/resourceslices": { 8907 "delete": { 8908 "description": "delete collection of ResourceSlice", 8909 "operationId": "deleteResourceV1alpha2CollectionResourceSlice", 8910 "parameters": [ 8911 { 8912 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 8913 "in": "query", 8914 "name": "continue", 8915 "schema": { 8916 "type": "string", 8917 "uniqueItems": true 8918 } 8919 }, 8920 { 8921 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8922 "in": "query", 8923 "name": "dryRun", 8924 "schema": { 8925 "type": "string", 8926 "uniqueItems": true 8927 } 8928 }, 8929 { 8930 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 8931 "in": "query", 8932 "name": "fieldSelector", 8933 "schema": { 8934 "type": "string", 8935 "uniqueItems": true 8936 } 8937 }, 8938 { 8939 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 8940 "in": "query", 8941 "name": "gracePeriodSeconds", 8942 "schema": { 8943 "type": "integer", 8944 "uniqueItems": true 8945 } 8946 }, 8947 { 8948 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 8949 "in": "query", 8950 "name": "labelSelector", 8951 "schema": { 8952 "type": "string", 8953 "uniqueItems": true 8954 } 8955 }, 8956 { 8957 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 8958 "in": "query", 8959 "name": "limit", 8960 "schema": { 8961 "type": "integer", 8962 "uniqueItems": true 8963 } 8964 }, 8965 { 8966 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 8967 "in": "query", 8968 "name": "orphanDependents", 8969 "schema": { 8970 "type": "boolean", 8971 "uniqueItems": true 8972 } 8973 }, 8974 { 8975 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 8976 "in": "query", 8977 "name": "propagationPolicy", 8978 "schema": { 8979 "type": "string", 8980 "uniqueItems": true 8981 } 8982 }, 8983 { 8984 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8985 "in": "query", 8986 "name": "resourceVersion", 8987 "schema": { 8988 "type": "string", 8989 "uniqueItems": true 8990 } 8991 }, 8992 { 8993 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8994 "in": "query", 8995 "name": "resourceVersionMatch", 8996 "schema": { 8997 "type": "string", 8998 "uniqueItems": true 8999 } 9000 }, 9001 { 9002 "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.", 9003 "in": "query", 9004 "name": "sendInitialEvents", 9005 "schema": { 9006 "type": "boolean", 9007 "uniqueItems": true 9008 } 9009 }, 9010 { 9011 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 9012 "in": "query", 9013 "name": "timeoutSeconds", 9014 "schema": { 9015 "type": "integer", 9016 "uniqueItems": true 9017 } 9018 } 9019 ], 9020 "requestBody": { 9021 "content": { 9022 "*/*": { 9023 "schema": { 9024 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 9025 } 9026 } 9027 } 9028 }, 9029 "responses": { 9030 "200": { 9031 "content": { 9032 "application/json": { 9033 "schema": { 9034 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9035 } 9036 }, 9037 "application/vnd.kubernetes.protobuf": { 9038 "schema": { 9039 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9040 } 9041 }, 9042 "application/yaml": { 9043 "schema": { 9044 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9045 } 9046 } 9047 }, 9048 "description": "OK" 9049 }, 9050 "401": { 9051 "description": "Unauthorized" 9052 } 9053 }, 9054 "tags": [ 9055 "resource_v1alpha2" 9056 ], 9057 "x-kubernetes-action": "deletecollection", 9058 "x-kubernetes-group-version-kind": { 9059 "group": "resource.k8s.io", 9060 "kind": "ResourceSlice", 9061 "version": "v1alpha2" 9062 } 9063 }, 9064 "get": { 9065 "description": "list or watch objects of kind ResourceSlice", 9066 "operationId": "listResourceV1alpha2ResourceSlice", 9067 "parameters": [ 9068 { 9069 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 9070 "in": "query", 9071 "name": "allowWatchBookmarks", 9072 "schema": { 9073 "type": "boolean", 9074 "uniqueItems": true 9075 } 9076 }, 9077 { 9078 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 9079 "in": "query", 9080 "name": "continue", 9081 "schema": { 9082 "type": "string", 9083 "uniqueItems": true 9084 } 9085 }, 9086 { 9087 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 9088 "in": "query", 9089 "name": "fieldSelector", 9090 "schema": { 9091 "type": "string", 9092 "uniqueItems": true 9093 } 9094 }, 9095 { 9096 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 9097 "in": "query", 9098 "name": "labelSelector", 9099 "schema": { 9100 "type": "string", 9101 "uniqueItems": true 9102 } 9103 }, 9104 { 9105 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 9106 "in": "query", 9107 "name": "limit", 9108 "schema": { 9109 "type": "integer", 9110 "uniqueItems": true 9111 } 9112 }, 9113 { 9114 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 9115 "in": "query", 9116 "name": "resourceVersion", 9117 "schema": { 9118 "type": "string", 9119 "uniqueItems": true 9120 } 9121 }, 9122 { 9123 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 9124 "in": "query", 9125 "name": "resourceVersionMatch", 9126 "schema": { 9127 "type": "string", 9128 "uniqueItems": true 9129 } 9130 }, 9131 { 9132 "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.", 9133 "in": "query", 9134 "name": "sendInitialEvents", 9135 "schema": { 9136 "type": "boolean", 9137 "uniqueItems": true 9138 } 9139 }, 9140 { 9141 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 9142 "in": "query", 9143 "name": "timeoutSeconds", 9144 "schema": { 9145 "type": "integer", 9146 "uniqueItems": true 9147 } 9148 }, 9149 { 9150 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 9151 "in": "query", 9152 "name": "watch", 9153 "schema": { 9154 "type": "boolean", 9155 "uniqueItems": true 9156 } 9157 } 9158 ], 9159 "responses": { 9160 "200": { 9161 "content": { 9162 "application/json": { 9163 "schema": { 9164 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList" 9165 } 9166 }, 9167 "application/json;stream=watch": { 9168 "schema": { 9169 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList" 9170 } 9171 }, 9172 "application/vnd.kubernetes.protobuf": { 9173 "schema": { 9174 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList" 9175 } 9176 }, 9177 "application/vnd.kubernetes.protobuf;stream=watch": { 9178 "schema": { 9179 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList" 9180 } 9181 }, 9182 "application/yaml": { 9183 "schema": { 9184 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSliceList" 9185 } 9186 } 9187 }, 9188 "description": "OK" 9189 }, 9190 "401": { 9191 "description": "Unauthorized" 9192 } 9193 }, 9194 "tags": [ 9195 "resource_v1alpha2" 9196 ], 9197 "x-kubernetes-action": "list", 9198 "x-kubernetes-group-version-kind": { 9199 "group": "resource.k8s.io", 9200 "kind": "ResourceSlice", 9201 "version": "v1alpha2" 9202 } 9203 }, 9204 "parameters": [ 9205 { 9206 "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).", 9207 "in": "query", 9208 "name": "pretty", 9209 "schema": { 9210 "type": "string", 9211 "uniqueItems": true 9212 } 9213 } 9214 ], 9215 "post": { 9216 "description": "create a ResourceSlice", 9217 "operationId": "createResourceV1alpha2ResourceSlice", 9218 "parameters": [ 9219 { 9220 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9221 "in": "query", 9222 "name": "dryRun", 9223 "schema": { 9224 "type": "string", 9225 "uniqueItems": true 9226 } 9227 }, 9228 { 9229 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 9230 "in": "query", 9231 "name": "fieldManager", 9232 "schema": { 9233 "type": "string", 9234 "uniqueItems": true 9235 } 9236 }, 9237 { 9238 "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.", 9239 "in": "query", 9240 "name": "fieldValidation", 9241 "schema": { 9242 "type": "string", 9243 "uniqueItems": true 9244 } 9245 } 9246 ], 9247 "requestBody": { 9248 "content": { 9249 "*/*": { 9250 "schema": { 9251 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9252 } 9253 } 9254 }, 9255 "required": true 9256 }, 9257 "responses": { 9258 "200": { 9259 "content": { 9260 "application/json": { 9261 "schema": { 9262 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9263 } 9264 }, 9265 "application/vnd.kubernetes.protobuf": { 9266 "schema": { 9267 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9268 } 9269 }, 9270 "application/yaml": { 9271 "schema": { 9272 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9273 } 9274 } 9275 }, 9276 "description": "OK" 9277 }, 9278 "201": { 9279 "content": { 9280 "application/json": { 9281 "schema": { 9282 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9283 } 9284 }, 9285 "application/vnd.kubernetes.protobuf": { 9286 "schema": { 9287 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9288 } 9289 }, 9290 "application/yaml": { 9291 "schema": { 9292 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9293 } 9294 } 9295 }, 9296 "description": "Created" 9297 }, 9298 "202": { 9299 "content": { 9300 "application/json": { 9301 "schema": { 9302 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9303 } 9304 }, 9305 "application/vnd.kubernetes.protobuf": { 9306 "schema": { 9307 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9308 } 9309 }, 9310 "application/yaml": { 9311 "schema": { 9312 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9313 } 9314 } 9315 }, 9316 "description": "Accepted" 9317 }, 9318 "401": { 9319 "description": "Unauthorized" 9320 } 9321 }, 9322 "tags": [ 9323 "resource_v1alpha2" 9324 ], 9325 "x-kubernetes-action": "post", 9326 "x-kubernetes-group-version-kind": { 9327 "group": "resource.k8s.io", 9328 "kind": "ResourceSlice", 9329 "version": "v1alpha2" 9330 } 9331 } 9332 }, 9333 "/apis/resource.k8s.io/v1alpha2/resourceslices/{name}": { 9334 "delete": { 9335 "description": "delete a ResourceSlice", 9336 "operationId": "deleteResourceV1alpha2ResourceSlice", 9337 "parameters": [ 9338 { 9339 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9340 "in": "query", 9341 "name": "dryRun", 9342 "schema": { 9343 "type": "string", 9344 "uniqueItems": true 9345 } 9346 }, 9347 { 9348 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 9349 "in": "query", 9350 "name": "gracePeriodSeconds", 9351 "schema": { 9352 "type": "integer", 9353 "uniqueItems": true 9354 } 9355 }, 9356 { 9357 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 9358 "in": "query", 9359 "name": "orphanDependents", 9360 "schema": { 9361 "type": "boolean", 9362 "uniqueItems": true 9363 } 9364 }, 9365 { 9366 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 9367 "in": "query", 9368 "name": "propagationPolicy", 9369 "schema": { 9370 "type": "string", 9371 "uniqueItems": true 9372 } 9373 } 9374 ], 9375 "requestBody": { 9376 "content": { 9377 "*/*": { 9378 "schema": { 9379 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 9380 } 9381 } 9382 } 9383 }, 9384 "responses": { 9385 "200": { 9386 "content": { 9387 "application/json": { 9388 "schema": { 9389 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9390 } 9391 }, 9392 "application/vnd.kubernetes.protobuf": { 9393 "schema": { 9394 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9395 } 9396 }, 9397 "application/yaml": { 9398 "schema": { 9399 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9400 } 9401 } 9402 }, 9403 "description": "OK" 9404 }, 9405 "202": { 9406 "content": { 9407 "application/json": { 9408 "schema": { 9409 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9410 } 9411 }, 9412 "application/vnd.kubernetes.protobuf": { 9413 "schema": { 9414 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9415 } 9416 }, 9417 "application/yaml": { 9418 "schema": { 9419 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9420 } 9421 } 9422 }, 9423 "description": "Accepted" 9424 }, 9425 "401": { 9426 "description": "Unauthorized" 9427 } 9428 }, 9429 "tags": [ 9430 "resource_v1alpha2" 9431 ], 9432 "x-kubernetes-action": "delete", 9433 "x-kubernetes-group-version-kind": { 9434 "group": "resource.k8s.io", 9435 "kind": "ResourceSlice", 9436 "version": "v1alpha2" 9437 } 9438 }, 9439 "get": { 9440 "description": "read the specified ResourceSlice", 9441 "operationId": "readResourceV1alpha2ResourceSlice", 9442 "responses": { 9443 "200": { 9444 "content": { 9445 "application/json": { 9446 "schema": { 9447 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9448 } 9449 }, 9450 "application/vnd.kubernetes.protobuf": { 9451 "schema": { 9452 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9453 } 9454 }, 9455 "application/yaml": { 9456 "schema": { 9457 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9458 } 9459 } 9460 }, 9461 "description": "OK" 9462 }, 9463 "401": { 9464 "description": "Unauthorized" 9465 } 9466 }, 9467 "tags": [ 9468 "resource_v1alpha2" 9469 ], 9470 "x-kubernetes-action": "get", 9471 "x-kubernetes-group-version-kind": { 9472 "group": "resource.k8s.io", 9473 "kind": "ResourceSlice", 9474 "version": "v1alpha2" 9475 } 9476 }, 9477 "parameters": [ 9478 { 9479 "description": "name of the ResourceSlice", 9480 "in": "path", 9481 "name": "name", 9482 "required": true, 9483 "schema": { 9484 "type": "string", 9485 "uniqueItems": true 9486 } 9487 }, 9488 { 9489 "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).", 9490 "in": "query", 9491 "name": "pretty", 9492 "schema": { 9493 "type": "string", 9494 "uniqueItems": true 9495 } 9496 } 9497 ], 9498 "patch": { 9499 "description": "partially update the specified ResourceSlice", 9500 "operationId": "patchResourceV1alpha2ResourceSlice", 9501 "parameters": [ 9502 { 9503 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9504 "in": "query", 9505 "name": "dryRun", 9506 "schema": { 9507 "type": "string", 9508 "uniqueItems": true 9509 } 9510 }, 9511 { 9512 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 9513 "in": "query", 9514 "name": "fieldManager", 9515 "schema": { 9516 "type": "string", 9517 "uniqueItems": true 9518 } 9519 }, 9520 { 9521 "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.", 9522 "in": "query", 9523 "name": "fieldValidation", 9524 "schema": { 9525 "type": "string", 9526 "uniqueItems": true 9527 } 9528 }, 9529 { 9530 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 9531 "in": "query", 9532 "name": "force", 9533 "schema": { 9534 "type": "boolean", 9535 "uniqueItems": true 9536 } 9537 } 9538 ], 9539 "requestBody": { 9540 "content": { 9541 "application/apply-patch+yaml": { 9542 "schema": { 9543 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9544 } 9545 }, 9546 "application/json-patch+json": { 9547 "schema": { 9548 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9549 } 9550 }, 9551 "application/merge-patch+json": { 9552 "schema": { 9553 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9554 } 9555 }, 9556 "application/strategic-merge-patch+json": { 9557 "schema": { 9558 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9559 } 9560 } 9561 }, 9562 "required": true 9563 }, 9564 "responses": { 9565 "200": { 9566 "content": { 9567 "application/json": { 9568 "schema": { 9569 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9570 } 9571 }, 9572 "application/vnd.kubernetes.protobuf": { 9573 "schema": { 9574 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9575 } 9576 }, 9577 "application/yaml": { 9578 "schema": { 9579 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9580 } 9581 } 9582 }, 9583 "description": "OK" 9584 }, 9585 "201": { 9586 "content": { 9587 "application/json": { 9588 "schema": { 9589 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9590 } 9591 }, 9592 "application/vnd.kubernetes.protobuf": { 9593 "schema": { 9594 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9595 } 9596 }, 9597 "application/yaml": { 9598 "schema": { 9599 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9600 } 9601 } 9602 }, 9603 "description": "Created" 9604 }, 9605 "401": { 9606 "description": "Unauthorized" 9607 } 9608 }, 9609 "tags": [ 9610 "resource_v1alpha2" 9611 ], 9612 "x-kubernetes-action": "patch", 9613 "x-kubernetes-group-version-kind": { 9614 "group": "resource.k8s.io", 9615 "kind": "ResourceSlice", 9616 "version": "v1alpha2" 9617 } 9618 }, 9619 "put": { 9620 "description": "replace the specified ResourceSlice", 9621 "operationId": "replaceResourceV1alpha2ResourceSlice", 9622 "parameters": [ 9623 { 9624 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9625 "in": "query", 9626 "name": "dryRun", 9627 "schema": { 9628 "type": "string", 9629 "uniqueItems": true 9630 } 9631 }, 9632 { 9633 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 9634 "in": "query", 9635 "name": "fieldManager", 9636 "schema": { 9637 "type": "string", 9638 "uniqueItems": true 9639 } 9640 }, 9641 { 9642 "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.", 9643 "in": "query", 9644 "name": "fieldValidation", 9645 "schema": { 9646 "type": "string", 9647 "uniqueItems": true 9648 } 9649 } 9650 ], 9651 "requestBody": { 9652 "content": { 9653 "*/*": { 9654 "schema": { 9655 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9656 } 9657 } 9658 }, 9659 "required": true 9660 }, 9661 "responses": { 9662 "200": { 9663 "content": { 9664 "application/json": { 9665 "schema": { 9666 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9667 } 9668 }, 9669 "application/vnd.kubernetes.protobuf": { 9670 "schema": { 9671 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9672 } 9673 }, 9674 "application/yaml": { 9675 "schema": { 9676 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9677 } 9678 } 9679 }, 9680 "description": "OK" 9681 }, 9682 "201": { 9683 "content": { 9684 "application/json": { 9685 "schema": { 9686 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9687 } 9688 }, 9689 "application/vnd.kubernetes.protobuf": { 9690 "schema": { 9691 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9692 } 9693 }, 9694 "application/yaml": { 9695 "schema": { 9696 "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceSlice" 9697 } 9698 } 9699 }, 9700 "description": "Created" 9701 }, 9702 "401": { 9703 "description": "Unauthorized" 9704 } 9705 }, 9706 "tags": [ 9707 "resource_v1alpha2" 9708 ], 9709 "x-kubernetes-action": "put", 9710 "x-kubernetes-group-version-kind": { 9711 "group": "resource.k8s.io", 9712 "kind": "ResourceSlice", 9713 "version": "v1alpha2" 9714 } 9715 } 9716 }, 9717 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts": { 9718 "get": { 9719 "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.", 9720 "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContextList", 9721 "responses": { 9722 "200": { 9723 "content": { 9724 "application/json": { 9725 "schema": { 9726 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9727 } 9728 }, 9729 "application/json;stream=watch": { 9730 "schema": { 9731 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9732 } 9733 }, 9734 "application/vnd.kubernetes.protobuf": { 9735 "schema": { 9736 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9737 } 9738 }, 9739 "application/vnd.kubernetes.protobuf;stream=watch": { 9740 "schema": { 9741 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9742 } 9743 }, 9744 "application/yaml": { 9745 "schema": { 9746 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9747 } 9748 } 9749 }, 9750 "description": "OK" 9751 }, 9752 "401": { 9753 "description": "Unauthorized" 9754 } 9755 }, 9756 "tags": [ 9757 "resource_v1alpha2" 9758 ], 9759 "x-kubernetes-action": "watchlist", 9760 "x-kubernetes-group-version-kind": { 9761 "group": "resource.k8s.io", 9762 "kind": "PodSchedulingContext", 9763 "version": "v1alpha2" 9764 } 9765 }, 9766 "parameters": [ 9767 { 9768 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 9769 "in": "query", 9770 "name": "allowWatchBookmarks", 9771 "schema": { 9772 "type": "boolean", 9773 "uniqueItems": true 9774 } 9775 }, 9776 { 9777 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 9778 "in": "query", 9779 "name": "continue", 9780 "schema": { 9781 "type": "string", 9782 "uniqueItems": true 9783 } 9784 }, 9785 { 9786 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 9787 "in": "query", 9788 "name": "fieldSelector", 9789 "schema": { 9790 "type": "string", 9791 "uniqueItems": true 9792 } 9793 }, 9794 { 9795 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 9796 "in": "query", 9797 "name": "labelSelector", 9798 "schema": { 9799 "type": "string", 9800 "uniqueItems": true 9801 } 9802 }, 9803 { 9804 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 9805 "in": "query", 9806 "name": "limit", 9807 "schema": { 9808 "type": "integer", 9809 "uniqueItems": true 9810 } 9811 }, 9812 { 9813 "description": "object name and auth scope, such as for teams and projects", 9814 "in": "path", 9815 "name": "namespace", 9816 "required": true, 9817 "schema": { 9818 "type": "string", 9819 "uniqueItems": true 9820 } 9821 }, 9822 { 9823 "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).", 9824 "in": "query", 9825 "name": "pretty", 9826 "schema": { 9827 "type": "string", 9828 "uniqueItems": true 9829 } 9830 }, 9831 { 9832 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 9833 "in": "query", 9834 "name": "resourceVersion", 9835 "schema": { 9836 "type": "string", 9837 "uniqueItems": true 9838 } 9839 }, 9840 { 9841 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 9842 "in": "query", 9843 "name": "resourceVersionMatch", 9844 "schema": { 9845 "type": "string", 9846 "uniqueItems": true 9847 } 9848 }, 9849 { 9850 "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.", 9851 "in": "query", 9852 "name": "sendInitialEvents", 9853 "schema": { 9854 "type": "boolean", 9855 "uniqueItems": true 9856 } 9857 }, 9858 { 9859 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 9860 "in": "query", 9861 "name": "timeoutSeconds", 9862 "schema": { 9863 "type": "integer", 9864 "uniqueItems": true 9865 } 9866 }, 9867 { 9868 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 9869 "in": "query", 9870 "name": "watch", 9871 "schema": { 9872 "type": "boolean", 9873 "uniqueItems": true 9874 } 9875 } 9876 ] 9877 }, 9878 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts/{name}": { 9879 "get": { 9880 "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.", 9881 "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContext", 9882 "responses": { 9883 "200": { 9884 "content": { 9885 "application/json": { 9886 "schema": { 9887 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9888 } 9889 }, 9890 "application/json;stream=watch": { 9891 "schema": { 9892 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9893 } 9894 }, 9895 "application/vnd.kubernetes.protobuf": { 9896 "schema": { 9897 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9898 } 9899 }, 9900 "application/vnd.kubernetes.protobuf;stream=watch": { 9901 "schema": { 9902 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9903 } 9904 }, 9905 "application/yaml": { 9906 "schema": { 9907 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 9908 } 9909 } 9910 }, 9911 "description": "OK" 9912 }, 9913 "401": { 9914 "description": "Unauthorized" 9915 } 9916 }, 9917 "tags": [ 9918 "resource_v1alpha2" 9919 ], 9920 "x-kubernetes-action": "watch", 9921 "x-kubernetes-group-version-kind": { 9922 "group": "resource.k8s.io", 9923 "kind": "PodSchedulingContext", 9924 "version": "v1alpha2" 9925 } 9926 }, 9927 "parameters": [ 9928 { 9929 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 9930 "in": "query", 9931 "name": "allowWatchBookmarks", 9932 "schema": { 9933 "type": "boolean", 9934 "uniqueItems": true 9935 } 9936 }, 9937 { 9938 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 9939 "in": "query", 9940 "name": "continue", 9941 "schema": { 9942 "type": "string", 9943 "uniqueItems": true 9944 } 9945 }, 9946 { 9947 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 9948 "in": "query", 9949 "name": "fieldSelector", 9950 "schema": { 9951 "type": "string", 9952 "uniqueItems": true 9953 } 9954 }, 9955 { 9956 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 9957 "in": "query", 9958 "name": "labelSelector", 9959 "schema": { 9960 "type": "string", 9961 "uniqueItems": true 9962 } 9963 }, 9964 { 9965 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 9966 "in": "query", 9967 "name": "limit", 9968 "schema": { 9969 "type": "integer", 9970 "uniqueItems": true 9971 } 9972 }, 9973 { 9974 "description": "name of the PodSchedulingContext", 9975 "in": "path", 9976 "name": "name", 9977 "required": true, 9978 "schema": { 9979 "type": "string", 9980 "uniqueItems": true 9981 } 9982 }, 9983 { 9984 "description": "object name and auth scope, such as for teams and projects", 9985 "in": "path", 9986 "name": "namespace", 9987 "required": true, 9988 "schema": { 9989 "type": "string", 9990 "uniqueItems": true 9991 } 9992 }, 9993 { 9994 "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).", 9995 "in": "query", 9996 "name": "pretty", 9997 "schema": { 9998 "type": "string", 9999 "uniqueItems": true 10000 } 10001 }, 10002 { 10003 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10004 "in": "query", 10005 "name": "resourceVersion", 10006 "schema": { 10007 "type": "string", 10008 "uniqueItems": true 10009 } 10010 }, 10011 { 10012 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10013 "in": "query", 10014 "name": "resourceVersionMatch", 10015 "schema": { 10016 "type": "string", 10017 "uniqueItems": true 10018 } 10019 }, 10020 { 10021 "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.", 10022 "in": "query", 10023 "name": "sendInitialEvents", 10024 "schema": { 10025 "type": "boolean", 10026 "uniqueItems": true 10027 } 10028 }, 10029 { 10030 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10031 "in": "query", 10032 "name": "timeoutSeconds", 10033 "schema": { 10034 "type": "integer", 10035 "uniqueItems": true 10036 } 10037 }, 10038 { 10039 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10040 "in": "query", 10041 "name": "watch", 10042 "schema": { 10043 "type": "boolean", 10044 "uniqueItems": true 10045 } 10046 } 10047 ] 10048 }, 10049 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimparameters": { 10050 "get": { 10051 "description": "watch individual changes to a list of ResourceClaimParameters. deprecated: use the 'watch' parameter with a list operation instead.", 10052 "operationId": "watchResourceV1alpha2NamespacedResourceClaimParametersList", 10053 "responses": { 10054 "200": { 10055 "content": { 10056 "application/json": { 10057 "schema": { 10058 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10059 } 10060 }, 10061 "application/json;stream=watch": { 10062 "schema": { 10063 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10064 } 10065 }, 10066 "application/vnd.kubernetes.protobuf": { 10067 "schema": { 10068 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10069 } 10070 }, 10071 "application/vnd.kubernetes.protobuf;stream=watch": { 10072 "schema": { 10073 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10074 } 10075 }, 10076 "application/yaml": { 10077 "schema": { 10078 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10079 } 10080 } 10081 }, 10082 "description": "OK" 10083 }, 10084 "401": { 10085 "description": "Unauthorized" 10086 } 10087 }, 10088 "tags": [ 10089 "resource_v1alpha2" 10090 ], 10091 "x-kubernetes-action": "watchlist", 10092 "x-kubernetes-group-version-kind": { 10093 "group": "resource.k8s.io", 10094 "kind": "ResourceClaimParameters", 10095 "version": "v1alpha2" 10096 } 10097 }, 10098 "parameters": [ 10099 { 10100 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10101 "in": "query", 10102 "name": "allowWatchBookmarks", 10103 "schema": { 10104 "type": "boolean", 10105 "uniqueItems": true 10106 } 10107 }, 10108 { 10109 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10110 "in": "query", 10111 "name": "continue", 10112 "schema": { 10113 "type": "string", 10114 "uniqueItems": true 10115 } 10116 }, 10117 { 10118 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10119 "in": "query", 10120 "name": "fieldSelector", 10121 "schema": { 10122 "type": "string", 10123 "uniqueItems": true 10124 } 10125 }, 10126 { 10127 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10128 "in": "query", 10129 "name": "labelSelector", 10130 "schema": { 10131 "type": "string", 10132 "uniqueItems": true 10133 } 10134 }, 10135 { 10136 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10137 "in": "query", 10138 "name": "limit", 10139 "schema": { 10140 "type": "integer", 10141 "uniqueItems": true 10142 } 10143 }, 10144 { 10145 "description": "object name and auth scope, such as for teams and projects", 10146 "in": "path", 10147 "name": "namespace", 10148 "required": true, 10149 "schema": { 10150 "type": "string", 10151 "uniqueItems": true 10152 } 10153 }, 10154 { 10155 "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).", 10156 "in": "query", 10157 "name": "pretty", 10158 "schema": { 10159 "type": "string", 10160 "uniqueItems": true 10161 } 10162 }, 10163 { 10164 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10165 "in": "query", 10166 "name": "resourceVersion", 10167 "schema": { 10168 "type": "string", 10169 "uniqueItems": true 10170 } 10171 }, 10172 { 10173 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10174 "in": "query", 10175 "name": "resourceVersionMatch", 10176 "schema": { 10177 "type": "string", 10178 "uniqueItems": true 10179 } 10180 }, 10181 { 10182 "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.", 10183 "in": "query", 10184 "name": "sendInitialEvents", 10185 "schema": { 10186 "type": "boolean", 10187 "uniqueItems": true 10188 } 10189 }, 10190 { 10191 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10192 "in": "query", 10193 "name": "timeoutSeconds", 10194 "schema": { 10195 "type": "integer", 10196 "uniqueItems": true 10197 } 10198 }, 10199 { 10200 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10201 "in": "query", 10202 "name": "watch", 10203 "schema": { 10204 "type": "boolean", 10205 "uniqueItems": true 10206 } 10207 } 10208 ] 10209 }, 10210 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimparameters/{name}": { 10211 "get": { 10212 "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.", 10213 "operationId": "watchResourceV1alpha2NamespacedResourceClaimParameters", 10214 "responses": { 10215 "200": { 10216 "content": { 10217 "application/json": { 10218 "schema": { 10219 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10220 } 10221 }, 10222 "application/json;stream=watch": { 10223 "schema": { 10224 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10225 } 10226 }, 10227 "application/vnd.kubernetes.protobuf": { 10228 "schema": { 10229 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10230 } 10231 }, 10232 "application/vnd.kubernetes.protobuf;stream=watch": { 10233 "schema": { 10234 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10235 } 10236 }, 10237 "application/yaml": { 10238 "schema": { 10239 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10240 } 10241 } 10242 }, 10243 "description": "OK" 10244 }, 10245 "401": { 10246 "description": "Unauthorized" 10247 } 10248 }, 10249 "tags": [ 10250 "resource_v1alpha2" 10251 ], 10252 "x-kubernetes-action": "watch", 10253 "x-kubernetes-group-version-kind": { 10254 "group": "resource.k8s.io", 10255 "kind": "ResourceClaimParameters", 10256 "version": "v1alpha2" 10257 } 10258 }, 10259 "parameters": [ 10260 { 10261 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10262 "in": "query", 10263 "name": "allowWatchBookmarks", 10264 "schema": { 10265 "type": "boolean", 10266 "uniqueItems": true 10267 } 10268 }, 10269 { 10270 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10271 "in": "query", 10272 "name": "continue", 10273 "schema": { 10274 "type": "string", 10275 "uniqueItems": true 10276 } 10277 }, 10278 { 10279 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10280 "in": "query", 10281 "name": "fieldSelector", 10282 "schema": { 10283 "type": "string", 10284 "uniqueItems": true 10285 } 10286 }, 10287 { 10288 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10289 "in": "query", 10290 "name": "labelSelector", 10291 "schema": { 10292 "type": "string", 10293 "uniqueItems": true 10294 } 10295 }, 10296 { 10297 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10298 "in": "query", 10299 "name": "limit", 10300 "schema": { 10301 "type": "integer", 10302 "uniqueItems": true 10303 } 10304 }, 10305 { 10306 "description": "name of the ResourceClaimParameters", 10307 "in": "path", 10308 "name": "name", 10309 "required": true, 10310 "schema": { 10311 "type": "string", 10312 "uniqueItems": true 10313 } 10314 }, 10315 { 10316 "description": "object name and auth scope, such as for teams and projects", 10317 "in": "path", 10318 "name": "namespace", 10319 "required": true, 10320 "schema": { 10321 "type": "string", 10322 "uniqueItems": true 10323 } 10324 }, 10325 { 10326 "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).", 10327 "in": "query", 10328 "name": "pretty", 10329 "schema": { 10330 "type": "string", 10331 "uniqueItems": true 10332 } 10333 }, 10334 { 10335 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10336 "in": "query", 10337 "name": "resourceVersion", 10338 "schema": { 10339 "type": "string", 10340 "uniqueItems": true 10341 } 10342 }, 10343 { 10344 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10345 "in": "query", 10346 "name": "resourceVersionMatch", 10347 "schema": { 10348 "type": "string", 10349 "uniqueItems": true 10350 } 10351 }, 10352 { 10353 "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.", 10354 "in": "query", 10355 "name": "sendInitialEvents", 10356 "schema": { 10357 "type": "boolean", 10358 "uniqueItems": true 10359 } 10360 }, 10361 { 10362 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10363 "in": "query", 10364 "name": "timeoutSeconds", 10365 "schema": { 10366 "type": "integer", 10367 "uniqueItems": true 10368 } 10369 }, 10370 { 10371 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10372 "in": "query", 10373 "name": "watch", 10374 "schema": { 10375 "type": "boolean", 10376 "uniqueItems": true 10377 } 10378 } 10379 ] 10380 }, 10381 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims": { 10382 "get": { 10383 "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.", 10384 "operationId": "watchResourceV1alpha2NamespacedResourceClaimList", 10385 "responses": { 10386 "200": { 10387 "content": { 10388 "application/json": { 10389 "schema": { 10390 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10391 } 10392 }, 10393 "application/json;stream=watch": { 10394 "schema": { 10395 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10396 } 10397 }, 10398 "application/vnd.kubernetes.protobuf": { 10399 "schema": { 10400 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10401 } 10402 }, 10403 "application/vnd.kubernetes.protobuf;stream=watch": { 10404 "schema": { 10405 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10406 } 10407 }, 10408 "application/yaml": { 10409 "schema": { 10410 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10411 } 10412 } 10413 }, 10414 "description": "OK" 10415 }, 10416 "401": { 10417 "description": "Unauthorized" 10418 } 10419 }, 10420 "tags": [ 10421 "resource_v1alpha2" 10422 ], 10423 "x-kubernetes-action": "watchlist", 10424 "x-kubernetes-group-version-kind": { 10425 "group": "resource.k8s.io", 10426 "kind": "ResourceClaim", 10427 "version": "v1alpha2" 10428 } 10429 }, 10430 "parameters": [ 10431 { 10432 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10433 "in": "query", 10434 "name": "allowWatchBookmarks", 10435 "schema": { 10436 "type": "boolean", 10437 "uniqueItems": true 10438 } 10439 }, 10440 { 10441 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10442 "in": "query", 10443 "name": "continue", 10444 "schema": { 10445 "type": "string", 10446 "uniqueItems": true 10447 } 10448 }, 10449 { 10450 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10451 "in": "query", 10452 "name": "fieldSelector", 10453 "schema": { 10454 "type": "string", 10455 "uniqueItems": true 10456 } 10457 }, 10458 { 10459 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10460 "in": "query", 10461 "name": "labelSelector", 10462 "schema": { 10463 "type": "string", 10464 "uniqueItems": true 10465 } 10466 }, 10467 { 10468 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10469 "in": "query", 10470 "name": "limit", 10471 "schema": { 10472 "type": "integer", 10473 "uniqueItems": true 10474 } 10475 }, 10476 { 10477 "description": "object name and auth scope, such as for teams and projects", 10478 "in": "path", 10479 "name": "namespace", 10480 "required": true, 10481 "schema": { 10482 "type": "string", 10483 "uniqueItems": true 10484 } 10485 }, 10486 { 10487 "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).", 10488 "in": "query", 10489 "name": "pretty", 10490 "schema": { 10491 "type": "string", 10492 "uniqueItems": true 10493 } 10494 }, 10495 { 10496 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10497 "in": "query", 10498 "name": "resourceVersion", 10499 "schema": { 10500 "type": "string", 10501 "uniqueItems": true 10502 } 10503 }, 10504 { 10505 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10506 "in": "query", 10507 "name": "resourceVersionMatch", 10508 "schema": { 10509 "type": "string", 10510 "uniqueItems": true 10511 } 10512 }, 10513 { 10514 "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.", 10515 "in": "query", 10516 "name": "sendInitialEvents", 10517 "schema": { 10518 "type": "boolean", 10519 "uniqueItems": true 10520 } 10521 }, 10522 { 10523 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10524 "in": "query", 10525 "name": "timeoutSeconds", 10526 "schema": { 10527 "type": "integer", 10528 "uniqueItems": true 10529 } 10530 }, 10531 { 10532 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10533 "in": "query", 10534 "name": "watch", 10535 "schema": { 10536 "type": "boolean", 10537 "uniqueItems": true 10538 } 10539 } 10540 ] 10541 }, 10542 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims/{name}": { 10543 "get": { 10544 "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.", 10545 "operationId": "watchResourceV1alpha2NamespacedResourceClaim", 10546 "responses": { 10547 "200": { 10548 "content": { 10549 "application/json": { 10550 "schema": { 10551 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10552 } 10553 }, 10554 "application/json;stream=watch": { 10555 "schema": { 10556 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10557 } 10558 }, 10559 "application/vnd.kubernetes.protobuf": { 10560 "schema": { 10561 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10562 } 10563 }, 10564 "application/vnd.kubernetes.protobuf;stream=watch": { 10565 "schema": { 10566 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10567 } 10568 }, 10569 "application/yaml": { 10570 "schema": { 10571 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10572 } 10573 } 10574 }, 10575 "description": "OK" 10576 }, 10577 "401": { 10578 "description": "Unauthorized" 10579 } 10580 }, 10581 "tags": [ 10582 "resource_v1alpha2" 10583 ], 10584 "x-kubernetes-action": "watch", 10585 "x-kubernetes-group-version-kind": { 10586 "group": "resource.k8s.io", 10587 "kind": "ResourceClaim", 10588 "version": "v1alpha2" 10589 } 10590 }, 10591 "parameters": [ 10592 { 10593 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10594 "in": "query", 10595 "name": "allowWatchBookmarks", 10596 "schema": { 10597 "type": "boolean", 10598 "uniqueItems": true 10599 } 10600 }, 10601 { 10602 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10603 "in": "query", 10604 "name": "continue", 10605 "schema": { 10606 "type": "string", 10607 "uniqueItems": true 10608 } 10609 }, 10610 { 10611 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10612 "in": "query", 10613 "name": "fieldSelector", 10614 "schema": { 10615 "type": "string", 10616 "uniqueItems": true 10617 } 10618 }, 10619 { 10620 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10621 "in": "query", 10622 "name": "labelSelector", 10623 "schema": { 10624 "type": "string", 10625 "uniqueItems": true 10626 } 10627 }, 10628 { 10629 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10630 "in": "query", 10631 "name": "limit", 10632 "schema": { 10633 "type": "integer", 10634 "uniqueItems": true 10635 } 10636 }, 10637 { 10638 "description": "name of the ResourceClaim", 10639 "in": "path", 10640 "name": "name", 10641 "required": true, 10642 "schema": { 10643 "type": "string", 10644 "uniqueItems": true 10645 } 10646 }, 10647 { 10648 "description": "object name and auth scope, such as for teams and projects", 10649 "in": "path", 10650 "name": "namespace", 10651 "required": true, 10652 "schema": { 10653 "type": "string", 10654 "uniqueItems": true 10655 } 10656 }, 10657 { 10658 "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).", 10659 "in": "query", 10660 "name": "pretty", 10661 "schema": { 10662 "type": "string", 10663 "uniqueItems": true 10664 } 10665 }, 10666 { 10667 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10668 "in": "query", 10669 "name": "resourceVersion", 10670 "schema": { 10671 "type": "string", 10672 "uniqueItems": true 10673 } 10674 }, 10675 { 10676 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10677 "in": "query", 10678 "name": "resourceVersionMatch", 10679 "schema": { 10680 "type": "string", 10681 "uniqueItems": true 10682 } 10683 }, 10684 { 10685 "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.", 10686 "in": "query", 10687 "name": "sendInitialEvents", 10688 "schema": { 10689 "type": "boolean", 10690 "uniqueItems": true 10691 } 10692 }, 10693 { 10694 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10695 "in": "query", 10696 "name": "timeoutSeconds", 10697 "schema": { 10698 "type": "integer", 10699 "uniqueItems": true 10700 } 10701 }, 10702 { 10703 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10704 "in": "query", 10705 "name": "watch", 10706 "schema": { 10707 "type": "boolean", 10708 "uniqueItems": true 10709 } 10710 } 10711 ] 10712 }, 10713 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates": { 10714 "get": { 10715 "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.", 10716 "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplateList", 10717 "responses": { 10718 "200": { 10719 "content": { 10720 "application/json": { 10721 "schema": { 10722 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10723 } 10724 }, 10725 "application/json;stream=watch": { 10726 "schema": { 10727 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10728 } 10729 }, 10730 "application/vnd.kubernetes.protobuf": { 10731 "schema": { 10732 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10733 } 10734 }, 10735 "application/vnd.kubernetes.protobuf;stream=watch": { 10736 "schema": { 10737 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10738 } 10739 }, 10740 "application/yaml": { 10741 "schema": { 10742 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10743 } 10744 } 10745 }, 10746 "description": "OK" 10747 }, 10748 "401": { 10749 "description": "Unauthorized" 10750 } 10751 }, 10752 "tags": [ 10753 "resource_v1alpha2" 10754 ], 10755 "x-kubernetes-action": "watchlist", 10756 "x-kubernetes-group-version-kind": { 10757 "group": "resource.k8s.io", 10758 "kind": "ResourceClaimTemplate", 10759 "version": "v1alpha2" 10760 } 10761 }, 10762 "parameters": [ 10763 { 10764 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10765 "in": "query", 10766 "name": "allowWatchBookmarks", 10767 "schema": { 10768 "type": "boolean", 10769 "uniqueItems": true 10770 } 10771 }, 10772 { 10773 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10774 "in": "query", 10775 "name": "continue", 10776 "schema": { 10777 "type": "string", 10778 "uniqueItems": true 10779 } 10780 }, 10781 { 10782 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10783 "in": "query", 10784 "name": "fieldSelector", 10785 "schema": { 10786 "type": "string", 10787 "uniqueItems": true 10788 } 10789 }, 10790 { 10791 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10792 "in": "query", 10793 "name": "labelSelector", 10794 "schema": { 10795 "type": "string", 10796 "uniqueItems": true 10797 } 10798 }, 10799 { 10800 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10801 "in": "query", 10802 "name": "limit", 10803 "schema": { 10804 "type": "integer", 10805 "uniqueItems": true 10806 } 10807 }, 10808 { 10809 "description": "object name and auth scope, such as for teams and projects", 10810 "in": "path", 10811 "name": "namespace", 10812 "required": true, 10813 "schema": { 10814 "type": "string", 10815 "uniqueItems": true 10816 } 10817 }, 10818 { 10819 "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).", 10820 "in": "query", 10821 "name": "pretty", 10822 "schema": { 10823 "type": "string", 10824 "uniqueItems": true 10825 } 10826 }, 10827 { 10828 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10829 "in": "query", 10830 "name": "resourceVersion", 10831 "schema": { 10832 "type": "string", 10833 "uniqueItems": true 10834 } 10835 }, 10836 { 10837 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10838 "in": "query", 10839 "name": "resourceVersionMatch", 10840 "schema": { 10841 "type": "string", 10842 "uniqueItems": true 10843 } 10844 }, 10845 { 10846 "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.", 10847 "in": "query", 10848 "name": "sendInitialEvents", 10849 "schema": { 10850 "type": "boolean", 10851 "uniqueItems": true 10852 } 10853 }, 10854 { 10855 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10856 "in": "query", 10857 "name": "timeoutSeconds", 10858 "schema": { 10859 "type": "integer", 10860 "uniqueItems": true 10861 } 10862 }, 10863 { 10864 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10865 "in": "query", 10866 "name": "watch", 10867 "schema": { 10868 "type": "boolean", 10869 "uniqueItems": true 10870 } 10871 } 10872 ] 10873 }, 10874 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates/{name}": { 10875 "get": { 10876 "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.", 10877 "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplate", 10878 "responses": { 10879 "200": { 10880 "content": { 10881 "application/json": { 10882 "schema": { 10883 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10884 } 10885 }, 10886 "application/json;stream=watch": { 10887 "schema": { 10888 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10889 } 10890 }, 10891 "application/vnd.kubernetes.protobuf": { 10892 "schema": { 10893 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10894 } 10895 }, 10896 "application/vnd.kubernetes.protobuf;stream=watch": { 10897 "schema": { 10898 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10899 } 10900 }, 10901 "application/yaml": { 10902 "schema": { 10903 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 10904 } 10905 } 10906 }, 10907 "description": "OK" 10908 }, 10909 "401": { 10910 "description": "Unauthorized" 10911 } 10912 }, 10913 "tags": [ 10914 "resource_v1alpha2" 10915 ], 10916 "x-kubernetes-action": "watch", 10917 "x-kubernetes-group-version-kind": { 10918 "group": "resource.k8s.io", 10919 "kind": "ResourceClaimTemplate", 10920 "version": "v1alpha2" 10921 } 10922 }, 10923 "parameters": [ 10924 { 10925 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10926 "in": "query", 10927 "name": "allowWatchBookmarks", 10928 "schema": { 10929 "type": "boolean", 10930 "uniqueItems": true 10931 } 10932 }, 10933 { 10934 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10935 "in": "query", 10936 "name": "continue", 10937 "schema": { 10938 "type": "string", 10939 "uniqueItems": true 10940 } 10941 }, 10942 { 10943 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10944 "in": "query", 10945 "name": "fieldSelector", 10946 "schema": { 10947 "type": "string", 10948 "uniqueItems": true 10949 } 10950 }, 10951 { 10952 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10953 "in": "query", 10954 "name": "labelSelector", 10955 "schema": { 10956 "type": "string", 10957 "uniqueItems": true 10958 } 10959 }, 10960 { 10961 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10962 "in": "query", 10963 "name": "limit", 10964 "schema": { 10965 "type": "integer", 10966 "uniqueItems": true 10967 } 10968 }, 10969 { 10970 "description": "name of the ResourceClaimTemplate", 10971 "in": "path", 10972 "name": "name", 10973 "required": true, 10974 "schema": { 10975 "type": "string", 10976 "uniqueItems": true 10977 } 10978 }, 10979 { 10980 "description": "object name and auth scope, such as for teams and projects", 10981 "in": "path", 10982 "name": "namespace", 10983 "required": true, 10984 "schema": { 10985 "type": "string", 10986 "uniqueItems": true 10987 } 10988 }, 10989 { 10990 "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).", 10991 "in": "query", 10992 "name": "pretty", 10993 "schema": { 10994 "type": "string", 10995 "uniqueItems": true 10996 } 10997 }, 10998 { 10999 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11000 "in": "query", 11001 "name": "resourceVersion", 11002 "schema": { 11003 "type": "string", 11004 "uniqueItems": true 11005 } 11006 }, 11007 { 11008 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11009 "in": "query", 11010 "name": "resourceVersionMatch", 11011 "schema": { 11012 "type": "string", 11013 "uniqueItems": true 11014 } 11015 }, 11016 { 11017 "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.", 11018 "in": "query", 11019 "name": "sendInitialEvents", 11020 "schema": { 11021 "type": "boolean", 11022 "uniqueItems": true 11023 } 11024 }, 11025 { 11026 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11027 "in": "query", 11028 "name": "timeoutSeconds", 11029 "schema": { 11030 "type": "integer", 11031 "uniqueItems": true 11032 } 11033 }, 11034 { 11035 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11036 "in": "query", 11037 "name": "watch", 11038 "schema": { 11039 "type": "boolean", 11040 "uniqueItems": true 11041 } 11042 } 11043 ] 11044 }, 11045 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclassparameters": { 11046 "get": { 11047 "description": "watch individual changes to a list of ResourceClassParameters. deprecated: use the 'watch' parameter with a list operation instead.", 11048 "operationId": "watchResourceV1alpha2NamespacedResourceClassParametersList", 11049 "responses": { 11050 "200": { 11051 "content": { 11052 "application/json": { 11053 "schema": { 11054 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11055 } 11056 }, 11057 "application/json;stream=watch": { 11058 "schema": { 11059 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11060 } 11061 }, 11062 "application/vnd.kubernetes.protobuf": { 11063 "schema": { 11064 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11065 } 11066 }, 11067 "application/vnd.kubernetes.protobuf;stream=watch": { 11068 "schema": { 11069 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11070 } 11071 }, 11072 "application/yaml": { 11073 "schema": { 11074 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11075 } 11076 } 11077 }, 11078 "description": "OK" 11079 }, 11080 "401": { 11081 "description": "Unauthorized" 11082 } 11083 }, 11084 "tags": [ 11085 "resource_v1alpha2" 11086 ], 11087 "x-kubernetes-action": "watchlist", 11088 "x-kubernetes-group-version-kind": { 11089 "group": "resource.k8s.io", 11090 "kind": "ResourceClassParameters", 11091 "version": "v1alpha2" 11092 } 11093 }, 11094 "parameters": [ 11095 { 11096 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11097 "in": "query", 11098 "name": "allowWatchBookmarks", 11099 "schema": { 11100 "type": "boolean", 11101 "uniqueItems": true 11102 } 11103 }, 11104 { 11105 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11106 "in": "query", 11107 "name": "continue", 11108 "schema": { 11109 "type": "string", 11110 "uniqueItems": true 11111 } 11112 }, 11113 { 11114 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11115 "in": "query", 11116 "name": "fieldSelector", 11117 "schema": { 11118 "type": "string", 11119 "uniqueItems": true 11120 } 11121 }, 11122 { 11123 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11124 "in": "query", 11125 "name": "labelSelector", 11126 "schema": { 11127 "type": "string", 11128 "uniqueItems": true 11129 } 11130 }, 11131 { 11132 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11133 "in": "query", 11134 "name": "limit", 11135 "schema": { 11136 "type": "integer", 11137 "uniqueItems": true 11138 } 11139 }, 11140 { 11141 "description": "object name and auth scope, such as for teams and projects", 11142 "in": "path", 11143 "name": "namespace", 11144 "required": true, 11145 "schema": { 11146 "type": "string", 11147 "uniqueItems": true 11148 } 11149 }, 11150 { 11151 "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).", 11152 "in": "query", 11153 "name": "pretty", 11154 "schema": { 11155 "type": "string", 11156 "uniqueItems": true 11157 } 11158 }, 11159 { 11160 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11161 "in": "query", 11162 "name": "resourceVersion", 11163 "schema": { 11164 "type": "string", 11165 "uniqueItems": true 11166 } 11167 }, 11168 { 11169 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11170 "in": "query", 11171 "name": "resourceVersionMatch", 11172 "schema": { 11173 "type": "string", 11174 "uniqueItems": true 11175 } 11176 }, 11177 { 11178 "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.", 11179 "in": "query", 11180 "name": "sendInitialEvents", 11181 "schema": { 11182 "type": "boolean", 11183 "uniqueItems": true 11184 } 11185 }, 11186 { 11187 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11188 "in": "query", 11189 "name": "timeoutSeconds", 11190 "schema": { 11191 "type": "integer", 11192 "uniqueItems": true 11193 } 11194 }, 11195 { 11196 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11197 "in": "query", 11198 "name": "watch", 11199 "schema": { 11200 "type": "boolean", 11201 "uniqueItems": true 11202 } 11203 } 11204 ] 11205 }, 11206 "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclassparameters/{name}": { 11207 "get": { 11208 "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.", 11209 "operationId": "watchResourceV1alpha2NamespacedResourceClassParameters", 11210 "responses": { 11211 "200": { 11212 "content": { 11213 "application/json": { 11214 "schema": { 11215 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11216 } 11217 }, 11218 "application/json;stream=watch": { 11219 "schema": { 11220 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11221 } 11222 }, 11223 "application/vnd.kubernetes.protobuf": { 11224 "schema": { 11225 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11226 } 11227 }, 11228 "application/vnd.kubernetes.protobuf;stream=watch": { 11229 "schema": { 11230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11231 } 11232 }, 11233 "application/yaml": { 11234 "schema": { 11235 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11236 } 11237 } 11238 }, 11239 "description": "OK" 11240 }, 11241 "401": { 11242 "description": "Unauthorized" 11243 } 11244 }, 11245 "tags": [ 11246 "resource_v1alpha2" 11247 ], 11248 "x-kubernetes-action": "watch", 11249 "x-kubernetes-group-version-kind": { 11250 "group": "resource.k8s.io", 11251 "kind": "ResourceClassParameters", 11252 "version": "v1alpha2" 11253 } 11254 }, 11255 "parameters": [ 11256 { 11257 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11258 "in": "query", 11259 "name": "allowWatchBookmarks", 11260 "schema": { 11261 "type": "boolean", 11262 "uniqueItems": true 11263 } 11264 }, 11265 { 11266 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11267 "in": "query", 11268 "name": "continue", 11269 "schema": { 11270 "type": "string", 11271 "uniqueItems": true 11272 } 11273 }, 11274 { 11275 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11276 "in": "query", 11277 "name": "fieldSelector", 11278 "schema": { 11279 "type": "string", 11280 "uniqueItems": true 11281 } 11282 }, 11283 { 11284 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11285 "in": "query", 11286 "name": "labelSelector", 11287 "schema": { 11288 "type": "string", 11289 "uniqueItems": true 11290 } 11291 }, 11292 { 11293 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11294 "in": "query", 11295 "name": "limit", 11296 "schema": { 11297 "type": "integer", 11298 "uniqueItems": true 11299 } 11300 }, 11301 { 11302 "description": "name of the ResourceClassParameters", 11303 "in": "path", 11304 "name": "name", 11305 "required": true, 11306 "schema": { 11307 "type": "string", 11308 "uniqueItems": true 11309 } 11310 }, 11311 { 11312 "description": "object name and auth scope, such as for teams and projects", 11313 "in": "path", 11314 "name": "namespace", 11315 "required": true, 11316 "schema": { 11317 "type": "string", 11318 "uniqueItems": true 11319 } 11320 }, 11321 { 11322 "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).", 11323 "in": "query", 11324 "name": "pretty", 11325 "schema": { 11326 "type": "string", 11327 "uniqueItems": true 11328 } 11329 }, 11330 { 11331 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11332 "in": "query", 11333 "name": "resourceVersion", 11334 "schema": { 11335 "type": "string", 11336 "uniqueItems": true 11337 } 11338 }, 11339 { 11340 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11341 "in": "query", 11342 "name": "resourceVersionMatch", 11343 "schema": { 11344 "type": "string", 11345 "uniqueItems": true 11346 } 11347 }, 11348 { 11349 "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.", 11350 "in": "query", 11351 "name": "sendInitialEvents", 11352 "schema": { 11353 "type": "boolean", 11354 "uniqueItems": true 11355 } 11356 }, 11357 { 11358 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11359 "in": "query", 11360 "name": "timeoutSeconds", 11361 "schema": { 11362 "type": "integer", 11363 "uniqueItems": true 11364 } 11365 }, 11366 { 11367 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11368 "in": "query", 11369 "name": "watch", 11370 "schema": { 11371 "type": "boolean", 11372 "uniqueItems": true 11373 } 11374 } 11375 ] 11376 }, 11377 "/apis/resource.k8s.io/v1alpha2/watch/podschedulingcontexts": { 11378 "get": { 11379 "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.", 11380 "operationId": "watchResourceV1alpha2PodSchedulingContextListForAllNamespaces", 11381 "responses": { 11382 "200": { 11383 "content": { 11384 "application/json": { 11385 "schema": { 11386 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11387 } 11388 }, 11389 "application/json;stream=watch": { 11390 "schema": { 11391 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11392 } 11393 }, 11394 "application/vnd.kubernetes.protobuf": { 11395 "schema": { 11396 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11397 } 11398 }, 11399 "application/vnd.kubernetes.protobuf;stream=watch": { 11400 "schema": { 11401 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11402 } 11403 }, 11404 "application/yaml": { 11405 "schema": { 11406 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11407 } 11408 } 11409 }, 11410 "description": "OK" 11411 }, 11412 "401": { 11413 "description": "Unauthorized" 11414 } 11415 }, 11416 "tags": [ 11417 "resource_v1alpha2" 11418 ], 11419 "x-kubernetes-action": "watchlist", 11420 "x-kubernetes-group-version-kind": { 11421 "group": "resource.k8s.io", 11422 "kind": "PodSchedulingContext", 11423 "version": "v1alpha2" 11424 } 11425 }, 11426 "parameters": [ 11427 { 11428 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11429 "in": "query", 11430 "name": "allowWatchBookmarks", 11431 "schema": { 11432 "type": "boolean", 11433 "uniqueItems": true 11434 } 11435 }, 11436 { 11437 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11438 "in": "query", 11439 "name": "continue", 11440 "schema": { 11441 "type": "string", 11442 "uniqueItems": true 11443 } 11444 }, 11445 { 11446 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11447 "in": "query", 11448 "name": "fieldSelector", 11449 "schema": { 11450 "type": "string", 11451 "uniqueItems": true 11452 } 11453 }, 11454 { 11455 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11456 "in": "query", 11457 "name": "labelSelector", 11458 "schema": { 11459 "type": "string", 11460 "uniqueItems": true 11461 } 11462 }, 11463 { 11464 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11465 "in": "query", 11466 "name": "limit", 11467 "schema": { 11468 "type": "integer", 11469 "uniqueItems": true 11470 } 11471 }, 11472 { 11473 "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).", 11474 "in": "query", 11475 "name": "pretty", 11476 "schema": { 11477 "type": "string", 11478 "uniqueItems": true 11479 } 11480 }, 11481 { 11482 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11483 "in": "query", 11484 "name": "resourceVersion", 11485 "schema": { 11486 "type": "string", 11487 "uniqueItems": true 11488 } 11489 }, 11490 { 11491 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11492 "in": "query", 11493 "name": "resourceVersionMatch", 11494 "schema": { 11495 "type": "string", 11496 "uniqueItems": true 11497 } 11498 }, 11499 { 11500 "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.", 11501 "in": "query", 11502 "name": "sendInitialEvents", 11503 "schema": { 11504 "type": "boolean", 11505 "uniqueItems": true 11506 } 11507 }, 11508 { 11509 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11510 "in": "query", 11511 "name": "timeoutSeconds", 11512 "schema": { 11513 "type": "integer", 11514 "uniqueItems": true 11515 } 11516 }, 11517 { 11518 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11519 "in": "query", 11520 "name": "watch", 11521 "schema": { 11522 "type": "boolean", 11523 "uniqueItems": true 11524 } 11525 } 11526 ] 11527 }, 11528 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaimparameters": { 11529 "get": { 11530 "description": "watch individual changes to a list of ResourceClaimParameters. deprecated: use the 'watch' parameter with a list operation instead.", 11531 "operationId": "watchResourceV1alpha2ResourceClaimParametersListForAllNamespaces", 11532 "responses": { 11533 "200": { 11534 "content": { 11535 "application/json": { 11536 "schema": { 11537 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11538 } 11539 }, 11540 "application/json;stream=watch": { 11541 "schema": { 11542 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11543 } 11544 }, 11545 "application/vnd.kubernetes.protobuf": { 11546 "schema": { 11547 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11548 } 11549 }, 11550 "application/vnd.kubernetes.protobuf;stream=watch": { 11551 "schema": { 11552 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11553 } 11554 }, 11555 "application/yaml": { 11556 "schema": { 11557 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11558 } 11559 } 11560 }, 11561 "description": "OK" 11562 }, 11563 "401": { 11564 "description": "Unauthorized" 11565 } 11566 }, 11567 "tags": [ 11568 "resource_v1alpha2" 11569 ], 11570 "x-kubernetes-action": "watchlist", 11571 "x-kubernetes-group-version-kind": { 11572 "group": "resource.k8s.io", 11573 "kind": "ResourceClaimParameters", 11574 "version": "v1alpha2" 11575 } 11576 }, 11577 "parameters": [ 11578 { 11579 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11580 "in": "query", 11581 "name": "allowWatchBookmarks", 11582 "schema": { 11583 "type": "boolean", 11584 "uniqueItems": true 11585 } 11586 }, 11587 { 11588 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11589 "in": "query", 11590 "name": "continue", 11591 "schema": { 11592 "type": "string", 11593 "uniqueItems": true 11594 } 11595 }, 11596 { 11597 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11598 "in": "query", 11599 "name": "fieldSelector", 11600 "schema": { 11601 "type": "string", 11602 "uniqueItems": true 11603 } 11604 }, 11605 { 11606 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11607 "in": "query", 11608 "name": "labelSelector", 11609 "schema": { 11610 "type": "string", 11611 "uniqueItems": true 11612 } 11613 }, 11614 { 11615 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11616 "in": "query", 11617 "name": "limit", 11618 "schema": { 11619 "type": "integer", 11620 "uniqueItems": true 11621 } 11622 }, 11623 { 11624 "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).", 11625 "in": "query", 11626 "name": "pretty", 11627 "schema": { 11628 "type": "string", 11629 "uniqueItems": true 11630 } 11631 }, 11632 { 11633 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11634 "in": "query", 11635 "name": "resourceVersion", 11636 "schema": { 11637 "type": "string", 11638 "uniqueItems": true 11639 } 11640 }, 11641 { 11642 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11643 "in": "query", 11644 "name": "resourceVersionMatch", 11645 "schema": { 11646 "type": "string", 11647 "uniqueItems": true 11648 } 11649 }, 11650 { 11651 "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.", 11652 "in": "query", 11653 "name": "sendInitialEvents", 11654 "schema": { 11655 "type": "boolean", 11656 "uniqueItems": true 11657 } 11658 }, 11659 { 11660 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11661 "in": "query", 11662 "name": "timeoutSeconds", 11663 "schema": { 11664 "type": "integer", 11665 "uniqueItems": true 11666 } 11667 }, 11668 { 11669 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11670 "in": "query", 11671 "name": "watch", 11672 "schema": { 11673 "type": "boolean", 11674 "uniqueItems": true 11675 } 11676 } 11677 ] 11678 }, 11679 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaims": { 11680 "get": { 11681 "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.", 11682 "operationId": "watchResourceV1alpha2ResourceClaimListForAllNamespaces", 11683 "responses": { 11684 "200": { 11685 "content": { 11686 "application/json": { 11687 "schema": { 11688 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11689 } 11690 }, 11691 "application/json;stream=watch": { 11692 "schema": { 11693 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11694 } 11695 }, 11696 "application/vnd.kubernetes.protobuf": { 11697 "schema": { 11698 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11699 } 11700 }, 11701 "application/vnd.kubernetes.protobuf;stream=watch": { 11702 "schema": { 11703 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11704 } 11705 }, 11706 "application/yaml": { 11707 "schema": { 11708 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11709 } 11710 } 11711 }, 11712 "description": "OK" 11713 }, 11714 "401": { 11715 "description": "Unauthorized" 11716 } 11717 }, 11718 "tags": [ 11719 "resource_v1alpha2" 11720 ], 11721 "x-kubernetes-action": "watchlist", 11722 "x-kubernetes-group-version-kind": { 11723 "group": "resource.k8s.io", 11724 "kind": "ResourceClaim", 11725 "version": "v1alpha2" 11726 } 11727 }, 11728 "parameters": [ 11729 { 11730 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11731 "in": "query", 11732 "name": "allowWatchBookmarks", 11733 "schema": { 11734 "type": "boolean", 11735 "uniqueItems": true 11736 } 11737 }, 11738 { 11739 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11740 "in": "query", 11741 "name": "continue", 11742 "schema": { 11743 "type": "string", 11744 "uniqueItems": true 11745 } 11746 }, 11747 { 11748 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11749 "in": "query", 11750 "name": "fieldSelector", 11751 "schema": { 11752 "type": "string", 11753 "uniqueItems": true 11754 } 11755 }, 11756 { 11757 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11758 "in": "query", 11759 "name": "labelSelector", 11760 "schema": { 11761 "type": "string", 11762 "uniqueItems": true 11763 } 11764 }, 11765 { 11766 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11767 "in": "query", 11768 "name": "limit", 11769 "schema": { 11770 "type": "integer", 11771 "uniqueItems": true 11772 } 11773 }, 11774 { 11775 "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).", 11776 "in": "query", 11777 "name": "pretty", 11778 "schema": { 11779 "type": "string", 11780 "uniqueItems": true 11781 } 11782 }, 11783 { 11784 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11785 "in": "query", 11786 "name": "resourceVersion", 11787 "schema": { 11788 "type": "string", 11789 "uniqueItems": true 11790 } 11791 }, 11792 { 11793 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11794 "in": "query", 11795 "name": "resourceVersionMatch", 11796 "schema": { 11797 "type": "string", 11798 "uniqueItems": true 11799 } 11800 }, 11801 { 11802 "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.", 11803 "in": "query", 11804 "name": "sendInitialEvents", 11805 "schema": { 11806 "type": "boolean", 11807 "uniqueItems": true 11808 } 11809 }, 11810 { 11811 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11812 "in": "query", 11813 "name": "timeoutSeconds", 11814 "schema": { 11815 "type": "integer", 11816 "uniqueItems": true 11817 } 11818 }, 11819 { 11820 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11821 "in": "query", 11822 "name": "watch", 11823 "schema": { 11824 "type": "boolean", 11825 "uniqueItems": true 11826 } 11827 } 11828 ] 11829 }, 11830 "/apis/resource.k8s.io/v1alpha2/watch/resourceclaimtemplates": { 11831 "get": { 11832 "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.", 11833 "operationId": "watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces", 11834 "responses": { 11835 "200": { 11836 "content": { 11837 "application/json": { 11838 "schema": { 11839 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11840 } 11841 }, 11842 "application/json;stream=watch": { 11843 "schema": { 11844 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11845 } 11846 }, 11847 "application/vnd.kubernetes.protobuf": { 11848 "schema": { 11849 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11850 } 11851 }, 11852 "application/vnd.kubernetes.protobuf;stream=watch": { 11853 "schema": { 11854 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11855 } 11856 }, 11857 "application/yaml": { 11858 "schema": { 11859 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11860 } 11861 } 11862 }, 11863 "description": "OK" 11864 }, 11865 "401": { 11866 "description": "Unauthorized" 11867 } 11868 }, 11869 "tags": [ 11870 "resource_v1alpha2" 11871 ], 11872 "x-kubernetes-action": "watchlist", 11873 "x-kubernetes-group-version-kind": { 11874 "group": "resource.k8s.io", 11875 "kind": "ResourceClaimTemplate", 11876 "version": "v1alpha2" 11877 } 11878 }, 11879 "parameters": [ 11880 { 11881 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11882 "in": "query", 11883 "name": "allowWatchBookmarks", 11884 "schema": { 11885 "type": "boolean", 11886 "uniqueItems": true 11887 } 11888 }, 11889 { 11890 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11891 "in": "query", 11892 "name": "continue", 11893 "schema": { 11894 "type": "string", 11895 "uniqueItems": true 11896 } 11897 }, 11898 { 11899 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11900 "in": "query", 11901 "name": "fieldSelector", 11902 "schema": { 11903 "type": "string", 11904 "uniqueItems": true 11905 } 11906 }, 11907 { 11908 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11909 "in": "query", 11910 "name": "labelSelector", 11911 "schema": { 11912 "type": "string", 11913 "uniqueItems": true 11914 } 11915 }, 11916 { 11917 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11918 "in": "query", 11919 "name": "limit", 11920 "schema": { 11921 "type": "integer", 11922 "uniqueItems": true 11923 } 11924 }, 11925 { 11926 "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).", 11927 "in": "query", 11928 "name": "pretty", 11929 "schema": { 11930 "type": "string", 11931 "uniqueItems": true 11932 } 11933 }, 11934 { 11935 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11936 "in": "query", 11937 "name": "resourceVersion", 11938 "schema": { 11939 "type": "string", 11940 "uniqueItems": true 11941 } 11942 }, 11943 { 11944 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11945 "in": "query", 11946 "name": "resourceVersionMatch", 11947 "schema": { 11948 "type": "string", 11949 "uniqueItems": true 11950 } 11951 }, 11952 { 11953 "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.", 11954 "in": "query", 11955 "name": "sendInitialEvents", 11956 "schema": { 11957 "type": "boolean", 11958 "uniqueItems": true 11959 } 11960 }, 11961 { 11962 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11963 "in": "query", 11964 "name": "timeoutSeconds", 11965 "schema": { 11966 "type": "integer", 11967 "uniqueItems": true 11968 } 11969 }, 11970 { 11971 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11972 "in": "query", 11973 "name": "watch", 11974 "schema": { 11975 "type": "boolean", 11976 "uniqueItems": true 11977 } 11978 } 11979 ] 11980 }, 11981 "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses": { 11982 "get": { 11983 "description": "watch individual changes to a list of ResourceClass. deprecated: use the 'watch' parameter with a list operation instead.", 11984 "operationId": "watchResourceV1alpha2ResourceClassList", 11985 "responses": { 11986 "200": { 11987 "content": { 11988 "application/json": { 11989 "schema": { 11990 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11991 } 11992 }, 11993 "application/json;stream=watch": { 11994 "schema": { 11995 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 11996 } 11997 }, 11998 "application/vnd.kubernetes.protobuf": { 11999 "schema": { 12000 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12001 } 12002 }, 12003 "application/vnd.kubernetes.protobuf;stream=watch": { 12004 "schema": { 12005 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12006 } 12007 }, 12008 "application/yaml": { 12009 "schema": { 12010 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12011 } 12012 } 12013 }, 12014 "description": "OK" 12015 }, 12016 "401": { 12017 "description": "Unauthorized" 12018 } 12019 }, 12020 "tags": [ 12021 "resource_v1alpha2" 12022 ], 12023 "x-kubernetes-action": "watchlist", 12024 "x-kubernetes-group-version-kind": { 12025 "group": "resource.k8s.io", 12026 "kind": "ResourceClass", 12027 "version": "v1alpha2" 12028 } 12029 }, 12030 "parameters": [ 12031 { 12032 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12033 "in": "query", 12034 "name": "allowWatchBookmarks", 12035 "schema": { 12036 "type": "boolean", 12037 "uniqueItems": true 12038 } 12039 }, 12040 { 12041 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12042 "in": "query", 12043 "name": "continue", 12044 "schema": { 12045 "type": "string", 12046 "uniqueItems": true 12047 } 12048 }, 12049 { 12050 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12051 "in": "query", 12052 "name": "fieldSelector", 12053 "schema": { 12054 "type": "string", 12055 "uniqueItems": true 12056 } 12057 }, 12058 { 12059 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12060 "in": "query", 12061 "name": "labelSelector", 12062 "schema": { 12063 "type": "string", 12064 "uniqueItems": true 12065 } 12066 }, 12067 { 12068 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12069 "in": "query", 12070 "name": "limit", 12071 "schema": { 12072 "type": "integer", 12073 "uniqueItems": true 12074 } 12075 }, 12076 { 12077 "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).", 12078 "in": "query", 12079 "name": "pretty", 12080 "schema": { 12081 "type": "string", 12082 "uniqueItems": true 12083 } 12084 }, 12085 { 12086 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12087 "in": "query", 12088 "name": "resourceVersion", 12089 "schema": { 12090 "type": "string", 12091 "uniqueItems": true 12092 } 12093 }, 12094 { 12095 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12096 "in": "query", 12097 "name": "resourceVersionMatch", 12098 "schema": { 12099 "type": "string", 12100 "uniqueItems": true 12101 } 12102 }, 12103 { 12104 "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.", 12105 "in": "query", 12106 "name": "sendInitialEvents", 12107 "schema": { 12108 "type": "boolean", 12109 "uniqueItems": true 12110 } 12111 }, 12112 { 12113 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12114 "in": "query", 12115 "name": "timeoutSeconds", 12116 "schema": { 12117 "type": "integer", 12118 "uniqueItems": true 12119 } 12120 }, 12121 { 12122 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12123 "in": "query", 12124 "name": "watch", 12125 "schema": { 12126 "type": "boolean", 12127 "uniqueItems": true 12128 } 12129 } 12130 ] 12131 }, 12132 "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses/{name}": { 12133 "get": { 12134 "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.", 12135 "operationId": "watchResourceV1alpha2ResourceClass", 12136 "responses": { 12137 "200": { 12138 "content": { 12139 "application/json": { 12140 "schema": { 12141 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12142 } 12143 }, 12144 "application/json;stream=watch": { 12145 "schema": { 12146 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12147 } 12148 }, 12149 "application/vnd.kubernetes.protobuf": { 12150 "schema": { 12151 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12152 } 12153 }, 12154 "application/vnd.kubernetes.protobuf;stream=watch": { 12155 "schema": { 12156 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12157 } 12158 }, 12159 "application/yaml": { 12160 "schema": { 12161 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12162 } 12163 } 12164 }, 12165 "description": "OK" 12166 }, 12167 "401": { 12168 "description": "Unauthorized" 12169 } 12170 }, 12171 "tags": [ 12172 "resource_v1alpha2" 12173 ], 12174 "x-kubernetes-action": "watch", 12175 "x-kubernetes-group-version-kind": { 12176 "group": "resource.k8s.io", 12177 "kind": "ResourceClass", 12178 "version": "v1alpha2" 12179 } 12180 }, 12181 "parameters": [ 12182 { 12183 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12184 "in": "query", 12185 "name": "allowWatchBookmarks", 12186 "schema": { 12187 "type": "boolean", 12188 "uniqueItems": true 12189 } 12190 }, 12191 { 12192 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12193 "in": "query", 12194 "name": "continue", 12195 "schema": { 12196 "type": "string", 12197 "uniqueItems": true 12198 } 12199 }, 12200 { 12201 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12202 "in": "query", 12203 "name": "fieldSelector", 12204 "schema": { 12205 "type": "string", 12206 "uniqueItems": true 12207 } 12208 }, 12209 { 12210 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12211 "in": "query", 12212 "name": "labelSelector", 12213 "schema": { 12214 "type": "string", 12215 "uniqueItems": true 12216 } 12217 }, 12218 { 12219 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12220 "in": "query", 12221 "name": "limit", 12222 "schema": { 12223 "type": "integer", 12224 "uniqueItems": true 12225 } 12226 }, 12227 { 12228 "description": "name of the ResourceClass", 12229 "in": "path", 12230 "name": "name", 12231 "required": true, 12232 "schema": { 12233 "type": "string", 12234 "uniqueItems": true 12235 } 12236 }, 12237 { 12238 "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).", 12239 "in": "query", 12240 "name": "pretty", 12241 "schema": { 12242 "type": "string", 12243 "uniqueItems": true 12244 } 12245 }, 12246 { 12247 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12248 "in": "query", 12249 "name": "resourceVersion", 12250 "schema": { 12251 "type": "string", 12252 "uniqueItems": true 12253 } 12254 }, 12255 { 12256 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12257 "in": "query", 12258 "name": "resourceVersionMatch", 12259 "schema": { 12260 "type": "string", 12261 "uniqueItems": true 12262 } 12263 }, 12264 { 12265 "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.", 12266 "in": "query", 12267 "name": "sendInitialEvents", 12268 "schema": { 12269 "type": "boolean", 12270 "uniqueItems": true 12271 } 12272 }, 12273 { 12274 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12275 "in": "query", 12276 "name": "timeoutSeconds", 12277 "schema": { 12278 "type": "integer", 12279 "uniqueItems": true 12280 } 12281 }, 12282 { 12283 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12284 "in": "query", 12285 "name": "watch", 12286 "schema": { 12287 "type": "boolean", 12288 "uniqueItems": true 12289 } 12290 } 12291 ] 12292 }, 12293 "/apis/resource.k8s.io/v1alpha2/watch/resourceclassparameters": { 12294 "get": { 12295 "description": "watch individual changes to a list of ResourceClassParameters. deprecated: use the 'watch' parameter with a list operation instead.", 12296 "operationId": "watchResourceV1alpha2ResourceClassParametersListForAllNamespaces", 12297 "responses": { 12298 "200": { 12299 "content": { 12300 "application/json": { 12301 "schema": { 12302 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12303 } 12304 }, 12305 "application/json;stream=watch": { 12306 "schema": { 12307 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12308 } 12309 }, 12310 "application/vnd.kubernetes.protobuf": { 12311 "schema": { 12312 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12313 } 12314 }, 12315 "application/vnd.kubernetes.protobuf;stream=watch": { 12316 "schema": { 12317 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12318 } 12319 }, 12320 "application/yaml": { 12321 "schema": { 12322 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12323 } 12324 } 12325 }, 12326 "description": "OK" 12327 }, 12328 "401": { 12329 "description": "Unauthorized" 12330 } 12331 }, 12332 "tags": [ 12333 "resource_v1alpha2" 12334 ], 12335 "x-kubernetes-action": "watchlist", 12336 "x-kubernetes-group-version-kind": { 12337 "group": "resource.k8s.io", 12338 "kind": "ResourceClassParameters", 12339 "version": "v1alpha2" 12340 } 12341 }, 12342 "parameters": [ 12343 { 12344 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12345 "in": "query", 12346 "name": "allowWatchBookmarks", 12347 "schema": { 12348 "type": "boolean", 12349 "uniqueItems": true 12350 } 12351 }, 12352 { 12353 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12354 "in": "query", 12355 "name": "continue", 12356 "schema": { 12357 "type": "string", 12358 "uniqueItems": true 12359 } 12360 }, 12361 { 12362 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12363 "in": "query", 12364 "name": "fieldSelector", 12365 "schema": { 12366 "type": "string", 12367 "uniqueItems": true 12368 } 12369 }, 12370 { 12371 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12372 "in": "query", 12373 "name": "labelSelector", 12374 "schema": { 12375 "type": "string", 12376 "uniqueItems": true 12377 } 12378 }, 12379 { 12380 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12381 "in": "query", 12382 "name": "limit", 12383 "schema": { 12384 "type": "integer", 12385 "uniqueItems": true 12386 } 12387 }, 12388 { 12389 "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).", 12390 "in": "query", 12391 "name": "pretty", 12392 "schema": { 12393 "type": "string", 12394 "uniqueItems": true 12395 } 12396 }, 12397 { 12398 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12399 "in": "query", 12400 "name": "resourceVersion", 12401 "schema": { 12402 "type": "string", 12403 "uniqueItems": true 12404 } 12405 }, 12406 { 12407 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12408 "in": "query", 12409 "name": "resourceVersionMatch", 12410 "schema": { 12411 "type": "string", 12412 "uniqueItems": true 12413 } 12414 }, 12415 { 12416 "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.", 12417 "in": "query", 12418 "name": "sendInitialEvents", 12419 "schema": { 12420 "type": "boolean", 12421 "uniqueItems": true 12422 } 12423 }, 12424 { 12425 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12426 "in": "query", 12427 "name": "timeoutSeconds", 12428 "schema": { 12429 "type": "integer", 12430 "uniqueItems": true 12431 } 12432 }, 12433 { 12434 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12435 "in": "query", 12436 "name": "watch", 12437 "schema": { 12438 "type": "boolean", 12439 "uniqueItems": true 12440 } 12441 } 12442 ] 12443 }, 12444 "/apis/resource.k8s.io/v1alpha2/watch/resourceslices": { 12445 "get": { 12446 "description": "watch individual changes to a list of ResourceSlice. deprecated: use the 'watch' parameter with a list operation instead.", 12447 "operationId": "watchResourceV1alpha2ResourceSliceList", 12448 "responses": { 12449 "200": { 12450 "content": { 12451 "application/json": { 12452 "schema": { 12453 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12454 } 12455 }, 12456 "application/json;stream=watch": { 12457 "schema": { 12458 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12459 } 12460 }, 12461 "application/vnd.kubernetes.protobuf": { 12462 "schema": { 12463 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12464 } 12465 }, 12466 "application/vnd.kubernetes.protobuf;stream=watch": { 12467 "schema": { 12468 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12469 } 12470 }, 12471 "application/yaml": { 12472 "schema": { 12473 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12474 } 12475 } 12476 }, 12477 "description": "OK" 12478 }, 12479 "401": { 12480 "description": "Unauthorized" 12481 } 12482 }, 12483 "tags": [ 12484 "resource_v1alpha2" 12485 ], 12486 "x-kubernetes-action": "watchlist", 12487 "x-kubernetes-group-version-kind": { 12488 "group": "resource.k8s.io", 12489 "kind": "ResourceSlice", 12490 "version": "v1alpha2" 12491 } 12492 }, 12493 "parameters": [ 12494 { 12495 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12496 "in": "query", 12497 "name": "allowWatchBookmarks", 12498 "schema": { 12499 "type": "boolean", 12500 "uniqueItems": true 12501 } 12502 }, 12503 { 12504 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12505 "in": "query", 12506 "name": "continue", 12507 "schema": { 12508 "type": "string", 12509 "uniqueItems": true 12510 } 12511 }, 12512 { 12513 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12514 "in": "query", 12515 "name": "fieldSelector", 12516 "schema": { 12517 "type": "string", 12518 "uniqueItems": true 12519 } 12520 }, 12521 { 12522 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12523 "in": "query", 12524 "name": "labelSelector", 12525 "schema": { 12526 "type": "string", 12527 "uniqueItems": true 12528 } 12529 }, 12530 { 12531 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12532 "in": "query", 12533 "name": "limit", 12534 "schema": { 12535 "type": "integer", 12536 "uniqueItems": true 12537 } 12538 }, 12539 { 12540 "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).", 12541 "in": "query", 12542 "name": "pretty", 12543 "schema": { 12544 "type": "string", 12545 "uniqueItems": true 12546 } 12547 }, 12548 { 12549 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12550 "in": "query", 12551 "name": "resourceVersion", 12552 "schema": { 12553 "type": "string", 12554 "uniqueItems": true 12555 } 12556 }, 12557 { 12558 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12559 "in": "query", 12560 "name": "resourceVersionMatch", 12561 "schema": { 12562 "type": "string", 12563 "uniqueItems": true 12564 } 12565 }, 12566 { 12567 "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.", 12568 "in": "query", 12569 "name": "sendInitialEvents", 12570 "schema": { 12571 "type": "boolean", 12572 "uniqueItems": true 12573 } 12574 }, 12575 { 12576 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12577 "in": "query", 12578 "name": "timeoutSeconds", 12579 "schema": { 12580 "type": "integer", 12581 "uniqueItems": true 12582 } 12583 }, 12584 { 12585 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12586 "in": "query", 12587 "name": "watch", 12588 "schema": { 12589 "type": "boolean", 12590 "uniqueItems": true 12591 } 12592 } 12593 ] 12594 }, 12595 "/apis/resource.k8s.io/v1alpha2/watch/resourceslices/{name}": { 12596 "get": { 12597 "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.", 12598 "operationId": "watchResourceV1alpha2ResourceSlice", 12599 "responses": { 12600 "200": { 12601 "content": { 12602 "application/json": { 12603 "schema": { 12604 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12605 } 12606 }, 12607 "application/json;stream=watch": { 12608 "schema": { 12609 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12610 } 12611 }, 12612 "application/vnd.kubernetes.protobuf": { 12613 "schema": { 12614 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12615 } 12616 }, 12617 "application/vnd.kubernetes.protobuf;stream=watch": { 12618 "schema": { 12619 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12620 } 12621 }, 12622 "application/yaml": { 12623 "schema": { 12624 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 12625 } 12626 } 12627 }, 12628 "description": "OK" 12629 }, 12630 "401": { 12631 "description": "Unauthorized" 12632 } 12633 }, 12634 "tags": [ 12635 "resource_v1alpha2" 12636 ], 12637 "x-kubernetes-action": "watch", 12638 "x-kubernetes-group-version-kind": { 12639 "group": "resource.k8s.io", 12640 "kind": "ResourceSlice", 12641 "version": "v1alpha2" 12642 } 12643 }, 12644 "parameters": [ 12645 { 12646 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12647 "in": "query", 12648 "name": "allowWatchBookmarks", 12649 "schema": { 12650 "type": "boolean", 12651 "uniqueItems": true 12652 } 12653 }, 12654 { 12655 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12656 "in": "query", 12657 "name": "continue", 12658 "schema": { 12659 "type": "string", 12660 "uniqueItems": true 12661 } 12662 }, 12663 { 12664 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12665 "in": "query", 12666 "name": "fieldSelector", 12667 "schema": { 12668 "type": "string", 12669 "uniqueItems": true 12670 } 12671 }, 12672 { 12673 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12674 "in": "query", 12675 "name": "labelSelector", 12676 "schema": { 12677 "type": "string", 12678 "uniqueItems": true 12679 } 12680 }, 12681 { 12682 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12683 "in": "query", 12684 "name": "limit", 12685 "schema": { 12686 "type": "integer", 12687 "uniqueItems": true 12688 } 12689 }, 12690 { 12691 "description": "name of the ResourceSlice", 12692 "in": "path", 12693 "name": "name", 12694 "required": true, 12695 "schema": { 12696 "type": "string", 12697 "uniqueItems": true 12698 } 12699 }, 12700 { 12701 "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).", 12702 "in": "query", 12703 "name": "pretty", 12704 "schema": { 12705 "type": "string", 12706 "uniqueItems": true 12707 } 12708 }, 12709 { 12710 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12711 "in": "query", 12712 "name": "resourceVersion", 12713 "schema": { 12714 "type": "string", 12715 "uniqueItems": true 12716 } 12717 }, 12718 { 12719 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12720 "in": "query", 12721 "name": "resourceVersionMatch", 12722 "schema": { 12723 "type": "string", 12724 "uniqueItems": true 12725 } 12726 }, 12727 { 12728 "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.", 12729 "in": "query", 12730 "name": "sendInitialEvents", 12731 "schema": { 12732 "type": "boolean", 12733 "uniqueItems": true 12734 } 12735 }, 12736 { 12737 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12738 "in": "query", 12739 "name": "timeoutSeconds", 12740 "schema": { 12741 "type": "integer", 12742 "uniqueItems": true 12743 } 12744 }, 12745 { 12746 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12747 "in": "query", 12748 "name": "watch", 12749 "schema": { 12750 "type": "boolean", 12751 "uniqueItems": true 12752 } 12753 } 12754 ] 12755 } 12756 } 12757 }