@distilled.cloud/kubernetes 0.9.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/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/lib/services/core.js
CHANGED
|
@@ -2874,6 +2874,11 @@ export const CreateCoreV1NamespacedPodOutput =
|
|
|
2874
2874
|
}))),
|
|
2875
2875
|
}))),
|
|
2876
2876
|
message: Schema.optional(Schema.String),
|
|
2877
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
2878
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
2879
|
+
resourceClaimName: Schema.String,
|
|
2880
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
2881
|
+
}))),
|
|
2877
2882
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
2878
2883
|
observedGeneration: Schema.optional(Schema.Number),
|
|
2879
2884
|
phase: Schema.optional(Schema.String),
|
|
@@ -6892,6 +6897,9 @@ export const DeleteCoreV1CollectionNamespacedConfigMapOutput =
|
|
|
6892
6897
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
6893
6898
|
resourceVersion: Schema.optional(Schema.String),
|
|
6894
6899
|
selfLink: Schema.optional(Schema.String),
|
|
6900
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
6901
|
+
selector: Schema.String,
|
|
6902
|
+
})),
|
|
6895
6903
|
})),
|
|
6896
6904
|
reason: Schema.optional(Schema.String),
|
|
6897
6905
|
status: Schema.optional(Schema.String),
|
|
@@ -6939,6 +6947,9 @@ export const DeleteCoreV1CollectionNamespacedEndpointsOutput =
|
|
|
6939
6947
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
6940
6948
|
resourceVersion: Schema.optional(Schema.String),
|
|
6941
6949
|
selfLink: Schema.optional(Schema.String),
|
|
6950
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
6951
|
+
selector: Schema.String,
|
|
6952
|
+
})),
|
|
6942
6953
|
})),
|
|
6943
6954
|
reason: Schema.optional(Schema.String),
|
|
6944
6955
|
status: Schema.optional(Schema.String),
|
|
@@ -6983,6 +6994,9 @@ export const DeleteCoreV1CollectionNamespacedEventOutput =
|
|
|
6983
6994
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
6984
6995
|
resourceVersion: Schema.optional(Schema.String),
|
|
6985
6996
|
selfLink: Schema.optional(Schema.String),
|
|
6997
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
6998
|
+
selector: Schema.String,
|
|
6999
|
+
})),
|
|
6986
7000
|
})),
|
|
6987
7001
|
reason: Schema.optional(Schema.String),
|
|
6988
7002
|
status: Schema.optional(Schema.String),
|
|
@@ -7030,6 +7044,9 @@ export const DeleteCoreV1CollectionNamespacedLimitRangeOutput =
|
|
|
7030
7044
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7031
7045
|
resourceVersion: Schema.optional(Schema.String),
|
|
7032
7046
|
selfLink: Schema.optional(Schema.String),
|
|
7047
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7048
|
+
selector: Schema.String,
|
|
7049
|
+
})),
|
|
7033
7050
|
})),
|
|
7034
7051
|
reason: Schema.optional(Schema.String),
|
|
7035
7052
|
status: Schema.optional(Schema.String),
|
|
@@ -7077,6 +7094,9 @@ export const DeleteCoreV1CollectionNamespacedPersistentVolumeClaimOutput =
|
|
|
7077
7094
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7078
7095
|
resourceVersion: Schema.optional(Schema.String),
|
|
7079
7096
|
selfLink: Schema.optional(Schema.String),
|
|
7097
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7098
|
+
selector: Schema.String,
|
|
7099
|
+
})),
|
|
7080
7100
|
})),
|
|
7081
7101
|
reason: Schema.optional(Schema.String),
|
|
7082
7102
|
status: Schema.optional(Schema.String),
|
|
@@ -7121,6 +7141,9 @@ export const DeleteCoreV1CollectionNamespacedPodOutput =
|
|
|
7121
7141
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7122
7142
|
resourceVersion: Schema.optional(Schema.String),
|
|
7123
7143
|
selfLink: Schema.optional(Schema.String),
|
|
7144
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7145
|
+
selector: Schema.String,
|
|
7146
|
+
})),
|
|
7124
7147
|
})),
|
|
7125
7148
|
reason: Schema.optional(Schema.String),
|
|
7126
7149
|
status: Schema.optional(Schema.String),
|
|
@@ -7168,6 +7191,9 @@ export const DeleteCoreV1CollectionNamespacedPodTemplateOutput =
|
|
|
7168
7191
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7169
7192
|
resourceVersion: Schema.optional(Schema.String),
|
|
7170
7193
|
selfLink: Schema.optional(Schema.String),
|
|
7194
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7195
|
+
selector: Schema.String,
|
|
7196
|
+
})),
|
|
7171
7197
|
})),
|
|
7172
7198
|
reason: Schema.optional(Schema.String),
|
|
7173
7199
|
status: Schema.optional(Schema.String),
|
|
@@ -7215,6 +7241,9 @@ export const DeleteCoreV1CollectionNamespacedReplicationControllerOutput =
|
|
|
7215
7241
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7216
7242
|
resourceVersion: Schema.optional(Schema.String),
|
|
7217
7243
|
selfLink: Schema.optional(Schema.String),
|
|
7244
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7245
|
+
selector: Schema.String,
|
|
7246
|
+
})),
|
|
7218
7247
|
})),
|
|
7219
7248
|
reason: Schema.optional(Schema.String),
|
|
7220
7249
|
status: Schema.optional(Schema.String),
|
|
@@ -7262,6 +7291,9 @@ export const DeleteCoreV1CollectionNamespacedResourceQuotaOutput =
|
|
|
7262
7291
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7263
7292
|
resourceVersion: Schema.optional(Schema.String),
|
|
7264
7293
|
selfLink: Schema.optional(Schema.String),
|
|
7294
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7295
|
+
selector: Schema.String,
|
|
7296
|
+
})),
|
|
7265
7297
|
})),
|
|
7266
7298
|
reason: Schema.optional(Schema.String),
|
|
7267
7299
|
status: Schema.optional(Schema.String),
|
|
@@ -7309,6 +7341,9 @@ export const DeleteCoreV1CollectionNamespacedSecretOutput =
|
|
|
7309
7341
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7310
7342
|
resourceVersion: Schema.optional(Schema.String),
|
|
7311
7343
|
selfLink: Schema.optional(Schema.String),
|
|
7344
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7345
|
+
selector: Schema.String,
|
|
7346
|
+
})),
|
|
7312
7347
|
})),
|
|
7313
7348
|
reason: Schema.optional(Schema.String),
|
|
7314
7349
|
status: Schema.optional(Schema.String),
|
|
@@ -7356,6 +7391,9 @@ export const DeleteCoreV1CollectionNamespacedServiceOutput =
|
|
|
7356
7391
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7357
7392
|
resourceVersion: Schema.optional(Schema.String),
|
|
7358
7393
|
selfLink: Schema.optional(Schema.String),
|
|
7394
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7395
|
+
selector: Schema.String,
|
|
7396
|
+
})),
|
|
7359
7397
|
})),
|
|
7360
7398
|
reason: Schema.optional(Schema.String),
|
|
7361
7399
|
status: Schema.optional(Schema.String),
|
|
@@ -7403,6 +7441,9 @@ export const DeleteCoreV1CollectionNamespacedServiceAccountOutput =
|
|
|
7403
7441
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7404
7442
|
resourceVersion: Schema.optional(Schema.String),
|
|
7405
7443
|
selfLink: Schema.optional(Schema.String),
|
|
7444
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7445
|
+
selector: Schema.String,
|
|
7446
|
+
})),
|
|
7406
7447
|
})),
|
|
7407
7448
|
reason: Schema.optional(Schema.String),
|
|
7408
7449
|
status: Schema.optional(Schema.String),
|
|
@@ -7447,6 +7488,9 @@ export const DeleteCoreV1CollectionNodeOutput =
|
|
|
7447
7488
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7448
7489
|
resourceVersion: Schema.optional(Schema.String),
|
|
7449
7490
|
selfLink: Schema.optional(Schema.String),
|
|
7491
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7492
|
+
selector: Schema.String,
|
|
7493
|
+
})),
|
|
7450
7494
|
})),
|
|
7451
7495
|
reason: Schema.optional(Schema.String),
|
|
7452
7496
|
status: Schema.optional(Schema.String),
|
|
@@ -7490,6 +7534,9 @@ export const DeleteCoreV1CollectionPersistentVolumeOutput =
|
|
|
7490
7534
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7491
7535
|
resourceVersion: Schema.optional(Schema.String),
|
|
7492
7536
|
selfLink: Schema.optional(Schema.String),
|
|
7537
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7538
|
+
selector: Schema.String,
|
|
7539
|
+
})),
|
|
7493
7540
|
})),
|
|
7494
7541
|
reason: Schema.optional(Schema.String),
|
|
7495
7542
|
status: Schema.optional(Schema.String),
|
|
@@ -7534,6 +7581,9 @@ export const DeleteCoreV1NamespaceOutput =
|
|
|
7534
7581
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7535
7582
|
resourceVersion: Schema.optional(Schema.String),
|
|
7536
7583
|
selfLink: Schema.optional(Schema.String),
|
|
7584
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7585
|
+
selector: Schema.String,
|
|
7586
|
+
})),
|
|
7537
7587
|
})),
|
|
7538
7588
|
reason: Schema.optional(Schema.String),
|
|
7539
7589
|
status: Schema.optional(Schema.String),
|
|
@@ -7580,6 +7630,9 @@ export const DeleteCoreV1NamespacedConfigMapOutput =
|
|
|
7580
7630
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7581
7631
|
resourceVersion: Schema.optional(Schema.String),
|
|
7582
7632
|
selfLink: Schema.optional(Schema.String),
|
|
7633
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7634
|
+
selector: Schema.String,
|
|
7635
|
+
})),
|
|
7583
7636
|
})),
|
|
7584
7637
|
reason: Schema.optional(Schema.String),
|
|
7585
7638
|
status: Schema.optional(Schema.String),
|
|
@@ -7627,6 +7680,9 @@ export const DeleteCoreV1NamespacedEndpointsOutput =
|
|
|
7627
7680
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7628
7681
|
resourceVersion: Schema.optional(Schema.String),
|
|
7629
7682
|
selfLink: Schema.optional(Schema.String),
|
|
7683
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7684
|
+
selector: Schema.String,
|
|
7685
|
+
})),
|
|
7630
7686
|
})),
|
|
7631
7687
|
reason: Schema.optional(Schema.String),
|
|
7632
7688
|
status: Schema.optional(Schema.String),
|
|
@@ -7674,6 +7730,9 @@ export const DeleteCoreV1NamespacedEventOutput =
|
|
|
7674
7730
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7675
7731
|
resourceVersion: Schema.optional(Schema.String),
|
|
7676
7732
|
selfLink: Schema.optional(Schema.String),
|
|
7733
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7734
|
+
selector: Schema.String,
|
|
7735
|
+
})),
|
|
7677
7736
|
})),
|
|
7678
7737
|
reason: Schema.optional(Schema.String),
|
|
7679
7738
|
status: Schema.optional(Schema.String),
|
|
@@ -7720,6 +7779,9 @@ export const DeleteCoreV1NamespacedLimitRangeOutput =
|
|
|
7720
7779
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
7721
7780
|
resourceVersion: Schema.optional(Schema.String),
|
|
7722
7781
|
selfLink: Schema.optional(Schema.String),
|
|
7782
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
7783
|
+
selector: Schema.String,
|
|
7784
|
+
})),
|
|
7723
7785
|
})),
|
|
7724
7786
|
reason: Schema.optional(Schema.String),
|
|
7725
7787
|
status: Schema.optional(Schema.String),
|
|
@@ -9544,6 +9606,11 @@ export const DeleteCoreV1NamespacedPodOutput =
|
|
|
9544
9606
|
}))),
|
|
9545
9607
|
}))),
|
|
9546
9608
|
message: Schema.optional(Schema.String),
|
|
9609
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
9610
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
9611
|
+
resourceClaimName: Schema.String,
|
|
9612
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
9613
|
+
}))),
|
|
9547
9614
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
9548
9615
|
observedGeneration: Schema.optional(Schema.Number),
|
|
9549
9616
|
phase: Schema.optional(Schema.String),
|
|
@@ -11092,6 +11159,9 @@ export const DeleteCoreV1NamespacedReplicationControllerOutput =
|
|
|
11092
11159
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11093
11160
|
resourceVersion: Schema.optional(Schema.String),
|
|
11094
11161
|
selfLink: Schema.optional(Schema.String),
|
|
11162
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
11163
|
+
selector: Schema.String,
|
|
11164
|
+
})),
|
|
11095
11165
|
})),
|
|
11096
11166
|
reason: Schema.optional(Schema.String),
|
|
11097
11167
|
status: Schema.optional(Schema.String),
|
|
@@ -11211,6 +11281,9 @@ export const DeleteCoreV1NamespacedSecretOutput =
|
|
|
11211
11281
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11212
11282
|
resourceVersion: Schema.optional(Schema.String),
|
|
11213
11283
|
selfLink: Schema.optional(Schema.String),
|
|
11284
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
11285
|
+
selector: Schema.String,
|
|
11286
|
+
})),
|
|
11214
11287
|
})),
|
|
11215
11288
|
reason: Schema.optional(Schema.String),
|
|
11216
11289
|
status: Schema.optional(Schema.String),
|
|
@@ -11435,6 +11508,9 @@ export const DeleteCoreV1NodeOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct(
|
|
|
11435
11508
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11436
11509
|
resourceVersion: Schema.optional(Schema.String),
|
|
11437
11510
|
selfLink: Schema.optional(Schema.String),
|
|
11511
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
11512
|
+
selector: Schema.String,
|
|
11513
|
+
})),
|
|
11438
11514
|
})),
|
|
11439
11515
|
reason: Schema.optional(Schema.String),
|
|
11440
11516
|
status: Schema.optional(Schema.String),
|
|
@@ -11933,6 +12009,9 @@ export const ListCoreV1ComponentStatusOutput =
|
|
|
11933
12009
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11934
12010
|
resourceVersion: Schema.optional(Schema.String),
|
|
11935
12011
|
selfLink: Schema.optional(Schema.String),
|
|
12012
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12013
|
+
selector: Schema.String,
|
|
12014
|
+
})),
|
|
11936
12015
|
})),
|
|
11937
12016
|
});
|
|
11938
12017
|
// The operation
|
|
@@ -11995,6 +12074,9 @@ export const ListCoreV1ConfigMapForAllNamespacesOutput =
|
|
|
11995
12074
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
11996
12075
|
resourceVersion: Schema.optional(Schema.String),
|
|
11997
12076
|
selfLink: Schema.optional(Schema.String),
|
|
12077
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12078
|
+
selector: Schema.String,
|
|
12079
|
+
})),
|
|
11998
12080
|
})),
|
|
11999
12081
|
});
|
|
12000
12082
|
// The operation
|
|
@@ -12091,6 +12173,9 @@ export const ListCoreV1EndpointsForAllNamespacesOutput =
|
|
|
12091
12173
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12092
12174
|
resourceVersion: Schema.optional(Schema.String),
|
|
12093
12175
|
selfLink: Schema.optional(Schema.String),
|
|
12176
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12177
|
+
selector: Schema.String,
|
|
12178
|
+
})),
|
|
12094
12179
|
})),
|
|
12095
12180
|
});
|
|
12096
12181
|
// The operation
|
|
@@ -12187,6 +12272,9 @@ export const ListCoreV1EventForAllNamespacesOutput =
|
|
|
12187
12272
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12188
12273
|
resourceVersion: Schema.optional(Schema.String),
|
|
12189
12274
|
selfLink: Schema.optional(Schema.String),
|
|
12275
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12276
|
+
selector: Schema.String,
|
|
12277
|
+
})),
|
|
12190
12278
|
})),
|
|
12191
12279
|
});
|
|
12192
12280
|
// The operation
|
|
@@ -12257,6 +12345,9 @@ export const ListCoreV1LimitRangeForAllNamespacesOutput =
|
|
|
12257
12345
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12258
12346
|
resourceVersion: Schema.optional(Schema.String),
|
|
12259
12347
|
selfLink: Schema.optional(Schema.String),
|
|
12348
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12349
|
+
selector: Schema.String,
|
|
12350
|
+
})),
|
|
12260
12351
|
})),
|
|
12261
12352
|
});
|
|
12262
12353
|
// The operation
|
|
@@ -12330,6 +12421,9 @@ export const ListCoreV1NamespaceOutput =
|
|
|
12330
12421
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12331
12422
|
resourceVersion: Schema.optional(Schema.String),
|
|
12332
12423
|
selfLink: Schema.optional(Schema.String),
|
|
12424
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12425
|
+
selector: Schema.String,
|
|
12426
|
+
})),
|
|
12333
12427
|
})),
|
|
12334
12428
|
});
|
|
12335
12429
|
// The operation
|
|
@@ -12395,6 +12489,9 @@ export const ListCoreV1NamespacedConfigMapOutput =
|
|
|
12395
12489
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12396
12490
|
resourceVersion: Schema.optional(Schema.String),
|
|
12397
12491
|
selfLink: Schema.optional(Schema.String),
|
|
12492
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12493
|
+
selector: Schema.String,
|
|
12494
|
+
})),
|
|
12398
12495
|
})),
|
|
12399
12496
|
});
|
|
12400
12497
|
// The operation
|
|
@@ -12491,6 +12588,9 @@ export const ListCoreV1NamespacedEndpointsOutput =
|
|
|
12491
12588
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12492
12589
|
resourceVersion: Schema.optional(Schema.String),
|
|
12493
12590
|
selfLink: Schema.optional(Schema.String),
|
|
12591
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12592
|
+
selector: Schema.String,
|
|
12593
|
+
})),
|
|
12494
12594
|
})),
|
|
12495
12595
|
});
|
|
12496
12596
|
// The operation
|
|
@@ -12587,6 +12687,9 @@ export const ListCoreV1NamespacedEventOutput =
|
|
|
12587
12687
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12588
12688
|
resourceVersion: Schema.optional(Schema.String),
|
|
12589
12689
|
selfLink: Schema.optional(Schema.String),
|
|
12690
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12691
|
+
selector: Schema.String,
|
|
12692
|
+
})),
|
|
12590
12693
|
})),
|
|
12591
12694
|
});
|
|
12592
12695
|
// The operation
|
|
@@ -12659,6 +12762,9 @@ export const ListCoreV1NamespacedLimitRangeOutput =
|
|
|
12659
12762
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12660
12763
|
resourceVersion: Schema.optional(Schema.String),
|
|
12661
12764
|
selfLink: Schema.optional(Schema.String),
|
|
12765
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12766
|
+
selector: Schema.String,
|
|
12767
|
+
})),
|
|
12662
12768
|
})),
|
|
12663
12769
|
});
|
|
12664
12770
|
// The operation
|
|
@@ -12772,6 +12878,9 @@ export const ListCoreV1NamespacedPersistentVolumeClaimOutput =
|
|
|
12772
12878
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
12773
12879
|
resourceVersion: Schema.optional(Schema.String),
|
|
12774
12880
|
selfLink: Schema.optional(Schema.String),
|
|
12881
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
12882
|
+
selector: Schema.String,
|
|
12883
|
+
})),
|
|
12775
12884
|
})),
|
|
12776
12885
|
});
|
|
12777
12886
|
// The operation
|
|
@@ -14482,6 +14591,11 @@ export const ListCoreV1NamespacedPodOutput =
|
|
|
14482
14591
|
}))),
|
|
14483
14592
|
}))),
|
|
14484
14593
|
message: Schema.optional(Schema.String),
|
|
14594
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
14595
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
14596
|
+
resourceClaimName: Schema.String,
|
|
14597
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
14598
|
+
}))),
|
|
14485
14599
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
14486
14600
|
observedGeneration: Schema.optional(Schema.Number),
|
|
14487
14601
|
phase: Schema.optional(Schema.String),
|
|
@@ -14513,6 +14627,9 @@ export const ListCoreV1NamespacedPodOutput =
|
|
|
14513
14627
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
14514
14628
|
resourceVersion: Schema.optional(Schema.String),
|
|
14515
14629
|
selfLink: Schema.optional(Schema.String),
|
|
14630
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
14631
|
+
selector: Schema.String,
|
|
14632
|
+
})),
|
|
14516
14633
|
})),
|
|
14517
14634
|
});
|
|
14518
14635
|
// The operation
|
|
@@ -15999,6 +16116,9 @@ export const ListCoreV1NamespacedPodTemplateOutput =
|
|
|
15999
16116
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
16000
16117
|
resourceVersion: Schema.optional(Schema.String),
|
|
16001
16118
|
selfLink: Schema.optional(Schema.String),
|
|
16119
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
16120
|
+
selector: Schema.String,
|
|
16121
|
+
})),
|
|
16002
16122
|
})),
|
|
16003
16123
|
});
|
|
16004
16124
|
// The operation
|
|
@@ -17505,6 +17625,9 @@ export const ListCoreV1NamespacedReplicationControllerOutput =
|
|
|
17505
17625
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17506
17626
|
resourceVersion: Schema.optional(Schema.String),
|
|
17507
17627
|
selfLink: Schema.optional(Schema.String),
|
|
17628
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
17629
|
+
selector: Schema.String,
|
|
17630
|
+
})),
|
|
17508
17631
|
})),
|
|
17509
17632
|
});
|
|
17510
17633
|
// The operation
|
|
@@ -17583,6 +17706,9 @@ export const ListCoreV1NamespacedResourceQuotaOutput =
|
|
|
17583
17706
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17584
17707
|
resourceVersion: Schema.optional(Schema.String),
|
|
17585
17708
|
selfLink: Schema.optional(Schema.String),
|
|
17709
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
17710
|
+
selector: Schema.String,
|
|
17711
|
+
})),
|
|
17586
17712
|
})),
|
|
17587
17713
|
});
|
|
17588
17714
|
// The operation
|
|
@@ -17647,6 +17773,9 @@ export const ListCoreV1NamespacedSecretOutput =
|
|
|
17647
17773
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17648
17774
|
resourceVersion: Schema.optional(Schema.String),
|
|
17649
17775
|
selfLink: Schema.optional(Schema.String),
|
|
17776
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
17777
|
+
selector: Schema.String,
|
|
17778
|
+
})),
|
|
17650
17779
|
})),
|
|
17651
17780
|
});
|
|
17652
17781
|
// The operation
|
|
@@ -17761,6 +17890,9 @@ export const ListCoreV1NamespacedServiceOutput =
|
|
|
17761
17890
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17762
17891
|
resourceVersion: Schema.optional(Schema.String),
|
|
17763
17892
|
selfLink: Schema.optional(Schema.String),
|
|
17893
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
17894
|
+
selector: Schema.String,
|
|
17895
|
+
})),
|
|
17764
17896
|
})),
|
|
17765
17897
|
});
|
|
17766
17898
|
// The operation
|
|
@@ -17836,6 +17968,9 @@ export const ListCoreV1NamespacedServiceAccountOutput =
|
|
|
17836
17968
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
17837
17969
|
resourceVersion: Schema.optional(Schema.String),
|
|
17838
17970
|
selfLink: Schema.optional(Schema.String),
|
|
17971
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
17972
|
+
selector: Schema.String,
|
|
17973
|
+
})),
|
|
17839
17974
|
})),
|
|
17840
17975
|
});
|
|
17841
17976
|
// The operation
|
|
@@ -18003,6 +18138,9 @@ export const ListCoreV1NodeOutput = /*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
|
18003
18138
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18004
18139
|
resourceVersion: Schema.optional(Schema.String),
|
|
18005
18140
|
selfLink: Schema.optional(Schema.String),
|
|
18141
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
18142
|
+
selector: Schema.String,
|
|
18143
|
+
})),
|
|
18006
18144
|
})),
|
|
18007
18145
|
});
|
|
18008
18146
|
// The operation
|
|
@@ -18297,6 +18435,9 @@ export const ListCoreV1PersistentVolumeOutput =
|
|
|
18297
18435
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18298
18436
|
resourceVersion: Schema.optional(Schema.String),
|
|
18299
18437
|
selfLink: Schema.optional(Schema.String),
|
|
18438
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
18439
|
+
selector: Schema.String,
|
|
18440
|
+
})),
|
|
18300
18441
|
})),
|
|
18301
18442
|
});
|
|
18302
18443
|
// The operation
|
|
@@ -18406,6 +18547,9 @@ export const ListCoreV1PersistentVolumeClaimForAllNamespacesOutput =
|
|
|
18406
18547
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
18407
18548
|
resourceVersion: Schema.optional(Schema.String),
|
|
18408
18549
|
selfLink: Schema.optional(Schema.String),
|
|
18550
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
18551
|
+
selector: Schema.String,
|
|
18552
|
+
})),
|
|
18409
18553
|
})),
|
|
18410
18554
|
});
|
|
18411
18555
|
// The operation
|
|
@@ -20116,6 +20260,11 @@ export const ListCoreV1PodForAllNamespacesOutput =
|
|
|
20116
20260
|
}))),
|
|
20117
20261
|
}))),
|
|
20118
20262
|
message: Schema.optional(Schema.String),
|
|
20263
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
20264
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
20265
|
+
resourceClaimName: Schema.String,
|
|
20266
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
20267
|
+
}))),
|
|
20119
20268
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
20120
20269
|
observedGeneration: Schema.optional(Schema.Number),
|
|
20121
20270
|
phase: Schema.optional(Schema.String),
|
|
@@ -20147,6 +20296,9 @@ export const ListCoreV1PodForAllNamespacesOutput =
|
|
|
20147
20296
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
20148
20297
|
resourceVersion: Schema.optional(Schema.String),
|
|
20149
20298
|
selfLink: Schema.optional(Schema.String),
|
|
20299
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
20300
|
+
selector: Schema.String,
|
|
20301
|
+
})),
|
|
20150
20302
|
})),
|
|
20151
20303
|
});
|
|
20152
20304
|
// The operation
|
|
@@ -21631,6 +21783,9 @@ export const ListCoreV1PodTemplateForAllNamespacesOutput =
|
|
|
21631
21783
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
21632
21784
|
resourceVersion: Schema.optional(Schema.String),
|
|
21633
21785
|
selfLink: Schema.optional(Schema.String),
|
|
21786
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
21787
|
+
selector: Schema.String,
|
|
21788
|
+
})),
|
|
21634
21789
|
})),
|
|
21635
21790
|
});
|
|
21636
21791
|
// The operation
|
|
@@ -23134,6 +23289,9 @@ export const ListCoreV1ReplicationControllerForAllNamespacesOutput =
|
|
|
23134
23289
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
23135
23290
|
resourceVersion: Schema.optional(Schema.String),
|
|
23136
23291
|
selfLink: Schema.optional(Schema.String),
|
|
23292
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
23293
|
+
selector: Schema.String,
|
|
23294
|
+
})),
|
|
23137
23295
|
})),
|
|
23138
23296
|
});
|
|
23139
23297
|
// The operation
|
|
@@ -23209,6 +23367,9 @@ export const ListCoreV1ResourceQuotaForAllNamespacesOutput =
|
|
|
23209
23367
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
23210
23368
|
resourceVersion: Schema.optional(Schema.String),
|
|
23211
23369
|
selfLink: Schema.optional(Schema.String),
|
|
23370
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
23371
|
+
selector: Schema.String,
|
|
23372
|
+
})),
|
|
23212
23373
|
})),
|
|
23213
23374
|
});
|
|
23214
23375
|
// The operation
|
|
@@ -23273,6 +23434,9 @@ export const ListCoreV1SecretForAllNamespacesOutput =
|
|
|
23273
23434
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
23274
23435
|
resourceVersion: Schema.optional(Schema.String),
|
|
23275
23436
|
selfLink: Schema.optional(Schema.String),
|
|
23437
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
23438
|
+
selector: Schema.String,
|
|
23439
|
+
})),
|
|
23276
23440
|
})),
|
|
23277
23441
|
});
|
|
23278
23442
|
// The operation
|
|
@@ -23346,6 +23510,9 @@ export const ListCoreV1ServiceAccountForAllNamespacesOutput =
|
|
|
23346
23510
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
23347
23511
|
resourceVersion: Schema.optional(Schema.String),
|
|
23348
23512
|
selfLink: Schema.optional(Schema.String),
|
|
23513
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
23514
|
+
selector: Schema.String,
|
|
23515
|
+
})),
|
|
23349
23516
|
})),
|
|
23350
23517
|
});
|
|
23351
23518
|
// The operation
|
|
@@ -23461,6 +23628,9 @@ export const ListCoreV1ServiceForAllNamespacesOutput =
|
|
|
23461
23628
|
remainingItemCount: Schema.optional(Schema.Number),
|
|
23462
23629
|
resourceVersion: Schema.optional(Schema.String),
|
|
23463
23630
|
selfLink: Schema.optional(Schema.String),
|
|
23631
|
+
shardInfo: Schema.optional(Schema.Struct({
|
|
23632
|
+
selector: Schema.String,
|
|
23633
|
+
})),
|
|
23464
23634
|
})),
|
|
23465
23635
|
});
|
|
23466
23636
|
// The operation
|
|
@@ -25868,6 +26038,11 @@ export const PatchCoreV1NamespacedPodOutput =
|
|
|
25868
26038
|
}))),
|
|
25869
26039
|
}))),
|
|
25870
26040
|
message: Schema.optional(Schema.String),
|
|
26041
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
26042
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
26043
|
+
resourceClaimName: Schema.String,
|
|
26044
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
26045
|
+
}))),
|
|
25871
26046
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
25872
26047
|
observedGeneration: Schema.optional(Schema.Number),
|
|
25873
26048
|
phase: Schema.optional(Schema.String),
|
|
@@ -27607,6 +27782,11 @@ export const PatchCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
27607
27782
|
}))),
|
|
27608
27783
|
}))),
|
|
27609
27784
|
message: Schema.optional(Schema.String),
|
|
27785
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
27786
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
27787
|
+
resourceClaimName: Schema.String,
|
|
27788
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
27789
|
+
}))),
|
|
27610
27790
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
27611
27791
|
observedGeneration: Schema.optional(Schema.Number),
|
|
27612
27792
|
phase: Schema.optional(Schema.String),
|
|
@@ -29347,6 +29527,11 @@ export const PatchCoreV1NamespacedPodResizeOutput =
|
|
|
29347
29527
|
}))),
|
|
29348
29528
|
}))),
|
|
29349
29529
|
message: Schema.optional(Schema.String),
|
|
29530
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
29531
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
29532
|
+
resourceClaimName: Schema.String,
|
|
29533
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
29534
|
+
}))),
|
|
29350
29535
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
29351
29536
|
observedGeneration: Schema.optional(Schema.Number),
|
|
29352
29537
|
phase: Schema.optional(Schema.String),
|
|
@@ -31087,6 +31272,11 @@ export const PatchCoreV1NamespacedPodStatusOutput =
|
|
|
31087
31272
|
}))),
|
|
31088
31273
|
}))),
|
|
31089
31274
|
message: Schema.optional(Schema.String),
|
|
31275
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
31276
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
31277
|
+
resourceClaimName: Schema.String,
|
|
31278
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
31279
|
+
}))),
|
|
31090
31280
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
31091
31281
|
observedGeneration: Schema.optional(Schema.Number),
|
|
31092
31282
|
phase: Schema.optional(Schema.String),
|
|
@@ -39478,6 +39668,11 @@ export const ReadCoreV1NamespacedPodOutput =
|
|
|
39478
39668
|
}))),
|
|
39479
39669
|
}))),
|
|
39480
39670
|
message: Schema.optional(Schema.String),
|
|
39671
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
39672
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
39673
|
+
resourceClaimName: Schema.String,
|
|
39674
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
39675
|
+
}))),
|
|
39481
39676
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
39482
39677
|
observedGeneration: Schema.optional(Schema.Number),
|
|
39483
39678
|
phase: Schema.optional(Schema.String),
|
|
@@ -41211,6 +41406,11 @@ export const ReadCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
41211
41406
|
}))),
|
|
41212
41407
|
}))),
|
|
41213
41408
|
message: Schema.optional(Schema.String),
|
|
41409
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
41410
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
41411
|
+
resourceClaimName: Schema.String,
|
|
41412
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
41413
|
+
}))),
|
|
41214
41414
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
41215
41415
|
observedGeneration: Schema.optional(Schema.Number),
|
|
41216
41416
|
phase: Schema.optional(Schema.String),
|
|
@@ -42962,6 +43162,11 @@ export const ReadCoreV1NamespacedPodResizeOutput =
|
|
|
42962
43162
|
}))),
|
|
42963
43163
|
}))),
|
|
42964
43164
|
message: Schema.optional(Schema.String),
|
|
43165
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
43166
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
43167
|
+
resourceClaimName: Schema.String,
|
|
43168
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
43169
|
+
}))),
|
|
42965
43170
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
42966
43171
|
observedGeneration: Schema.optional(Schema.Number),
|
|
42967
43172
|
phase: Schema.optional(Schema.String),
|
|
@@ -44696,6 +44901,11 @@ export const ReadCoreV1NamespacedPodStatusOutput =
|
|
|
44696
44901
|
}))),
|
|
44697
44902
|
}))),
|
|
44698
44903
|
message: Schema.optional(Schema.String),
|
|
44904
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
44905
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
44906
|
+
resourceClaimName: Schema.String,
|
|
44907
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
44908
|
+
}))),
|
|
44699
44909
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
44700
44910
|
observedGeneration: Schema.optional(Schema.Number),
|
|
44701
44911
|
phase: Schema.optional(Schema.String),
|
|
@@ -53057,6 +53267,11 @@ export const ReplaceCoreV1NamespacedPodOutput =
|
|
|
53057
53267
|
}))),
|
|
53058
53268
|
}))),
|
|
53059
53269
|
message: Schema.optional(Schema.String),
|
|
53270
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
53271
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
53272
|
+
resourceClaimName: Schema.String,
|
|
53273
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
53274
|
+
}))),
|
|
53060
53275
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
53061
53276
|
observedGeneration: Schema.optional(Schema.Number),
|
|
53062
53277
|
phase: Schema.optional(Schema.String),
|
|
@@ -54796,6 +55011,11 @@ export const ReplaceCoreV1NamespacedPodEphemeralcontainersOutput =
|
|
|
54796
55011
|
}))),
|
|
54797
55012
|
}))),
|
|
54798
55013
|
message: Schema.optional(Schema.String),
|
|
55014
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
55015
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
55016
|
+
resourceClaimName: Schema.String,
|
|
55017
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
55018
|
+
}))),
|
|
54799
55019
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
54800
55020
|
observedGeneration: Schema.optional(Schema.Number),
|
|
54801
55021
|
phase: Schema.optional(Schema.String),
|
|
@@ -56536,6 +56756,11 @@ export const ReplaceCoreV1NamespacedPodResizeOutput =
|
|
|
56536
56756
|
}))),
|
|
56537
56757
|
}))),
|
|
56538
56758
|
message: Schema.optional(Schema.String),
|
|
56759
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
56760
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
56761
|
+
resourceClaimName: Schema.String,
|
|
56762
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
56763
|
+
}))),
|
|
56539
56764
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
56540
56765
|
observedGeneration: Schema.optional(Schema.Number),
|
|
56541
56766
|
phase: Schema.optional(Schema.String),
|
|
@@ -58276,6 +58501,11 @@ export const ReplaceCoreV1NamespacedPodStatusOutput =
|
|
|
58276
58501
|
}))),
|
|
58277
58502
|
}))),
|
|
58278
58503
|
message: Schema.optional(Schema.String),
|
|
58504
|
+
nodeAllocatableResourceClaimStatuses: Schema.optional(Schema.Array(Schema.Struct({
|
|
58505
|
+
containers: Schema.optional(Schema.Array(Schema.String)),
|
|
58506
|
+
resourceClaimName: Schema.String,
|
|
58507
|
+
resources: Schema.Record(Schema.String, Schema.String),
|
|
58508
|
+
}))),
|
|
58279
58509
|
nominatedNodeName: Schema.optional(Schema.String),
|
|
58280
58510
|
observedGeneration: Schema.optional(Schema.Number),
|
|
58281
58511
|
phase: Schema.optional(Schema.String),
|