@alicloud/cs20151215 3.0.2 → 3.0.6
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/dist/client.d.ts +84 -1
- package/dist/client.js +172 -19
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +211 -20
package/dist/client.d.ts
CHANGED
|
@@ -280,6 +280,7 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
280
280
|
proxyMode?: string;
|
|
281
281
|
rdsInstances?: string[];
|
|
282
282
|
regionId?: string;
|
|
283
|
+
resourceGroupId?: string;
|
|
283
284
|
runtime?: Runtime;
|
|
284
285
|
securityGroupId?: string;
|
|
285
286
|
serviceAccountIssuer?: string;
|
|
@@ -794,7 +795,7 @@ export declare class DeleteTriggerResponse extends $tea.Model {
|
|
|
794
795
|
}
|
|
795
796
|
export declare class DeployPolicyInstanceRequest extends $tea.Model {
|
|
796
797
|
action?: string;
|
|
797
|
-
|
|
798
|
+
namespaces?: string[];
|
|
798
799
|
parameters?: {
|
|
799
800
|
[key: string]: any;
|
|
800
801
|
};
|
|
@@ -1634,6 +1635,7 @@ export declare class DescribeKubernetesVersionMetadataRequest extends $tea.Model
|
|
|
1634
1635
|
kubernetesVersion?: string;
|
|
1635
1636
|
profile?: string;
|
|
1636
1637
|
region?: string;
|
|
1638
|
+
runtime?: string;
|
|
1637
1639
|
static names(): {
|
|
1638
1640
|
[key: string]: string;
|
|
1639
1641
|
};
|
|
@@ -2560,6 +2562,46 @@ export declare class RemoveWorkflowResponse extends $tea.Model {
|
|
|
2560
2562
|
[key: string]: any;
|
|
2561
2563
|
});
|
|
2562
2564
|
}
|
|
2565
|
+
export declare class RepairClusterNodePoolRequest extends $tea.Model {
|
|
2566
|
+
nodes?: string[];
|
|
2567
|
+
static names(): {
|
|
2568
|
+
[key: string]: string;
|
|
2569
|
+
};
|
|
2570
|
+
static types(): {
|
|
2571
|
+
[key: string]: any;
|
|
2572
|
+
};
|
|
2573
|
+
constructor(map?: {
|
|
2574
|
+
[key: string]: any;
|
|
2575
|
+
});
|
|
2576
|
+
}
|
|
2577
|
+
export declare class RepairClusterNodePoolResponseBody extends $tea.Model {
|
|
2578
|
+
requestId?: string;
|
|
2579
|
+
taskId?: string;
|
|
2580
|
+
static names(): {
|
|
2581
|
+
[key: string]: string;
|
|
2582
|
+
};
|
|
2583
|
+
static types(): {
|
|
2584
|
+
[key: string]: any;
|
|
2585
|
+
};
|
|
2586
|
+
constructor(map?: {
|
|
2587
|
+
[key: string]: any;
|
|
2588
|
+
});
|
|
2589
|
+
}
|
|
2590
|
+
export declare class RepairClusterNodePoolResponse extends $tea.Model {
|
|
2591
|
+
headers: {
|
|
2592
|
+
[key: string]: string;
|
|
2593
|
+
};
|
|
2594
|
+
body: RepairClusterNodePoolResponseBody;
|
|
2595
|
+
static names(): {
|
|
2596
|
+
[key: string]: string;
|
|
2597
|
+
};
|
|
2598
|
+
static types(): {
|
|
2599
|
+
[key: string]: any;
|
|
2600
|
+
};
|
|
2601
|
+
constructor(map?: {
|
|
2602
|
+
[key: string]: any;
|
|
2603
|
+
});
|
|
2604
|
+
}
|
|
2563
2605
|
export declare class ResumeComponentUpgradeResponse extends $tea.Model {
|
|
2564
2606
|
headers: {
|
|
2565
2607
|
[key: string]: string;
|
|
@@ -2819,10 +2861,23 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
2819
2861
|
[key: string]: any;
|
|
2820
2862
|
});
|
|
2821
2863
|
}
|
|
2864
|
+
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
2865
|
+
requestId?: string;
|
|
2866
|
+
static names(): {
|
|
2867
|
+
[key: string]: string;
|
|
2868
|
+
};
|
|
2869
|
+
static types(): {
|
|
2870
|
+
[key: string]: any;
|
|
2871
|
+
};
|
|
2872
|
+
constructor(map?: {
|
|
2873
|
+
[key: string]: any;
|
|
2874
|
+
});
|
|
2875
|
+
}
|
|
2822
2876
|
export declare class TagResourcesResponse extends $tea.Model {
|
|
2823
2877
|
headers: {
|
|
2824
2878
|
[key: string]: string;
|
|
2825
2879
|
};
|
|
2880
|
+
body: TagResourcesResponseBody;
|
|
2826
2881
|
static names(): {
|
|
2827
2882
|
[key: string]: string;
|
|
2828
2883
|
};
|
|
@@ -2860,6 +2915,7 @@ export declare class UnInstallClusterAddonsResponse extends $tea.Model {
|
|
|
2860
2915
|
});
|
|
2861
2916
|
}
|
|
2862
2917
|
export declare class UntagResourcesRequest extends $tea.Model {
|
|
2918
|
+
all?: boolean;
|
|
2863
2919
|
regionId?: string;
|
|
2864
2920
|
resourceIds?: string[];
|
|
2865
2921
|
resourceType?: string;
|
|
@@ -2874,10 +2930,23 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
2874
2930
|
[key: string]: any;
|
|
2875
2931
|
});
|
|
2876
2932
|
}
|
|
2933
|
+
export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
2934
|
+
requestId?: string;
|
|
2935
|
+
static names(): {
|
|
2936
|
+
[key: string]: string;
|
|
2937
|
+
};
|
|
2938
|
+
static types(): {
|
|
2939
|
+
[key: string]: any;
|
|
2940
|
+
};
|
|
2941
|
+
constructor(map?: {
|
|
2942
|
+
[key: string]: any;
|
|
2943
|
+
});
|
|
2944
|
+
}
|
|
2877
2945
|
export declare class UntagResourcesResponse extends $tea.Model {
|
|
2878
2946
|
headers: {
|
|
2879
2947
|
[key: string]: string;
|
|
2880
2948
|
};
|
|
2949
|
+
body: UntagResourcesResponseBody;
|
|
2881
2950
|
static names(): {
|
|
2882
2951
|
[key: string]: string;
|
|
2883
2952
|
};
|
|
@@ -3069,6 +3138,7 @@ export declare class CreateClusterNodePoolRequestKubernetesConfig extends $tea.M
|
|
|
3069
3138
|
cmsEnabled?: boolean;
|
|
3070
3139
|
cpuPolicy?: string;
|
|
3071
3140
|
labels?: Tag[];
|
|
3141
|
+
nodeNameMode?: string;
|
|
3072
3142
|
runtime?: string;
|
|
3073
3143
|
runtimeVersion?: string;
|
|
3074
3144
|
taints?: Taint[];
|
|
@@ -3157,6 +3227,8 @@ export declare class CreateClusterNodePoolRequestScalingGroup extends $tea.Model
|
|
|
3157
3227
|
autoRenewPeriod?: number;
|
|
3158
3228
|
compensateWithOnDemand?: boolean;
|
|
3159
3229
|
dataDisks?: DataDisk[];
|
|
3230
|
+
deploymentsetId?: string;
|
|
3231
|
+
desiredSize?: number;
|
|
3160
3232
|
imageId?: string;
|
|
3161
3233
|
imageType?: string;
|
|
3162
3234
|
instanceChargeType?: string;
|
|
@@ -3286,6 +3358,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
3286
3358
|
cmsEnabled?: boolean;
|
|
3287
3359
|
cpuPolicy?: string;
|
|
3288
3360
|
labels?: Tag[];
|
|
3361
|
+
nodeNameMode?: string;
|
|
3289
3362
|
runtime?: string;
|
|
3290
3363
|
runtimeVersion?: string;
|
|
3291
3364
|
taints?: Taint[];
|
|
@@ -3366,6 +3439,8 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
3366
3439
|
autoRenewPeriod?: number;
|
|
3367
3440
|
compensateWithOnDemand?: boolean;
|
|
3368
3441
|
dataDisks?: DataDisk[];
|
|
3442
|
+
deploymentsetId?: string;
|
|
3443
|
+
desiredSize?: number;
|
|
3369
3444
|
imageId?: string;
|
|
3370
3445
|
instanceChargeType?: string;
|
|
3371
3446
|
instanceTypes?: string[];
|
|
@@ -3473,6 +3548,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
|
|
|
3473
3548
|
cmsEnabled?: boolean;
|
|
3474
3549
|
cpuPolicy?: string;
|
|
3475
3550
|
labels?: Tag[];
|
|
3551
|
+
nodeNameMode?: string;
|
|
3476
3552
|
runtime?: string;
|
|
3477
3553
|
runtimeVersion?: string;
|
|
3478
3554
|
taints?: Taint[];
|
|
@@ -3553,6 +3629,8 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
|
|
|
3553
3629
|
autoRenewPeriod?: number;
|
|
3554
3630
|
compensateWithOnDemand?: boolean;
|
|
3555
3631
|
dataDisks?: DataDisk[];
|
|
3632
|
+
deploymentsetId?: string;
|
|
3633
|
+
desiredSize?: number;
|
|
3556
3634
|
imageId?: string;
|
|
3557
3635
|
instanceChargeType?: string;
|
|
3558
3636
|
instanceTypes?: string[];
|
|
@@ -4444,6 +4522,7 @@ export declare class ModifyClusterNodePoolRequestScalingGroup extends $tea.Model
|
|
|
4444
4522
|
autoRenewPeriod?: number;
|
|
4445
4523
|
compensateWithOnDemand?: boolean;
|
|
4446
4524
|
dataDisks?: DataDisk[];
|
|
4525
|
+
desiredSize?: number;
|
|
4447
4526
|
imageId?: string;
|
|
4448
4527
|
instanceChargeType?: string;
|
|
4449
4528
|
instanceTypes?: string[];
|
|
@@ -4876,6 +4955,10 @@ export default class Client extends OpenApi {
|
|
|
4876
4955
|
removeWorkflowWithOptions(workflowName: string, headers: {
|
|
4877
4956
|
[key: string]: string;
|
|
4878
4957
|
}, runtime: $Util.RuntimeOptions): Promise<RemoveWorkflowResponse>;
|
|
4958
|
+
repairClusterNodePool(clusterId: string, nodepoolId: string, request: RepairClusterNodePoolRequest): Promise<RepairClusterNodePoolResponse>;
|
|
4959
|
+
repairClusterNodePoolWithOptions(clusterId: string, nodepoolId: string, request: RepairClusterNodePoolRequest, headers: {
|
|
4960
|
+
[key: string]: string;
|
|
4961
|
+
}, runtime: $Util.RuntimeOptions): Promise<RepairClusterNodePoolResponse>;
|
|
4879
4962
|
resumeComponentUpgrade(clusterid: string, componentid: string): Promise<ResumeComponentUpgradeResponse>;
|
|
4880
4963
|
resumeComponentUpgradeWithOptions(clusterid: string, componentid: string, headers: {
|
|
4881
4964
|
[key: string]: string;
|