@distilled.cloud/kubernetes 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/credentials.d.ts +2 -2
- package/lib/credentials.d.ts.map +1 -1
- package/lib/credentials.js +2 -2
- package/lib/credentials.js.map +1 -1
- package/lib/errors.d.ts +2 -2
- package/lib/retry.d.ts +2 -2
- package/lib/retry.d.ts.map +1 -1
- package/lib/retry.js +2 -2
- package/lib/retry.js.map +1 -1
- package/lib/services/admissionregistration.d.ts +90 -0
- package/lib/services/admissionregistration.d.ts.map +1 -1
- package/lib/services/admissionregistration.js +90 -0
- package/lib/services/admissionregistration.js.map +1 -1
- package/lib/services/apiextensions.d.ts +9 -0
- package/lib/services/apiextensions.d.ts.map +1 -1
- package/lib/services/apiextensions.js +9 -0
- package/lib/services/apiextensions.js.map +1 -1
- package/lib/services/apiregistration.d.ts +9 -0
- package/lib/services/apiregistration.d.ts.map +1 -1
- package/lib/services/apiregistration.js +9 -0
- package/lib/services/apiregistration.js.map +1 -1
- package/lib/services/apps.d.ts +60 -0
- package/lib/services/apps.d.ts.map +1 -1
- package/lib/services/apps.js +60 -0
- package/lib/services/apps.js.map +1 -1
- package/lib/services/autoscaling.d.ts +24 -0
- package/lib/services/autoscaling.d.ts.map +1 -1
- package/lib/services/autoscaling.js +24 -0
- package/lib/services/autoscaling.js.map +1 -1
- package/lib/services/batch.d.ts +24 -0
- package/lib/services/batch.d.ts.map +1 -1
- package/lib/services/batch.js +24 -0
- package/lib/services/batch.js.map +1 -1
- package/lib/services/certificates.d.ts +39 -0
- package/lib/services/certificates.d.ts.map +1 -1
- package/lib/services/certificates.js +39 -0
- package/lib/services/certificates.js.map +1 -1
- package/lib/services/coordination.d.ts +36 -0
- package/lib/services/coordination.d.ts.map +1 -1
- package/lib/services/coordination.js +36 -0
- package/lib/services/coordination.js.map +1 -1
- package/lib/services/core.d.ts +230 -0
- package/lib/services/core.d.ts.map +1 -1
- package/lib/services/core.js +230 -0
- package/lib/services/core.js.map +1 -1
- package/lib/services/discovery.d.ts +12 -0
- package/lib/services/discovery.d.ts.map +1 -1
- package/lib/services/discovery.js +12 -0
- package/lib/services/discovery.js.map +1 -1
- package/lib/services/events.d.ts +12 -0
- package/lib/services/events.d.ts.map +1 -1
- package/lib/services/events.js +12 -0
- package/lib/services/events.js.map +1 -1
- package/lib/services/flowcontrol-apiserver.d.ts +18 -0
- package/lib/services/flowcontrol-apiserver.d.ts.map +1 -1
- package/lib/services/flowcontrol-apiserver.js +18 -0
- package/lib/services/flowcontrol-apiserver.js.map +1 -1
- package/lib/services/internal-apiserver.d.ts +9 -0
- package/lib/services/internal-apiserver.d.ts.map +1 -1
- package/lib/services/internal-apiserver.js +9 -0
- package/lib/services/internal-apiserver.js.map +1 -1
- package/lib/services/networking.d.ts +69 -0
- package/lib/services/networking.d.ts.map +1 -1
- package/lib/services/networking.js +69 -0
- package/lib/services/networking.js.map +1 -1
- package/lib/services/node.d.ts +9 -0
- package/lib/services/node.d.ts.map +1 -1
- package/lib/services/node.js +9 -0
- package/lib/services/node.js.map +1 -1
- package/lib/services/policy.d.ts +12 -0
- package/lib/services/policy.d.ts.map +1 -1
- package/lib/services/policy.js +12 -0
- package/lib/services/policy.js.map +1 -1
- package/lib/services/rbac-authorization.d.ts +42 -0
- package/lib/services/rbac-authorization.d.ts.map +1 -1
- package/lib/services/rbac-authorization.js +42 -0
- package/lib/services/rbac-authorization.js.map +1 -1
- package/lib/services/resource.d.ts +994 -0
- package/lib/services/resource.d.ts.map +1 -1
- package/lib/services/resource.js +1160 -46
- package/lib/services/resource.js.map +1 -1
- package/lib/services/scheduling.d.ts +264 -0
- package/lib/services/scheduling.d.ts.map +1 -1
- package/lib/services/scheduling.js +264 -0
- package/lib/services/scheduling.js.map +1 -1
- package/lib/services/storage.d.ts +48 -0
- package/lib/services/storage.d.ts.map +1 -1
- package/lib/services/storage.js +48 -0
- package/lib/services/storage.js.map +1 -1
- package/lib/services/storagemigration.d.ts +9 -0
- package/lib/services/storagemigration.d.ts.map +1 -1
- package/lib/services/storagemigration.js +9 -0
- package/lib/services/storagemigration.js.map +1 -1
- package/package.json +4 -4
- package/src/credentials.ts +2 -2
- package/src/retry.ts +2 -2
- package/src/services/admissionregistration.ts +150 -0
- package/src/services/apiextensions.ts +15 -0
- package/src/services/apiregistration.ts +15 -0
- package/src/services/apps.ts +100 -0
- package/src/services/autoscaling.ts +40 -0
- package/src/services/batch.ts +40 -0
- package/src/services/certificates.ts +65 -0
- package/src/services/coordination.ts +60 -0
- package/src/services/core.ts +394 -0
- package/src/services/discovery.ts +20 -0
- package/src/services/events.ts +20 -0
- package/src/services/flowcontrol-apiserver.ts +30 -0
- package/src/services/internal-apiserver.ts +15 -0
- package/src/services/networking.ts +115 -0
- package/src/services/node.ts +15 -0
- package/src/services/policy.ts +20 -0
- package/src/services/rbac-authorization.ts +70 -0
- package/src/services/resource.ts +1581 -30
- package/src/services/scheduling.ts +472 -0
- package/src/services/storage.ts +80 -0
- package/src/services/storagemigration.ts +15 -0
|
@@ -442,9 +442,13 @@ export declare const CreateResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
442
442
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
443
443
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
444
444
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
445
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
445
446
|
readonly int: Schema.optional<Schema.Number>;
|
|
447
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
446
448
|
readonly string: Schema.optional<Schema.String>;
|
|
449
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
447
450
|
readonly version: Schema.optional<Schema.String>;
|
|
451
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
448
452
|
}>>>;
|
|
449
453
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
450
454
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -468,6 +472,10 @@ export declare const CreateResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
468
472
|
}>>;
|
|
469
473
|
}>>>;
|
|
470
474
|
readonly name: Schema.String;
|
|
475
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
476
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
477
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
478
|
+
}>>>;
|
|
471
479
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
472
480
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
473
481
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -600,6 +608,83 @@ export type CreateResourceV1alpha3DeviceTaintRuleOutput = typeof CreateResourceV
|
|
|
600
608
|
* @param fieldValidation - 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.
|
|
601
609
|
*/
|
|
602
610
|
export declare const createResourceV1alpha3DeviceTaintRule: any;
|
|
611
|
+
export declare const CreateResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{
|
|
612
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
613
|
+
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
614
|
+
}>;
|
|
615
|
+
export type CreateResourceV1alpha3ResourcePoolStatusRequestInput = typeof CreateResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
616
|
+
export declare const CreateResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
617
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
618
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
619
|
+
readonly metadata: Schema.Struct<{
|
|
620
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
621
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
622
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
623
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
624
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
625
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
626
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
627
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
628
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
629
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
630
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
631
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
632
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
633
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
634
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
635
|
+
readonly time: Schema.optional<Schema.String>;
|
|
636
|
+
}>>>;
|
|
637
|
+
readonly name: Schema.optional<Schema.String>;
|
|
638
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
639
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
640
|
+
readonly apiVersion: Schema.String;
|
|
641
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
642
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
643
|
+
readonly kind: Schema.String;
|
|
644
|
+
readonly name: Schema.String;
|
|
645
|
+
readonly uid: Schema.String;
|
|
646
|
+
}>>>;
|
|
647
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
648
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
649
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
650
|
+
}>;
|
|
651
|
+
readonly spec: Schema.Struct<{
|
|
652
|
+
readonly driver: Schema.String;
|
|
653
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
654
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
655
|
+
}>;
|
|
656
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
657
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
658
|
+
readonly lastTransitionTime: Schema.String;
|
|
659
|
+
readonly message: Schema.String;
|
|
660
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
661
|
+
readonly reason: Schema.String;
|
|
662
|
+
readonly status: Schema.String;
|
|
663
|
+
readonly type: Schema.String;
|
|
664
|
+
}>>>;
|
|
665
|
+
readonly poolCount: Schema.Number;
|
|
666
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
667
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
668
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
669
|
+
readonly driver: Schema.String;
|
|
670
|
+
readonly generation: Schema.Number;
|
|
671
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
672
|
+
readonly poolName: Schema.String;
|
|
673
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
674
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
675
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
676
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
677
|
+
}>>>;
|
|
678
|
+
}>>;
|
|
679
|
+
}>;
|
|
680
|
+
export type CreateResourceV1alpha3ResourcePoolStatusRequestOutput = typeof CreateResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
681
|
+
/**
|
|
682
|
+
* create a ResourcePoolStatusRequest
|
|
683
|
+
*
|
|
684
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
685
|
+
* @param fieldValidation - 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.
|
|
686
|
+
*/
|
|
687
|
+
export declare const createResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
603
688
|
export declare const CreateResourceV1beta1DeviceClassInput: Schema.Struct<{
|
|
604
689
|
readonly dryRun: Schema.optional<Schema.String>;
|
|
605
690
|
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
@@ -1034,9 +1119,13 @@ export declare const CreateResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
1034
1119
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
1035
1120
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
1036
1121
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
1122
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
1037
1123
|
readonly int: Schema.optional<Schema.Number>;
|
|
1124
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
1038
1125
|
readonly string: Schema.optional<Schema.String>;
|
|
1126
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1039
1127
|
readonly version: Schema.optional<Schema.String>;
|
|
1128
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1040
1129
|
}>>>;
|
|
1041
1130
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1042
1131
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -1059,6 +1148,10 @@ export declare const CreateResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
1059
1148
|
readonly value: Schema.String;
|
|
1060
1149
|
}>>;
|
|
1061
1150
|
}>>>;
|
|
1151
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
1152
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
1153
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
1154
|
+
}>>>;
|
|
1062
1155
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
1063
1156
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
1064
1157
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -1630,9 +1723,13 @@ export declare const CreateResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
1630
1723
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
1631
1724
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
1632
1725
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
1726
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
1633
1727
|
readonly int: Schema.optional<Schema.Number>;
|
|
1728
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
1634
1729
|
readonly string: Schema.optional<Schema.String>;
|
|
1730
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1635
1731
|
readonly version: Schema.optional<Schema.String>;
|
|
1732
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1636
1733
|
}>>>;
|
|
1637
1734
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1638
1735
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -1656,6 +1753,10 @@ export declare const CreateResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
1656
1753
|
}>>;
|
|
1657
1754
|
}>>>;
|
|
1658
1755
|
readonly name: Schema.String;
|
|
1756
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
1757
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
1758
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
1759
|
+
}>>>;
|
|
1659
1760
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
1660
1761
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
1661
1762
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -1742,6 +1843,9 @@ export declare const DeleteResourceV1CollectionDeviceClassOutput: Schema.Struct<
|
|
|
1742
1843
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
1743
1844
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
1744
1845
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
1846
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
1847
|
+
readonly selector: Schema.String;
|
|
1848
|
+
}>>;
|
|
1745
1849
|
}>>;
|
|
1746
1850
|
readonly reason: Schema.optional<Schema.String>;
|
|
1747
1851
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -1779,6 +1883,9 @@ export declare const DeleteResourceV1CollectionNamespacedResourceClaimOutput: Sc
|
|
|
1779
1883
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
1780
1884
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
1781
1885
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
1886
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
1887
|
+
readonly selector: Schema.String;
|
|
1888
|
+
}>>;
|
|
1782
1889
|
}>>;
|
|
1783
1890
|
readonly reason: Schema.optional<Schema.String>;
|
|
1784
1891
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -1816,6 +1923,9 @@ export declare const DeleteResourceV1CollectionNamespacedResourceClaimTemplateOu
|
|
|
1816
1923
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
1817
1924
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
1818
1925
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
1926
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
1927
|
+
readonly selector: Schema.String;
|
|
1928
|
+
}>>;
|
|
1819
1929
|
}>>;
|
|
1820
1930
|
readonly reason: Schema.optional<Schema.String>;
|
|
1821
1931
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -1853,6 +1963,9 @@ export declare const DeleteResourceV1CollectionResourceSliceOutput: Schema.Struc
|
|
|
1853
1963
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
1854
1964
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
1855
1965
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
1966
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
1967
|
+
readonly selector: Schema.String;
|
|
1968
|
+
}>>;
|
|
1856
1969
|
}>>;
|
|
1857
1970
|
readonly reason: Schema.optional<Schema.String>;
|
|
1858
1971
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -2294,9 +2407,13 @@ export declare const DeleteResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
2294
2407
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
2295
2408
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
2296
2409
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
2410
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
2297
2411
|
readonly int: Schema.optional<Schema.Number>;
|
|
2412
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
2298
2413
|
readonly string: Schema.optional<Schema.String>;
|
|
2414
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2299
2415
|
readonly version: Schema.optional<Schema.String>;
|
|
2416
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2300
2417
|
}>>>;
|
|
2301
2418
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2302
2419
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -2320,6 +2437,10 @@ export declare const DeleteResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
2320
2437
|
}>>;
|
|
2321
2438
|
}>>>;
|
|
2322
2439
|
readonly name: Schema.String;
|
|
2440
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
2441
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
2442
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
2443
|
+
}>>>;
|
|
2323
2444
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
2324
2445
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
2325
2446
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -2405,6 +2526,9 @@ export declare const DeleteResourceV1alpha3CollectionDeviceTaintRuleOutput: Sche
|
|
|
2405
2526
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2406
2527
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2407
2528
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
2529
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2530
|
+
readonly selector: Schema.String;
|
|
2531
|
+
}>>;
|
|
2408
2532
|
}>>;
|
|
2409
2533
|
readonly reason: Schema.optional<Schema.String>;
|
|
2410
2534
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -2416,6 +2540,46 @@ export type DeleteResourceV1alpha3CollectionDeviceTaintRuleOutput = typeof Delet
|
|
|
2416
2540
|
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
2417
2541
|
*/
|
|
2418
2542
|
export declare const deleteResourceV1alpha3CollectionDeviceTaintRule: any;
|
|
2543
|
+
export declare const DeleteResourceV1alpha3CollectionResourcePoolStatusRequestInput: Schema.Struct<{
|
|
2544
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
2545
|
+
}>;
|
|
2546
|
+
export type DeleteResourceV1alpha3CollectionResourcePoolStatusRequestInput = typeof DeleteResourceV1alpha3CollectionResourcePoolStatusRequestInput.Type;
|
|
2547
|
+
export declare const DeleteResourceV1alpha3CollectionResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
2548
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
2549
|
+
readonly code: Schema.optional<Schema.Number>;
|
|
2550
|
+
readonly details: Schema.optional<Schema.Struct<{
|
|
2551
|
+
readonly causes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2552
|
+
readonly field: Schema.optional<Schema.String>;
|
|
2553
|
+
readonly message: Schema.optional<Schema.String>;
|
|
2554
|
+
readonly reason: Schema.optional<Schema.String>;
|
|
2555
|
+
}>>>;
|
|
2556
|
+
readonly group: Schema.optional<Schema.String>;
|
|
2557
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
2558
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2559
|
+
readonly retryAfterSeconds: Schema.optional<Schema.Number>;
|
|
2560
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
2561
|
+
}>>;
|
|
2562
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
2563
|
+
readonly message: Schema.optional<Schema.String>;
|
|
2564
|
+
readonly metadata: Schema.optional<Schema.Struct<{
|
|
2565
|
+
readonly continue: Schema.optional<Schema.String>;
|
|
2566
|
+
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2567
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2568
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
2569
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2570
|
+
readonly selector: Schema.String;
|
|
2571
|
+
}>>;
|
|
2572
|
+
}>>;
|
|
2573
|
+
readonly reason: Schema.optional<Schema.String>;
|
|
2574
|
+
readonly status: Schema.optional<Schema.String>;
|
|
2575
|
+
}>;
|
|
2576
|
+
export type DeleteResourceV1alpha3CollectionResourcePoolStatusRequestOutput = typeof DeleteResourceV1alpha3CollectionResourcePoolStatusRequestOutput.Type;
|
|
2577
|
+
/**
|
|
2578
|
+
* delete collection of ResourcePoolStatusRequest
|
|
2579
|
+
*
|
|
2580
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
2581
|
+
*/
|
|
2582
|
+
export declare const deleteResourceV1alpha3CollectionResourcePoolStatusRequest: any;
|
|
2419
2583
|
export declare const DeleteResourceV1alpha3DeviceTaintRuleInput: Schema.Struct<{
|
|
2420
2584
|
readonly dryRun: Schema.optional<Schema.String>;
|
|
2421
2585
|
}>;
|
|
@@ -2486,6 +2650,81 @@ export type DeleteResourceV1alpha3DeviceTaintRuleOutput = typeof DeleteResourceV
|
|
|
2486
2650
|
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
2487
2651
|
*/
|
|
2488
2652
|
export declare const deleteResourceV1alpha3DeviceTaintRule: any;
|
|
2653
|
+
export declare const DeleteResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{
|
|
2654
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
2655
|
+
}>;
|
|
2656
|
+
export type DeleteResourceV1alpha3ResourcePoolStatusRequestInput = typeof DeleteResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
2657
|
+
export declare const DeleteResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
2658
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
2659
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
2660
|
+
readonly metadata: Schema.Struct<{
|
|
2661
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
2662
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
2663
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
2664
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
2665
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2666
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
2667
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
2668
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
2669
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2670
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
2671
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
2672
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
2673
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
2674
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
2675
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
2676
|
+
readonly time: Schema.optional<Schema.String>;
|
|
2677
|
+
}>>>;
|
|
2678
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2679
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
2680
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2681
|
+
readonly apiVersion: Schema.String;
|
|
2682
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
2683
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
2684
|
+
readonly kind: Schema.String;
|
|
2685
|
+
readonly name: Schema.String;
|
|
2686
|
+
readonly uid: Schema.String;
|
|
2687
|
+
}>>>;
|
|
2688
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2689
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
2690
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
2691
|
+
}>;
|
|
2692
|
+
readonly spec: Schema.Struct<{
|
|
2693
|
+
readonly driver: Schema.String;
|
|
2694
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
2695
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
2696
|
+
}>;
|
|
2697
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
2698
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2699
|
+
readonly lastTransitionTime: Schema.String;
|
|
2700
|
+
readonly message: Schema.String;
|
|
2701
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
2702
|
+
readonly reason: Schema.String;
|
|
2703
|
+
readonly status: Schema.String;
|
|
2704
|
+
readonly type: Schema.String;
|
|
2705
|
+
}>>>;
|
|
2706
|
+
readonly poolCount: Schema.Number;
|
|
2707
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2708
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
2709
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
2710
|
+
readonly driver: Schema.String;
|
|
2711
|
+
readonly generation: Schema.Number;
|
|
2712
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
2713
|
+
readonly poolName: Schema.String;
|
|
2714
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
2715
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
2716
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
2717
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
2718
|
+
}>>>;
|
|
2719
|
+
}>>;
|
|
2720
|
+
}>;
|
|
2721
|
+
export type DeleteResourceV1alpha3ResourcePoolStatusRequestOutput = typeof DeleteResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
2722
|
+
/**
|
|
2723
|
+
* delete a ResourcePoolStatusRequest
|
|
2724
|
+
*
|
|
2725
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
2726
|
+
*/
|
|
2727
|
+
export declare const deleteResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
2489
2728
|
export declare const DeleteResourceV1beta1CollectionDeviceClassInput: Schema.Struct<{
|
|
2490
2729
|
readonly dryRun: Schema.optional<Schema.String>;
|
|
2491
2730
|
}>;
|
|
@@ -2512,6 +2751,9 @@ export declare const DeleteResourceV1beta1CollectionDeviceClassOutput: Schema.St
|
|
|
2512
2751
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2513
2752
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2514
2753
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
2754
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2755
|
+
readonly selector: Schema.String;
|
|
2756
|
+
}>>;
|
|
2515
2757
|
}>>;
|
|
2516
2758
|
readonly reason: Schema.optional<Schema.String>;
|
|
2517
2759
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -2549,6 +2791,9 @@ export declare const DeleteResourceV1beta1CollectionNamespacedResourceClaimOutpu
|
|
|
2549
2791
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2550
2792
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2551
2793
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
2794
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2795
|
+
readonly selector: Schema.String;
|
|
2796
|
+
}>>;
|
|
2552
2797
|
}>>;
|
|
2553
2798
|
readonly reason: Schema.optional<Schema.String>;
|
|
2554
2799
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -2586,6 +2831,9 @@ export declare const DeleteResourceV1beta1CollectionNamespacedResourceClaimTempl
|
|
|
2586
2831
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2587
2832
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2588
2833
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
2834
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2835
|
+
readonly selector: Schema.String;
|
|
2836
|
+
}>>;
|
|
2589
2837
|
}>>;
|
|
2590
2838
|
readonly reason: Schema.optional<Schema.String>;
|
|
2591
2839
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -2623,6 +2871,9 @@ export declare const DeleteResourceV1beta1CollectionResourceSliceOutput: Schema.
|
|
|
2623
2871
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
2624
2872
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
2625
2873
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
2874
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
2875
|
+
readonly selector: Schema.String;
|
|
2876
|
+
}>>;
|
|
2626
2877
|
}>>;
|
|
2627
2878
|
readonly reason: Schema.optional<Schema.String>;
|
|
2628
2879
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3061,9 +3312,13 @@ export declare const DeleteResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
3061
3312
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
3062
3313
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
3063
3314
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
3315
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
3064
3316
|
readonly int: Schema.optional<Schema.Number>;
|
|
3317
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
3065
3318
|
readonly string: Schema.optional<Schema.String>;
|
|
3319
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3066
3320
|
readonly version: Schema.optional<Schema.String>;
|
|
3321
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3067
3322
|
}>>>;
|
|
3068
3323
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3069
3324
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -3086,6 +3341,10 @@ export declare const DeleteResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
3086
3341
|
readonly value: Schema.String;
|
|
3087
3342
|
}>>;
|
|
3088
3343
|
}>>>;
|
|
3344
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
3345
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
3346
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
3347
|
+
}>>>;
|
|
3089
3348
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
3090
3349
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
3091
3350
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -3173,6 +3432,9 @@ export declare const DeleteResourceV1beta2CollectionDeviceClassOutput: Schema.St
|
|
|
3173
3432
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
3174
3433
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
3175
3434
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
3435
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
3436
|
+
readonly selector: Schema.String;
|
|
3437
|
+
}>>;
|
|
3176
3438
|
}>>;
|
|
3177
3439
|
readonly reason: Schema.optional<Schema.String>;
|
|
3178
3440
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3210,6 +3472,9 @@ export declare const DeleteResourceV1beta2CollectionDeviceTaintRuleOutput: Schem
|
|
|
3210
3472
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
3211
3473
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
3212
3474
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
3475
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
3476
|
+
readonly selector: Schema.String;
|
|
3477
|
+
}>>;
|
|
3213
3478
|
}>>;
|
|
3214
3479
|
readonly reason: Schema.optional<Schema.String>;
|
|
3215
3480
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3247,6 +3512,9 @@ export declare const DeleteResourceV1beta2CollectionNamespacedResourceClaimOutpu
|
|
|
3247
3512
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
3248
3513
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
3249
3514
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
3515
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
3516
|
+
readonly selector: Schema.String;
|
|
3517
|
+
}>>;
|
|
3250
3518
|
}>>;
|
|
3251
3519
|
readonly reason: Schema.optional<Schema.String>;
|
|
3252
3520
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3284,6 +3552,9 @@ export declare const DeleteResourceV1beta2CollectionNamespacedResourceClaimTempl
|
|
|
3284
3552
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
3285
3553
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
3286
3554
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
3555
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
3556
|
+
readonly selector: Schema.String;
|
|
3557
|
+
}>>;
|
|
3287
3558
|
}>>;
|
|
3288
3559
|
readonly reason: Schema.optional<Schema.String>;
|
|
3289
3560
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3321,6 +3592,9 @@ export declare const DeleteResourceV1beta2CollectionResourceSliceOutput: Schema.
|
|
|
3321
3592
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
3322
3593
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
3323
3594
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
3595
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
3596
|
+
readonly selector: Schema.String;
|
|
3597
|
+
}>>;
|
|
3324
3598
|
}>>;
|
|
3325
3599
|
readonly reason: Schema.optional<Schema.String>;
|
|
3326
3600
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -3832,9 +4106,13 @@ export declare const DeleteResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
3832
4106
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
3833
4107
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
3834
4108
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
4109
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
3835
4110
|
readonly int: Schema.optional<Schema.Number>;
|
|
4111
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
3836
4112
|
readonly string: Schema.optional<Schema.String>;
|
|
4113
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3837
4114
|
readonly version: Schema.optional<Schema.String>;
|
|
4115
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3838
4116
|
}>>>;
|
|
3839
4117
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
3840
4118
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -3858,6 +4136,10 @@ export declare const DeleteResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
3858
4136
|
}>>;
|
|
3859
4137
|
}>>>;
|
|
3860
4138
|
readonly name: Schema.String;
|
|
4139
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
4140
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
4141
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
4142
|
+
}>>>;
|
|
3861
4143
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
3862
4144
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
3863
4145
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -4097,6 +4379,9 @@ export declare const ListResourceV1DeviceClassOutput: Schema.Struct<{
|
|
|
4097
4379
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4098
4380
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4099
4381
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
4382
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
4383
|
+
readonly selector: Schema.String;
|
|
4384
|
+
}>>;
|
|
4100
4385
|
}>>;
|
|
4101
4386
|
}>;
|
|
4102
4387
|
export type ListResourceV1DeviceClassOutput = typeof ListResourceV1DeviceClassOutput.Type;
|
|
@@ -4284,6 +4569,9 @@ export declare const ListResourceV1NamespacedResourceClaimOutput: Schema.Struct<
|
|
|
4284
4569
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4285
4570
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4286
4571
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
4572
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
4573
|
+
readonly selector: Schema.String;
|
|
4574
|
+
}>>;
|
|
4287
4575
|
}>>;
|
|
4288
4576
|
}>;
|
|
4289
4577
|
export type ListResourceV1NamespacedResourceClaimOutput = typeof ListResourceV1NamespacedResourceClaimOutput.Type;
|
|
@@ -4432,6 +4720,9 @@ export declare const ListResourceV1NamespacedResourceClaimTemplateOutput: Schema
|
|
|
4432
4720
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4433
4721
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4434
4722
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
4723
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
4724
|
+
readonly selector: Schema.String;
|
|
4725
|
+
}>>;
|
|
4435
4726
|
}>>;
|
|
4436
4727
|
}>;
|
|
4437
4728
|
export type ListResourceV1NamespacedResourceClaimTemplateOutput = typeof ListResourceV1NamespacedResourceClaimTemplateOutput.Type;
|
|
@@ -4619,6 +4910,9 @@ export declare const ListResourceV1ResourceClaimForAllNamespacesOutput: Schema.S
|
|
|
4619
4910
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4620
4911
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4621
4912
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
4913
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
4914
|
+
readonly selector: Schema.String;
|
|
4915
|
+
}>>;
|
|
4622
4916
|
}>>;
|
|
4623
4917
|
}>;
|
|
4624
4918
|
export type ListResourceV1ResourceClaimForAllNamespacesOutput = typeof ListResourceV1ResourceClaimForAllNamespacesOutput.Type;
|
|
@@ -4767,6 +5061,9 @@ export declare const ListResourceV1ResourceClaimTemplateForAllNamespacesOutput:
|
|
|
4767
5061
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4768
5062
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4769
5063
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5064
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5065
|
+
readonly selector: Schema.String;
|
|
5066
|
+
}>>;
|
|
4770
5067
|
}>>;
|
|
4771
5068
|
}>;
|
|
4772
5069
|
export type ListResourceV1ResourceClaimTemplateForAllNamespacesOutput = typeof ListResourceV1ResourceClaimTemplateForAllNamespacesOutput.Type;
|
|
@@ -4820,9 +5117,13 @@ export declare const ListResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
4820
5117
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
4821
5118
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
4822
5119
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
5120
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
4823
5121
|
readonly int: Schema.optional<Schema.Number>;
|
|
5122
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
4824
5123
|
readonly string: Schema.optional<Schema.String>;
|
|
5124
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
4825
5125
|
readonly version: Schema.optional<Schema.String>;
|
|
5126
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
4826
5127
|
}>>>;
|
|
4827
5128
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
4828
5129
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -4846,6 +5147,10 @@ export declare const ListResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
4846
5147
|
}>>;
|
|
4847
5148
|
}>>>;
|
|
4848
5149
|
readonly name: Schema.String;
|
|
5150
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
5151
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
5152
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
5153
|
+
}>>>;
|
|
4849
5154
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
4850
5155
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
4851
5156
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -4904,6 +5209,9 @@ export declare const ListResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
4904
5209
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4905
5210
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4906
5211
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5212
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5213
|
+
readonly selector: Schema.String;
|
|
5214
|
+
}>>;
|
|
4907
5215
|
}>>;
|
|
4908
5216
|
}>;
|
|
4909
5217
|
export type ListResourceV1ResourceSliceOutput = typeof ListResourceV1ResourceSliceOutput.Type;
|
|
@@ -4980,6 +5288,9 @@ export declare const ListResourceV1alpha3DeviceTaintRuleOutput: Schema.Struct<{
|
|
|
4980
5288
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
4981
5289
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
4982
5290
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5291
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5292
|
+
readonly selector: Schema.String;
|
|
5293
|
+
}>>;
|
|
4983
5294
|
}>>;
|
|
4984
5295
|
}>;
|
|
4985
5296
|
export type ListResourceV1alpha3DeviceTaintRuleOutput = typeof ListResourceV1alpha3DeviceTaintRuleOutput.Type;
|
|
@@ -4987,6 +5298,90 @@ export type ListResourceV1alpha3DeviceTaintRuleOutput = typeof ListResourceV1alp
|
|
|
4987
5298
|
* list or watch objects of kind DeviceTaintRule
|
|
4988
5299
|
*/
|
|
4989
5300
|
export declare const listResourceV1alpha3DeviceTaintRule: any;
|
|
5301
|
+
export declare const ListResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{}>;
|
|
5302
|
+
export type ListResourceV1alpha3ResourcePoolStatusRequestInput = typeof ListResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
5303
|
+
export declare const ListResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
5304
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
5305
|
+
readonly items: Schema.$Array<Schema.Struct<{
|
|
5306
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
5307
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
5308
|
+
readonly metadata: Schema.Struct<{
|
|
5309
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
5310
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
5311
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
5312
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
5313
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
5314
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
5315
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
5316
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
5317
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
5318
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
5319
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
5320
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
5321
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
5322
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
5323
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
5324
|
+
readonly time: Schema.optional<Schema.String>;
|
|
5325
|
+
}>>>;
|
|
5326
|
+
readonly name: Schema.optional<Schema.String>;
|
|
5327
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
5328
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
5329
|
+
readonly apiVersion: Schema.String;
|
|
5330
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
5331
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
5332
|
+
readonly kind: Schema.String;
|
|
5333
|
+
readonly name: Schema.String;
|
|
5334
|
+
readonly uid: Schema.String;
|
|
5335
|
+
}>>>;
|
|
5336
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5337
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
5338
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
5339
|
+
}>;
|
|
5340
|
+
readonly spec: Schema.Struct<{
|
|
5341
|
+
readonly driver: Schema.String;
|
|
5342
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
5343
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
5344
|
+
}>;
|
|
5345
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
5346
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
5347
|
+
readonly lastTransitionTime: Schema.String;
|
|
5348
|
+
readonly message: Schema.String;
|
|
5349
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
5350
|
+
readonly reason: Schema.String;
|
|
5351
|
+
readonly status: Schema.String;
|
|
5352
|
+
readonly type: Schema.String;
|
|
5353
|
+
}>>>;
|
|
5354
|
+
readonly poolCount: Schema.Number;
|
|
5355
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
5356
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
5357
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
5358
|
+
readonly driver: Schema.String;
|
|
5359
|
+
readonly generation: Schema.Number;
|
|
5360
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
5361
|
+
readonly poolName: Schema.String;
|
|
5362
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
5363
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
5364
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
5365
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
5366
|
+
}>>>;
|
|
5367
|
+
}>>;
|
|
5368
|
+
}>>;
|
|
5369
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
5370
|
+
readonly metadata: Schema.optional<Schema.Struct<{
|
|
5371
|
+
readonly continue: Schema.optional<Schema.String>;
|
|
5372
|
+
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5373
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5374
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
5375
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5376
|
+
readonly selector: Schema.String;
|
|
5377
|
+
}>>;
|
|
5378
|
+
}>>;
|
|
5379
|
+
}>;
|
|
5380
|
+
export type ListResourceV1alpha3ResourcePoolStatusRequestOutput = typeof ListResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
5381
|
+
/**
|
|
5382
|
+
* list or watch objects of kind ResourcePoolStatusRequest
|
|
5383
|
+
*/
|
|
5384
|
+
export declare const listResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
4990
5385
|
export declare const ListResourceV1beta1DeviceClassInput: Schema.Struct<{}>;
|
|
4991
5386
|
export type ListResourceV1beta1DeviceClassInput = typeof ListResourceV1beta1DeviceClassInput.Type;
|
|
4992
5387
|
export declare const ListResourceV1beta1DeviceClassOutput: Schema.Struct<{
|
|
@@ -5047,6 +5442,9 @@ export declare const ListResourceV1beta1DeviceClassOutput: Schema.Struct<{
|
|
|
5047
5442
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5048
5443
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5049
5444
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5445
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5446
|
+
readonly selector: Schema.String;
|
|
5447
|
+
}>>;
|
|
5050
5448
|
}>>;
|
|
5051
5449
|
}>;
|
|
5052
5450
|
export type ListResourceV1beta1DeviceClassOutput = typeof ListResourceV1beta1DeviceClassOutput.Type;
|
|
@@ -5232,6 +5630,9 @@ export declare const ListResourceV1beta1NamespacedResourceClaimOutput: Schema.St
|
|
|
5232
5630
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5233
5631
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5234
5632
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5633
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5634
|
+
readonly selector: Schema.String;
|
|
5635
|
+
}>>;
|
|
5235
5636
|
}>>;
|
|
5236
5637
|
}>;
|
|
5237
5638
|
export type ListResourceV1beta1NamespacedResourceClaimOutput = typeof ListResourceV1beta1NamespacedResourceClaimOutput.Type;
|
|
@@ -5378,6 +5779,9 @@ export declare const ListResourceV1beta1NamespacedResourceClaimTemplateOutput: S
|
|
|
5378
5779
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5379
5780
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5380
5781
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5782
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5783
|
+
readonly selector: Schema.String;
|
|
5784
|
+
}>>;
|
|
5381
5785
|
}>>;
|
|
5382
5786
|
}>;
|
|
5383
5787
|
export type ListResourceV1beta1NamespacedResourceClaimTemplateOutput = typeof ListResourceV1beta1NamespacedResourceClaimTemplateOutput.Type;
|
|
@@ -5563,6 +5967,9 @@ export declare const ListResourceV1beta1ResourceClaimForAllNamespacesOutput: Sch
|
|
|
5563
5967
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5564
5968
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5565
5969
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
5970
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
5971
|
+
readonly selector: Schema.String;
|
|
5972
|
+
}>>;
|
|
5566
5973
|
}>>;
|
|
5567
5974
|
}>;
|
|
5568
5975
|
export type ListResourceV1beta1ResourceClaimForAllNamespacesOutput = typeof ListResourceV1beta1ResourceClaimForAllNamespacesOutput.Type;
|
|
@@ -5709,6 +6116,9 @@ export declare const ListResourceV1beta1ResourceClaimTemplateForAllNamespacesOut
|
|
|
5709
6116
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5710
6117
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5711
6118
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6119
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6120
|
+
readonly selector: Schema.String;
|
|
6121
|
+
}>>;
|
|
5712
6122
|
}>>;
|
|
5713
6123
|
}>;
|
|
5714
6124
|
export type ListResourceV1beta1ResourceClaimTemplateForAllNamespacesOutput = typeof ListResourceV1beta1ResourceClaimTemplateForAllNamespacesOutput.Type;
|
|
@@ -5763,9 +6173,13 @@ export declare const ListResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
5763
6173
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
5764
6174
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
5765
6175
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
6176
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
5766
6177
|
readonly int: Schema.optional<Schema.Number>;
|
|
6178
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
5767
6179
|
readonly string: Schema.optional<Schema.String>;
|
|
6180
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
5768
6181
|
readonly version: Schema.optional<Schema.String>;
|
|
6182
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
5769
6183
|
}>>>;
|
|
5770
6184
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
5771
6185
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -5788,6 +6202,10 @@ export declare const ListResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
5788
6202
|
readonly value: Schema.String;
|
|
5789
6203
|
}>>;
|
|
5790
6204
|
}>>>;
|
|
6205
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
6206
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
6207
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
6208
|
+
}>>>;
|
|
5791
6209
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
5792
6210
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
5793
6211
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -5848,6 +6266,9 @@ export declare const ListResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
5848
6266
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5849
6267
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5850
6268
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6269
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6270
|
+
readonly selector: Schema.String;
|
|
6271
|
+
}>>;
|
|
5851
6272
|
}>>;
|
|
5852
6273
|
}>;
|
|
5853
6274
|
export type ListResourceV1beta1ResourceSliceOutput = typeof ListResourceV1beta1ResourceSliceOutput.Type;
|
|
@@ -5915,6 +6336,9 @@ export declare const ListResourceV1beta2DeviceClassOutput: Schema.Struct<{
|
|
|
5915
6336
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5916
6337
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5917
6338
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6339
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6340
|
+
readonly selector: Schema.String;
|
|
6341
|
+
}>>;
|
|
5918
6342
|
}>>;
|
|
5919
6343
|
}>;
|
|
5920
6344
|
export type ListResourceV1beta2DeviceClassOutput = typeof ListResourceV1beta2DeviceClassOutput.Type;
|
|
@@ -5991,6 +6415,9 @@ export declare const ListResourceV1beta2DeviceTaintRuleOutput: Schema.Struct<{
|
|
|
5991
6415
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
5992
6416
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
5993
6417
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6418
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6419
|
+
readonly selector: Schema.String;
|
|
6420
|
+
}>>;
|
|
5994
6421
|
}>>;
|
|
5995
6422
|
}>;
|
|
5996
6423
|
export type ListResourceV1beta2DeviceTaintRuleOutput = typeof ListResourceV1beta2DeviceTaintRuleOutput.Type;
|
|
@@ -6178,6 +6605,9 @@ export declare const ListResourceV1beta2NamespacedResourceClaimOutput: Schema.St
|
|
|
6178
6605
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6179
6606
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6180
6607
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6608
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6609
|
+
readonly selector: Schema.String;
|
|
6610
|
+
}>>;
|
|
6181
6611
|
}>>;
|
|
6182
6612
|
}>;
|
|
6183
6613
|
export type ListResourceV1beta2NamespacedResourceClaimOutput = typeof ListResourceV1beta2NamespacedResourceClaimOutput.Type;
|
|
@@ -6326,6 +6756,9 @@ export declare const ListResourceV1beta2NamespacedResourceClaimTemplateOutput: S
|
|
|
6326
6756
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6327
6757
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6328
6758
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6759
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6760
|
+
readonly selector: Schema.String;
|
|
6761
|
+
}>>;
|
|
6329
6762
|
}>>;
|
|
6330
6763
|
}>;
|
|
6331
6764
|
export type ListResourceV1beta2NamespacedResourceClaimTemplateOutput = typeof ListResourceV1beta2NamespacedResourceClaimTemplateOutput.Type;
|
|
@@ -6513,6 +6946,9 @@ export declare const ListResourceV1beta2ResourceClaimForAllNamespacesOutput: Sch
|
|
|
6513
6946
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6514
6947
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6515
6948
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6949
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6950
|
+
readonly selector: Schema.String;
|
|
6951
|
+
}>>;
|
|
6516
6952
|
}>>;
|
|
6517
6953
|
}>;
|
|
6518
6954
|
export type ListResourceV1beta2ResourceClaimForAllNamespacesOutput = typeof ListResourceV1beta2ResourceClaimForAllNamespacesOutput.Type;
|
|
@@ -6661,6 +7097,9 @@ export declare const ListResourceV1beta2ResourceClaimTemplateForAllNamespacesOut
|
|
|
6661
7097
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6662
7098
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6663
7099
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7100
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7101
|
+
readonly selector: Schema.String;
|
|
7102
|
+
}>>;
|
|
6664
7103
|
}>>;
|
|
6665
7104
|
}>;
|
|
6666
7105
|
export type ListResourceV1beta2ResourceClaimTemplateForAllNamespacesOutput = typeof ListResourceV1beta2ResourceClaimTemplateForAllNamespacesOutput.Type;
|
|
@@ -6714,9 +7153,13 @@ export declare const ListResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
6714
7153
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
6715
7154
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
6716
7155
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
7156
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
6717
7157
|
readonly int: Schema.optional<Schema.Number>;
|
|
7158
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
6718
7159
|
readonly string: Schema.optional<Schema.String>;
|
|
7160
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
6719
7161
|
readonly version: Schema.optional<Schema.String>;
|
|
7162
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
6720
7163
|
}>>>;
|
|
6721
7164
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
6722
7165
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -6740,6 +7183,10 @@ export declare const ListResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
6740
7183
|
}>>;
|
|
6741
7184
|
}>>>;
|
|
6742
7185
|
readonly name: Schema.String;
|
|
7186
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
7187
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
7188
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
7189
|
+
}>>>;
|
|
6743
7190
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
6744
7191
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
6745
7192
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -6798,6 +7245,9 @@ export declare const ListResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
6798
7245
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6799
7246
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6800
7247
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7248
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7249
|
+
readonly selector: Schema.String;
|
|
7250
|
+
}>>;
|
|
6801
7251
|
}>>;
|
|
6802
7252
|
}>;
|
|
6803
7253
|
export type ListResourceV1beta2ResourceSliceOutput = typeof ListResourceV1beta2ResourceSliceOutput.Type;
|
|
@@ -7425,9 +7875,13 @@ export declare const PatchResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
7425
7875
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
7426
7876
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
7427
7877
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
7878
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
7428
7879
|
readonly int: Schema.optional<Schema.Number>;
|
|
7880
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
7429
7881
|
readonly string: Schema.optional<Schema.String>;
|
|
7882
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
7430
7883
|
readonly version: Schema.optional<Schema.String>;
|
|
7884
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
7431
7885
|
}>>>;
|
|
7432
7886
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
7433
7887
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -7451,6 +7905,10 @@ export declare const PatchResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
7451
7905
|
}>>;
|
|
7452
7906
|
}>>>;
|
|
7453
7907
|
readonly name: Schema.String;
|
|
7908
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
7909
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
7910
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
7911
|
+
}>>>;
|
|
7454
7912
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
7455
7913
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
7456
7914
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -7655,6 +8113,160 @@ export type PatchResourceV1alpha3DeviceTaintRuleStatusOutput = typeof PatchResou
|
|
|
7655
8113
|
* @param fieldValidation - 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.
|
|
7656
8114
|
*/
|
|
7657
8115
|
export declare const patchResourceV1alpha3DeviceTaintRuleStatus: any;
|
|
8116
|
+
export declare const PatchResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{
|
|
8117
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
8118
|
+
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
8119
|
+
}>;
|
|
8120
|
+
export type PatchResourceV1alpha3ResourcePoolStatusRequestInput = typeof PatchResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
8121
|
+
export declare const PatchResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
8122
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
8123
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
8124
|
+
readonly metadata: Schema.Struct<{
|
|
8125
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
8126
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
8127
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
8128
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
8129
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8130
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
8131
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
8132
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
8133
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8134
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
8135
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
8136
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
8137
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
8138
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
8139
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
8140
|
+
readonly time: Schema.optional<Schema.String>;
|
|
8141
|
+
}>>>;
|
|
8142
|
+
readonly name: Schema.optional<Schema.String>;
|
|
8143
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
8144
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8145
|
+
readonly apiVersion: Schema.String;
|
|
8146
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
8147
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
8148
|
+
readonly kind: Schema.String;
|
|
8149
|
+
readonly name: Schema.String;
|
|
8150
|
+
readonly uid: Schema.String;
|
|
8151
|
+
}>>>;
|
|
8152
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
8153
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
8154
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
8155
|
+
}>;
|
|
8156
|
+
readonly spec: Schema.Struct<{
|
|
8157
|
+
readonly driver: Schema.String;
|
|
8158
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
8159
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
8160
|
+
}>;
|
|
8161
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
8162
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8163
|
+
readonly lastTransitionTime: Schema.String;
|
|
8164
|
+
readonly message: Schema.String;
|
|
8165
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
8166
|
+
readonly reason: Schema.String;
|
|
8167
|
+
readonly status: Schema.String;
|
|
8168
|
+
readonly type: Schema.String;
|
|
8169
|
+
}>>>;
|
|
8170
|
+
readonly poolCount: Schema.Number;
|
|
8171
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8172
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
8173
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
8174
|
+
readonly driver: Schema.String;
|
|
8175
|
+
readonly generation: Schema.Number;
|
|
8176
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
8177
|
+
readonly poolName: Schema.String;
|
|
8178
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
8179
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
8180
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
8181
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
8182
|
+
}>>>;
|
|
8183
|
+
}>>;
|
|
8184
|
+
}>;
|
|
8185
|
+
export type PatchResourceV1alpha3ResourcePoolStatusRequestOutput = typeof PatchResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
8186
|
+
/**
|
|
8187
|
+
* partially update the specified ResourcePoolStatusRequest
|
|
8188
|
+
*
|
|
8189
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
8190
|
+
* @param fieldValidation - 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.
|
|
8191
|
+
*/
|
|
8192
|
+
export declare const patchResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
8193
|
+
export declare const PatchResourceV1alpha3ResourcePoolStatusRequestStatusInput: Schema.Struct<{
|
|
8194
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
8195
|
+
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
8196
|
+
}>;
|
|
8197
|
+
export type PatchResourceV1alpha3ResourcePoolStatusRequestStatusInput = typeof PatchResourceV1alpha3ResourcePoolStatusRequestStatusInput.Type;
|
|
8198
|
+
export declare const PatchResourceV1alpha3ResourcePoolStatusRequestStatusOutput: Schema.Struct<{
|
|
8199
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
8200
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
8201
|
+
readonly metadata: Schema.Struct<{
|
|
8202
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
8203
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
8204
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
8205
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
8206
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8207
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
8208
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
8209
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
8210
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8211
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
8212
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
8213
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
8214
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
8215
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
8216
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
8217
|
+
readonly time: Schema.optional<Schema.String>;
|
|
8218
|
+
}>>>;
|
|
8219
|
+
readonly name: Schema.optional<Schema.String>;
|
|
8220
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
8221
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8222
|
+
readonly apiVersion: Schema.String;
|
|
8223
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
8224
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
8225
|
+
readonly kind: Schema.String;
|
|
8226
|
+
readonly name: Schema.String;
|
|
8227
|
+
readonly uid: Schema.String;
|
|
8228
|
+
}>>>;
|
|
8229
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
8230
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
8231
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
8232
|
+
}>;
|
|
8233
|
+
readonly spec: Schema.Struct<{
|
|
8234
|
+
readonly driver: Schema.String;
|
|
8235
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
8236
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
8237
|
+
}>;
|
|
8238
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
8239
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8240
|
+
readonly lastTransitionTime: Schema.String;
|
|
8241
|
+
readonly message: Schema.String;
|
|
8242
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
8243
|
+
readonly reason: Schema.String;
|
|
8244
|
+
readonly status: Schema.String;
|
|
8245
|
+
readonly type: Schema.String;
|
|
8246
|
+
}>>>;
|
|
8247
|
+
readonly poolCount: Schema.Number;
|
|
8248
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8249
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
8250
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
8251
|
+
readonly driver: Schema.String;
|
|
8252
|
+
readonly generation: Schema.Number;
|
|
8253
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
8254
|
+
readonly poolName: Schema.String;
|
|
8255
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
8256
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
8257
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
8258
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
8259
|
+
}>>>;
|
|
8260
|
+
}>>;
|
|
8261
|
+
}>;
|
|
8262
|
+
export type PatchResourceV1alpha3ResourcePoolStatusRequestStatusOutput = typeof PatchResourceV1alpha3ResourcePoolStatusRequestStatusOutput.Type;
|
|
8263
|
+
/**
|
|
8264
|
+
* partially update status of the specified ResourcePoolStatusRequest
|
|
8265
|
+
*
|
|
8266
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
8267
|
+
* @param fieldValidation - 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.
|
|
8268
|
+
*/
|
|
8269
|
+
export declare const patchResourceV1alpha3ResourcePoolStatusRequestStatus: any;
|
|
7658
8270
|
export declare const PatchResourceV1beta1DeviceClassInput: Schema.Struct<{
|
|
7659
8271
|
readonly dryRun: Schema.optional<Schema.String>;
|
|
7660
8272
|
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
@@ -8270,9 +8882,13 @@ export declare const PatchResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
8270
8882
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
8271
8883
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
8272
8884
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
8885
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
8273
8886
|
readonly int: Schema.optional<Schema.Number>;
|
|
8887
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
8274
8888
|
readonly string: Schema.optional<Schema.String>;
|
|
8889
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8275
8890
|
readonly version: Schema.optional<Schema.String>;
|
|
8891
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8276
8892
|
}>>>;
|
|
8277
8893
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8278
8894
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -8295,6 +8911,10 @@ export declare const PatchResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
8295
8911
|
readonly value: Schema.String;
|
|
8296
8912
|
}>>;
|
|
8297
8913
|
}>>>;
|
|
8914
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
8915
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
8916
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
8917
|
+
}>>>;
|
|
8298
8918
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
8299
8919
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
8300
8920
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -9121,9 +9741,13 @@ export declare const PatchResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
9121
9741
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
9122
9742
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
9123
9743
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
9744
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
9124
9745
|
readonly int: Schema.optional<Schema.Number>;
|
|
9746
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
9125
9747
|
readonly string: Schema.optional<Schema.String>;
|
|
9748
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9126
9749
|
readonly version: Schema.optional<Schema.String>;
|
|
9750
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9127
9751
|
}>>>;
|
|
9128
9752
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9129
9753
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -9147,6 +9771,10 @@ export declare const PatchResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
9147
9771
|
}>>;
|
|
9148
9772
|
}>>>;
|
|
9149
9773
|
readonly name: Schema.String;
|
|
9774
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
9775
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
9776
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
9777
|
+
}>>>;
|
|
9150
9778
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
9151
9779
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
9152
9780
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -9800,9 +10428,13 @@ export declare const ReadResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
9800
10428
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
9801
10429
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
9802
10430
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
10431
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
9803
10432
|
readonly int: Schema.optional<Schema.Number>;
|
|
10433
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
9804
10434
|
readonly string: Schema.optional<Schema.String>;
|
|
10435
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9805
10436
|
readonly version: Schema.optional<Schema.String>;
|
|
10437
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9806
10438
|
}>>>;
|
|
9807
10439
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
9808
10440
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -9826,6 +10458,10 @@ export declare const ReadResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
9826
10458
|
}>>;
|
|
9827
10459
|
}>>>;
|
|
9828
10460
|
readonly name: Schema.String;
|
|
10461
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
10462
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
10463
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
10464
|
+
}>>>;
|
|
9829
10465
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
9830
10466
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
9831
10467
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -10015,6 +10651,148 @@ export type ReadResourceV1alpha3DeviceTaintRuleStatusOutput = typeof ReadResourc
|
|
|
10015
10651
|
* read status of the specified DeviceTaintRule
|
|
10016
10652
|
*/
|
|
10017
10653
|
export declare const readResourceV1alpha3DeviceTaintRuleStatus: any;
|
|
10654
|
+
export declare const ReadResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{}>;
|
|
10655
|
+
export type ReadResourceV1alpha3ResourcePoolStatusRequestInput = typeof ReadResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
10656
|
+
export declare const ReadResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
10657
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
10658
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
10659
|
+
readonly metadata: Schema.Struct<{
|
|
10660
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
10661
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
10662
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
10663
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
10664
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
10665
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
10666
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
10667
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
10668
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10669
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
10670
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
10671
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
10672
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
10673
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
10674
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
10675
|
+
readonly time: Schema.optional<Schema.String>;
|
|
10676
|
+
}>>>;
|
|
10677
|
+
readonly name: Schema.optional<Schema.String>;
|
|
10678
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
10679
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10680
|
+
readonly apiVersion: Schema.String;
|
|
10681
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
10682
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
10683
|
+
readonly kind: Schema.String;
|
|
10684
|
+
readonly name: Schema.String;
|
|
10685
|
+
readonly uid: Schema.String;
|
|
10686
|
+
}>>>;
|
|
10687
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
10688
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
10689
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
10690
|
+
}>;
|
|
10691
|
+
readonly spec: Schema.Struct<{
|
|
10692
|
+
readonly driver: Schema.String;
|
|
10693
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
10694
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
10695
|
+
}>;
|
|
10696
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
10697
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10698
|
+
readonly lastTransitionTime: Schema.String;
|
|
10699
|
+
readonly message: Schema.String;
|
|
10700
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
10701
|
+
readonly reason: Schema.String;
|
|
10702
|
+
readonly status: Schema.String;
|
|
10703
|
+
readonly type: Schema.String;
|
|
10704
|
+
}>>>;
|
|
10705
|
+
readonly poolCount: Schema.Number;
|
|
10706
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10707
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
10708
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
10709
|
+
readonly driver: Schema.String;
|
|
10710
|
+
readonly generation: Schema.Number;
|
|
10711
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
10712
|
+
readonly poolName: Schema.String;
|
|
10713
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
10714
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
10715
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
10716
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
10717
|
+
}>>>;
|
|
10718
|
+
}>>;
|
|
10719
|
+
}>;
|
|
10720
|
+
export type ReadResourceV1alpha3ResourcePoolStatusRequestOutput = typeof ReadResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
10721
|
+
/**
|
|
10722
|
+
* read the specified ResourcePoolStatusRequest
|
|
10723
|
+
*/
|
|
10724
|
+
export declare const readResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
10725
|
+
export declare const ReadResourceV1alpha3ResourcePoolStatusRequestStatusInput: Schema.Struct<{}>;
|
|
10726
|
+
export type ReadResourceV1alpha3ResourcePoolStatusRequestStatusInput = typeof ReadResourceV1alpha3ResourcePoolStatusRequestStatusInput.Type;
|
|
10727
|
+
export declare const ReadResourceV1alpha3ResourcePoolStatusRequestStatusOutput: Schema.Struct<{
|
|
10728
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
10729
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
10730
|
+
readonly metadata: Schema.Struct<{
|
|
10731
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
10732
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
10733
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
10734
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
10735
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
10736
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
10737
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
10738
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
10739
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10740
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
10741
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
10742
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
10743
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
10744
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
10745
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
10746
|
+
readonly time: Schema.optional<Schema.String>;
|
|
10747
|
+
}>>>;
|
|
10748
|
+
readonly name: Schema.optional<Schema.String>;
|
|
10749
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
10750
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10751
|
+
readonly apiVersion: Schema.String;
|
|
10752
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
10753
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
10754
|
+
readonly kind: Schema.String;
|
|
10755
|
+
readonly name: Schema.String;
|
|
10756
|
+
readonly uid: Schema.String;
|
|
10757
|
+
}>>>;
|
|
10758
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
10759
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
10760
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
10761
|
+
}>;
|
|
10762
|
+
readonly spec: Schema.Struct<{
|
|
10763
|
+
readonly driver: Schema.String;
|
|
10764
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
10765
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
10766
|
+
}>;
|
|
10767
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
10768
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10769
|
+
readonly lastTransitionTime: Schema.String;
|
|
10770
|
+
readonly message: Schema.String;
|
|
10771
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
10772
|
+
readonly reason: Schema.String;
|
|
10773
|
+
readonly status: Schema.String;
|
|
10774
|
+
readonly type: Schema.String;
|
|
10775
|
+
}>>>;
|
|
10776
|
+
readonly poolCount: Schema.Number;
|
|
10777
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
10778
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
10779
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
10780
|
+
readonly driver: Schema.String;
|
|
10781
|
+
readonly generation: Schema.Number;
|
|
10782
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
10783
|
+
readonly poolName: Schema.String;
|
|
10784
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
10785
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
10786
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
10787
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
10788
|
+
}>>>;
|
|
10789
|
+
}>>;
|
|
10790
|
+
}>;
|
|
10791
|
+
export type ReadResourceV1alpha3ResourcePoolStatusRequestStatusOutput = typeof ReadResourceV1alpha3ResourcePoolStatusRequestStatusOutput.Type;
|
|
10792
|
+
/**
|
|
10793
|
+
* read status of the specified ResourcePoolStatusRequest
|
|
10794
|
+
*/
|
|
10795
|
+
export declare const readResourceV1alpha3ResourcePoolStatusRequestStatus: any;
|
|
10018
10796
|
export declare const ReadResourceV1beta1DeviceClassInput: Schema.Struct<{}>;
|
|
10019
10797
|
export type ReadResourceV1beta1DeviceClassInput = typeof ReadResourceV1beta1DeviceClassInput.Type;
|
|
10020
10798
|
export declare const ReadResourceV1beta1DeviceClassOutput: Schema.Struct<{
|
|
@@ -10603,9 +11381,13 @@ export declare const ReadResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
10603
11381
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
10604
11382
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
10605
11383
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
11384
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
10606
11385
|
readonly int: Schema.optional<Schema.Number>;
|
|
11386
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
10607
11387
|
readonly string: Schema.optional<Schema.String>;
|
|
11388
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
10608
11389
|
readonly version: Schema.optional<Schema.String>;
|
|
11390
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
10609
11391
|
}>>>;
|
|
10610
11392
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
10611
11393
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -10628,6 +11410,10 @@ export declare const ReadResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
10628
11410
|
readonly value: Schema.String;
|
|
10629
11411
|
}>>;
|
|
10630
11412
|
}>>>;
|
|
11413
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
11414
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
11415
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
11416
|
+
}>>>;
|
|
10631
11417
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
10632
11418
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
10633
11419
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -11412,9 +12198,13 @@ export declare const ReadResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
11412
12198
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
11413
12199
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
11414
12200
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
12201
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
11415
12202
|
readonly int: Schema.optional<Schema.Number>;
|
|
12203
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
11416
12204
|
readonly string: Schema.optional<Schema.String>;
|
|
12205
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
11417
12206
|
readonly version: Schema.optional<Schema.String>;
|
|
12207
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
11418
12208
|
}>>>;
|
|
11419
12209
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
11420
12210
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -11438,6 +12228,10 @@ export declare const ReadResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
11438
12228
|
}>>;
|
|
11439
12229
|
}>>>;
|
|
11440
12230
|
readonly name: Schema.String;
|
|
12231
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
12232
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
12233
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
12234
|
+
}>>>;
|
|
11441
12235
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
11442
12236
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
11443
12237
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -12115,9 +12909,13 @@ export declare const ReplaceResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
12115
12909
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
12116
12910
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
12117
12911
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
12912
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
12118
12913
|
readonly int: Schema.optional<Schema.Number>;
|
|
12914
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
12119
12915
|
readonly string: Schema.optional<Schema.String>;
|
|
12916
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12120
12917
|
readonly version: Schema.optional<Schema.String>;
|
|
12918
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12121
12919
|
}>>>;
|
|
12122
12920
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12123
12921
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -12141,6 +12939,10 @@ export declare const ReplaceResourceV1ResourceSliceOutput: Schema.Struct<{
|
|
|
12141
12939
|
}>>;
|
|
12142
12940
|
}>>>;
|
|
12143
12941
|
readonly name: Schema.String;
|
|
12942
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
12943
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
12944
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
12945
|
+
}>>>;
|
|
12144
12946
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
12145
12947
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
12146
12948
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -12345,6 +13147,160 @@ export type ReplaceResourceV1alpha3DeviceTaintRuleStatusOutput = typeof ReplaceR
|
|
|
12345
13147
|
* @param fieldValidation - 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.
|
|
12346
13148
|
*/
|
|
12347
13149
|
export declare const replaceResourceV1alpha3DeviceTaintRuleStatus: any;
|
|
13150
|
+
export declare const ReplaceResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{
|
|
13151
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
13152
|
+
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
13153
|
+
}>;
|
|
13154
|
+
export type ReplaceResourceV1alpha3ResourcePoolStatusRequestInput = typeof ReplaceResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
13155
|
+
export declare const ReplaceResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
13156
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
13157
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
13158
|
+
readonly metadata: Schema.Struct<{
|
|
13159
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
13160
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
13161
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
13162
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
13163
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13164
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
13165
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
13166
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
13167
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13168
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
13169
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
13170
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
13171
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
13172
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
13173
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
13174
|
+
readonly time: Schema.optional<Schema.String>;
|
|
13175
|
+
}>>>;
|
|
13176
|
+
readonly name: Schema.optional<Schema.String>;
|
|
13177
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
13178
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13179
|
+
readonly apiVersion: Schema.String;
|
|
13180
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
13181
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
13182
|
+
readonly kind: Schema.String;
|
|
13183
|
+
readonly name: Schema.String;
|
|
13184
|
+
readonly uid: Schema.String;
|
|
13185
|
+
}>>>;
|
|
13186
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
13187
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
13188
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
13189
|
+
}>;
|
|
13190
|
+
readonly spec: Schema.Struct<{
|
|
13191
|
+
readonly driver: Schema.String;
|
|
13192
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
13193
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
13194
|
+
}>;
|
|
13195
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
13196
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13197
|
+
readonly lastTransitionTime: Schema.String;
|
|
13198
|
+
readonly message: Schema.String;
|
|
13199
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
13200
|
+
readonly reason: Schema.String;
|
|
13201
|
+
readonly status: Schema.String;
|
|
13202
|
+
readonly type: Schema.String;
|
|
13203
|
+
}>>>;
|
|
13204
|
+
readonly poolCount: Schema.Number;
|
|
13205
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13206
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
13207
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
13208
|
+
readonly driver: Schema.String;
|
|
13209
|
+
readonly generation: Schema.Number;
|
|
13210
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
13211
|
+
readonly poolName: Schema.String;
|
|
13212
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
13213
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
13214
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
13215
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
13216
|
+
}>>>;
|
|
13217
|
+
}>>;
|
|
13218
|
+
}>;
|
|
13219
|
+
export type ReplaceResourceV1alpha3ResourcePoolStatusRequestOutput = typeof ReplaceResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
13220
|
+
/**
|
|
13221
|
+
* replace the specified ResourcePoolStatusRequest
|
|
13222
|
+
*
|
|
13223
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
13224
|
+
* @param fieldValidation - 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.
|
|
13225
|
+
*/
|
|
13226
|
+
export declare const replaceResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
13227
|
+
export declare const ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusInput: Schema.Struct<{
|
|
13228
|
+
readonly dryRun: Schema.optional<Schema.String>;
|
|
13229
|
+
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
13230
|
+
}>;
|
|
13231
|
+
export type ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusInput = typeof ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusInput.Type;
|
|
13232
|
+
export declare const ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusOutput: Schema.Struct<{
|
|
13233
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
13234
|
+
readonly kind: Schema.optional<Schema.String>;
|
|
13235
|
+
readonly metadata: Schema.Struct<{
|
|
13236
|
+
readonly annotations: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
13237
|
+
readonly creationTimestamp: Schema.optional<Schema.String>;
|
|
13238
|
+
readonly deletionGracePeriodSeconds: Schema.optional<Schema.Number>;
|
|
13239
|
+
readonly deletionTimestamp: Schema.optional<Schema.String>;
|
|
13240
|
+
readonly finalizers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13241
|
+
readonly generateName: Schema.optional<Schema.String>;
|
|
13242
|
+
readonly generation: Schema.optional<Schema.Number>;
|
|
13243
|
+
readonly labels: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
13244
|
+
readonly managedFields: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13245
|
+
readonly apiVersion: Schema.optional<Schema.String>;
|
|
13246
|
+
readonly fieldsType: Schema.optional<Schema.String>;
|
|
13247
|
+
readonly fieldsV1: Schema.optional<Schema.Unknown>;
|
|
13248
|
+
readonly manager: Schema.optional<Schema.String>;
|
|
13249
|
+
readonly operation: Schema.optional<Schema.String>;
|
|
13250
|
+
readonly subresource: Schema.optional<Schema.String>;
|
|
13251
|
+
readonly time: Schema.optional<Schema.String>;
|
|
13252
|
+
}>>>;
|
|
13253
|
+
readonly name: Schema.optional<Schema.String>;
|
|
13254
|
+
readonly namespace: Schema.optional<Schema.String>;
|
|
13255
|
+
readonly ownerReferences: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13256
|
+
readonly apiVersion: Schema.String;
|
|
13257
|
+
readonly blockOwnerDeletion: Schema.optional<Schema.Boolean>;
|
|
13258
|
+
readonly controller: Schema.optional<Schema.Boolean>;
|
|
13259
|
+
readonly kind: Schema.String;
|
|
13260
|
+
readonly name: Schema.String;
|
|
13261
|
+
readonly uid: Schema.String;
|
|
13262
|
+
}>>>;
|
|
13263
|
+
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
13264
|
+
readonly selfLink: Schema.optional<Schema.String>;
|
|
13265
|
+
readonly uid: Schema.optional<Schema.String>;
|
|
13266
|
+
}>;
|
|
13267
|
+
readonly spec: Schema.Struct<{
|
|
13268
|
+
readonly driver: Schema.String;
|
|
13269
|
+
readonly limit: Schema.optional<Schema.Number>;
|
|
13270
|
+
readonly poolName: Schema.optional<Schema.String>;
|
|
13271
|
+
}>;
|
|
13272
|
+
readonly status: Schema.optional<Schema.Struct<{
|
|
13273
|
+
readonly conditions: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13274
|
+
readonly lastTransitionTime: Schema.String;
|
|
13275
|
+
readonly message: Schema.String;
|
|
13276
|
+
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
13277
|
+
readonly reason: Schema.String;
|
|
13278
|
+
readonly status: Schema.String;
|
|
13279
|
+
readonly type: Schema.String;
|
|
13280
|
+
}>>>;
|
|
13281
|
+
readonly poolCount: Schema.Number;
|
|
13282
|
+
readonly pools: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13283
|
+
readonly allocatedDevices: Schema.optional<Schema.Number>;
|
|
13284
|
+
readonly availableDevices: Schema.optional<Schema.Number>;
|
|
13285
|
+
readonly driver: Schema.String;
|
|
13286
|
+
readonly generation: Schema.Number;
|
|
13287
|
+
readonly nodeName: Schema.optional<Schema.String>;
|
|
13288
|
+
readonly poolName: Schema.String;
|
|
13289
|
+
readonly resourceSliceCount: Schema.optional<Schema.Number>;
|
|
13290
|
+
readonly totalDevices: Schema.optional<Schema.Number>;
|
|
13291
|
+
readonly unavailableDevices: Schema.optional<Schema.Number>;
|
|
13292
|
+
readonly validationError: Schema.optional<Schema.String>;
|
|
13293
|
+
}>>>;
|
|
13294
|
+
}>>;
|
|
13295
|
+
}>;
|
|
13296
|
+
export type ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusOutput = typeof ReplaceResourceV1alpha3ResourcePoolStatusRequestStatusOutput.Type;
|
|
13297
|
+
/**
|
|
13298
|
+
* replace status of the specified ResourcePoolStatusRequest
|
|
13299
|
+
*
|
|
13300
|
+
* @param dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
13301
|
+
* @param fieldValidation - 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.
|
|
13302
|
+
*/
|
|
13303
|
+
export declare const replaceResourceV1alpha3ResourcePoolStatusRequestStatus: any;
|
|
12348
13304
|
export declare const ReplaceResourceV1beta1DeviceClassInput: Schema.Struct<{
|
|
12349
13305
|
readonly dryRun: Schema.optional<Schema.String>;
|
|
12350
13306
|
readonly fieldValidation: Schema.optional<Schema.String>;
|
|
@@ -12960,9 +13916,13 @@ export declare const ReplaceResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
12960
13916
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
12961
13917
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
12962
13918
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
13919
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
12963
13920
|
readonly int: Schema.optional<Schema.Number>;
|
|
13921
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
12964
13922
|
readonly string: Schema.optional<Schema.String>;
|
|
13923
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12965
13924
|
readonly version: Schema.optional<Schema.String>;
|
|
13925
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12966
13926
|
}>>>;
|
|
12967
13927
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
12968
13928
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -12985,6 +13945,10 @@ export declare const ReplaceResourceV1beta1ResourceSliceOutput: Schema.Struct<{
|
|
|
12985
13945
|
readonly value: Schema.String;
|
|
12986
13946
|
}>>;
|
|
12987
13947
|
}>>>;
|
|
13948
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
13949
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
13950
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
13951
|
+
}>>>;
|
|
12988
13952
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
12989
13953
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
12990
13954
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -13811,9 +14775,13 @@ export declare const ReplaceResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
13811
14775
|
readonly allowMultipleAllocations: Schema.optional<Schema.Boolean>;
|
|
13812
14776
|
readonly attributes: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
13813
14777
|
readonly bool: Schema.optional<Schema.Boolean>;
|
|
14778
|
+
readonly bools: Schema.optional<Schema.$Array<Schema.Boolean>>;
|
|
13814
14779
|
readonly int: Schema.optional<Schema.Number>;
|
|
14780
|
+
readonly ints: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
13815
14781
|
readonly string: Schema.optional<Schema.String>;
|
|
14782
|
+
readonly strings: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13816
14783
|
readonly version: Schema.optional<Schema.String>;
|
|
14784
|
+
readonly versions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13817
14785
|
}>>>;
|
|
13818
14786
|
readonly bindingConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13819
14787
|
readonly bindingFailureConditions: Schema.optional<Schema.$Array<Schema.String>>;
|
|
@@ -13837,6 +14805,10 @@ export declare const ReplaceResourceV1beta2ResourceSliceOutput: Schema.Struct<{
|
|
|
13837
14805
|
}>>;
|
|
13838
14806
|
}>>>;
|
|
13839
14807
|
readonly name: Schema.String;
|
|
14808
|
+
readonly nodeAllocatableResourceMappings: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
14809
|
+
readonly allocationMultiplier: Schema.optional<Schema.String>;
|
|
14810
|
+
readonly capacityKey: Schema.optional<Schema.String>;
|
|
14811
|
+
}>>>;
|
|
13840
14812
|
readonly nodeName: Schema.optional<Schema.String>;
|
|
13841
14813
|
readonly nodeSelector: Schema.optional<Schema.Struct<{
|
|
13842
14814
|
readonly nodeSelectorTerms: Schema.$Array<Schema.Struct<{
|
|
@@ -14029,6 +15001,28 @@ export type WatchResourceV1alpha3DeviceTaintRuleListOutput = typeof WatchResourc
|
|
|
14029
15001
|
* watch individual changes to a list of DeviceTaintRule. deprecated: use the 'watch' parameter with a list operation instead.
|
|
14030
15002
|
*/
|
|
14031
15003
|
export declare const watchResourceV1alpha3DeviceTaintRuleList: any;
|
|
15004
|
+
export declare const WatchResourceV1alpha3ResourcePoolStatusRequestInput: Schema.Struct<{}>;
|
|
15005
|
+
export type WatchResourceV1alpha3ResourcePoolStatusRequestInput = typeof WatchResourceV1alpha3ResourcePoolStatusRequestInput.Type;
|
|
15006
|
+
export declare const WatchResourceV1alpha3ResourcePoolStatusRequestOutput: Schema.Struct<{
|
|
15007
|
+
readonly object: Schema.Unknown;
|
|
15008
|
+
readonly type: Schema.String;
|
|
15009
|
+
}>;
|
|
15010
|
+
export type WatchResourceV1alpha3ResourcePoolStatusRequestOutput = typeof WatchResourceV1alpha3ResourcePoolStatusRequestOutput.Type;
|
|
15011
|
+
/**
|
|
15012
|
+
* watch changes to an object of kind ResourcePoolStatusRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.
|
|
15013
|
+
*/
|
|
15014
|
+
export declare const watchResourceV1alpha3ResourcePoolStatusRequest: any;
|
|
15015
|
+
export declare const WatchResourceV1alpha3ResourcePoolStatusRequestListInput: Schema.Struct<{}>;
|
|
15016
|
+
export type WatchResourceV1alpha3ResourcePoolStatusRequestListInput = typeof WatchResourceV1alpha3ResourcePoolStatusRequestListInput.Type;
|
|
15017
|
+
export declare const WatchResourceV1alpha3ResourcePoolStatusRequestListOutput: Schema.Struct<{
|
|
15018
|
+
readonly object: Schema.Unknown;
|
|
15019
|
+
readonly type: Schema.String;
|
|
15020
|
+
}>;
|
|
15021
|
+
export type WatchResourceV1alpha3ResourcePoolStatusRequestListOutput = typeof WatchResourceV1alpha3ResourcePoolStatusRequestListOutput.Type;
|
|
15022
|
+
/**
|
|
15023
|
+
* watch individual changes to a list of ResourcePoolStatusRequest. deprecated: use the 'watch' parameter with a list operation instead.
|
|
15024
|
+
*/
|
|
15025
|
+
export declare const watchResourceV1alpha3ResourcePoolStatusRequestList: any;
|
|
14032
15026
|
export declare const WatchResourceV1beta1DeviceClassInput: Schema.Struct<{}>;
|
|
14033
15027
|
export type WatchResourceV1beta1DeviceClassInput = typeof WatchResourceV1beta1DeviceClassInput.Type;
|
|
14034
15028
|
export declare const WatchResourceV1beta1DeviceClassOutput: Schema.Struct<{
|