@distilled.cloud/kubernetes 0.9.0 → 0.10.1
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/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/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
package/src/services/core.ts
CHANGED
|
@@ -4439,6 +4439,15 @@ export const CreateCoreV1NamespacedPodOutput =
|
|
|
4439
4439
|
),
|
|
4440
4440
|
),
|
|
4441
4441
|
message: Schema.optional(Schema.String),
|
|
4442
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
4443
|
+
Schema.Array(
|
|
4444
|
+
Schema.Struct({
|
|
4445
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
4446
|
+
resourceClaimName: Schema.String,
|
|
4447
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
4448
|
+
}),
|
|
4449
|
+
),
|
|
4450
|
+
),
|
|
4442
4451
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
4443
4452
|
observedGeneration: Schema.optional(Schema.Number),
|
|
4444
4453
|
phase: Schema.optional(Schema.String),
|
|
@@ -10899,6 +10908,11 @@ export const DeleteCoreV1CollectionNamespacedConfigMapOutput =
|
|
|
10899
10908
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
10900
10909
|
resourceVersion: Schema.optional(Schema.String),
|
|
10901
10910
|
selfLink: Schema.optional(Schema.String),
|
|
10911
|
+
shardInfo: Schema.optional(
|
|
10912
|
+
Schema.Struct({
|
|
10913
|
+
selector: Schema.String,
|
|
10914
|
+
}),
|
|
10915
|
+
),
|
|
10902
10916
|
}),
|
|
10903
10917
|
),
|
|
10904
10918
|
reason: Schema.optional(Schema.String),
|
|
@@ -10962,6 +10976,11 @@ export const DeleteCoreV1CollectionNamespacedEndpointsOutput =
|
|
|
10962
10976
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
10963
10977
|
resourceVersion: Schema.optional(Schema.String),
|
|
10964
10978
|
selfLink: Schema.optional(Schema.String),
|
|
10979
|
+
shardInfo: Schema.optional(
|
|
10980
|
+
Schema.Struct({
|
|
10981
|
+
selector: Schema.String,
|
|
10982
|
+
}),
|
|
10983
|
+
),
|
|
10965
10984
|
}),
|
|
10966
10985
|
),
|
|
10967
10986
|
reason: Schema.optional(Schema.String),
|
|
@@ -11022,6 +11041,11 @@ export const DeleteCoreV1CollectionNamespacedEventOutput =
|
|
|
11022
11041
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11023
11042
|
resourceVersion: Schema.optional(Schema.String),
|
|
11024
11043
|
selfLink: Schema.optional(Schema.String),
|
|
11044
|
+
shardInfo: Schema.optional(
|
|
11045
|
+
Schema.Struct({
|
|
11046
|
+
selector: Schema.String,
|
|
11047
|
+
}),
|
|
11048
|
+
),
|
|
11025
11049
|
}),
|
|
11026
11050
|
),
|
|
11027
11051
|
reason: Schema.optional(Schema.String),
|
|
@@ -11085,6 +11109,11 @@ export const DeleteCoreV1CollectionNamespacedLimitRangeOutput =
|
|
|
11085
11109
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11086
11110
|
resourceVersion: Schema.optional(Schema.String),
|
|
11087
11111
|
selfLink: Schema.optional(Schema.String),
|
|
11112
|
+
shardInfo: Schema.optional(
|
|
11113
|
+
Schema.Struct({
|
|
11114
|
+
selector: Schema.String,
|
|
11115
|
+
}),
|
|
11116
|
+
),
|
|
11088
11117
|
}),
|
|
11089
11118
|
),
|
|
11090
11119
|
reason: Schema.optional(Schema.String),
|
|
@@ -11148,6 +11177,11 @@ export const DeleteCoreV1CollectionNamespacedPersistentVolumeClaimOutput =
|
|
|
11148
11177
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11149
11178
|
resourceVersion: Schema.optional(Schema.String),
|
|
11150
11179
|
selfLink: Schema.optional(Schema.String),
|
|
11180
|
+
shardInfo: Schema.optional(
|
|
11181
|
+
Schema.Struct({
|
|
11182
|
+
selector: Schema.String,
|
|
11183
|
+
}),
|
|
11184
|
+
),
|
|
11151
11185
|
}),
|
|
11152
11186
|
),
|
|
11153
11187
|
reason: Schema.optional(Schema.String),
|
|
@@ -11208,6 +11242,11 @@ export const DeleteCoreV1CollectionNamespacedPodOutput =
|
|
|
11208
11242
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11209
11243
|
resourceVersion: Schema.optional(Schema.String),
|
|
11210
11244
|
selfLink: Schema.optional(Schema.String),
|
|
11245
|
+
shardInfo: Schema.optional(
|
|
11246
|
+
Schema.Struct({
|
|
11247
|
+
selector: Schema.String,
|
|
11248
|
+
}),
|
|
11249
|
+
),
|
|
11211
11250
|
}),
|
|
11212
11251
|
),
|
|
11213
11252
|
reason: Schema.optional(Schema.String),
|
|
@@ -11271,6 +11310,11 @@ export const DeleteCoreV1CollectionNamespacedPodTemplateOutput =
|
|
|
11271
11310
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11272
11311
|
resourceVersion: Schema.optional(Schema.String),
|
|
11273
11312
|
selfLink: Schema.optional(Schema.String),
|
|
11313
|
+
shardInfo: Schema.optional(
|
|
11314
|
+
Schema.Struct({
|
|
11315
|
+
selector: Schema.String,
|
|
11316
|
+
}),
|
|
11317
|
+
),
|
|
11274
11318
|
}),
|
|
11275
11319
|
),
|
|
11276
11320
|
reason: Schema.optional(Schema.String),
|
|
@@ -11334,6 +11378,11 @@ export const DeleteCoreV1CollectionNamespacedReplicationControllerOutput =
|
|
|
11334
11378
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11335
11379
|
resourceVersion: Schema.optional(Schema.String),
|
|
11336
11380
|
selfLink: Schema.optional(Schema.String),
|
|
11381
|
+
shardInfo: Schema.optional(
|
|
11382
|
+
Schema.Struct({
|
|
11383
|
+
selector: Schema.String,
|
|
11384
|
+
}),
|
|
11385
|
+
),
|
|
11337
11386
|
}),
|
|
11338
11387
|
),
|
|
11339
11388
|
reason: Schema.optional(Schema.String),
|
|
@@ -11397,6 +11446,11 @@ export const DeleteCoreV1CollectionNamespacedResourceQuotaOutput =
|
|
|
11397
11446
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11398
11447
|
resourceVersion: Schema.optional(Schema.String),
|
|
11399
11448
|
selfLink: Schema.optional(Schema.String),
|
|
11449
|
+
shardInfo: Schema.optional(
|
|
11450
|
+
Schema.Struct({
|
|
11451
|
+
selector: Schema.String,
|
|
11452
|
+
}),
|
|
11453
|
+
),
|
|
11400
11454
|
}),
|
|
11401
11455
|
),
|
|
11402
11456
|
reason: Schema.optional(Schema.String),
|
|
@@ -11460,6 +11514,11 @@ export const DeleteCoreV1CollectionNamespacedSecretOutput =
|
|
|
11460
11514
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11461
11515
|
resourceVersion: Schema.optional(Schema.String),
|
|
11462
11516
|
selfLink: Schema.optional(Schema.String),
|
|
11517
|
+
shardInfo: Schema.optional(
|
|
11518
|
+
Schema.Struct({
|
|
11519
|
+
selector: Schema.String,
|
|
11520
|
+
}),
|
|
11521
|
+
),
|
|
11463
11522
|
}),
|
|
11464
11523
|
),
|
|
11465
11524
|
reason: Schema.optional(Schema.String),
|
|
@@ -11523,6 +11582,11 @@ export const DeleteCoreV1CollectionNamespacedServiceOutput =
|
|
|
11523
11582
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11524
11583
|
resourceVersion: Schema.optional(Schema.String),
|
|
11525
11584
|
selfLink: Schema.optional(Schema.String),
|
|
11585
|
+
shardInfo: Schema.optional(
|
|
11586
|
+
Schema.Struct({
|
|
11587
|
+
selector: Schema.String,
|
|
11588
|
+
}),
|
|
11589
|
+
),
|
|
11526
11590
|
}),
|
|
11527
11591
|
),
|
|
11528
11592
|
reason: Schema.optional(Schema.String),
|
|
@@ -11586,6 +11650,11 @@ export const DeleteCoreV1CollectionNamespacedServiceAccountOutput =
|
|
|
11586
11650
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11587
11651
|
resourceVersion: Schema.optional(Schema.String),
|
|
11588
11652
|
selfLink: Schema.optional(Schema.String),
|
|
11653
|
+
shardInfo: Schema.optional(
|
|
11654
|
+
Schema.Struct({
|
|
11655
|
+
selector: Schema.String,
|
|
11656
|
+
}),
|
|
11657
|
+
),
|
|
11589
11658
|
}),
|
|
11590
11659
|
),
|
|
11591
11660
|
reason: Schema.optional(Schema.String),
|
|
@@ -11644,6 +11713,11 @@ export const DeleteCoreV1CollectionNodeOutput =
|
|
|
11644
11713
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11645
11714
|
resourceVersion: Schema.optional(Schema.String),
|
|
11646
11715
|
selfLink: Schema.optional(Schema.String),
|
|
11716
|
+
shardInfo: Schema.optional(
|
|
11717
|
+
Schema.Struct({
|
|
11718
|
+
selector: Schema.String,
|
|
11719
|
+
}),
|
|
11720
|
+
),
|
|
11647
11721
|
}),
|
|
11648
11722
|
),
|
|
11649
11723
|
reason: Schema.optional(Schema.String),
|
|
@@ -11703,6 +11777,11 @@ export const DeleteCoreV1CollectionPersistentVolumeOutput =
|
|
|
11703
11777
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11704
11778
|
resourceVersion: Schema.optional(Schema.String),
|
|
11705
11779
|
selfLink: Schema.optional(Schema.String),
|
|
11780
|
+
shardInfo: Schema.optional(
|
|
11781
|
+
Schema.Struct({
|
|
11782
|
+
selector: Schema.String,
|
|
11783
|
+
}),
|
|
11784
|
+
),
|
|
11706
11785
|
}),
|
|
11707
11786
|
),
|
|
11708
11787
|
reason: Schema.optional(Schema.String),
|
|
@@ -11760,6 +11839,11 @@ export const DeleteCoreV1NamespaceOutput =
|
|
|
11760
11839
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11761
11840
|
resourceVersion: Schema.optional(Schema.String),
|
|
11762
11841
|
selfLink: Schema.optional(Schema.String),
|
|
11842
|
+
shardInfo: Schema.optional(
|
|
11843
|
+
Schema.Struct({
|
|
11844
|
+
selector: Schema.String,
|
|
11845
|
+
}),
|
|
11846
|
+
),
|
|
11763
11847
|
}),
|
|
11764
11848
|
),
|
|
11765
11849
|
reason: Schema.optional(Schema.String),
|
|
@@ -11824,6 +11908,11 @@ export const DeleteCoreV1NamespacedConfigMapOutput =
|
|
|
11824
11908
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11825
11909
|
resourceVersion: Schema.optional(Schema.String),
|
|
11826
11910
|
selfLink: Schema.optional(Schema.String),
|
|
11911
|
+
shardInfo: Schema.optional(
|
|
11912
|
+
Schema.Struct({
|
|
11913
|
+
selector: Schema.String,
|
|
11914
|
+
}),
|
|
11915
|
+
),
|
|
11827
11916
|
}),
|
|
11828
11917
|
),
|
|
11829
11918
|
reason: Schema.optional(Schema.String),
|
|
@@ -11887,6 +11976,11 @@ export const DeleteCoreV1NamespacedEndpointsOutput =
|
|
|
11887
11976
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11888
11977
|
resourceVersion: Schema.optional(Schema.String),
|
|
11889
11978
|
selfLink: Schema.optional(Schema.String),
|
|
11979
|
+
shardInfo: Schema.optional(
|
|
11980
|
+
Schema.Struct({
|
|
11981
|
+
selector: Schema.String,
|
|
11982
|
+
}),
|
|
11983
|
+
),
|
|
11890
11984
|
}),
|
|
11891
11985
|
),
|
|
11892
11986
|
reason: Schema.optional(Schema.String),
|
|
@@ -11950,6 +12044,11 @@ export const DeleteCoreV1NamespacedEventOutput =
|
|
|
11950
12044
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11951
12045
|
resourceVersion: Schema.optional(Schema.String),
|
|
11952
12046
|
selfLink: Schema.optional(Schema.String),
|
|
12047
|
+
shardInfo: Schema.optional(
|
|
12048
|
+
Schema.Struct({
|
|
12049
|
+
selector: Schema.String,
|
|
12050
|
+
}),
|
|
12051
|
+
),
|
|
11953
12052
|
}),
|
|
11954
12053
|
),
|
|
11955
12054
|
reason: Schema.optional(Schema.String),
|
|
@@ -12014,6 +12113,11 @@ export const DeleteCoreV1NamespacedLimitRangeOutput =
|
|
|
12014
12113
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12015
12114
|
resourceVersion: Schema.optional(Schema.String),
|
|
12016
12115
|
selfLink: Schema.optional(Schema.String),
|
|
12116
|
+
shardInfo: Schema.optional(
|
|
12117
|
+
Schema.Struct({
|
|
12118
|
+
selector: Schema.String,
|
|
12119
|
+
}),
|
|
12120
|
+
),
|
|
12017
12121
|
}),
|
|
12018
12122
|
),
|
|
12019
12123
|
reason: Schema.optional(Schema.String),
|
|
@@ -14949,6 +15053,15 @@ export const DeleteCoreV1NamespacedPodOutput =
|
|
|
14949
15053
|
),
|
|
14950
15054
|
),
|
|
14951
15055
|
message: Schema.optional(Schema.String),
|
|
15056
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
15057
|
+
Schema.Array(
|
|
15058
|
+
Schema.Struct({
|
|
15059
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
15060
|
+
resourceClaimName: Schema.String,
|
|
15061
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
15062
|
+
}),
|
|
15063
|
+
),
|
|
15064
|
+
),
|
|
14952
15065
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
14953
15066
|
observedGeneration: Schema.optional(Schema.Number),
|
|
14954
15067
|
phase: Schema.optional(Schema.String),
|
|
@@ -17488,6 +17601,11 @@ export const DeleteCoreV1NamespacedReplicationControllerOutput =
|
|
|
17488
17601
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17489
17602
|
resourceVersion: Schema.optional(Schema.String),
|
|
17490
17603
|
selfLink: Schema.optional(Schema.String),
|
|
17604
|
+
shardInfo: Schema.optional(
|
|
17605
|
+
Schema.Struct({
|
|
17606
|
+
selector: Schema.String,
|
|
17607
|
+
}),
|
|
17608
|
+
),
|
|
17491
17609
|
}),
|
|
17492
17610
|
),
|
|
17493
17611
|
reason: Schema.optional(Schema.String),
|
|
@@ -17653,6 +17771,11 @@ export const DeleteCoreV1NamespacedSecretOutput =
|
|
|
17653
17771
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17654
17772
|
resourceVersion: Schema.optional(Schema.String),
|
|
17655
17773
|
selfLink: Schema.optional(Schema.String),
|
|
17774
|
+
shardInfo: Schema.optional(
|
|
17775
|
+
Schema.Struct({
|
|
17776
|
+
selector: Schema.String,
|
|
17777
|
+
}),
|
|
17778
|
+
),
|
|
17656
17779
|
}),
|
|
17657
17780
|
),
|
|
17658
17781
|
reason: Schema.optional(Schema.String),
|
|
@@ -17965,6 +18088,11 @@ export const DeleteCoreV1NodeOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
|
|
|
17965
18088
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17966
18089
|
resourceVersion: Schema.optional(Schema.String),
|
|
17967
18090
|
selfLink: Schema.optional(Schema.String),
|
|
18091
|
+
shardInfo: Schema.optional(
|
|
18092
|
+
Schema.Struct({
|
|
18093
|
+
selector: Schema.String,
|
|
18094
|
+
}),
|
|
18095
|
+
),
|
|
17968
18096
|
}),
|
|
17969
18097
|
),
|
|
17970
18098
|
reason: Schema.optional(Schema.String),
|
|
@@ -18660,6 +18788,11 @@ export const ListCoreV1ComponentStatusOutput =
|
|
|
18660
18788
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18661
18789
|
resourceVersion: Schema.optional(Schema.String),
|
|
18662
18790
|
selfLink: Schema.optional(Schema.String),
|
|
18791
|
+
shardInfo: Schema.optional(
|
|
18792
|
+
Schema.Struct({
|
|
18793
|
+
selector: Schema.String,
|
|
18794
|
+
}),
|
|
18795
|
+
),
|
|
18663
18796
|
}),
|
|
18664
18797
|
),
|
|
18665
18798
|
});
|
|
@@ -18752,6 +18885,11 @@ export const ListCoreV1ConfigMapForAllNamespacesOutput =
|
|
|
18752
18885
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18753
18886
|
resourceVersion: Schema.optional(Schema.String),
|
|
18754
18887
|
selfLink: Schema.optional(Schema.String),
|
|
18888
|
+
shardInfo: Schema.optional(
|
|
18889
|
+
Schema.Struct({
|
|
18890
|
+
selector: Schema.String,
|
|
18891
|
+
}),
|
|
18892
|
+
),
|
|
18755
18893
|
}),
|
|
18756
18894
|
),
|
|
18757
18895
|
});
|
|
@@ -18894,6 +19032,11 @@ export const ListCoreV1EndpointsForAllNamespacesOutput =
|
|
|
18894
19032
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18895
19033
|
resourceVersion: Schema.optional(Schema.String),
|
|
18896
19034
|
selfLink: Schema.optional(Schema.String),
|
|
19035
|
+
shardInfo: Schema.optional(
|
|
19036
|
+
Schema.Struct({
|
|
19037
|
+
selector: Schema.String,
|
|
19038
|
+
}),
|
|
19039
|
+
),
|
|
18897
19040
|
}),
|
|
18898
19041
|
),
|
|
18899
19042
|
});
|
|
@@ -19018,6 +19161,11 @@ export const ListCoreV1EventForAllNamespacesOutput =
|
|
|
19018
19161
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19019
19162
|
resourceVersion: Schema.optional(Schema.String),
|
|
19020
19163
|
selfLink: Schema.optional(Schema.String),
|
|
19164
|
+
shardInfo: Schema.optional(
|
|
19165
|
+
Schema.Struct({
|
|
19166
|
+
selector: Schema.String,
|
|
19167
|
+
}),
|
|
19168
|
+
),
|
|
19021
19169
|
}),
|
|
19022
19170
|
),
|
|
19023
19171
|
});
|
|
@@ -19128,6 +19276,11 @@ export const ListCoreV1LimitRangeForAllNamespacesOutput =
|
|
|
19128
19276
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19129
19277
|
resourceVersion: Schema.optional(Schema.String),
|
|
19130
19278
|
selfLink: Schema.optional(Schema.String),
|
|
19279
|
+
shardInfo: Schema.optional(
|
|
19280
|
+
Schema.Struct({
|
|
19281
|
+
selector: Schema.String,
|
|
19282
|
+
}),
|
|
19283
|
+
),
|
|
19131
19284
|
}),
|
|
19132
19285
|
),
|
|
19133
19286
|
});
|
|
@@ -19234,6 +19387,11 @@ export const ListCoreV1NamespaceOutput =
|
|
|
19234
19387
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19235
19388
|
resourceVersion: Schema.optional(Schema.String),
|
|
19236
19389
|
selfLink: Schema.optional(Schema.String),
|
|
19390
|
+
shardInfo: Schema.optional(
|
|
19391
|
+
Schema.Struct({
|
|
19392
|
+
selector: Schema.String,
|
|
19393
|
+
}),
|
|
19394
|
+
),
|
|
19237
19395
|
}),
|
|
19238
19396
|
),
|
|
19239
19397
|
});
|
|
@@ -19326,6 +19484,11 @@ export const ListCoreV1NamespacedConfigMapOutput =
|
|
|
19326
19484
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19327
19485
|
resourceVersion: Schema.optional(Schema.String),
|
|
19328
19486
|
selfLink: Schema.optional(Schema.String),
|
|
19487
|
+
shardInfo: Schema.optional(
|
|
19488
|
+
Schema.Struct({
|
|
19489
|
+
selector: Schema.String,
|
|
19490
|
+
}),
|
|
19491
|
+
),
|
|
19329
19492
|
}),
|
|
19330
19493
|
),
|
|
19331
19494
|
});
|
|
@@ -19468,6 +19631,11 @@ export const ListCoreV1NamespacedEndpointsOutput =
|
|
|
19468
19631
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19469
19632
|
resourceVersion: Schema.optional(Schema.String),
|
|
19470
19633
|
selfLink: Schema.optional(Schema.String),
|
|
19634
|
+
shardInfo: Schema.optional(
|
|
19635
|
+
Schema.Struct({
|
|
19636
|
+
selector: Schema.String,
|
|
19637
|
+
}),
|
|
19638
|
+
),
|
|
19471
19639
|
}),
|
|
19472
19640
|
),
|
|
19473
19641
|
});
|
|
@@ -19592,6 +19760,11 @@ export const ListCoreV1NamespacedEventOutput =
|
|
|
19592
19760
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19593
19761
|
resourceVersion: Schema.optional(Schema.String),
|
|
19594
19762
|
selfLink: Schema.optional(Schema.String),
|
|
19763
|
+
shardInfo: Schema.optional(
|
|
19764
|
+
Schema.Struct({
|
|
19765
|
+
selector: Schema.String,
|
|
19766
|
+
}),
|
|
19767
|
+
),
|
|
19595
19768
|
}),
|
|
19596
19769
|
),
|
|
19597
19770
|
});
|
|
@@ -19706,6 +19879,11 @@ export const ListCoreV1NamespacedLimitRangeOutput =
|
|
|
19706
19879
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19707
19880
|
resourceVersion: Schema.optional(Schema.String),
|
|
19708
19881
|
selfLink: Schema.optional(Schema.String),
|
|
19882
|
+
shardInfo: Schema.optional(
|
|
19883
|
+
Schema.Struct({
|
|
19884
|
+
selector: Schema.String,
|
|
19885
|
+
}),
|
|
19886
|
+
),
|
|
19709
19887
|
}),
|
|
19710
19888
|
),
|
|
19711
19889
|
});
|
|
@@ -19879,6 +20057,11 @@ export const ListCoreV1NamespacedPersistentVolumeClaimOutput =
|
|
|
19879
20057
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
19880
20058
|
resourceVersion: Schema.optional(Schema.String),
|
|
19881
20059
|
selfLink: Schema.optional(Schema.String),
|
|
20060
|
+
shardInfo: Schema.optional(
|
|
20061
|
+
Schema.Struct({
|
|
20062
|
+
selector: Schema.String,
|
|
20063
|
+
}),
|
|
20064
|
+
),
|
|
19882
20065
|
}),
|
|
19883
20066
|
),
|
|
19884
20067
|
});
|
|
@@ -22709,6 +22892,15 @@ export const ListCoreV1NamespacedPodOutput =
|
|
|
22709
22892
|
),
|
|
22710
22893
|
),
|
|
22711
22894
|
message: Schema.optional(Schema.String),
|
|
22895
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
22896
|
+
Schema.Array(
|
|
22897
|
+
Schema.Struct({
|
|
22898
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
22899
|
+
resourceClaimName: Schema.String,
|
|
22900
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
22901
|
+
}),
|
|
22902
|
+
),
|
|
22903
|
+
),
|
|
22712
22904
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
22713
22905
|
observedGeneration: Schema.optional(Schema.Number),
|
|
22714
22906
|
phase: Schema.optional(Schema.String),
|
|
@@ -22761,6 +22953,11 @@ export const ListCoreV1NamespacedPodOutput =
|
|
|
22761
22953
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
22762
22954
|
resourceVersion: Schema.optional(Schema.String),
|
|
22763
22955
|
selfLink: Schema.optional(Schema.String),
|
|
22956
|
+
shardInfo: Schema.optional(
|
|
22957
|
+
Schema.Struct({
|
|
22958
|
+
selector: Schema.String,
|
|
22959
|
+
}),
|
|
22960
|
+
),
|
|
22764
22961
|
}),
|
|
22765
22962
|
),
|
|
22766
22963
|
});
|
|
@@ -25316,6 +25513,11 @@ export const ListCoreV1NamespacedPodTemplateOutput =
|
|
|
25316
25513
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
25317
25514
|
resourceVersion: Schema.optional(Schema.String),
|
|
25318
25515
|
selfLink: Schema.optional(Schema.String),
|
|
25516
|
+
shardInfo: Schema.optional(
|
|
25517
|
+
Schema.Struct({
|
|
25518
|
+
selector: Schema.String,
|
|
25519
|
+
}),
|
|
25520
|
+
),
|
|
25319
25521
|
}),
|
|
25320
25522
|
),
|
|
25321
25523
|
});
|
|
@@ -28031,6 +28233,11 @@ export const ListCoreV1NamespacedReplicationControllerOutput =
|
|
|
28031
28233
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28032
28234
|
resourceVersion: Schema.optional(Schema.String),
|
|
28033
28235
|
selfLink: Schema.optional(Schema.String),
|
|
28236
|
+
shardInfo: Schema.optional(
|
|
28237
|
+
Schema.Struct({
|
|
28238
|
+
selector: Schema.String,
|
|
28239
|
+
}),
|
|
28240
|
+
),
|
|
28034
28241
|
}),
|
|
28035
28242
|
),
|
|
28036
28243
|
});
|
|
@@ -28145,6 +28352,11 @@ export const ListCoreV1NamespacedResourceQuotaOutput =
|
|
|
28145
28352
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28146
28353
|
resourceVersion: Schema.optional(Schema.String),
|
|
28147
28354
|
selfLink: Schema.optional(Schema.String),
|
|
28355
|
+
shardInfo: Schema.optional(
|
|
28356
|
+
Schema.Struct({
|
|
28357
|
+
selector: Schema.String,
|
|
28358
|
+
}),
|
|
28359
|
+
),
|
|
28148
28360
|
}),
|
|
28149
28361
|
),
|
|
28150
28362
|
});
|
|
@@ -28237,6 +28449,11 @@ export const ListCoreV1NamespacedSecretOutput =
|
|
|
28237
28449
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28238
28450
|
resourceVersion: Schema.optional(Schema.String),
|
|
28239
28451
|
selfLink: Schema.optional(Schema.String),
|
|
28452
|
+
shardInfo: Schema.optional(
|
|
28453
|
+
Schema.Struct({
|
|
28454
|
+
selector: Schema.String,
|
|
28455
|
+
}),
|
|
28456
|
+
),
|
|
28240
28457
|
}),
|
|
28241
28458
|
),
|
|
28242
28459
|
});
|
|
@@ -28409,6 +28626,11 @@ export const ListCoreV1NamespacedServiceOutput =
|
|
|
28409
28626
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28410
28627
|
resourceVersion: Schema.optional(Schema.String),
|
|
28411
28628
|
selfLink: Schema.optional(Schema.String),
|
|
28629
|
+
shardInfo: Schema.optional(
|
|
28630
|
+
Schema.Struct({
|
|
28631
|
+
selector: Schema.String,
|
|
28632
|
+
}),
|
|
28633
|
+
),
|
|
28412
28634
|
}),
|
|
28413
28635
|
),
|
|
28414
28636
|
});
|
|
@@ -28520,6 +28742,11 @@ export const ListCoreV1NamespacedServiceAccountOutput =
|
|
|
28520
28742
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28521
28743
|
resourceVersion: Schema.optional(Schema.String),
|
|
28522
28744
|
selfLink: Schema.optional(Schema.String),
|
|
28745
|
+
shardInfo: Schema.optional(
|
|
28746
|
+
Schema.Struct({
|
|
28747
|
+
selector: Schema.String,
|
|
28748
|
+
}),
|
|
28749
|
+
),
|
|
28523
28750
|
}),
|
|
28524
28751
|
),
|
|
28525
28752
|
});
|
|
@@ -28772,6 +28999,11 @@ export const ListCoreV1NodeOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
28772
28999
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
28773
29000
|
resourceVersion: Schema.optional(Schema.String),
|
|
28774
29001
|
selfLink: Schema.optional(Schema.String),
|
|
29002
|
+
shardInfo: Schema.optional(
|
|
29003
|
+
Schema.Struct({
|
|
29004
|
+
selector: Schema.String,
|
|
29005
|
+
}),
|
|
29006
|
+
),
|
|
28775
29007
|
}),
|
|
28776
29008
|
),
|
|
28777
29009
|
});
|
|
@@ -29187,6 +29419,11 @@ export const ListCoreV1PersistentVolumeOutput =
|
|
|
29187
29419
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
29188
29420
|
resourceVersion: Schema.optional(Schema.String),
|
|
29189
29421
|
selfLink: Schema.optional(Schema.String),
|
|
29422
|
+
shardInfo: Schema.optional(
|
|
29423
|
+
Schema.Struct({
|
|
29424
|
+
selector: Schema.String,
|
|
29425
|
+
}),
|
|
29426
|
+
),
|
|
29190
29427
|
}),
|
|
29191
29428
|
),
|
|
29192
29429
|
});
|
|
@@ -29358,6 +29595,11 @@ export const ListCoreV1PersistentVolumeClaimForAllNamespacesOutput =
|
|
|
29358
29595
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
29359
29596
|
resourceVersion: Schema.optional(Schema.String),
|
|
29360
29597
|
selfLink: Schema.optional(Schema.String),
|
|
29598
|
+
shardInfo: Schema.optional(
|
|
29599
|
+
Schema.Struct({
|
|
29600
|
+
selector: Schema.String,
|
|
29601
|
+
}),
|
|
29602
|
+
),
|
|
29361
29603
|
}),
|
|
29362
29604
|
),
|
|
29363
29605
|
});
|
|
@@ -32188,6 +32430,15 @@ export const ListCoreV1PodForAllNamespacesOutput =
|
|
|
32188
32430
|
),
|
|
32189
32431
|
),
|
|
32190
32432
|
message: Schema.optional(Schema.String),
|
|
32433
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
32434
|
+
Schema.Array(
|
|
32435
|
+
Schema.Struct({
|
|
32436
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
32437
|
+
resourceClaimName: Schema.String,
|
|
32438
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
32439
|
+
}),
|
|
32440
|
+
),
|
|
32441
|
+
),
|
|
32191
32442
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
32192
32443
|
observedGeneration: Schema.optional(Schema.Number),
|
|
32193
32444
|
phase: Schema.optional(Schema.String),
|
|
@@ -32240,6 +32491,11 @@ export const ListCoreV1PodForAllNamespacesOutput =
|
|
|
32240
32491
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
32241
32492
|
resourceVersion: Schema.optional(Schema.String),
|
|
32242
32493
|
selfLink: Schema.optional(Schema.String),
|
|
32494
|
+
shardInfo: Schema.optional(
|
|
32495
|
+
Schema.Struct({
|
|
32496
|
+
selector: Schema.String,
|
|
32497
|
+
}),
|
|
32498
|
+
),
|
|
32243
32499
|
}),
|
|
32244
32500
|
),
|
|
32245
32501
|
});
|
|
@@ -34791,6 +35047,11 @@ export const ListCoreV1PodTemplateForAllNamespacesOutput =
|
|
|
34791
35047
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
34792
35048
|
resourceVersion: Schema.optional(Schema.String),
|
|
34793
35049
|
selfLink: Schema.optional(Schema.String),
|
|
35050
|
+
shardInfo: Schema.optional(
|
|
35051
|
+
Schema.Struct({
|
|
35052
|
+
selector: Schema.String,
|
|
35053
|
+
}),
|
|
35054
|
+
),
|
|
34794
35055
|
}),
|
|
34795
35056
|
),
|
|
34796
35057
|
});
|
|
@@ -37503,6 +37764,11 @@ export const ListCoreV1ReplicationControllerForAllNamespacesOutput =
|
|
|
37503
37764
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
37504
37765
|
resourceVersion: Schema.optional(Schema.String),
|
|
37505
37766
|
selfLink: Schema.optional(Schema.String),
|
|
37767
|
+
shardInfo: Schema.optional(
|
|
37768
|
+
Schema.Struct({
|
|
37769
|
+
selector: Schema.String,
|
|
37770
|
+
}),
|
|
37771
|
+
),
|
|
37506
37772
|
}),
|
|
37507
37773
|
),
|
|
37508
37774
|
});
|
|
@@ -37614,6 +37880,11 @@ export const ListCoreV1ResourceQuotaForAllNamespacesOutput =
|
|
|
37614
37880
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
37615
37881
|
resourceVersion: Schema.optional(Schema.String),
|
|
37616
37882
|
selfLink: Schema.optional(Schema.String),
|
|
37883
|
+
shardInfo: Schema.optional(
|
|
37884
|
+
Schema.Struct({
|
|
37885
|
+
selector: Schema.String,
|
|
37886
|
+
}),
|
|
37887
|
+
),
|
|
37617
37888
|
}),
|
|
37618
37889
|
),
|
|
37619
37890
|
});
|
|
@@ -37706,6 +37977,11 @@ export const ListCoreV1SecretForAllNamespacesOutput =
|
|
|
37706
37977
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
37707
37978
|
resourceVersion: Schema.optional(Schema.String),
|
|
37708
37979
|
selfLink: Schema.optional(Schema.String),
|
|
37980
|
+
shardInfo: Schema.optional(
|
|
37981
|
+
Schema.Struct({
|
|
37982
|
+
selector: Schema.String,
|
|
37983
|
+
}),
|
|
37984
|
+
),
|
|
37709
37985
|
}),
|
|
37710
37986
|
),
|
|
37711
37987
|
});
|
|
@@ -37813,6 +38089,11 @@ export const ListCoreV1ServiceAccountForAllNamespacesOutput =
|
|
|
37813
38089
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
37814
38090
|
resourceVersion: Schema.optional(Schema.String),
|
|
37815
38091
|
selfLink: Schema.optional(Schema.String),
|
|
38092
|
+
shardInfo: Schema.optional(
|
|
38093
|
+
Schema.Struct({
|
|
38094
|
+
selector: Schema.String,
|
|
38095
|
+
}),
|
|
38096
|
+
),
|
|
37816
38097
|
}),
|
|
37817
38098
|
),
|
|
37818
38099
|
});
|
|
@@ -37984,6 +38265,11 @@ export const ListCoreV1ServiceForAllNamespacesOutput =
|
|
|
37984
38265
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
37985
38266
|
resourceVersion: Schema.optional(Schema.String),
|
|
37986
38267
|
selfLink: Schema.optional(Schema.String),
|
|
38268
|
+
shardInfo: Schema.optional(
|
|
38269
|
+
Schema.Struct({
|
|
38270
|
+
selector: Schema.String,
|
|
38271
|
+
}),
|
|
38272
|
+
),
|
|
37987
38273
|
}),
|
|
37988
38274
|
),
|
|
37989
38275
|
});
|
|
@@ -41736,6 +42022,15 @@ export const PatchCoreV1NamespacedPodOutput =
|
|
|
41736
42022
|
),
|
|
41737
42023
|
),
|
|
41738
42024
|
message: Schema.optional(Schema.String),
|
|
42025
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
42026
|
+
Schema.Array(
|
|
42027
|
+
Schema.Struct({
|
|
42028
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
42029
|
+
resourceClaimName: Schema.String,
|
|
42030
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
42031
|
+
}),
|
|
42032
|
+
),
|
|
42033
|
+
),
|
|
41739
42034
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
41740
42035
|
observedGeneration: Schema.optional(Schema.Number),
|
|
41741
42036
|
phase: Schema.optional(Schema.String),
|
|
@@ -44554,6 +44849,15 @@ export const PatchCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
44554
44849
|
),
|
|
44555
44850
|
),
|
|
44556
44851
|
message: Schema.optional(Schema.String),
|
|
44852
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
44853
|
+
Schema.Array(
|
|
44854
|
+
Schema.Struct({
|
|
44855
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
44856
|
+
resourceClaimName: Schema.String,
|
|
44857
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
44858
|
+
}),
|
|
44859
|
+
),
|
|
44860
|
+
),
|
|
44557
44861
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
44558
44862
|
observedGeneration: Schema.optional(Schema.Number),
|
|
44559
44863
|
phase: Schema.optional(Schema.String),
|
|
@@ -47371,6 +47675,15 @@ export const PatchCoreV1NamespacedPodResizeOutput =
|
|
|
47371
47675
|
),
|
|
47372
47676
|
),
|
|
47373
47677
|
message: Schema.optional(Schema.String),
|
|
47678
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
47679
|
+
Schema.Array(
|
|
47680
|
+
Schema.Struct({
|
|
47681
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
47682
|
+
resourceClaimName: Schema.String,
|
|
47683
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
47684
|
+
}),
|
|
47685
|
+
),
|
|
47686
|
+
),
|
|
47374
47687
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
47375
47688
|
observedGeneration: Schema.optional(Schema.Number),
|
|
47376
47689
|
phase: Schema.optional(Schema.String),
|
|
@@ -50188,6 +50501,15 @@ export const PatchCoreV1NamespacedPodStatusOutput =
|
|
|
50188
50501
|
),
|
|
50189
50502
|
),
|
|
50190
50503
|
message: Schema.optional(Schema.String),
|
|
50504
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
50505
|
+
Schema.Array(
|
|
50506
|
+
Schema.Struct({
|
|
50507
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
50508
|
+
resourceClaimName: Schema.String,
|
|
50509
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
50510
|
+
}),
|
|
50511
|
+
),
|
|
50512
|
+
),
|
|
50191
50513
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
50192
50514
|
observedGeneration: Schema.optional(Schema.Number),
|
|
50193
50515
|
phase: Schema.optional(Schema.String),
|
|
@@ -63648,6 +63970,15 @@ export const ReadCoreV1NamespacedPodOutput =
|
|
|
63648
63970
|
),
|
|
63649
63971
|
),
|
|
63650
63972
|
message: Schema.optional(Schema.String),
|
|
63973
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
63974
|
+
Schema.Array(
|
|
63975
|
+
Schema.Struct({
|
|
63976
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
63977
|
+
resourceClaimName: Schema.String,
|
|
63978
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
63979
|
+
}),
|
|
63980
|
+
),
|
|
63981
|
+
),
|
|
63651
63982
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
63652
63983
|
observedGeneration: Schema.optional(Schema.Number),
|
|
63653
63984
|
phase: Schema.optional(Schema.String),
|
|
@@ -66460,6 +66791,15 @@ export const ReadCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
66460
66791
|
),
|
|
66461
66792
|
),
|
|
66462
66793
|
message: Schema.optional(Schema.String),
|
|
66794
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
66795
|
+
Schema.Array(
|
|
66796
|
+
Schema.Struct({
|
|
66797
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
66798
|
+
resourceClaimName: Schema.String,
|
|
66799
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
66800
|
+
}),
|
|
66801
|
+
),
|
|
66802
|
+
),
|
|
66463
66803
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
66464
66804
|
observedGeneration: Schema.optional(Schema.Number),
|
|
66465
66805
|
phase: Schema.optional(Schema.String),
|
|
@@ -69298,6 +69638,15 @@ export const ReadCoreV1NamespacedPodResizeOutput =
|
|
|
69298
69638
|
),
|
|
69299
69639
|
),
|
|
69300
69640
|
message: Schema.optional(Schema.String),
|
|
69641
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
69642
|
+
Schema.Array(
|
|
69643
|
+
Schema.Struct({
|
|
69644
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
69645
|
+
resourceClaimName: Schema.String,
|
|
69646
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
69647
|
+
}),
|
|
69648
|
+
),
|
|
69649
|
+
),
|
|
69301
69650
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
69302
69651
|
observedGeneration: Schema.optional(Schema.Number),
|
|
69303
69652
|
phase: Schema.optional(Schema.String),
|
|
@@ -72109,6 +72458,15 @@ export const ReadCoreV1NamespacedPodStatusOutput =
|
|
|
72109
72458
|
),
|
|
72110
72459
|
),
|
|
72111
72460
|
message: Schema.optional(Schema.String),
|
|
72461
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
72462
|
+
Schema.Array(
|
|
72463
|
+
Schema.Struct({
|
|
72464
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
72465
|
+
resourceClaimName: Schema.String,
|
|
72466
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
72467
|
+
}),
|
|
72468
|
+
),
|
|
72469
|
+
),
|
|
72112
72470
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
72113
72471
|
observedGeneration: Schema.optional(Schema.Number),
|
|
72114
72472
|
phase: Schema.optional(Schema.String),
|
|
@@ -85542,6 +85900,15 @@ export const ReplaceCoreV1NamespacedPodOutput =
|
|
|
85542
85900
|
),
|
|
85543
85901
|
),
|
|
85544
85902
|
message: Schema.optional(Schema.String),
|
|
85903
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
85904
|
+
Schema.Array(
|
|
85905
|
+
Schema.Struct({
|
|
85906
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
85907
|
+
resourceClaimName: Schema.String,
|
|
85908
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
85909
|
+
}),
|
|
85910
|
+
),
|
|
85911
|
+
),
|
|
85545
85912
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
85546
85913
|
observedGeneration: Schema.optional(Schema.Number),
|
|
85547
85914
|
phase: Schema.optional(Schema.String),
|
|
@@ -88360,6 +88727,15 @@ export const ReplaceCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
88360
88727
|
),
|
|
88361
88728
|
),
|
|
88362
88729
|
message: Schema.optional(Schema.String),
|
|
88730
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
88731
|
+
Schema.Array(
|
|
88732
|
+
Schema.Struct({
|
|
88733
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
88734
|
+
resourceClaimName: Schema.String,
|
|
88735
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
88736
|
+
}),
|
|
88737
|
+
),
|
|
88738
|
+
),
|
|
88363
88739
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
88364
88740
|
observedGeneration: Schema.optional(Schema.Number),
|
|
88365
88741
|
phase: Schema.optional(Schema.String),
|
|
@@ -91177,6 +91553,15 @@ export const ReplaceCoreV1NamespacedPodResizeOutput =
|
|
|
91177
91553
|
),
|
|
91178
91554
|
),
|
|
91179
91555
|
message: Schema.optional(Schema.String),
|
|
91556
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
91557
|
+
Schema.Array(
|
|
91558
|
+
Schema.Struct({
|
|
91559
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
91560
|
+
resourceClaimName: Schema.String,
|
|
91561
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
91562
|
+
}),
|
|
91563
|
+
),
|
|
91564
|
+
),
|
|
91180
91565
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
91181
91566
|
observedGeneration: Schema.optional(Schema.Number),
|
|
91182
91567
|
phase: Schema.optional(Schema.String),
|
|
@@ -93994,6 +94379,15 @@ export const ReplaceCoreV1NamespacedPodStatusOutput =
|
|
|
93994
94379
|
),
|
|
93995
94380
|
),
|
|
93996
94381
|
message: Schema.optional(Schema.String),
|
|
94382
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(
|
|
94383
|
+
Schema.Array(
|
|
94384
|
+
Schema.Struct({
|
|
94385
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
94386
|
+
resourceClaimName: Schema.String,
|
|
94387
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
94388
|
+
}),
|
|
94389
|
+
),
|
|
94390
|
+
),
|
|
93997
94391
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
93998
94392
|
observedGeneration: Schema.optional(Schema.Number),
|
|
93999
94393
|
phase: Schema.optional(Schema.String),
|