@alicloud/cs20151215 4.8.5 → 4.8.7
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 +262 -28
- package/dist/client.js +4 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +264 -28
package/dist/client.d.ts
CHANGED
|
@@ -1205,7 +1205,7 @@ export declare class CreateAutoscalingConfigRequest extends $tea.Model {
|
|
|
1205
1205
|
minReplicaCount?: number;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* @remarks
|
|
1208
|
-
* Specifies whether to delete the corresponding Kubernetes node objects after nodes are removed in swift mode. For more information about the swift mode, see [Scaling mode](https://help.aliyun.com/document_detail/119099.html). Default value: false
|
|
1208
|
+
* Specifies whether to delete the corresponding Kubernetes node objects after nodes are removed in swift mode. For more information about the swift mode, see [Scaling mode](https://help.aliyun.com/document_detail/119099.html). Default value: false Valid values:
|
|
1209
1209
|
*
|
|
1210
1210
|
* * `true`: deletes the corresponding Kubernetes node objects after nodes are removed in swift mode. We recommend that you do not set the value to true because data inconsistency may occur in Kubernetes objects.
|
|
1211
1211
|
* * `false`: retains the corresponding Kubernetes node objects after nodes are removed in swift mode.
|
|
@@ -1301,16 +1301,25 @@ export declare class CreateAutoscalingConfigRequest extends $tea.Model {
|
|
|
1301
1301
|
}
|
|
1302
1302
|
export declare class CreateAutoscalingConfigResponseBody extends $tea.Model {
|
|
1303
1303
|
/**
|
|
1304
|
+
* @remarks
|
|
1305
|
+
* The cluster ID.
|
|
1306
|
+
*
|
|
1304
1307
|
* @example
|
|
1305
1308
|
* cc212d04dfe184547bffaa596********
|
|
1306
1309
|
*/
|
|
1307
1310
|
clusterId?: string;
|
|
1308
1311
|
/**
|
|
1312
|
+
* @remarks
|
|
1313
|
+
* The request ID.
|
|
1314
|
+
*
|
|
1309
1315
|
* @example
|
|
1310
1316
|
* AF8BE105-C32B-1269-9774-5510********
|
|
1311
1317
|
*/
|
|
1312
1318
|
requestId?: string;
|
|
1313
1319
|
/**
|
|
1320
|
+
* @remarks
|
|
1321
|
+
* The task ID.
|
|
1322
|
+
*
|
|
1314
1323
|
* @example
|
|
1315
1324
|
* T-5fd211e924e1d007********
|
|
1316
1325
|
*/
|
|
@@ -2098,7 +2107,7 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
2098
2107
|
* The kube-proxy mode. Valid values:
|
|
2099
2108
|
*
|
|
2100
2109
|
* * `iptables`: a mature and stable kube-proxy mode that uses iptables rules to conduct Service discovery and load balancing. The performance of this mode is limited by the size of the cluster. This mode is suitable for clusters that run a small number of Services.
|
|
2101
|
-
* * `ipvs`: provides high performance and uses IP Virtual Server (IPVS)
|
|
2110
|
+
* * `ipvs`: a mode that provides high performance and uses IP Virtual Server (IPVS) to conduct service discovery and load balancing. This mode is suitable for clusters that run a large number of Services. We recommend that you use this mode in scenarios that require high-performance load balancing.
|
|
2102
2111
|
*
|
|
2103
2112
|
* Default value: `ipvs`.
|
|
2104
2113
|
*
|
|
@@ -4745,7 +4754,7 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
4745
4754
|
subnetCidr?: string;
|
|
4746
4755
|
/**
|
|
4747
4756
|
* @remarks
|
|
4748
|
-
* The resource
|
|
4757
|
+
* The resource labels of the cluster.
|
|
4749
4758
|
*/
|
|
4750
4759
|
tags?: Tag[];
|
|
4751
4760
|
/**
|
|
@@ -8632,7 +8641,7 @@ export declare class MigrateClusterResponse extends $tea.Model {
|
|
|
8632
8641
|
export declare class ModifyClusterRequest extends $tea.Model {
|
|
8633
8642
|
/**
|
|
8634
8643
|
* @remarks
|
|
8635
|
-
* The network access control
|
|
8644
|
+
* The network access control list (ACL) of the SLB instance associated with the API server if the cluster is a registered cluster.
|
|
8636
8645
|
*/
|
|
8637
8646
|
accessControlList?: string[];
|
|
8638
8647
|
/**
|
|
@@ -8669,15 +8678,19 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8669
8678
|
* cluster-new-name
|
|
8670
8679
|
*/
|
|
8671
8680
|
clusterName?: string;
|
|
8681
|
+
/**
|
|
8682
|
+
* @remarks
|
|
8683
|
+
* The control plane configurations of an ACK dedicated cluster.
|
|
8684
|
+
*/
|
|
8672
8685
|
controlPlaneConfig?: ModifyClusterRequestControlPlaneConfig;
|
|
8673
8686
|
/**
|
|
8674
8687
|
* @remarks
|
|
8675
|
-
* Specifies whether to enable cluster deletion protection. If this option
|
|
8688
|
+
* Specifies whether to enable cluster deletion protection. If you enable this option, the cluster cannot be deleted in the console or by calling API operations. Valid values:
|
|
8676
8689
|
*
|
|
8677
8690
|
* * `true`: enables cluster deletion protection.
|
|
8678
8691
|
* * `false`: disables cluster deletion protection.
|
|
8679
8692
|
*
|
|
8680
|
-
* Default value: `false
|
|
8693
|
+
* Default value: `false`.
|
|
8681
8694
|
*
|
|
8682
8695
|
* @example
|
|
8683
8696
|
* true
|
|
@@ -8701,7 +8714,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8701
8714
|
* * `true`: remaps the test domain name of the cluster.
|
|
8702
8715
|
* * `false`: does not remap the test domain name of the cluster.
|
|
8703
8716
|
*
|
|
8704
|
-
* Default value: `false
|
|
8717
|
+
* Default value: `false`.
|
|
8705
8718
|
*
|
|
8706
8719
|
* @example
|
|
8707
8720
|
* true
|
|
@@ -8722,7 +8735,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8722
8735
|
* * `true`: enables instance deletion protection.
|
|
8723
8736
|
* * `false`: disables instance deletion protection.
|
|
8724
8737
|
*
|
|
8725
|
-
* Default value: `false
|
|
8738
|
+
* Default value: `false`.
|
|
8726
8739
|
*
|
|
8727
8740
|
* @example
|
|
8728
8741
|
* true
|
|
@@ -8740,7 +8753,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8740
8753
|
operationPolicy?: ModifyClusterRequestOperationPolicy;
|
|
8741
8754
|
/**
|
|
8742
8755
|
* @remarks
|
|
8743
|
-
* The
|
|
8756
|
+
* The resource group ID of the cluster.
|
|
8744
8757
|
*
|
|
8745
8758
|
* @example
|
|
8746
8759
|
* rg-acfmyvw3wjm****
|
|
@@ -8753,12 +8766,12 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8753
8766
|
systemEventsLogging?: ModifyClusterRequestSystemEventsLogging;
|
|
8754
8767
|
/**
|
|
8755
8768
|
* @remarks
|
|
8756
|
-
* The vSwitches of the control
|
|
8769
|
+
* The vSwitches of the control plane. This parameter can be used to change the vSwitches of the control plane in an ACK managed cluster. Take note of the following items:
|
|
8757
8770
|
*
|
|
8758
|
-
* * This parameter overwrites the existing configuration. You must specify all vSwitches of the control
|
|
8759
|
-
* * The control
|
|
8760
|
-
* *
|
|
8761
|
-
* * If the new vSwitches of the control
|
|
8771
|
+
* * This parameter overwrites the existing configuration. You must specify all vSwitches of the control plane.
|
|
8772
|
+
* * The control plane restarts during the change process. Exercise caution when you perform this operation.
|
|
8773
|
+
* * Ensure that all security groups of the cluster, including the security groups of the control plane, all node pools, and container network, are allowed to access the CIDR blocks of the new vSwitches. This ensures that the nodes and containers can connect to the API server.
|
|
8774
|
+
* * If the new vSwitches of the control plane are configured with an ACL, ensure that the ACL allows communication between the new vSwitches and CIDR blocks such as those of the cluster nodes and the container network.
|
|
8762
8775
|
*/
|
|
8763
8776
|
vswitchIds?: string[];
|
|
8764
8777
|
static names(): {
|
|
@@ -12669,9 +12682,9 @@ export declare class CreateClusterNodePoolRequestManagementAutoVulFixPolicy exte
|
|
|
12669
12682
|
* @remarks
|
|
12670
12683
|
* The severity levels of CVEs that can be automatically patched. Separate multiple levels with commas (,). Example: `asap,later`. Valid values:
|
|
12671
12684
|
*
|
|
12672
|
-
* * `asap`: high
|
|
12673
|
-
* * `later`: medium
|
|
12674
|
-
* * `nntf`: low
|
|
12685
|
+
* * `asap`: high
|
|
12686
|
+
* * `later`: medium
|
|
12687
|
+
* * `nntf`: low
|
|
12675
12688
|
*
|
|
12676
12689
|
* If `auto_vul_fix` is set to true, the default value of this parameter is `asap`.
|
|
12677
12690
|
*
|
|
@@ -13357,7 +13370,7 @@ export declare class CreateClusterNodePoolRequestScalingGroup extends $tea.Model
|
|
|
13357
13370
|
* * `cloud`: basic disk.
|
|
13358
13371
|
* * `cloud_efficiency`: ultra disk.
|
|
13359
13372
|
* * `cloud_ssd`: standard SSD.
|
|
13360
|
-
* * `cloud_essd`:
|
|
13373
|
+
* * `cloud_essd`: ESSD.
|
|
13361
13374
|
* * `cloud_auto`: ESSD AutoPL disk.
|
|
13362
13375
|
* * `cloud_essd_entry`: ESSD Entry disk.
|
|
13363
13376
|
*
|
|
@@ -13628,7 +13641,7 @@ export declare class DescribeAddonsResponseBodyComponentGroups extends $tea.Mode
|
|
|
13628
13641
|
export declare class DescribeClusterDetailResponseBodyControlPlaneConfig extends $tea.Model {
|
|
13629
13642
|
/**
|
|
13630
13643
|
* @remarks
|
|
13631
|
-
* Indicates whether auto-renewal is enabled for the
|
|
13644
|
+
* Indicates whether auto-renewal is enabled for the nodes.
|
|
13632
13645
|
*
|
|
13633
13646
|
* @example
|
|
13634
13647
|
* true
|
|
@@ -13636,7 +13649,7 @@ export declare class DescribeClusterDetailResponseBodyControlPlaneConfig extends
|
|
|
13636
13649
|
autoRenew?: boolean;
|
|
13637
13650
|
/**
|
|
13638
13651
|
* @remarks
|
|
13639
|
-
* The auto-renewal duration for the
|
|
13652
|
+
* The auto-renewal duration for the nodes.
|
|
13640
13653
|
*
|
|
13641
13654
|
* @example
|
|
13642
13655
|
* 1
|
|
@@ -13692,7 +13705,7 @@ export declare class DescribeClusterDetailResponseBodyControlPlaneConfig extends
|
|
|
13692
13705
|
imageType?: string;
|
|
13693
13706
|
/**
|
|
13694
13707
|
* @remarks
|
|
13695
|
-
* The instance
|
|
13708
|
+
* The instance types of the nodes.
|
|
13696
13709
|
*/
|
|
13697
13710
|
instanceTypes?: string[];
|
|
13698
13711
|
/**
|
|
@@ -20436,6 +20449,7 @@ export declare class ListOperationPlansResponseBodyPlans extends $tea.Model {
|
|
|
20436
20449
|
* cluster
|
|
20437
20450
|
*/
|
|
20438
20451
|
targetType?: string;
|
|
20452
|
+
taskId?: string;
|
|
20439
20453
|
/**
|
|
20440
20454
|
* @remarks
|
|
20441
20455
|
* The plan type. Valid values:
|
|
@@ -20634,7 +20648,7 @@ export declare class ModifyClusterRequestApiServerCustomCertSans extends $tea.Mo
|
|
|
20634
20648
|
action?: string;
|
|
20635
20649
|
/**
|
|
20636
20650
|
* @remarks
|
|
20637
|
-
* The SANs.
|
|
20651
|
+
* The list of SANs.
|
|
20638
20652
|
*/
|
|
20639
20653
|
subjectAlternativeNames?: string[];
|
|
20640
20654
|
static names(): {
|
|
@@ -20648,29 +20662,251 @@ export declare class ModifyClusterRequestApiServerCustomCertSans extends $tea.Mo
|
|
|
20648
20662
|
});
|
|
20649
20663
|
}
|
|
20650
20664
|
export declare class ModifyClusterRequestControlPlaneConfig extends $tea.Model {
|
|
20665
|
+
/**
|
|
20666
|
+
* @remarks
|
|
20667
|
+
* Specifies whether to enable auto-renewal for the instance. This parameter takes effect only when `charge_type` is set to `PrePaid`. Valid values:
|
|
20668
|
+
*
|
|
20669
|
+
* * `true`: enables auto-renewal.
|
|
20670
|
+
* * `false`: disables auto-renewal.
|
|
20671
|
+
*
|
|
20672
|
+
* Default value: `false`.
|
|
20673
|
+
*
|
|
20674
|
+
* @example
|
|
20675
|
+
* true
|
|
20676
|
+
*/
|
|
20651
20677
|
autoRenew?: boolean;
|
|
20678
|
+
/**
|
|
20679
|
+
* @remarks
|
|
20680
|
+
* The auto-renewal period of the instance. Valid values: 1, 2, 3, 6, and 12.
|
|
20681
|
+
*
|
|
20682
|
+
* Default value: 1.
|
|
20683
|
+
*
|
|
20684
|
+
* @example
|
|
20685
|
+
* 1
|
|
20686
|
+
*/
|
|
20652
20687
|
autoRenewPeriod?: number;
|
|
20688
|
+
/**
|
|
20689
|
+
* @remarks
|
|
20690
|
+
* The billing method of the instance. Valid values:
|
|
20691
|
+
*
|
|
20692
|
+
* * `PrePaid`: subscription.
|
|
20693
|
+
* * `PostPaid`: pay-as-you-go.
|
|
20694
|
+
*
|
|
20695
|
+
* Default value: `PostPaid`.
|
|
20696
|
+
*
|
|
20697
|
+
* @example
|
|
20698
|
+
* PrePaid
|
|
20699
|
+
*/
|
|
20653
20700
|
chargeType?: string;
|
|
20701
|
+
/**
|
|
20702
|
+
* @remarks
|
|
20703
|
+
* Specifies whether to install the CloudMonitor agent. Valid values:
|
|
20704
|
+
*
|
|
20705
|
+
* * `true`: installs the CloudMonitor agent.
|
|
20706
|
+
* * `false`: does not install the CloudMonitor agent.
|
|
20707
|
+
*
|
|
20708
|
+
* @example
|
|
20709
|
+
* true
|
|
20710
|
+
*/
|
|
20654
20711
|
cloudMonitorFlags?: boolean;
|
|
20712
|
+
/**
|
|
20713
|
+
* @remarks
|
|
20714
|
+
* The CPU management policy of nodes in the node pool. The following policies are supported if the Kubernetes version of the cluster is 1.12.6 or later:
|
|
20715
|
+
*
|
|
20716
|
+
* * `static`: allows pods with specific resource characteristics on the node to be granted with enhanced CPU affinity and exclusivity.
|
|
20717
|
+
* * `none`: specifies that the default CPU affinity is used.
|
|
20718
|
+
*
|
|
20719
|
+
* Default value: `none`.
|
|
20720
|
+
*
|
|
20721
|
+
* @example
|
|
20722
|
+
* none
|
|
20723
|
+
*/
|
|
20655
20724
|
cpuPolicy?: string;
|
|
20725
|
+
/**
|
|
20726
|
+
* @remarks
|
|
20727
|
+
* The ID of the deployment set.
|
|
20728
|
+
*
|
|
20729
|
+
* @example
|
|
20730
|
+
* ds-bp10b35imuam5amw****
|
|
20731
|
+
*/
|
|
20656
20732
|
deploymentsetId?: string;
|
|
20733
|
+
/**
|
|
20734
|
+
* @remarks
|
|
20735
|
+
* The custom image ID. You must configure this parameter if you use a custom image.
|
|
20736
|
+
*
|
|
20737
|
+
* @example
|
|
20738
|
+
* aliyun_3_x64_20G_alibase_20240819.vhd
|
|
20739
|
+
*/
|
|
20657
20740
|
imageId?: string;
|
|
20741
|
+
/**
|
|
20742
|
+
* @remarks
|
|
20743
|
+
* The type of the OS image. Valid values:
|
|
20744
|
+
*
|
|
20745
|
+
* * `AliyunLinux3`: Alibaba Cloud Linux 3.
|
|
20746
|
+
* * `Custom`: the custom image.
|
|
20747
|
+
*
|
|
20748
|
+
* @example
|
|
20749
|
+
* AliyunLinux3
|
|
20750
|
+
*/
|
|
20658
20751
|
imageType?: string;
|
|
20752
|
+
/**
|
|
20753
|
+
* @remarks
|
|
20754
|
+
* The instance type. For more information, see [Overview of ECS instance families](https://help.aliyun.com/document_detail/25378.html).
|
|
20755
|
+
*/
|
|
20659
20756
|
instanceTypes?: string[];
|
|
20757
|
+
/**
|
|
20758
|
+
* @remarks
|
|
20759
|
+
* The name of the key pair. You must configure either this parameter or the `login_password` parameter.
|
|
20760
|
+
*
|
|
20761
|
+
* @example
|
|
20762
|
+
* ack
|
|
20763
|
+
*/
|
|
20660
20764
|
keyPair?: string;
|
|
20765
|
+
/**
|
|
20766
|
+
* @remarks
|
|
20767
|
+
* The password for SSH logon. You must configure either this parameter or the `key_pair` parameter. The password must be 8 to 30 characters in length, and must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. To log on with a password, you must specify this parameter during the scale-out.
|
|
20768
|
+
*
|
|
20769
|
+
* @example
|
|
20770
|
+
* Ack@2000.
|
|
20771
|
+
*/
|
|
20661
20772
|
loginPassword?: string;
|
|
20773
|
+
/**
|
|
20774
|
+
* @remarks
|
|
20775
|
+
* The node port range.
|
|
20776
|
+
*
|
|
20777
|
+
* @example
|
|
20778
|
+
* 30000-32767
|
|
20779
|
+
*/
|
|
20662
20780
|
nodePortRange?: string;
|
|
20781
|
+
/**
|
|
20782
|
+
* @remarks
|
|
20783
|
+
* The subscription duration of the instance. This parameter takes effect and is required only when `charge_type` is set to `PrePaid`.
|
|
20784
|
+
*
|
|
20785
|
+
* If `PeriodUnit=Month` is specified, the valid values are 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
20786
|
+
*
|
|
20787
|
+
* @example
|
|
20788
|
+
* 1
|
|
20789
|
+
*/
|
|
20663
20790
|
period?: number;
|
|
20791
|
+
/**
|
|
20792
|
+
* @remarks
|
|
20793
|
+
* The billing cycle of the instance. This parameter takes effect only when `instance_charge_type` is set to `PrePaid`.
|
|
20794
|
+
*
|
|
20795
|
+
* Valid value: `Month`.
|
|
20796
|
+
*
|
|
20797
|
+
* @example
|
|
20798
|
+
* Month
|
|
20799
|
+
*/
|
|
20664
20800
|
periodUnit?: string;
|
|
20801
|
+
/**
|
|
20802
|
+
* @remarks
|
|
20803
|
+
* The type of the container runtime. Valid values:
|
|
20804
|
+
*
|
|
20805
|
+
* * `containerd`: supports all Kubernetes versions. We recommend that you set the parameter to this value.
|
|
20806
|
+
*
|
|
20807
|
+
* Default value: containerd.
|
|
20808
|
+
*
|
|
20809
|
+
* @example
|
|
20810
|
+
* containerd
|
|
20811
|
+
*/
|
|
20665
20812
|
runtime?: string;
|
|
20813
|
+
/**
|
|
20814
|
+
* @remarks
|
|
20815
|
+
* Specifies whether to enable Alibaba Cloud Linux Security Hardening. Valid values:
|
|
20816
|
+
*
|
|
20817
|
+
* * `true`: enables Alibaba Cloud Linux Security Hardening.
|
|
20818
|
+
* * `false`: disables Alibaba Cloud Linux Security Hardening.
|
|
20819
|
+
*
|
|
20820
|
+
* Default value: `false`.
|
|
20821
|
+
*
|
|
20822
|
+
* @example
|
|
20823
|
+
* true
|
|
20824
|
+
*/
|
|
20666
20825
|
securityHardeningOs?: boolean;
|
|
20826
|
+
/**
|
|
20827
|
+
* @remarks
|
|
20828
|
+
* The number of control plane nodes. If you want to scale out the control plane in an ACK dedicated cluster, set this parameter to the desired number of nodes. This parameter must be greater than the current number of nodes.
|
|
20829
|
+
*
|
|
20830
|
+
* @example
|
|
20831
|
+
* 5
|
|
20832
|
+
*/
|
|
20667
20833
|
size?: number;
|
|
20834
|
+
/**
|
|
20835
|
+
* @remarks
|
|
20836
|
+
* Specifies whether to enable Multi-Level Protection Scheme (MLPS) security hardening. For more information, see [ACK security hardening based on MLPS](https://help.aliyun.com/document_detail/196148.html).
|
|
20837
|
+
*
|
|
20838
|
+
* Valid values:
|
|
20839
|
+
*
|
|
20840
|
+
* * `true`: enables MLPS security hardening.
|
|
20841
|
+
* * `false`: disables MLPS security hardening.
|
|
20842
|
+
*
|
|
20843
|
+
* Default value: `false`.
|
|
20844
|
+
*
|
|
20845
|
+
* @example
|
|
20846
|
+
* false
|
|
20847
|
+
*/
|
|
20668
20848
|
socEnabled?: boolean;
|
|
20849
|
+
/**
|
|
20850
|
+
* @remarks
|
|
20851
|
+
* Specifies whether to enable the burst feature for the system disk. Valid values:
|
|
20852
|
+
*
|
|
20853
|
+
* * `true`: enables the burst feature.
|
|
20854
|
+
* * `false`: disables the burst feature.
|
|
20855
|
+
*
|
|
20856
|
+
* This parameter is effective only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
20857
|
+
*
|
|
20858
|
+
* @example
|
|
20859
|
+
* true
|
|
20860
|
+
*/
|
|
20669
20861
|
systemDiskBurstingEnabled?: boolean;
|
|
20862
|
+
/**
|
|
20863
|
+
* @remarks
|
|
20864
|
+
* The type of the node system disk. Valid values:
|
|
20865
|
+
*
|
|
20866
|
+
* * `cloud`: basic disk.
|
|
20867
|
+
* * `cloud_efficiency`: ultra disk.
|
|
20868
|
+
* * `cloud_ssd`: standard SSD.
|
|
20869
|
+
* * `cloud_essd`: enhanced SSD (ESSD).
|
|
20870
|
+
* * `cloud_auto`: ESSD AutoPL disk.
|
|
20871
|
+
* * `cloud_essd_entry`: ESSD Entry disk.
|
|
20872
|
+
*
|
|
20873
|
+
* @example
|
|
20874
|
+
* cloud_essd
|
|
20875
|
+
*/
|
|
20670
20876
|
systemDiskCategory?: string;
|
|
20877
|
+
/**
|
|
20878
|
+
* @remarks
|
|
20879
|
+
* The performance level (PL) of the system disk that you want to use for the node. This parameter is effective only for ESSDs. This parameter is related to the disk size. For more information, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
20880
|
+
*
|
|
20881
|
+
* @example
|
|
20882
|
+
* PL1
|
|
20883
|
+
*/
|
|
20671
20884
|
systemDiskPerformanceLevel?: string;
|
|
20885
|
+
/**
|
|
20886
|
+
* @remarks
|
|
20887
|
+
* The preset read/write input/output operations per second (IOPS) of the system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS} Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
20888
|
+
*
|
|
20889
|
+
* This parameter is effective only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
20890
|
+
*
|
|
20891
|
+
* @example
|
|
20892
|
+
* 1000
|
|
20893
|
+
*/
|
|
20672
20894
|
systemDiskProvisionedIops?: number;
|
|
20895
|
+
/**
|
|
20896
|
+
* @remarks
|
|
20897
|
+
* The type of the system disk. Valid values: [40,500]. Unit: GiB.
|
|
20898
|
+
*
|
|
20899
|
+
* @example
|
|
20900
|
+
* 120
|
|
20901
|
+
*/
|
|
20673
20902
|
systemDiskSize?: number;
|
|
20903
|
+
/**
|
|
20904
|
+
* @remarks
|
|
20905
|
+
* The ID of the automatic snapshot policy applied to the node system disk.
|
|
20906
|
+
*
|
|
20907
|
+
* @example
|
|
20908
|
+
* sp-2zej1nogjvovnz4z****
|
|
20909
|
+
*/
|
|
20674
20910
|
systemDiskSnapshotPolicyId?: string;
|
|
20675
20911
|
static names(): {
|
|
20676
20912
|
[key: string]: string;
|
|
@@ -20685,11 +20921,11 @@ export declare class ModifyClusterRequestControlPlaneConfig extends $tea.Model {
|
|
|
20685
20921
|
export declare class ModifyClusterRequestOperationPolicyClusterAutoUpgrade extends $tea.Model {
|
|
20686
20922
|
/**
|
|
20687
20923
|
* @remarks
|
|
20688
|
-
* The automatic
|
|
20924
|
+
* The frequency of automatic cluster updates. For more information, see [Update frequency](https://help.aliyun.com/document_detail/2712866.html).
|
|
20689
20925
|
*
|
|
20690
20926
|
* Valid values:
|
|
20691
20927
|
*
|
|
20692
|
-
* * patch:
|
|
20928
|
+
* * patch: the latest patch version.
|
|
20693
20929
|
* * stables: the second-latest minor version.
|
|
20694
20930
|
* * rapid: the latest minor version.
|
|
20695
20931
|
*
|
|
@@ -23316,8 +23552,7 @@ export default class Client extends OpenApi {
|
|
|
23316
23552
|
* Queries or issues the kubeconfig credentials of a Resource Access Management (RAM) user or RAM role of the account. If you are the permission manager of a Container Service for Kubernetes (ACK) cluster, you can issue the kubeconfig credentials to a specific RAM user or RAM role of the account by using the Alibaba Cloud account. The kubeconfig credentials, which are used to connect to the ACK cluster, contain the identity information about the RAM user or RAM role.
|
|
23317
23553
|
*
|
|
23318
23554
|
* @remarks
|
|
23319
|
-
*
|
|
23320
|
-
* ****Only Alibaba Cloud accounts can call this API operation.
|
|
23555
|
+
* You can call this operation only by using an Alibaba Cloud account.
|
|
23321
23556
|
*
|
|
23322
23557
|
* @param request - DescribeSubaccountK8sClusterUserConfigRequest
|
|
23323
23558
|
* @param headers - map
|
|
@@ -23331,8 +23566,7 @@ export default class Client extends OpenApi {
|
|
|
23331
23566
|
* Queries or issues the kubeconfig credentials of a Resource Access Management (RAM) user or RAM role of the account. If you are the permission manager of a Container Service for Kubernetes (ACK) cluster, you can issue the kubeconfig credentials to a specific RAM user or RAM role of the account by using the Alibaba Cloud account. The kubeconfig credentials, which are used to connect to the ACK cluster, contain the identity information about the RAM user or RAM role.
|
|
23332
23567
|
*
|
|
23333
23568
|
* @remarks
|
|
23334
|
-
*
|
|
23335
|
-
* ****Only Alibaba Cloud accounts can call this API operation.
|
|
23569
|
+
* You can call this operation only by using an Alibaba Cloud account.
|
|
23336
23570
|
*
|
|
23337
23571
|
* @param request - DescribeSubaccountK8sClusterUserConfigRequest
|
|
23338
23572
|
* @returns DescribeSubaccountK8sClusterUserConfigResponse
|
package/dist/client.js
CHANGED
|
@@ -11158,6 +11158,7 @@ class ListOperationPlansResponseBodyPlans extends $tea.Model {
|
|
|
11158
11158
|
state: 'state',
|
|
11159
11159
|
targetId: 'target_id',
|
|
11160
11160
|
targetType: 'target_type',
|
|
11161
|
+
taskId: 'task_id',
|
|
11161
11162
|
type: 'type',
|
|
11162
11163
|
};
|
|
11163
11164
|
}
|
|
@@ -11171,6 +11172,7 @@ class ListOperationPlansResponseBodyPlans extends $tea.Model {
|
|
|
11171
11172
|
state: 'string',
|
|
11172
11173
|
targetId: 'string',
|
|
11173
11174
|
targetType: 'string',
|
|
11175
|
+
taskId: 'string',
|
|
11174
11176
|
type: 'string',
|
|
11175
11177
|
};
|
|
11176
11178
|
}
|
|
@@ -15441,8 +15443,7 @@ class Client extends openapi_client_1.default {
|
|
|
15441
15443
|
* Queries or issues the kubeconfig credentials of a Resource Access Management (RAM) user or RAM role of the account. If you are the permission manager of a Container Service for Kubernetes (ACK) cluster, you can issue the kubeconfig credentials to a specific RAM user or RAM role of the account by using the Alibaba Cloud account. The kubeconfig credentials, which are used to connect to the ACK cluster, contain the identity information about the RAM user or RAM role.
|
|
15442
15444
|
*
|
|
15443
15445
|
* @remarks
|
|
15444
|
-
*
|
|
15445
|
-
* ****Only Alibaba Cloud accounts can call this API operation.
|
|
15446
|
+
* You can call this operation only by using an Alibaba Cloud account.
|
|
15446
15447
|
*
|
|
15447
15448
|
* @param request - DescribeSubaccountK8sClusterUserConfigRequest
|
|
15448
15449
|
* @param headers - map
|
|
@@ -15479,8 +15480,7 @@ class Client extends openapi_client_1.default {
|
|
|
15479
15480
|
* Queries or issues the kubeconfig credentials of a Resource Access Management (RAM) user or RAM role of the account. If you are the permission manager of a Container Service for Kubernetes (ACK) cluster, you can issue the kubeconfig credentials to a specific RAM user or RAM role of the account by using the Alibaba Cloud account. The kubeconfig credentials, which are used to connect to the ACK cluster, contain the identity information about the RAM user or RAM role.
|
|
15480
15481
|
*
|
|
15481
15482
|
* @remarks
|
|
15482
|
-
*
|
|
15483
|
-
* ****Only Alibaba Cloud accounts can call this API operation.
|
|
15483
|
+
* You can call this operation only by using an Alibaba Cloud account.
|
|
15484
15484
|
*
|
|
15485
15485
|
* @param request - DescribeSubaccountK8sClusterUserConfigRequest
|
|
15486
15486
|
* @returns DescribeSubaccountK8sClusterUserConfigResponse
|