@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.d.ts
CHANGED
|
@@ -2484,6 +2484,11 @@ export declare const CreateCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
2484
2484
|
}>>>;
|
|
2485
2485
|
}>>>;
|
|
2486
2486
|
readonly message: Schema.optional<Schema.String>;
|
|
2487
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2488
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2489
|
+
readonly resourceClaimName: Schema.String;
|
|
2490
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
2491
|
+
}>>>;
|
|
2487
2492
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
2488
2493
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
2489
2494
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -6398,6 +6403,9 @@ export declare const DeleteCoreV1CollectionNamespacedConfigMapOutput: Schema.Str
|
|
|
6398
6403
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6399
6404
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6400
6405
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6406
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6407
|
+
readonly selector: Schema.String;
|
|
6408
|
+
}>>;
|
|
6401
6409
|
}>>;
|
|
6402
6410
|
readonly reason: Schema.optional<Schema.String>;
|
|
6403
6411
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6435,6 +6443,9 @@ export declare const DeleteCoreV1CollectionNamespacedEndpointsOutput: Schema.Str
|
|
|
6435
6443
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6436
6444
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6437
6445
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6446
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6447
|
+
readonly selector: Schema.String;
|
|
6448
|
+
}>>;
|
|
6438
6449
|
}>>;
|
|
6439
6450
|
readonly reason: Schema.optional<Schema.String>;
|
|
6440
6451
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6472,6 +6483,9 @@ export declare const DeleteCoreV1CollectionNamespacedEventOutput: Schema.Struct<
|
|
|
6472
6483
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6473
6484
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6474
6485
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6486
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6487
|
+
readonly selector: Schema.String;
|
|
6488
|
+
}>>;
|
|
6475
6489
|
}>>;
|
|
6476
6490
|
readonly reason: Schema.optional<Schema.String>;
|
|
6477
6491
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6509,6 +6523,9 @@ export declare const DeleteCoreV1CollectionNamespacedLimitRangeOutput: Schema.St
|
|
|
6509
6523
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6510
6524
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6511
6525
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6526
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6527
|
+
readonly selector: Schema.String;
|
|
6528
|
+
}>>;
|
|
6512
6529
|
}>>;
|
|
6513
6530
|
readonly reason: Schema.optional<Schema.String>;
|
|
6514
6531
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6546,6 +6563,9 @@ export declare const DeleteCoreV1CollectionNamespacedPersistentVolumeClaimOutput
|
|
|
6546
6563
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6547
6564
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6548
6565
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6566
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6567
|
+
readonly selector: Schema.String;
|
|
6568
|
+
}>>;
|
|
6549
6569
|
}>>;
|
|
6550
6570
|
readonly reason: Schema.optional<Schema.String>;
|
|
6551
6571
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6583,6 +6603,9 @@ export declare const DeleteCoreV1CollectionNamespacedPodOutput: Schema.Struct<{
|
|
|
6583
6603
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6584
6604
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6585
6605
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6606
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6607
|
+
readonly selector: Schema.String;
|
|
6608
|
+
}>>;
|
|
6586
6609
|
}>>;
|
|
6587
6610
|
readonly reason: Schema.optional<Schema.String>;
|
|
6588
6611
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6620,6 +6643,9 @@ export declare const DeleteCoreV1CollectionNamespacedPodTemplateOutput: Schema.S
|
|
|
6620
6643
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6621
6644
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6622
6645
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6646
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6647
|
+
readonly selector: Schema.String;
|
|
6648
|
+
}>>;
|
|
6623
6649
|
}>>;
|
|
6624
6650
|
readonly reason: Schema.optional<Schema.String>;
|
|
6625
6651
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6657,6 +6683,9 @@ export declare const DeleteCoreV1CollectionNamespacedReplicationControllerOutput
|
|
|
6657
6683
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6658
6684
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6659
6685
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6686
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6687
|
+
readonly selector: Schema.String;
|
|
6688
|
+
}>>;
|
|
6660
6689
|
}>>;
|
|
6661
6690
|
readonly reason: Schema.optional<Schema.String>;
|
|
6662
6691
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6694,6 +6723,9 @@ export declare const DeleteCoreV1CollectionNamespacedResourceQuotaOutput: Schema
|
|
|
6694
6723
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6695
6724
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6696
6725
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6726
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6727
|
+
readonly selector: Schema.String;
|
|
6728
|
+
}>>;
|
|
6697
6729
|
}>>;
|
|
6698
6730
|
readonly reason: Schema.optional<Schema.String>;
|
|
6699
6731
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6731,6 +6763,9 @@ export declare const DeleteCoreV1CollectionNamespacedSecretOutput: Schema.Struct
|
|
|
6731
6763
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6732
6764
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6733
6765
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6766
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6767
|
+
readonly selector: Schema.String;
|
|
6768
|
+
}>>;
|
|
6734
6769
|
}>>;
|
|
6735
6770
|
readonly reason: Schema.optional<Schema.String>;
|
|
6736
6771
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6768,6 +6803,9 @@ export declare const DeleteCoreV1CollectionNamespacedServiceOutput: Schema.Struc
|
|
|
6768
6803
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6769
6804
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6770
6805
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6806
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6807
|
+
readonly selector: Schema.String;
|
|
6808
|
+
}>>;
|
|
6771
6809
|
}>>;
|
|
6772
6810
|
readonly reason: Schema.optional<Schema.String>;
|
|
6773
6811
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6805,6 +6843,9 @@ export declare const DeleteCoreV1CollectionNamespacedServiceAccountOutput: Schem
|
|
|
6805
6843
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6806
6844
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6807
6845
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6846
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6847
|
+
readonly selector: Schema.String;
|
|
6848
|
+
}>>;
|
|
6808
6849
|
}>>;
|
|
6809
6850
|
readonly reason: Schema.optional<Schema.String>;
|
|
6810
6851
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6842,6 +6883,9 @@ export declare const DeleteCoreV1CollectionNodeOutput: Schema.Struct<{
|
|
|
6842
6883
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6843
6884
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6844
6885
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6886
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6887
|
+
readonly selector: Schema.String;
|
|
6888
|
+
}>>;
|
|
6845
6889
|
}>>;
|
|
6846
6890
|
readonly reason: Schema.optional<Schema.String>;
|
|
6847
6891
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6879,6 +6923,9 @@ export declare const DeleteCoreV1CollectionPersistentVolumeOutput: Schema.Struct
|
|
|
6879
6923
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6880
6924
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6881
6925
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6926
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6927
|
+
readonly selector: Schema.String;
|
|
6928
|
+
}>>;
|
|
6882
6929
|
}>>;
|
|
6883
6930
|
readonly reason: Schema.optional<Schema.String>;
|
|
6884
6931
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6916,6 +6963,9 @@ export declare const DeleteCoreV1NamespaceOutput: Schema.Struct<{
|
|
|
6916
6963
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6917
6964
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6918
6965
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
6966
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
6967
|
+
readonly selector: Schema.String;
|
|
6968
|
+
}>>;
|
|
6919
6969
|
}>>;
|
|
6920
6970
|
readonly reason: Schema.optional<Schema.String>;
|
|
6921
6971
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6953,6 +7003,9 @@ export declare const DeleteCoreV1NamespacedConfigMapOutput: Schema.Struct<{
|
|
|
6953
7003
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6954
7004
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6955
7005
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7006
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7007
|
+
readonly selector: Schema.String;
|
|
7008
|
+
}>>;
|
|
6956
7009
|
}>>;
|
|
6957
7010
|
readonly reason: Schema.optional<Schema.String>;
|
|
6958
7011
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -6990,6 +7043,9 @@ export declare const DeleteCoreV1NamespacedEndpointsOutput: Schema.Struct<{
|
|
|
6990
7043
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
6991
7044
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
6992
7045
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7046
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7047
|
+
readonly selector: Schema.String;
|
|
7048
|
+
}>>;
|
|
6993
7049
|
}>>;
|
|
6994
7050
|
readonly reason: Schema.optional<Schema.String>;
|
|
6995
7051
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -7027,6 +7083,9 @@ export declare const DeleteCoreV1NamespacedEventOutput: Schema.Struct<{
|
|
|
7027
7083
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
7028
7084
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
7029
7085
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7086
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7087
|
+
readonly selector: Schema.String;
|
|
7088
|
+
}>>;
|
|
7030
7089
|
}>>;
|
|
7031
7090
|
readonly reason: Schema.optional<Schema.String>;
|
|
7032
7091
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -7064,6 +7123,9 @@ export declare const DeleteCoreV1NamespacedLimitRangeOutput: Schema.Struct<{
|
|
|
7064
7123
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
7065
7124
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
7066
7125
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
7126
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
7127
|
+
readonly selector: Schema.String;
|
|
7128
|
+
}>>;
|
|
7067
7129
|
}>>;
|
|
7068
7130
|
readonly reason: Schema.optional<Schema.String>;
|
|
7069
7131
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -8868,6 +8930,11 @@ export declare const DeleteCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
8868
8930
|
}>>>;
|
|
8869
8931
|
}>>>;
|
|
8870
8932
|
readonly message: Schema.optional<Schema.String>;
|
|
8933
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
8934
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
8935
|
+
readonly resourceClaimName: Schema.String;
|
|
8936
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
8937
|
+
}>>>;
|
|
8871
8938
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
8872
8939
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
8873
8940
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -10397,6 +10464,9 @@ export declare const DeleteCoreV1NamespacedReplicationControllerOutput: Schema.S
|
|
|
10397
10464
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
10398
10465
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
10399
10466
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
10467
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
10468
|
+
readonly selector: Schema.String;
|
|
10469
|
+
}>>;
|
|
10400
10470
|
}>>;
|
|
10401
10471
|
readonly reason: Schema.optional<Schema.String>;
|
|
10402
10472
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -10496,6 +10566,9 @@ export declare const DeleteCoreV1NamespacedSecretOutput: Schema.Struct<{
|
|
|
10496
10566
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
10497
10567
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
10498
10568
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
10569
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
10570
|
+
readonly selector: Schema.String;
|
|
10571
|
+
}>>;
|
|
10499
10572
|
}>>;
|
|
10500
10573
|
readonly reason: Schema.optional<Schema.String>;
|
|
10501
10574
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -10695,6 +10768,9 @@ export declare const DeleteCoreV1NodeOutput: Schema.Struct<{
|
|
|
10695
10768
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
10696
10769
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
10697
10770
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
10771
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
10772
|
+
readonly selector: Schema.String;
|
|
10773
|
+
}>>;
|
|
10698
10774
|
}>>;
|
|
10699
10775
|
readonly reason: Schema.optional<Schema.String>;
|
|
10700
10776
|
readonly status: Schema.optional<Schema.String>;
|
|
@@ -11146,6 +11222,9 @@ export declare const ListCoreV1ComponentStatusOutput: Schema.Struct<{
|
|
|
11146
11222
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11147
11223
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11148
11224
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11225
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11226
|
+
readonly selector: Schema.String;
|
|
11227
|
+
}>>;
|
|
11149
11228
|
}>>;
|
|
11150
11229
|
}>;
|
|
11151
11230
|
export type ListCoreV1ComponentStatusOutput = typeof ListCoreV1ComponentStatusOutput.Type;
|
|
@@ -11202,6 +11281,9 @@ export declare const ListCoreV1ConfigMapForAllNamespacesOutput: Schema.Struct<{
|
|
|
11202
11281
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11203
11282
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11204
11283
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11284
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11285
|
+
readonly selector: Schema.String;
|
|
11286
|
+
}>>;
|
|
11205
11287
|
}>>;
|
|
11206
11288
|
}>;
|
|
11207
11289
|
export type ListCoreV1ConfigMapForAllNamespacesOutput = typeof ListCoreV1ConfigMapForAllNamespacesOutput.Type;
|
|
@@ -11291,6 +11373,9 @@ export declare const ListCoreV1EndpointsForAllNamespacesOutput: Schema.Struct<{
|
|
|
11291
11373
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11292
11374
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11293
11375
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11376
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11377
|
+
readonly selector: Schema.String;
|
|
11378
|
+
}>>;
|
|
11294
11379
|
}>>;
|
|
11295
11380
|
}>;
|
|
11296
11381
|
export type ListCoreV1EndpointsForAllNamespacesOutput = typeof ListCoreV1EndpointsForAllNamespacesOutput.Type;
|
|
@@ -11380,6 +11465,9 @@ export declare const ListCoreV1EventForAllNamespacesOutput: Schema.Struct<{
|
|
|
11380
11465
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11381
11466
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11382
11467
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11468
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11469
|
+
readonly selector: Schema.String;
|
|
11470
|
+
}>>;
|
|
11383
11471
|
}>>;
|
|
11384
11472
|
}>;
|
|
11385
11473
|
export type ListCoreV1EventForAllNamespacesOutput = typeof ListCoreV1EventForAllNamespacesOutput.Type;
|
|
@@ -11443,6 +11531,9 @@ export declare const ListCoreV1LimitRangeForAllNamespacesOutput: Schema.Struct<{
|
|
|
11443
11531
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11444
11532
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11445
11533
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11534
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11535
|
+
readonly selector: Schema.String;
|
|
11536
|
+
}>>;
|
|
11446
11537
|
}>>;
|
|
11447
11538
|
}>;
|
|
11448
11539
|
export type ListCoreV1LimitRangeForAllNamespacesOutput = typeof ListCoreV1LimitRangeForAllNamespacesOutput.Type;
|
|
@@ -11509,6 +11600,9 @@ export declare const ListCoreV1NamespaceOutput: Schema.Struct<{
|
|
|
11509
11600
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11510
11601
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11511
11602
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11603
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11604
|
+
readonly selector: Schema.String;
|
|
11605
|
+
}>>;
|
|
11512
11606
|
}>>;
|
|
11513
11607
|
}>;
|
|
11514
11608
|
export type ListCoreV1NamespaceOutput = typeof ListCoreV1NamespaceOutput.Type;
|
|
@@ -11565,6 +11659,9 @@ export declare const ListCoreV1NamespacedConfigMapOutput: Schema.Struct<{
|
|
|
11565
11659
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11566
11660
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11567
11661
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11662
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11663
|
+
readonly selector: Schema.String;
|
|
11664
|
+
}>>;
|
|
11568
11665
|
}>>;
|
|
11569
11666
|
}>;
|
|
11570
11667
|
export type ListCoreV1NamespacedConfigMapOutput = typeof ListCoreV1NamespacedConfigMapOutput.Type;
|
|
@@ -11654,6 +11751,9 @@ export declare const ListCoreV1NamespacedEndpointsOutput: Schema.Struct<{
|
|
|
11654
11751
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11655
11752
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11656
11753
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11754
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11755
|
+
readonly selector: Schema.String;
|
|
11756
|
+
}>>;
|
|
11657
11757
|
}>>;
|
|
11658
11758
|
}>;
|
|
11659
11759
|
export type ListCoreV1NamespacedEndpointsOutput = typeof ListCoreV1NamespacedEndpointsOutput.Type;
|
|
@@ -11743,6 +11843,9 @@ export declare const ListCoreV1NamespacedEventOutput: Schema.Struct<{
|
|
|
11743
11843
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11744
11844
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11745
11845
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11846
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11847
|
+
readonly selector: Schema.String;
|
|
11848
|
+
}>>;
|
|
11746
11849
|
}>>;
|
|
11747
11850
|
}>;
|
|
11748
11851
|
export type ListCoreV1NamespacedEventOutput = typeof ListCoreV1NamespacedEventOutput.Type;
|
|
@@ -11806,6 +11909,9 @@ export declare const ListCoreV1NamespacedLimitRangeOutput: Schema.Struct<{
|
|
|
11806
11909
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11807
11910
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11808
11911
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
11912
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
11913
|
+
readonly selector: Schema.String;
|
|
11914
|
+
}>>;
|
|
11809
11915
|
}>>;
|
|
11810
11916
|
}>;
|
|
11811
11917
|
export type ListCoreV1NamespacedLimitRangeOutput = typeof ListCoreV1NamespacedLimitRangeOutput.Type;
|
|
@@ -11909,6 +12015,9 @@ export declare const ListCoreV1NamespacedPersistentVolumeClaimOutput: Schema.Str
|
|
|
11909
12015
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
11910
12016
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
11911
12017
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
12018
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
12019
|
+
readonly selector: Schema.String;
|
|
12020
|
+
}>>;
|
|
11912
12021
|
}>>;
|
|
11913
12022
|
}>;
|
|
11914
12023
|
export type ListCoreV1NamespacedPersistentVolumeClaimOutput = typeof ListCoreV1NamespacedPersistentVolumeClaimOutput.Type;
|
|
@@ -13612,6 +13721,11 @@ export declare const ListCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
13612
13721
|
}>>>;
|
|
13613
13722
|
}>>>;
|
|
13614
13723
|
readonly message: Schema.optional<Schema.String>;
|
|
13724
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
13725
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
13726
|
+
readonly resourceClaimName: Schema.String;
|
|
13727
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
13728
|
+
}>>>;
|
|
13615
13729
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
13616
13730
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
13617
13731
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -13643,6 +13757,9 @@ export declare const ListCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
13643
13757
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
13644
13758
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
13645
13759
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
13760
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
13761
|
+
readonly selector: Schema.String;
|
|
13762
|
+
}>>;
|
|
13646
13763
|
}>>;
|
|
13647
13764
|
}>;
|
|
13648
13765
|
export type ListCoreV1NamespacedPodOutput = typeof ListCoreV1NamespacedPodOutput.Type;
|
|
@@ -15120,6 +15237,9 @@ export declare const ListCoreV1NamespacedPodTemplateOutput: Schema.Struct<{
|
|
|
15120
15237
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
15121
15238
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
15122
15239
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
15240
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
15241
|
+
readonly selector: Schema.String;
|
|
15242
|
+
}>>;
|
|
15123
15243
|
}>>;
|
|
15124
15244
|
}>;
|
|
15125
15245
|
export type ListCoreV1NamespacedPodTemplateOutput = typeof ListCoreV1NamespacedPodTemplateOutput.Type;
|
|
@@ -16616,6 +16736,9 @@ export declare const ListCoreV1NamespacedReplicationControllerOutput: Schema.Str
|
|
|
16616
16736
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
16617
16737
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
16618
16738
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
16739
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
16740
|
+
readonly selector: Schema.String;
|
|
16741
|
+
}>>;
|
|
16619
16742
|
}>>;
|
|
16620
16743
|
}>;
|
|
16621
16744
|
export type ListCoreV1NamespacedReplicationControllerOutput = typeof ListCoreV1NamespacedReplicationControllerOutput.Type;
|
|
@@ -16684,6 +16807,9 @@ export declare const ListCoreV1NamespacedResourceQuotaOutput: Schema.Struct<{
|
|
|
16684
16807
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
16685
16808
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
16686
16809
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
16810
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
16811
|
+
readonly selector: Schema.String;
|
|
16812
|
+
}>>;
|
|
16687
16813
|
}>>;
|
|
16688
16814
|
}>;
|
|
16689
16815
|
export type ListCoreV1NamespacedResourceQuotaOutput = typeof ListCoreV1NamespacedResourceQuotaOutput.Type;
|
|
@@ -16741,6 +16867,9 @@ export declare const ListCoreV1NamespacedSecretOutput: Schema.Struct<{
|
|
|
16741
16867
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
16742
16868
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
16743
16869
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
16870
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
16871
|
+
readonly selector: Schema.String;
|
|
16872
|
+
}>>;
|
|
16744
16873
|
}>>;
|
|
16745
16874
|
}>;
|
|
16746
16875
|
export type ListCoreV1NamespacedSecretOutput = typeof ListCoreV1NamespacedSecretOutput.Type;
|
|
@@ -16849,6 +16978,9 @@ export declare const ListCoreV1NamespacedServiceOutput: Schema.Struct<{
|
|
|
16849
16978
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
16850
16979
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
16851
16980
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
16981
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
16982
|
+
readonly selector: Schema.String;
|
|
16983
|
+
}>>;
|
|
16852
16984
|
}>>;
|
|
16853
16985
|
}>;
|
|
16854
16986
|
export type ListCoreV1NamespacedServiceOutput = typeof ListCoreV1NamespacedServiceOutput.Type;
|
|
@@ -16915,6 +17047,9 @@ export declare const ListCoreV1NamespacedServiceAccountOutput: Schema.Struct<{
|
|
|
16915
17047
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
16916
17048
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
16917
17049
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
17050
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
17051
|
+
readonly selector: Schema.String;
|
|
17052
|
+
}>>;
|
|
16918
17053
|
}>>;
|
|
16919
17054
|
}>;
|
|
16920
17055
|
export type ListCoreV1NamespacedServiceAccountOutput = typeof ListCoreV1NamespacedServiceAccountOutput.Type;
|
|
@@ -17077,6 +17212,9 @@ export declare const ListCoreV1NodeOutput: Schema.Struct<{
|
|
|
17077
17212
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
17078
17213
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
17079
17214
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
17215
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
17216
|
+
readonly selector: Schema.String;
|
|
17217
|
+
}>>;
|
|
17080
17218
|
}>>;
|
|
17081
17219
|
}>;
|
|
17082
17220
|
export type ListCoreV1NodeOutput = typeof ListCoreV1NodeOutput.Type;
|
|
@@ -17365,6 +17503,9 @@ export declare const ListCoreV1PersistentVolumeOutput: Schema.Struct<{
|
|
|
17365
17503
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
17366
17504
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
17367
17505
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
17506
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
17507
|
+
readonly selector: Schema.String;
|
|
17508
|
+
}>>;
|
|
17368
17509
|
}>>;
|
|
17369
17510
|
}>;
|
|
17370
17511
|
export type ListCoreV1PersistentVolumeOutput = typeof ListCoreV1PersistentVolumeOutput.Type;
|
|
@@ -17468,6 +17609,9 @@ export declare const ListCoreV1PersistentVolumeClaimForAllNamespacesOutput: Sche
|
|
|
17468
17609
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
17469
17610
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
17470
17611
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
17612
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
17613
|
+
readonly selector: Schema.String;
|
|
17614
|
+
}>>;
|
|
17471
17615
|
}>>;
|
|
17472
17616
|
}>;
|
|
17473
17617
|
export type ListCoreV1PersistentVolumeClaimForAllNamespacesOutput = typeof ListCoreV1PersistentVolumeClaimForAllNamespacesOutput.Type;
|
|
@@ -19171,6 +19315,11 @@ export declare const ListCoreV1PodForAllNamespacesOutput: Schema.Struct<{
|
|
|
19171
19315
|
}>>>;
|
|
19172
19316
|
}>>>;
|
|
19173
19317
|
readonly message: Schema.optional<Schema.String>;
|
|
19318
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
19319
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
19320
|
+
readonly resourceClaimName: Schema.String;
|
|
19321
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
19322
|
+
}>>>;
|
|
19174
19323
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
19175
19324
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
19176
19325
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -19202,6 +19351,9 @@ export declare const ListCoreV1PodForAllNamespacesOutput: Schema.Struct<{
|
|
|
19202
19351
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
19203
19352
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
19204
19353
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
19354
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
19355
|
+
readonly selector: Schema.String;
|
|
19356
|
+
}>>;
|
|
19205
19357
|
}>>;
|
|
19206
19358
|
}>;
|
|
19207
19359
|
export type ListCoreV1PodForAllNamespacesOutput = typeof ListCoreV1PodForAllNamespacesOutput.Type;
|
|
@@ -20679,6 +20831,9 @@ export declare const ListCoreV1PodTemplateForAllNamespacesOutput: Schema.Struct<
|
|
|
20679
20831
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
20680
20832
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
20681
20833
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
20834
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
20835
|
+
readonly selector: Schema.String;
|
|
20836
|
+
}>>;
|
|
20682
20837
|
}>>;
|
|
20683
20838
|
}>;
|
|
20684
20839
|
export type ListCoreV1PodTemplateForAllNamespacesOutput = typeof ListCoreV1PodTemplateForAllNamespacesOutput.Type;
|
|
@@ -22175,6 +22330,9 @@ export declare const ListCoreV1ReplicationControllerForAllNamespacesOutput: Sche
|
|
|
22175
22330
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
22176
22331
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
22177
22332
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
22333
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
22334
|
+
readonly selector: Schema.String;
|
|
22335
|
+
}>>;
|
|
22178
22336
|
}>>;
|
|
22179
22337
|
}>;
|
|
22180
22338
|
export type ListCoreV1ReplicationControllerForAllNamespacesOutput = typeof ListCoreV1ReplicationControllerForAllNamespacesOutput.Type;
|
|
@@ -22243,6 +22401,9 @@ export declare const ListCoreV1ResourceQuotaForAllNamespacesOutput: Schema.Struc
|
|
|
22243
22401
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
22244
22402
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
22245
22403
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
22404
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
22405
|
+
readonly selector: Schema.String;
|
|
22406
|
+
}>>;
|
|
22246
22407
|
}>>;
|
|
22247
22408
|
}>;
|
|
22248
22409
|
export type ListCoreV1ResourceQuotaForAllNamespacesOutput = typeof ListCoreV1ResourceQuotaForAllNamespacesOutput.Type;
|
|
@@ -22300,6 +22461,9 @@ export declare const ListCoreV1SecretForAllNamespacesOutput: Schema.Struct<{
|
|
|
22300
22461
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
22301
22462
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
22302
22463
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
22464
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
22465
|
+
readonly selector: Schema.String;
|
|
22466
|
+
}>>;
|
|
22303
22467
|
}>>;
|
|
22304
22468
|
}>;
|
|
22305
22469
|
export type ListCoreV1SecretForAllNamespacesOutput = typeof ListCoreV1SecretForAllNamespacesOutput.Type;
|
|
@@ -22366,6 +22530,9 @@ export declare const ListCoreV1ServiceAccountForAllNamespacesOutput: Schema.Stru
|
|
|
22366
22530
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
22367
22531
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
22368
22532
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
22533
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
22534
|
+
readonly selector: Schema.String;
|
|
22535
|
+
}>>;
|
|
22369
22536
|
}>>;
|
|
22370
22537
|
}>;
|
|
22371
22538
|
export type ListCoreV1ServiceAccountForAllNamespacesOutput = typeof ListCoreV1ServiceAccountForAllNamespacesOutput.Type;
|
|
@@ -22474,6 +22641,9 @@ export declare const ListCoreV1ServiceForAllNamespacesOutput: Schema.Struct<{
|
|
|
22474
22641
|
readonly remainingItemCount: Schema.optional<Schema.Number>;
|
|
22475
22642
|
readonly resourceVersion: Schema.optional<Schema.String>;
|
|
22476
22643
|
readonly selfLink: Schema.optional<Schema.String>;
|
|
22644
|
+
readonly shardInfo: Schema.optional<Schema.Struct<{
|
|
22645
|
+
readonly selector: Schema.String;
|
|
22646
|
+
}>>;
|
|
22477
22647
|
}>>;
|
|
22478
22648
|
}>;
|
|
22479
22649
|
export type ListCoreV1ServiceForAllNamespacesOutput = typeof ListCoreV1ServiceForAllNamespacesOutput.Type;
|
|
@@ -24791,6 +24961,11 @@ export declare const PatchCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
24791
24961
|
}>>>;
|
|
24792
24962
|
}>>>;
|
|
24793
24963
|
readonly message: Schema.optional<Schema.String>;
|
|
24964
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
24965
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
24966
|
+
readonly resourceClaimName: Schema.String;
|
|
24967
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
24968
|
+
}>>>;
|
|
24794
24969
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
24795
24970
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
24796
24971
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -26521,6 +26696,11 @@ export declare const PatchCoreV1NamespacedPodEphemeralcontainersOutput: Schema.S
|
|
|
26521
26696
|
}>>>;
|
|
26522
26697
|
}>>>;
|
|
26523
26698
|
readonly message: Schema.optional<Schema.String>;
|
|
26699
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
26700
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
26701
|
+
readonly resourceClaimName: Schema.String;
|
|
26702
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
26703
|
+
}>>>;
|
|
26524
26704
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
26525
26705
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
26526
26706
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -28251,6 +28431,11 @@ export declare const PatchCoreV1NamespacedPodResizeOutput: Schema.Struct<{
|
|
|
28251
28431
|
}>>>;
|
|
28252
28432
|
}>>>;
|
|
28253
28433
|
readonly message: Schema.optional<Schema.String>;
|
|
28434
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
28435
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
28436
|
+
readonly resourceClaimName: Schema.String;
|
|
28437
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
28438
|
+
}>>>;
|
|
28254
28439
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
28255
28440
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
28256
28441
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -29981,6 +30166,11 @@ export declare const PatchCoreV1NamespacedPodStatusOutput: Schema.Struct<{
|
|
|
29981
30166
|
}>>>;
|
|
29982
30167
|
}>>>;
|
|
29983
30168
|
readonly message: Schema.optional<Schema.String>;
|
|
30169
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
30170
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
30171
|
+
readonly resourceClaimName: Schema.String;
|
|
30172
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
30173
|
+
}>>>;
|
|
29984
30174
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
29985
30175
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
29986
30176
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -38160,6 +38350,11 @@ export declare const ReadCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
38160
38350
|
}>>>;
|
|
38161
38351
|
}>>>;
|
|
38162
38352
|
readonly message: Schema.optional<Schema.String>;
|
|
38353
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
38354
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
38355
|
+
readonly resourceClaimName: Schema.String;
|
|
38356
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
38357
|
+
}>>>;
|
|
38163
38358
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
38164
38359
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
38165
38360
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -39884,6 +40079,11 @@ export declare const ReadCoreV1NamespacedPodEphemeralcontainersOutput: Schema.St
|
|
|
39884
40079
|
}>>>;
|
|
39885
40080
|
}>>>;
|
|
39886
40081
|
readonly message: Schema.optional<Schema.String>;
|
|
40082
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
40083
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
40084
|
+
readonly resourceClaimName: Schema.String;
|
|
40085
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
40086
|
+
}>>>;
|
|
39887
40087
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
39888
40088
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
39889
40089
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -41616,6 +41816,11 @@ export declare const ReadCoreV1NamespacedPodResizeOutput: Schema.Struct<{
|
|
|
41616
41816
|
}>>>;
|
|
41617
41817
|
}>>>;
|
|
41618
41818
|
readonly message: Schema.optional<Schema.String>;
|
|
41819
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
41820
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
41821
|
+
readonly resourceClaimName: Schema.String;
|
|
41822
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
41823
|
+
}>>>;
|
|
41619
41824
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
41620
41825
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
41621
41826
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -43340,6 +43545,11 @@ export declare const ReadCoreV1NamespacedPodStatusOutput: Schema.Struct<{
|
|
|
43340
43545
|
}>>>;
|
|
43341
43546
|
}>>>;
|
|
43342
43547
|
readonly message: Schema.optional<Schema.String>;
|
|
43548
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
43549
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
43550
|
+
readonly resourceClaimName: Schema.String;
|
|
43551
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
43552
|
+
}>>>;
|
|
43343
43553
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
43344
43554
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
43345
43555
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -51490,6 +51700,11 @@ export declare const ReplaceCoreV1NamespacedPodOutput: Schema.Struct<{
|
|
|
51490
51700
|
}>>>;
|
|
51491
51701
|
}>>>;
|
|
51492
51702
|
readonly message: Schema.optional<Schema.String>;
|
|
51703
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
51704
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
51705
|
+
readonly resourceClaimName: Schema.String;
|
|
51706
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
51707
|
+
}>>>;
|
|
51493
51708
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
51494
51709
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
51495
51710
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -53220,6 +53435,11 @@ export declare const ReplaceCoreV1NamespacedPodEphemeralcontainersOutput: Schema
|
|
|
53220
53435
|
}>>>;
|
|
53221
53436
|
}>>>;
|
|
53222
53437
|
readonly message: Schema.optional<Schema.String>;
|
|
53438
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
53439
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
53440
|
+
readonly resourceClaimName: Schema.String;
|
|
53441
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
53442
|
+
}>>>;
|
|
53223
53443
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
53224
53444
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
53225
53445
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -54950,6 +55170,11 @@ export declare const ReplaceCoreV1NamespacedPodResizeOutput: Schema.Struct<{
|
|
|
54950
55170
|
}>>>;
|
|
54951
55171
|
}>>>;
|
|
54952
55172
|
readonly message: Schema.optional<Schema.String>;
|
|
55173
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
55174
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
55175
|
+
readonly resourceClaimName: Schema.String;
|
|
55176
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
55177
|
+
}>>>;
|
|
54953
55178
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
54954
55179
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
54955
55180
|
readonly phase: Schema.optional<Schema.String>;
|
|
@@ -56680,6 +56905,11 @@ export declare const ReplaceCoreV1NamespacedPodStatusOutput: Schema.Struct<{
|
|
|
56680
56905
|
}>>>;
|
|
56681
56906
|
}>>>;
|
|
56682
56907
|
readonly message: Schema.optional<Schema.String>;
|
|
56908
|
+
readonly nodeAllocatableResourceClaimStatuses: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
56909
|
+
readonly containers: Schema.optional<Schema.$Array<Schema.String>>;
|
|
56910
|
+
readonly resourceClaimName: Schema.String;
|
|
56911
|
+
readonly resources: Schema.$Record<Schema.String, Schema.String>;
|
|
56912
|
+
}>>>;
|
|
56683
56913
|
readonly nominatedNodeName: Schema.optional<Schema.String>;
|
|
56684
56914
|
readonly observedGeneration: Schema.optional<Schema.Number>;
|
|
56685
56915
|
readonly phase: Schema.optional<Schema.String>;
|